diff --git a/hub/catalog_factories/catalog.py b/hub/catalog_factories/catalog.py
index 96b61726..a7e3cd85 100644
--- a/hub/catalog_factories/catalog.py
+++ b/hub/catalog_factories/catalog.py
@@ -8,12 +8,13 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
class Catalog:
"""
- Catalogs base class not implemented instance of the Catalog base class, catalog_factories will inherit from this class.
+ Catalogs base class not implemented instance of the Catalog base class,
+ catalog_factories will inherit from this class.
"""
def names(self, category=None):
"""
- Base property to return the catalog entries names
+ Base property to return the catalog entries names.
:return: Catalog names filter by category if provided
"""
raise NotImplementedError
diff --git a/hub/catalog_factories/construction/nrcan_catalog.py b/hub/catalog_factories/construction/nrcan_catalog.py
index 0fe42d72..554ac7a0 100644
--- a/hub/catalog_factories/construction/nrcan_catalog.py
+++ b/hub/catalog_factories/construction/nrcan_catalog.py
@@ -116,7 +116,7 @@ class NrcanCatalog(Catalog):
climate_zone = archetype['climate_zone']
construction_period = archetype['period_of_construction']
average_storey_height = archetype['average_storey_height']
- thermal_capacity = str(float(archetype['thermal_capacity']) * 1000)
+ thermal_capacity = float(archetype['thermal_capacity']) * 1000
extra_loses_due_to_thermal_bridges = archetype['extra_loses_due_thermal_bridges']
infiltration_rate_for_ventilation_system_off = archetype['infiltration_rate_for_ventilation_system_off']
infiltration_rate_for_ventilation_system_on = archetype['infiltration_rate_for_ventilation_system_on']
diff --git a/hub/catalog_factories/cost/montreal_custom_catalog.py b/hub/catalog_factories/cost/montreal_custom_catalog.py
index d4cf0c10..5ab47d31 100644
--- a/hub/catalog_factories/cost/montreal_custom_catalog.py
+++ b/hub/catalog_factories/cost/montreal_custom_catalog.py
@@ -1,21 +1,21 @@
"""
Cost catalog
SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
-Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
import xmltodict
from hub.catalog_factories.catalog import Catalog
-from hub.catalog_factories.data_models.cost.capital_cost import CapitalCost
-from hub.catalog_factories.data_models.cost.envelope import Envelope
-from hub.catalog_factories.data_models.cost.systems import Systems
-from hub.catalog_factories.data_models.cost.hvac import Hvac
-from hub.catalog_factories.data_models.cost.operational_cost import OperationalCost
-from hub.catalog_factories.data_models.cost.income import Income
from hub.catalog_factories.data_models.cost.archetype import Archetype
from hub.catalog_factories.data_models.cost.content import Content
+from hub.catalog_factories.data_models.cost.capital_cost import CapitalCost
+from hub.catalog_factories.data_models.cost.chapter import Chapter
+from hub.catalog_factories.data_models.cost.item_description import ItemDescription
+from hub.catalog_factories.data_models.cost.operational_cost import OperationalCost
+from hub.catalog_factories.data_models.cost.fuel import Fuel
+from hub.catalog_factories.data_models.cost.income import Income
+from hub.catalog_factories.data_models.cost.cost_helper import CostHelper
class MontrealCustomCatalog(Catalog):
@@ -28,90 +28,96 @@ class MontrealCustomCatalog(Catalog):
self._content = Content(self._load_archetypes())
@staticmethod
- def _get_threesome(entry):
- _reposition = float(entry['reposition']['#text'])
- _investment = float(entry['initial_investment']['#text'])
- _lifetime = float(entry['lifetime_equipment']['#text'])
- return _reposition, _investment, _lifetime
+ def _item_with_threesome(entry, item_type):
+ _reposition = float(entry[item_type]['reposition']['#text'])
+ _reposition_unit = entry[item_type]['reposition']['@cost_unit']
+ _investment = float(entry[item_type]['investment_cost']['#text'])
+ _investment_unit = entry[item_type]['investment_cost']['@cost_unit']
+ _lifetime = float(entry[item_type]['lifetime_equipment']['#text'])
+ _item_description = ItemDescription(item_type,
+ initial_investment=_investment,
+ initial_investment_unit=_investment_unit,
+ reposition=_reposition,
+ reposition_unit=_reposition_unit,
+ lifetime=_lifetime)
+ return _item_description
+
+ @staticmethod
+ def _item_with_refurbishment_values(entry, item_type):
+ _refurbishment = float(entry[item_type]['refurbishment_cost']['#text'])
+ _refurbishment_unit = entry[item_type]['refurbishment_cost']['@cost_unit']
+ _item_description = ItemDescription(item_type,
+ refurbishment=_refurbishment,
+ refurbishment_unit=_refurbishment_unit)
+ return _item_description
def _get_capital_costs(self, entry):
- structural = float(entry['structural']['#text'])
- sub_structural = float(entry['sub_structural']['#text'])
- surface_finish = float(entry['surface_finish']['#text'])
- engineer = float(entry['engineer']['#text'])
- opaque_reposition, opaque_initial_investment, opaque_lifetime = \
- self._get_threesome(entry['envelope']['opaque'])
- transparent_reposition, transparent_initial_investment, transparent_lifetime = \
- self._get_threesome(entry['envelope']['transparent'])
- envelope = Envelope(opaque_reposition,
- opaque_initial_investment,
- opaque_lifetime,
- transparent_reposition,
- transparent_initial_investment,
- transparent_lifetime)
- heating_equipment_reposition, heating_equipment_initial_investment, heating_equipment_lifetime = \
- self._get_threesome(entry['systems']['hvac']['heating_equipment_cost'])
- heating_equipment_reposition = heating_equipment_reposition / 1000
- heating_equipment_initial_investment = heating_equipment_initial_investment / 1000
- cooling_equipment_reposition, cooling_equipment_initial_investment, cooling_equipment_lifetime = \
- self._get_threesome(entry['systems']['hvac']['cooling_equipment_cost'])
- cooling_equipment_reposition = cooling_equipment_reposition / 1000
- cooling_equipment_initial_investment = cooling_equipment_initial_investment / 1000
- general_hvac_equipment_reposition, general_hvac_equipment_initial_investment, general_hvac_equipment_lifetime = \
- self._get_threesome(entry['systems']['hvac']['general_hvac_equipment_cost'])
- general_hvac_equipment_reposition = general_hvac_equipment_reposition * 3600
- general_hvac_equipment_initial_investment = general_hvac_equipment_initial_investment * 3600
- hvac = Hvac(heating_equipment_reposition, heating_equipment_initial_investment, heating_equipment_lifetime,
- cooling_equipment_reposition, cooling_equipment_initial_investment, cooling_equipment_lifetime,
- general_hvac_equipment_reposition, general_hvac_equipment_initial_investment,
- general_hvac_equipment_lifetime)
+ general_chapters = []
+ chapters_titles = CostHelper().chapters_in_lod1
+ shell = entry['B_shell']
+ items_list = []
+ item_type = 'B10_superstructure'
+ item_description = self._item_with_refurbishment_values(shell, item_type)
+ items_list.append(item_description)
+ for item in shell['B20_envelope']:
+ item_type = item
+ item_description = self._item_with_refurbishment_values(shell['B20_envelope'], item_type)
+ items_list.append(item_description)
+ item_type = 'B3010_opaque_roof'
+ item_description = self._item_with_refurbishment_values(shell['B30_roofing'], item_type)
+ items_list.append(item_description)
+ general_chapters.append(Chapter('B_shell', items_list))
- photovoltaic_system_reposition, photovoltaic_system_initial_investment, photovoltaic_system_lifetime = \
- self._get_threesome(entry['systems']['photovoltaic_system'])
- other_conditioning_systems_reposition, other_conditioning_systems_initial_investment, \
- other_conditioning_systems_lifetime = self._get_threesome(entry['systems']['other_systems'])
- lighting_reposition, lighting_initial_investment, lighting_lifetime = \
- self._get_threesome(entry['systems']['lighting'])
- systems = Systems(hvac,
- photovoltaic_system_reposition,
- photovoltaic_system_initial_investment,
- photovoltaic_system_lifetime,
- other_conditioning_systems_reposition,
- other_conditioning_systems_initial_investment,
- other_conditioning_systems_lifetime,
- lighting_reposition,
- lighting_initial_investment,
- lighting_lifetime)
- _capital_cost = CapitalCost(structural,
- sub_structural,
- envelope,
- systems,
- surface_finish,
- engineer)
+ items_list = []
+ item_type = 'D301010_photovoltaic_system'
+ services = entry['D_services']
+ item_description = self._item_with_threesome(services['D30_hvac']['D3010_energy_supply'], item_type)
+ items_list.append(item_description)
+ item_type_list = ['D3020_heat_generating_systems', 'D3030_cooling_generation_systems', 'D3040_distribution_systems',
+ 'D3080_other_hvac_ahu']
+ for item_type in item_type_list:
+ item_description = self._item_with_threesome(services['D30_hvac'], item_type)
+ items_list.append(item_description)
+ item_type = 'D5020_lighting_and_branch_wiring'
+ item_description = self._item_with_threesome(services['D50_electrical'], item_type)
+ items_list.append(item_description)
+ general_chapters.append(Chapter('D_services', items_list))
+
+ allowances = entry['Z_allowances_overhead_profit']
+ design_allowance = float(allowances['Z10_design_allowance']['#text']) / 100
+ overhead_and_profit = float(allowances['Z20_overhead_profit']['#text']) / 100
+ _capital_cost = CapitalCost(general_chapters, design_allowance, overhead_and_profit)
return _capital_cost
@staticmethod
def _get_operational_costs(entry):
- fuel_type = entry['fuel']['@fuel_type']
- fuel_fixed_operational_monthly = float(entry['fuel']['fixed']['fixed_monthly']['#text'])
- fuel_fixed_operational_peak = float(entry['fuel']['fixed']['fixed_power']['#text']) / 1000
- fuel_variable_operational = float(entry['fuel']['variable']['#text']) / 1000 / 3600
+ fuels = []
+ for item in entry['fuels']['fuel']:
+ fuel_type = item['@fuel_type']
+ fuel_variable = float(item['variable']['#text'])
+ fuel_variable_units = item['variable']['@cost_unit']
+ fuel_fixed_monthly = None
+ fuel_fixed_peak = None
+ if fuel_type == 'electricity':
+ fuel_fixed_monthly = float(item['fixed_monthly']['#text'])
+ fuel_fixed_peak = float(item['fixed_power']['#text']) / 1000
+ elif fuel_type == 'gas':
+ fuel_fixed_monthly = float(item['fixed_monthly']['#text'])
+ fuel = Fuel(fuel_type,
+ fixed_monthly=fuel_fixed_monthly,
+ fixed_power=fuel_fixed_peak,
+ variable=fuel_variable,
+ variable_units=fuel_variable_units)
+ fuels.append(fuel)
heating_equipment_maintenance = float(entry['maintenance']['heating_equipment']['#text']) / 1000
cooling_equipment_maintenance = float(entry['maintenance']['cooling_equipment']['#text']) / 1000
- general_hvac_equipment_maintenance = float(entry['maintenance']['general_hvac_equipment']['#text']) * 3600
photovoltaic_system_maintenance = float(entry['maintenance']['photovoltaic_system']['#text'])
- other_systems_maintenance = float(entry['maintenance']['other_systems']['#text'])
- co2_emissions = float(entry['CO2_cost']['#text'])
- _operational_cost = OperationalCost(fuel_type,
- fuel_fixed_operational_monthly,
- fuel_fixed_operational_peak,
- fuel_variable_operational,
+ co2_emissions = float(entry['co2_cost']['#text'])
+ _operational_cost = OperationalCost(fuels,
heating_equipment_maintenance,
cooling_equipment_maintenance,
- general_hvac_equipment_maintenance,
photovoltaic_system_maintenance,
- other_systems_maintenance,
co2_emissions)
return _operational_cost
@@ -121,25 +127,31 @@ class MontrealCustomCatalog(Catalog):
for archetype in archetypes:
function = archetype['@function']
municipality = archetype['@municipality']
- currency = archetype['@currency']
+ country = archetype['@country']
+ lod = float(archetype['@lod'])
+ currency = archetype['currency']
capital_cost = self._get_capital_costs(archetype['capital_cost'])
operational_cost = self._get_operational_costs(archetype['operational_cost'])
end_of_life_cost = float(archetype['end_of_life_cost']['#text'])
- construction = float(archetype['incomes']['subsidies']['construction_subsidy']['#text'])
- hvac = float(archetype['incomes']['subsidies']['hvac_subsidy']['#text'])
- photovoltaic_system = float(archetype['incomes']['subsidies']['photovoltaic_subsidy']['#text'])
- electricity_exports = float(archetype['incomes']['energy_exports']['electricity']['#text']) / 1000 / 3600
- heat_exports = float(archetype['incomes']['energy_exports']['heat']['#text']) / 1000 / 3600
- co2 = float(archetype['incomes']['CO2_income']['#text'])
- income = Income(construction, hvac, photovoltaic_system, electricity_exports, heat_exports, co2)
- _catalog_archetypes.append(Archetype(function,
+ construction = float(archetype['incomes']['subsidies']['construction']['#text'])
+ hvac = float(archetype['incomes']['subsidies']['hvac']['#text'])
+ photovoltaic_system = float(archetype['incomes']['subsidies']['photovoltaic']['#text'])
+ electricity_exports = float(archetype['incomes']['electricity_export']['#text']) / 1000 / 3600
+ reduction_tax = float(archetype['incomes']['tax_reduction']['#text']) / 100
+ income = Income(construction_subsidy=construction,
+ hvac_subsidy=hvac,
+ photovoltaic_subsidy=photovoltaic_system,
+ electricity_export=electricity_exports,
+ reductions_tax=reduction_tax)
+ _catalog_archetypes.append(Archetype(lod,
+ function,
municipality,
+ country,
currency,
capital_cost,
operational_cost,
end_of_life_cost,
income))
-
return _catalog_archetypes
def names(self, category=None):
diff --git a/hub/catalog_factories/data_models/cost/archetype.py b/hub/catalog_factories/data_models/cost/archetype.py
index 69ba2654..cf24c6ee 100644
--- a/hub/catalog_factories/data_models/cost/archetype.py
+++ b/hub/catalog_factories/data_models/cost/archetype.py
@@ -1,8 +1,8 @@
"""
Archetype catalog Cost
SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
from hub.catalog_factories.data_models.cost.capital_cost import CapitalCost
@@ -11,9 +11,21 @@ from hub.catalog_factories.data_models.cost.income import Income
class Archetype:
- def __init__(self, function, municipality, currency, capital_cost, operational_cost, end_of_life_cost, income):
+ def __init__(self,
+ lod,
+ function,
+ municipality,
+ country,
+ currency,
+ capital_cost,
+ operational_cost,
+ end_of_life_cost,
+ income):
+
+ self._lod = lod
self._function = function
self._municipality = municipality
+ self._country = country
self._currency = currency
self._capital_cost = capital_cost
self._operational_cost = operational_cost
@@ -26,7 +38,15 @@ class Archetype:
Get name
:return: string
"""
- return f'{self._municipality}_{self._function}'
+ return f'{self._country}_{self._municipality}_{self._function}_{self._lod}'
+
+ @property
+ def lod(self):
+ """
+ Get level of detail of the catalog
+ :return: string
+ """
+ return self._lod
@property
def function(self):
@@ -44,6 +64,14 @@ class Archetype:
"""
return self._municipality
+ @property
+ def country(self):
+ """
+ Get country
+ :return: string
+ """
+ return self._country
+
@property
def currency(self):
"""
diff --git a/hub/catalog_factories/data_models/cost/capital_cost.py b/hub/catalog_factories/data_models/cost/capital_cost.py
index 6d5f2504..828b5cfc 100644
--- a/hub/catalog_factories/data_models/cost/capital_cost.py
+++ b/hub/catalog_factories/data_models/cost/capital_cost.py
@@ -1,68 +1,40 @@
"""
-Cost catalog CapitalCost
+Capital costs included in the catalog
SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
-Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
-from hub.catalog_factories.data_models.cost.envelope import Envelope
-from hub.catalog_factories.data_models.cost.systems import Systems
+from typing import List
+from hub.catalog_factories.data_models.cost.chapter import Chapter
class CapitalCost:
- def __init__(self, structural, sub_structural, envelope, systems, surface_finish, engineer):
- self._structural = structural
- self._sub_structural = sub_structural
- self._envelope = envelope
- self._systems = systems
- self._surface_finish = surface_finish
- self._engineer = engineer
+ def __init__(self, general_chapters, design_allowance, overhead_and_profit):
+ self._general_chapters = general_chapters
+ self._design_allowance = design_allowance
+ self._overhead_and_profit = overhead_and_profit
@property
- def structural(self):
+ def general_chapters(self) -> List[Chapter]:
"""
- Get structural cost per building volume in currency/m3
+ Get general chapters in capital costs
+ :return: [Chapter]
+ """
+ return self._general_chapters
+
+ @property
+ def design_allowance(self):
+ """
+ Get design allowance in percentage (-)
:return: float
"""
- return self._structural
+ return self._design_allowance
@property
- def sub_structural(self):
+ def overhead_and_profit(self):
"""
- Get sub structural cost per building foot-print in currency/m2
+ Get overhead profit in percentage (-)
:return: float
"""
- return self._sub_structural
-
- @property
- def envelope(self) -> Envelope:
- """
- Get envelope cost
- :return: Envelope
- """
- return self._envelope
-
- @property
- def systems(self) -> Systems:
- """
- Get systems cost
- :return: Systems
- """
- return self._systems
-
- @property
- def surface_finish(self):
- """
- Get surface finish cost per external surfaces areas in currency/m2
- :return: float
- """
- return self._surface_finish
-
- @property
- def engineer(self):
- """
- Get engineer cost in %
- :return: float
- """
- return self._engineer
+ return self._overhead_and_profit
diff --git a/hub/catalog_factories/data_models/cost/chapter.py b/hub/catalog_factories/data_models/cost/chapter.py
new file mode 100644
index 00000000..bf393cbb
--- /dev/null
+++ b/hub/catalog_factories/data_models/cost/chapter.py
@@ -0,0 +1,32 @@
+"""
+Cost chapter description
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from typing import List
+from hub.catalog_factories.data_models.cost.item_description import ItemDescription
+
+
+class Chapter:
+ def __init__(self, chapter_type, items):
+
+ self._chapter_type = chapter_type
+ self._items = items
+
+ @property
+ def chapter_type(self):
+ """
+ Get chapter type
+ :return: str
+ """
+ return self._chapter_type
+
+ @property
+ def items(self) -> List[ItemDescription]:
+ """
+ Get list of items contained in the chapter
+ :return: [str]
+ """
+ return self._items
diff --git a/hub/catalog_factories/data_models/cost/cost_helper.py b/hub/catalog_factories/data_models/cost/cost_helper.py
new file mode 100644
index 00000000..fb0d551e
--- /dev/null
+++ b/hub/catalog_factories/data_models/cost/cost_helper.py
@@ -0,0 +1,48 @@
+"""
+Cost helper
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+import hub.helpers.constants as cte
+from typing import Dict
+
+
+class CostHelper:
+ """
+ Cost helper class
+ """
+ _costs_units = {
+ 'currency/m2': cte.CURRENCY_PER_SQM,
+ 'currency/m3': cte.CURRENCY_PER_CBM,
+ 'currency/kW': cte.CURRENCY_PER_KW,
+ 'currency/kWh': cte.CURRENCY_PER_KWH,
+ 'currency/month': cte.CURRENCY_PER_MONTH,
+ 'currency/l': cte.CURRENCY_PER_LITRE,
+ 'currency/kg': cte.CURRENCY_PER_KG,
+ 'currency/(m3/h)': cte.CURRENCY_PER_CBM_PER_HOUR,
+ '%': cte.PERCENTAGE
+ }
+
+ _chapters_in_lod1 = {
+ 'B_shell': cte.SUPERSTRUCTURE,
+ 'D_services': cte.ENVELOPE,
+ 'Z_allowances_overhead_profit': cte.ALLOWANCES_OVERHEAD_PROFIT
+ }
+
+ @property
+ def costs_units(self) -> Dict:
+ """
+ List of supported costs units
+ :return: dict
+ """
+ return self._costs_units
+
+ @property
+ def chapters_in_lod1(self) -> Dict:
+ """
+ List of chapters included in lod 1
+ :return: dict
+ """
+ return self._chapters_in_lod1
diff --git a/hub/catalog_factories/data_models/cost/envelope.py b/hub/catalog_factories/data_models/cost/envelope.py
deleted file mode 100644
index c2d2d419..00000000
--- a/hub/catalog_factories/data_models/cost/envelope.py
+++ /dev/null
@@ -1,66 +0,0 @@
-"""
-Envelope costs from Cost catalog
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
-Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
-"""
-
-
-class Envelope:
- def __init__(self, opaque_reposition, opaque_initial_investment, opaque_lifetime,
- transparent_reposition, transparent_initial_investment, transparent_lifetime):
- self._opaque_reposition = opaque_reposition
- self._opaque_initial_investment = opaque_initial_investment
- self._opaque_lifetime = opaque_lifetime
- self._transparent_reposition = transparent_reposition
- self._transparent_initial_investment = transparent_initial_investment
- self._transparent_lifetime = transparent_lifetime
-
- @property
- def opaque_reposition(self):
- """
- Get reposition costs for opaque envelope per area of external opaque surfaces in currency/m2
- :return: float
- """
- return self._opaque_reposition
-
- @property
- def opaque_initial_investment(self):
- """
- Get initial investment for opaque envelope per area of external opaque surfaces in currency/m2
- :return: float
- """
- return self._opaque_initial_investment
-
- @property
- def opaque_lifetime(self):
- """
- Get lifetime of opaque envelope in years
- :return: float
- """
- return self._opaque_lifetime
-
- @property
- def transparent_reposition(self):
- """
- Get reposition costs for transparent envelope per area of windows in currency/m2
- :return: float
- """
- return self._transparent_reposition
-
- @property
- def transparent_initial_investment(self):
- """
- Get initial investment for transparent envelope per area of windows in currency/m2
- :return: float
- """
- return self._transparent_initial_investment
-
- @property
- def transparent_lifetime(self):
- """
- Get lifetime of transparent envelope in years
- :return: float
- """
- return self._transparent_lifetime
diff --git a/hub/catalog_factories/data_models/cost/fuel.py b/hub/catalog_factories/data_models/cost/fuel.py
new file mode 100644
index 00000000..82b47477
--- /dev/null
+++ b/hub/catalog_factories/data_models/cost/fuel.py
@@ -0,0 +1,54 @@
+"""
+Cost fuel
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from typing import Union
+
+
+class Fuel:
+ def __init__(self, fuel_type,
+ fixed_monthly=None,
+ fixed_power=None,
+ variable=None,
+ variable_units=None):
+
+ self._fuel_type = fuel_type
+ self._fixed_monthly = fixed_monthly
+ self._fixed_power = fixed_power
+ self._variable = variable
+ self._variable_units = variable_units
+
+ @property
+ def type(self):
+ """
+ Get fuel type
+ :return: str
+ """
+ return self._fuel_type
+
+ @property
+ def fixed_monthly(self) -> Union[None, float]:
+ """
+ Get fixed operational costs in currency per month
+ :return: None or float
+ """
+ return self._fixed_monthly
+
+ @property
+ def fixed_power(self) -> Union[None, float]:
+ """
+ Get fixed operational costs depending on the peak power consumed in currency per month per kW
+ :return: None or float
+ """
+ return self._fixed_power
+
+ @property
+ def variable(self) -> Union[tuple[None, None], tuple[float, str]]:
+ """
+ Get variable costs in given units
+ :return: None, None or float, str
+ """
+ return self._variable, self._variable_units
diff --git a/hub/catalog_factories/data_models/cost/hvac.py b/hub/catalog_factories/data_models/cost/hvac.py
deleted file mode 100644
index 01b6c7b7..00000000
--- a/hub/catalog_factories/data_models/cost/hvac.py
+++ /dev/null
@@ -1,96 +0,0 @@
-"""
-Hvac costs
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Pilar Monsalvete Álvarez de Uribarri pilar.monsalvete@concordia.ca
-"""
-
-
-class Hvac:
- def __init__(self, heating_equipment_reposition, heating_equipment_initial_investment,
- heating_equipment_lifetime, cooling_equipment_reposition,
- cooling_equipment_initial_investment, cooling_equipment_lifetime,
- general_hvac_equipment_reposition, general_hvac_equipment_initial_investment,
- general_hvac_equipment_lifetime):
-
- self._heating_equipment_reposition = heating_equipment_reposition
- self._heating_equipment_initial_investment = heating_equipment_initial_investment
- self._heating_equipment_lifetime = heating_equipment_lifetime
- self._cooling_equipment_reposition = cooling_equipment_reposition
- self._cooling_equipment_initial_investment = cooling_equipment_initial_investment
- self._cooling_equipment_lifetime = cooling_equipment_lifetime
- self._general_hvac_equipment_reposition = general_hvac_equipment_reposition
- self._general_hvac_equipment_initial_investment = general_hvac_equipment_initial_investment
- self._general_hvac_equipment_lifetime = general_hvac_equipment_lifetime
-
- @property
- def heating_equipment_reposition(self):
- """
- Get reposition costs of heating equipment per peak-load in currency/W
- :return: float
- """
- return self._heating_equipment_reposition
-
- @property
- def heating_equipment_initial_investment(self):
- """
- Get initial investment costs of heating equipment per peak-load in currency/W
- :return: float
- """
- return self._heating_equipment_initial_investment
-
- @property
- def heating_equipment_lifetime(self):
- """
- Get lifetime of heating equipment in years
- :return: float
- """
- return self._heating_equipment_lifetime
-
- @property
- def cooling_equipment_reposition(self):
- """
- Get reposition costs of cooling equipment per peak-load in currency/W
- :return: float
- """
- return self._cooling_equipment_reposition
-
- @property
- def cooling_equipment_initial_investment(self):
- """
- Get initial investment costs of cooling equipment per peak-load in currency/W
- :return: float
- """
- return self._cooling_equipment_initial_investment
-
- @property
- def cooling_equipment_lifetime(self):
- """
- Get lifetime of cooling equipment in years
- :return: float
- """
- return self._cooling_equipment_lifetime
-
- @property
- def general_hvac_equipment_reposition(self):
- """
- Get reposition costs of general hvac equipment per peak-air-flow in currency/(m3/s)
- :return: float
- """
- return self._general_hvac_equipment_reposition
-
- @property
- def general_hvac_equipment_initial_investment(self):
- """
- Get initial investment costs of cooling equipment per peak-air-flow in currency/(m3/s)
- :return: float
- """
- return self._general_hvac_equipment_initial_investment
-
- @property
- def general_hvac_equipment_lifetime(self):
- """
- Get lifetime of cooling equipment in years
- :return: float
- """
- return self._general_hvac_equipment_lifetime
diff --git a/hub/catalog_factories/data_models/cost/income.py b/hub/catalog_factories/data_models/cost/income.py
index 9bc975f2..0a8c0442 100644
--- a/hub/catalog_factories/data_models/cost/income.py
+++ b/hub/catalog_factories/data_models/cost/income.py
@@ -1,64 +1,62 @@
"""
-Income from costs catalog
+Incomes included in the costs catalog
SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Pilar Monsalvete Álvarez de Uribarri pilar.monsalvete@concordia.ca
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
+from typing import Union
+
class Income:
- def __init__(self, construction, hvac, photovoltaic_system, electricity_exports, heat_exports, co2):
- self._construction = construction
- self._hvac = hvac
- self._photovoltaic_system = photovoltaic_system
- self._electricity_exports = electricity_exports
- self._heat_exports = heat_exports
- self._co2 = co2
+ def __init__(self, construction_subsidy=None,
+ hvac_subsidy=None,
+ photovoltaic_subsidy=None,
+ electricity_export=None,
+ reductions_tax=None):
+
+ self._construction_subsidy = construction_subsidy
+ self._hvac_subsidy = hvac_subsidy
+ self._photovoltaic_subsidy = photovoltaic_subsidy
+ self._electricity_export = electricity_export
+ self._reductions_tax = reductions_tax
@property
- def construction(self):
+ def construction_subsidy(self) -> Union[None, float]:
"""
- Get construction subsidy in % of total investment construction cost
- :return: float
+ Get subsidy for construction in percentage
+ :return: None or float
"""
- return self._construction
+ return self._construction_subsidy
@property
- def hvac(self):
+ def hvac_subsidy(self) -> Union[None, float]:
"""
- Get hvac subsidy in % of total investment HVAC cost
- :return: float
+ Get subsidy for HVAC system in percentage
+ :return: None or float
"""
- return self._hvac
+ return self._hvac_subsidy
@property
- def photovoltaic_system(self):
+ def photovoltaic_subsidy(self) -> Union[None, float]:
"""
- Get photovoltaic system subsidy in % of total investment photovoltaic cost
- :return: float
+ Get subsidy PV systems in percentage
+ :return: None or float
"""
- return self._photovoltaic_system
+ return self._photovoltaic_subsidy
@property
- def electricity_exports(self):
+ def electricity_export(self) -> Union[None, float]:
"""
- Get electricity exports gains in currency/J
- :return: float
+ Get electricity export incomes in currency per J
+ :return: None or float
"""
- return self._construction
+ return self._construction_subsidy
@property
- def heat_exports(self):
+ def reductions_tax(self) -> Union[None, float]:
"""
- Get heat exports gains in currency/J
- :return: float
+ Get reduction in taxes in percentage (-)
+ :return: None or float
"""
- return self._heat_exports
-
- @property
- def co2(self):
- """
- Get co2 income in currency/kg
- :return: float
- """
- return self._co2
+ return self._reductions_tax
diff --git a/hub/catalog_factories/data_models/cost/item_description.py b/hub/catalog_factories/data_models/cost/item_description.py
new file mode 100644
index 00000000..45b24bbb
--- /dev/null
+++ b/hub/catalog_factories/data_models/cost/item_description.py
@@ -0,0 +1,68 @@
+"""
+Cost item properties
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from typing import Union
+
+
+class ItemDescription:
+ def __init__(self, item_type,
+ initial_investment=None,
+ initial_investment_unit=None,
+ refurbishment=None,
+ refurbishment_unit=None,
+ reposition=None,
+ reposition_unit=None,
+ lifetime=None):
+
+ self._item_type = item_type
+ self._initial_investment = initial_investment
+ self._initial_investment_unit = initial_investment_unit
+ self._refurbishment = refurbishment
+ self._refurbishment_unit = refurbishment_unit
+ self._reposition = reposition
+ self._reposition_unit = reposition_unit
+ self._lifetime = lifetime
+
+ @property
+ def type(self):
+ """
+ Get item type
+ :return: str
+ """
+ return self._item_type
+
+ @property
+ def initial_investment(self) -> Union[tuple[None, None], tuple[float, str]]:
+ """
+ Get initial investment of the specific item in given units
+ :return: None, None or float, str
+ """
+ return self._initial_investment, self._initial_investment_unit
+
+ @property
+ def refurbishment(self) -> Union[tuple[None, None], tuple[float, str]]:
+ """
+ Get refurbishment costs of the specific item in given units
+ :return: None, None or float, str
+ """
+ return self._refurbishment, self._refurbishment_unit
+
+ @property
+ def reposition(self) -> Union[tuple[None, None], tuple[float, str]]:
+ """
+ Get reposition costs of the specific item in given units
+ :return: None, None or float, str
+ """
+ return self._reposition, self._reposition_unit
+
+ @property
+ def lifetime(self) -> Union[None, float]:
+ """
+ Get lifetime in years
+ :return: None or float
+ """
+ return self._lifetime
diff --git a/hub/catalog_factories/data_models/cost/operational_cost.py b/hub/catalog_factories/data_models/cost/operational_cost.py
index b1a7b3aa..f7cbcc6f 100644
--- a/hub/catalog_factories/data_models/cost/operational_cost.py
+++ b/hub/catalog_factories/data_models/cost/operational_cost.py
@@ -1,104 +1,58 @@
"""
-Cost catalog OperationalCost
+Operational costs included in the catalog
SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
-Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
+from typing import List
+from hub.catalog_factories.data_models.cost.fuel import Fuel
+
class OperationalCost:
- def __init__(self, fuel_type, fuel_fixed_operational_monthly, fuel_fixed_operational_peak,
- fuel_variable_operational, heating_equipment_maintenance, cooling_equipment_maintenance,
- general_hvac_equipment_maintenance, photovoltaic_system_maintenance, other_systems_maintenance,
- co2_emissions):
- self._fuel_type = fuel_type
- self._fuel_fixed_operational_monthly = fuel_fixed_operational_monthly
- self._fuel_fixed_operational_peak = fuel_fixed_operational_peak
- self._fuel_variable_operational = fuel_variable_operational
- self._heating_equipment_maintenance = heating_equipment_maintenance
- self._cooling_equipment_maintenance = cooling_equipment_maintenance
- self._general_hvac_equipment_maintenance = general_hvac_equipment_maintenance
- self._photovoltaic_system_maintenance = photovoltaic_system_maintenance
- self._other_systems_maintenance = other_systems_maintenance
- self._co2_emissions = co2_emissions
+ def __init__(self, fuels, maintenance_heating, maintenance_cooling, maintenance_pv, co2):
+ self._fuels = fuels
+ self._maintenance_heating = maintenance_heating
+ self._maintenance_cooling = maintenance_cooling
+ self._maintenance_pv = maintenance_pv
+ self._co2 = co2
@property
- def fuel_type(self):
+ def fuels(self) -> List[Fuel]:
"""
- Get fuel type
- :return: string
+ Get fuels listed in capital costs
+ :return: [FUEL]
"""
- return self._fuel_type
+ return self._fuels
@property
- def fuel_fixed_operational_monthly(self):
+ def maintenance_heating(self):
"""
- Get fuel fixed operational cost in currency/month
+ Get cost of maintaining the heating system in currency/W
:return: float
"""
- return self._fuel_fixed_operational_monthly
+ return self._maintenance_heating
@property
- def fuel_fixed_operational_peak(self):
+ def maintenance_cooling(self):
"""
- Get fuel fixed operational cost per peak power in currency/W
+ Get cost of maintaining the cooling system in currency/W
:return: float
"""
- return self._fuel_fixed_operational_peak
+ return self._maintenance_cooling
@property
- def fuel_variable_operational(self):
+ def maintenance_pv(self):
"""
- Get fuel variable operational cost in currency/J
+ Get cost of maintaining the PV system in currency/m2
:return: float
"""
- return self._fuel_variable_operational
+ return self._maintenance_pv
@property
- def heating_equipment_maintenance(self):
+ def co2(self):
"""
- Get heating equipment maintenance cost per peak power in currency/W
+ Get cost of CO2 emissions in currency/kgCO2
:return: float
"""
- return self._heating_equipment_maintenance
-
- @property
- def cooling_equipment_maintenance(self):
- """
- Get cooling equipment maintenance cost per peak power in currency/W
- :return: float
- """
- return self._cooling_equipment_maintenance
-
- @property
- def general_hvac_equipment_maintenance(self):
- """
- Get general hvac equipment maintenance cost per peak-air-flow in currency/(m3/s)
- :return: float
- """
- return self._general_hvac_equipment_maintenance
-
- @property
- def photovoltaic_system_maintenance(self):
- """
- Get photovoltaic system maintenance cost per panels area in currency/m2
- :return: float
- """
- return self._photovoltaic_system_maintenance
-
- @property
- def other_systems_maintenance(self):
- """
- Get other systems' maintenance cost per building's foot-print area in currency/m2
- :return: float
- """
- return self._other_systems_maintenance
-
- @property
- def co2_emissions(self):
- """
- Get CO2 emissions cost in currency/kg
- :return: float
- """
- return self._co2_emissions
+ return self._co2
diff --git a/hub/catalog_factories/data_models/cost/systems.py b/hub/catalog_factories/data_models/cost/systems.py
deleted file mode 100644
index 7f2dc34e..00000000
--- a/hub/catalog_factories/data_models/cost/systems.py
+++ /dev/null
@@ -1,106 +0,0 @@
-"""
-Systems cost catalog
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
-Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
-"""
-
-from hub.catalog_factories.data_models.cost.hvac import Hvac
-
-
-class Systems:
- def __init__(self, hvac, photovoltaic_system_reposition, photovoltaic_system_initial_investment,
- photovoltaic_system_lifetime, other_conditioning_systems_reposition,
- other_conditioning_systems_initial_investment, other_conditioning_systems_lifetime,
- lighting_reposition, lighting_initial_investment, lighting_lifetime):
- self._hvac = hvac
- self._photovoltaic_system_reposition = photovoltaic_system_reposition
- self._photovoltaic_system_initial_investment = photovoltaic_system_initial_investment
- self._photovoltaic_system_lifetime = photovoltaic_system_lifetime
- self._other_conditioning_systems_reposition = other_conditioning_systems_reposition
- self._other_conditioning_systems_initial_investment = other_conditioning_systems_initial_investment
- self._other_conditioning_systems_lifetime = other_conditioning_systems_lifetime
- self._lighting_reposition = lighting_reposition
- self._lighting_initial_investment = lighting_initial_investment
- self._lighting_lifetime = lighting_lifetime
-
- @property
- def hvac(self) -> Hvac:
- """
- Get hvac capital cost
- :return: Hvac
- """
- return self._hvac
-
- @property
- def photovoltaic_system_reposition(self):
- """
- Get photovoltaic system reposition cost per area of panels in currency/m2
- :return: float
- """
- return self._photovoltaic_system_reposition
-
- @property
- def photovoltaic_system_initial_investment(self):
- """
- Get photovoltaic system initial investment per area of panels in currency/m2
- :return: float
- """
- return self._photovoltaic_system_initial_investment
-
- @property
- def photovoltaic_system_lifetime(self):
- """
- Get photovoltaic system lifetime in years
- :return: float
- """
- return self._photovoltaic_system_lifetime
-
- @property
- def other_conditioning_systems_reposition(self):
- """
- Get other conditioning systems reposition cost per building's foot-print area in currency/m2
- :return: float
- """
- return self._other_conditioning_systems_reposition
-
- @property
- def other_conditioning_systems_initial_investment(self):
- """
- Get other conditioning systems initial investment per building's foot-print area in currency/m2
- :return: float
- """
- return self._other_conditioning_systems_initial_investment
-
- @property
- def other_conditioning_systems_lifetime(self):
- """
- Get other conditioning systems lifetime in years
- :return: float
- """
- return self._other_conditioning_systems_lifetime
-
- @property
- def lighting_reposition(self):
- """
- Get lighting reposition cost per building's foot-print area in currency/m2
- :return: float
- """
- return self._lighting_reposition
-
- @property
- def lighting_initial_investment(self):
- """
- Get lighting initial investment per building's foot-print area in currency/m2
- :return: float
- """
- return self._lighting_initial_investment
-
- @property
- def lighting_lifetime(self):
- """
- Get lighting lifetime in years
- :return: float
- """
- return self._lighting_lifetime
diff --git a/hub/catalog_factories/data_models/usages/domestic_hot_water.py b/hub/catalog_factories/data_models/usages/domestic_hot_water.py
index edf4b8ab..a34a4c65 100644
--- a/hub/catalog_factories/data_models/usages/domestic_hot_water.py
+++ b/hub/catalog_factories/data_models/usages/domestic_hot_water.py
@@ -14,8 +14,9 @@ class DomesticHotWater:
"""
DomesticHotWater class
"""
- def __init__(self, density, service_temperature, schedules):
+ def __init__(self, density, peak_flow, service_temperature, schedules):
self._density = density
+ self._peak_flow = peak_flow
self._service_temperature = service_temperature
self._schedules = schedules
@@ -27,6 +28,14 @@ class DomesticHotWater:
"""
return self._density
+ @property
+ def peak_flow(self) -> Union[None, float]:
+ """
+ Get domestic hot water peak_flow density in m3 per second and m2
+ :return: None or float
+ """
+ return self._peak_flow
+
@property
def service_temperature(self) -> Union[None, float]:
"""
diff --git a/hub/catalog_factories/usage/comnet_catalog.py b/hub/catalog_factories/usage/comnet_catalog.py
index 2c267477..7c226722 100644
--- a/hub/catalog_factories/usage/comnet_catalog.py
+++ b/hub/catalog_factories/usage/comnet_catalog.py
@@ -104,6 +104,7 @@ class ComnetCatalog(Catalog):
density = float(density) * cte.BTU_H_TO_WATTS * occupancy_density
domestic_hot_water_service_temperature = self._schedules[schedule_name]['WtrHtrSetPt'][0].values[0]
domestic_hot_water = DomesticHotWater(density,
+ None,
domestic_hot_water_service_temperature,
self._schedules[schedule_name]['Service Hot Water']
)
diff --git a/hub/catalog_factories/usage/nrcan_catalog.py b/hub/catalog_factories/usage/nrcan_catalog.py
index a7e8dda9..8caf9d10 100644
--- a/hub/catalog_factories/usage/nrcan_catalog.py
+++ b/hub/catalog_factories/usage/nrcan_catalog.py
@@ -53,7 +53,7 @@ class NrcanCatalog(Catalog):
def _load_schedules(self):
usage = self._metadata['nrcan']
- url = f'{self._base_url}{usage["schedules_location"]}'
+ url = f'{self._base_url}{usage["schedules"]}'
_schedule_types = []
with urllib.request.urlopen(url) as json_file:
schedules_type = json.load(json_file)
@@ -76,14 +76,40 @@ class NrcanCatalog(Catalog):
def _load_archetypes(self):
usages = []
name = self._metadata['nrcan']
- url = f'{self._base_url}{name["space_types_location"]}'
- with urllib.request.urlopen(url) as json_file:
+ url_1 = f'{self._base_url}{name["space_types"]}'
+ url_2 = f'{self._base_url}{name["space_types_compliance"]}'
+ with urllib.request.urlopen(url_1) as json_file:
space_types = json.load(json_file)['tables']['space_types']['table']
-# space_types = [st for st in space_types if st['building_type'] == 'Space Function']
space_types = [st for st in space_types if st['space_type'] == 'WholeBuilding']
- for space_type in space_types:
-# usage_type = space_type['space_type']
+ with urllib.request.urlopen(url_2) as json_file:
+ space_types_compliance = json.load(json_file)['tables']['space_compliance']['table']
+ space_types_compliance = [st for st in space_types_compliance if st['space_type'] == 'WholeBuilding']
+ space_types_dictionary = {}
+ for space_type in space_types_compliance:
usage_type = space_type['building_type']
+ # people/m2
+ occupancy_density = space_type['occupancy_per_area_people_per_m2']
+ # W/m2
+ lighting_density = space_type['lighting_per_area_w_per_m2']
+ # W/m2
+ appliances_density = space_type['electric_equipment_per_area_w_per_m2']
+ # peak flow in gallons/h/m2
+ domestic_hot_water_peak_flow = space_type['service_water_heating_peak_flow_per_area'] \
+ * cte.GALLONS_TO_QUBIC_METERS / cte.HOUR_TO_SECONDS
+ space_types_dictionary[usage_type] = {'occupancy_per_area': occupancy_density,
+ 'lighting_per_area': lighting_density,
+ 'electric_equipment_per_area': appliances_density,
+ 'service_water_heating_peak_flow_per_area': domestic_hot_water_peak_flow
+ }
+
+ for space_type in space_types:
+ usage_type = space_type['building_type']
+ space_type_compliance = space_types_dictionary[usage_type]
+ occupancy_density = space_type_compliance['occupancy_per_area']
+ lighting_density = space_type_compliance['lighting_per_area']
+ appliances_density = space_type_compliance['electric_equipment_per_area']
+ domestic_hot_water_peak_flow = space_type_compliance['service_water_heating_peak_flow_per_area']
+
occupancy_schedule_name = space_type['occupancy_schedule']
lighting_schedule_name = space_type['lighting_schedule']
appliance_schedule_name = space_type['electric_equipment_schedule']
@@ -101,40 +127,27 @@ class NrcanCatalog(Catalog):
hvac_availability = self._get_schedules(hvac_schedule_name)
domestic_hot_water_load_schedule = self._get_schedules(domestic_hot_water_schedule_name)
- occupancy_density = space_type['occupancy_per_area']
-
# ACH
mechanical_air_change = space_type['ventilation_air_changes']
# cfm/ft2 to m3/m2.s
ventilation_rate = space_type['ventilation_per_area'] / (cte.METERS_TO_FEET * cte.MINUTES_TO_SECONDS)
if ventilation_rate == 0:
# cfm/person to m3/m2.s
- ventilation_rate = space_type['ventilation_per_person'] / occupancy_density\
- / (cte.METERS_TO_FEET * cte.MINUTES_TO_SECONDS)
+ ventilation_rate = space_type['ventilation_per_person'] / (cte.METERS_TO_FEET * cte.MINUTES_TO_SECONDS)\
+ / occupancy_density
- # W/sqft to W/m2
- lighting_density = space_type['lighting_per_area'] * cte.METERS_TO_FEET * cte.METERS_TO_FEET
lighting_radiative_fraction = space_type['lighting_fraction_radiant']
lighting_convective_fraction = 0
if lighting_radiative_fraction is not None:
lighting_convective_fraction = 1 - lighting_radiative_fraction
lighting_latent_fraction = 0
- # W/sqft to W/m2
- appliances_density = space_type['electric_equipment_per_area'] * cte.METERS_TO_FEET * cte.METERS_TO_FEET
appliances_radiative_fraction = space_type['electric_equipment_fraction_radiant']
appliances_latent_fraction = space_type['electric_equipment_fraction_latent']
appliances_convective_fraction = 0
if appliances_radiative_fraction is not None and appliances_latent_fraction is not None:
appliances_convective_fraction = 1 - appliances_radiative_fraction - appliances_latent_fraction
- # peak flow in m3/day/m2
- domestic_hot_water_peak_flow = space_type['service_water_heating_peak_flow_per_area']
domestic_hot_water_service_temperature = space_type['service_water_heating_target_temperature']
- average_domestic_hot_water_inlet_temperature = 16.5
- # result in W/m2
- domestic_hot_water_density = domestic_hot_water_peak_flow / 24 / 3.6 * 4184 \
- * (domestic_hot_water_service_temperature -
- average_domestic_hot_water_inlet_temperature)
occupancy = Occupancy(occupancy_density,
None,
@@ -157,7 +170,8 @@ class NrcanCatalog(Catalog):
hvac_availability,
heating_schedule,
cooling_schedule)
- domestic_hot_water = DomesticHotWater(domestic_hot_water_density,
+ domestic_hot_water = DomesticHotWater(None,
+ domestic_hot_water_peak_flow,
domestic_hot_water_service_temperature,
domestic_hot_water_load_schedule)
diff --git a/hub/city_model_structure/attributes/polygon.py b/hub/city_model_structure/attributes/polygon.py
index 2755d399..c98289be 100644
--- a/hub/city_model_structure/attributes/polygon.py
+++ b/hub/city_model_structure/attributes/polygon.py
@@ -26,8 +26,6 @@ class Polygon:
"""
Polygon class
"""
- # todo: review with @Guille: Points, Coordinates, Vertices, Faces
-
def __init__(self, coordinates):
self._area = None
self._points = None
@@ -152,6 +150,10 @@ class Polygon:
self._area += np.linalg.norm(np.cross(ab, ac)) / 2
return self._area
+ @area.setter
+ def area(self, value):
+ self._area = value
+
@property
def normal(self) -> np.ndarray:
"""
diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py
index d5129142..327cc0c7 100644
--- a/hub/city_model_structure/building.py
+++ b/hub/city_model_structure/building.py
@@ -38,6 +38,7 @@ class Building(CityObject):
self._shell = None
self._alias = None
self._type = 'building'
+ self._cold_water_temperature = dict()
self._heating = dict()
self._cooling = dict()
self._lighting_electrical_demand = dict()
@@ -265,6 +266,22 @@ class Building(CityObject):
if value is not None:
self._storeys_above_ground = int(value)
+ @property
+ def cold_water_temperature(self) -> {float}:
+ """
+ Get cold water temperature in degrees Celsius
+ :return: dict{DataFrame(float)}
+ """
+ return self._cold_water_temperature
+
+ @cold_water_temperature.setter
+ def cold_water_temperature(self, value):
+ """
+ Set cold water temperature in degrees Celsius
+ :param value: dict{DataFrame(float)}
+ """
+ self._cold_water_temperature = value
+
@property
def heating(self) -> dict:
"""
diff --git a/hub/city_model_structure/building_demand/domestic_hot_water.py b/hub/city_model_structure/building_demand/domestic_hot_water.py
index f48bf68a..d91977e5 100644
--- a/hub/city_model_structure/building_demand/domestic_hot_water.py
+++ b/hub/city_model_structure/building_demand/domestic_hot_water.py
@@ -14,6 +14,7 @@ class DomesticHotWater:
"""
def __init__(self):
self._density = None
+ self._peak_flow = None
self._service_temperature = None
self._schedules = None
@@ -34,6 +35,22 @@ class DomesticHotWater:
if value is not None:
self._density = float(value)
+ @property
+ def peak_flow(self) -> Union[None, float]:
+ """
+ Get domestic hot water peak_flow density in m3 per second and m2
+ :return: None or float
+ """
+ return self._peak_flow
+
+ @peak_flow.setter
+ def peak_flow(self, value):
+ """
+ Set domestic hot water peak_flow density in m3 per second and m2
+ :return: None or float
+ """
+ self._peak_flow = value
+
@property
def service_temperature(self) -> Union[None, float]:
"""
diff --git a/hub/city_model_structure/building_demand/thermal_zone.py b/hub/city_model_structure/building_demand/thermal_zone.py
index 667c0631..65b40b29 100644
--- a/hub/city_model_structure/building_demand/thermal_zone.py
+++ b/hub/city_model_structure/building_demand/thermal_zone.py
@@ -600,11 +600,14 @@ class ThermalZone:
"""
self._domestic_hot_water = DomesticHotWater()
_mean_peak_density_load = 0
+ _mean_peak_flow = 0
_mean_service_temperature = 0
for usage in self.usages:
_mean_peak_density_load += usage.percentage * usage.domestic_hot_water.density
+ _mean_peak_flow += usage.percentage * usage.domestic_hot_water.peak_flow
_mean_service_temperature += usage.percentage * usage.domestic_hot_water.service_temperature
self._domestic_hot_water.density = _mean_peak_density_load
+ self._domestic_hot_water.peak_flow = _mean_peak_flow
self._domestic_hot_water.service_temperature = _mean_service_temperature
_domestic_hot_water_reference = self.usages[0].domestic_hot_water
diff --git a/hub/city_model_structure/building_demand/usage_zone.py b/hub/city_model_structure/building_demand/usage_zone.py
deleted file mode 100644
index 6357cff8..00000000
--- a/hub/city_model_structure/building_demand/usage_zone.py
+++ /dev/null
@@ -1,250 +0,0 @@
-"""
-UsageZone module
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
-Code contributors: Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
-"""
-import uuid
-from typing import Union, List
-import hub.helpers.constants as cte
-from hub.city_model_structure.building_demand.occupancy import Occupancy
-from hub.city_model_structure.building_demand.lighting import Lighting
-from hub.city_model_structure.building_demand.appliances import Appliances
-from hub.city_model_structure.building_demand.thermal_control import ThermalControl
-from hub.city_model_structure.building_demand.internal_gain import InternalGain
-
-
-class UsageZone:
- """
- UsageZone class
- """
- def __init__(self):
- self._id = None
- self._usage = None
- self._percentage = None
- self._internal_gains = None
- self._hours_day = None
- self._days_year = None
- self._mechanical_air_change = None
- self._occupancy = None
- self._lighting = None
- self._appliances = None
- self._thermal_control = None
-
- @property
- def id(self):
- """
- Get usage zone id, a universally unique identifier randomly generated
- :return: str
- """
- if self._id is None:
- self._id = uuid.uuid4()
- return self._id
-
- @property
- def usage(self) -> Union[None, str]:
- """
- Get usage zone usage
- :return: None or str
- """
- return self._usage
-
- @usage.setter
- def usage(self, value):
- """
- Set usage zone usage
- :param value: str
- """
- if value is not None:
- self._usage = str(value)
-
- @property
- def percentage(self):
- """
- Get usage zone percentage in range[0,1]
- :return: float
- """
- return self._percentage
-
- @percentage.setter
- def percentage(self, value):
- """
- Set usage zone percentage in range[0,1]
- :param value: float
- """
- if value is not None:
- self._percentage = float(value)
-
- @property
- def internal_gains(self) -> List[InternalGain]:
- """
- Calculates and returns the list of all internal gains defined
- :return: InternalGains
- """
- if self._internal_gains is None:
- if self.occupancy is not None:
- if self.occupancy.latent_internal_gain is not None:
- _internal_gain = InternalGain()
- _internal_gain.type = cte.OCCUPANCY
- _total_heat_gain = (self.occupancy.sensible_convective_internal_gain
- + self.occupancy.sensible_radiative_internal_gain
- + self.occupancy.latent_internal_gain)
- _internal_gain.average_internal_gain = _total_heat_gain
- _internal_gain.latent_fraction = 0
- _internal_gain.radiative_fraction = 0
- _internal_gain.convective_fraction = 0
- if _total_heat_gain != 0:
- _internal_gain.latent_fraction = self.occupancy.latent_internal_gain / _total_heat_gain
- _internal_gain.radiative_fraction = self.occupancy.sensible_radiative_internal_gain / _total_heat_gain
- _internal_gain.convective_fraction = self.occupancy.sensible_convective_internal_gain / _total_heat_gain
- _internal_gain.schedules = self.occupancy.occupancy_schedules
- self._internal_gains = [_internal_gain]
- if self.lighting is not None:
- _internal_gain = InternalGain()
- _internal_gain.type = cte.LIGHTING
- _internal_gain.average_internal_gain = self.lighting.density
- _internal_gain.latent_fraction = self.lighting.latent_fraction
- _internal_gain.radiative_fraction = self.lighting.radiative_fraction
- _internal_gain.convective_fraction = self.lighting.convective_fraction
- _internal_gain.schedules = self.lighting.schedules
- if self._internal_gains is not None:
- self._internal_gains.append(_internal_gain)
- else:
- self._internal_gains = [_internal_gain]
- if self.appliances is not None:
- _internal_gain = InternalGain()
- _internal_gain.type = cte.APPLIANCES
- _internal_gain.average_internal_gain = self.appliances.density
- _internal_gain.latent_fraction = self.appliances.latent_fraction
- _internal_gain.radiative_fraction = self.appliances.radiative_fraction
- _internal_gain.convective_fraction = self.appliances.convective_fraction
- _internal_gain.schedules = self.appliances.schedules
- if self._internal_gains is not None:
- self._internal_gains.append(_internal_gain)
- else:
- self._internal_gains = [_internal_gain]
- return self._internal_gains
-
- @internal_gains.setter
- def internal_gains(self, value):
- """
- Set usage zone internal gains
- :param value: [InternalGain]
- """
- self._internal_gains = value
-
- @property
- def hours_day(self) -> Union[None, float]:
- """
- Get usage zone usage hours per day
- :return: None or float
- """
- return self._hours_day
-
- @hours_day.setter
- def hours_day(self, value):
- """
- Set usage zone usage hours per day
- :param value: float
- """
- if value is not None:
- self._hours_day = float(value)
-
- @property
- def days_year(self) -> Union[None, float]:
- """
- Get usage zone usage days per year
- :return: None or float
- """
- return self._days_year
-
- @days_year.setter
- def days_year(self, value):
- """
- Set usage zone usage days per year
- :param value: float
- """
- if value is not None:
- self._days_year = float(value)
-
- @property
- def mechanical_air_change(self) -> Union[None, float]:
- """
- Get usage zone mechanical air change in air change per hour (ACH)
- :return: None or float
- """
- return self._mechanical_air_change
-
- @mechanical_air_change.setter
- def mechanical_air_change(self, value):
- """
- Set usage zone mechanical air change in air change per hour (ACH)
- :param value: float
- """
- if value is not None:
- self._mechanical_air_change = float(value)
-
- @property
- def occupancy(self) -> Union[None, Occupancy]:
- """
- Get occupancy in the usage zone
- :return: None or Occupancy
- """
- return self._occupancy
-
- @occupancy.setter
- def occupancy(self, value):
- """
- Set occupancy in the usage zone
- :param value: Occupancy
- """
- self._occupancy = value
-
- @property
- def lighting(self) -> Union[None, Lighting]:
- """
- Get lighting information
- :return: None or Lighting
- """
- return self._lighting
-
- @lighting.setter
- def lighting(self, value):
- """
- Set lighting information
- :param value: Lighting
- """
- self._lighting = value
-
- @property
- def appliances(self) -> Union[None, Appliances]:
- """
- Get appliances information
- :return: None or Appliances
- """
- return self._appliances
-
- @appliances.setter
- def appliances(self, value):
- """
- Set appliances information
- :param value: Appliances
- """
- self._appliances = value
-
- @property
- def thermal_control(self) -> Union[None, ThermalControl]:
- """
- Get thermal control of this thermal zone
- :return: None or ThermalControl
- """
- return self._thermal_control
-
- @thermal_control.setter
- def thermal_control(self, value):
- """
- Set thermal control for this thermal zone
- :param value: ThermalControl
- """
- self._thermal_control = value
diff --git a/hub/city_model_structure/city.py b/hub/city_model_structure/city.py
index 1aebd170..987a47e1 100644
--- a/hub/city_model_structure/city.py
+++ b/hub/city_model_structure/city.py
@@ -41,7 +41,7 @@ class City:
self._name = None
self._lower_corner = lower_corner
self._upper_corner = upper_corner
- self._buildings = None
+ self._buildings = []
self._srs_name = srs_name
self._location = None
self._country_code = None
@@ -60,6 +60,7 @@ class City:
self._stations = []
self._lca_materials = None
self._level_of_detail = LevelOfDetail()
+ self._city_objects_dictionary = {}
@property
def fuels(self) -> [Fuel]:
@@ -198,9 +199,8 @@ class City:
:param name:str
:return: None or CityObject
"""
- for city_object in self.buildings:
- if str(city_object.name) == str(name):
- return city_object
+ if name in self._city_objects_dictionary:
+ return self.buildings[self._city_objects_dictionary[name]]
return None
def add_city_object(self, new_city_object):
@@ -213,6 +213,7 @@ class City:
if self._buildings is None:
self._buildings = []
self._buildings.append(new_city_object)
+ self._city_objects_dictionary[new_city_object.name] = len(self._buildings) - 1
elif new_city_object.type == 'energy_system':
if self._energy_systems is None:
self._energy_systems = []
@@ -233,6 +234,10 @@ class City:
else:
if city_object in self._buildings:
self._buildings.remove(city_object)
+ # regenerate hash map
+ self._city_objects_dictionary.clear()
+ for i, city_object in enumerate(self._buildings):
+ self._city_objects_dictionary[city_object.name] = i
@property
def srs_name(self) -> Union[None, str]:
@@ -459,6 +464,7 @@ class City:
for surface in city_object.surfaces:
radiation = surface.global_irradiance
if 'year' not in radiation and 'month' not in radiation:
+
continue
elif "year" in radiation:
building_radiation += radiation["year"].iloc[0]
@@ -468,11 +474,11 @@ class City:
if building_radiation < min_radiation:
min_radiation = building_radiation
selected_city_object = city_object
- # merge the city object with the minimum radiation
- if selected_city_object is not None:
- _merge_city.add_city_object(selected_city_object)
- else:
- _merge_city.add_city_object(building)
+ # merge the city object with the minimum radiation
+ if selected_city_object is not None:
+ _merge_city.add_city_object(selected_city_object)
+ else:
+ _merge_city.add_city_object(building)
return _merge_city
@property
diff --git a/hub/city_model_structure/city_object.py b/hub/city_model_structure/city_object.py
index ab50250c..234c50b4 100644
--- a/hub/city_model_structure/city_object.py
+++ b/hub/city_model_structure/city_object.py
@@ -34,7 +34,9 @@ class CityObject:
self._max_y = ConfigurationHelper().min_coordinate
self._max_z = ConfigurationHelper().min_coordinate
self._centroid = None
+ self._volume = None
self._external_temperature = dict()
+ self._ground_temperature = dict()
self._global_horizontal = dict()
self._diffuse = dict()
self._beam = dict()
@@ -63,7 +65,13 @@ class CityObject:
Get city object volume in cubic meters
:return: float
"""
- return self.simplified_polyhedron.volume
+ if self._volume is None:
+ self._volume = self.simplified_polyhedron.volume
+ return self._volume
+
+ @volume.setter
+ def volume(self, value):
+ self._volume = value
@property
def detailed_polyhedron(self) -> Polyhedron:
@@ -158,6 +166,24 @@ class CityObject:
"""
self._external_temperature = value
+ # todo: this is the new format we will use to get rid of the data frames
+ @property
+ def ground_temperature(self) -> dict:
+ """
+ Get ground temperature under the city object in Celsius at different depths in meters for different time steps
+ example of use: {month: {0.5: [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]}}
+ :return: dict{dict{[float]}}
+ """
+ return self._ground_temperature
+
+ @ground_temperature.setter
+ def ground_temperature(self, value):
+ """
+ Set ground temperature under the city object in Celsius at different depths
+ :param value: dict{dict{[float]}}
+ """
+ self._ground_temperature = value
+
@property
def global_horizontal(self) -> dict:
"""
diff --git a/hub/config/configuration.ini b/hub/config/configuration.ini
index 58bf8d87..4ae34882 100644
--- a/hub/config/configuration.ini
+++ b/hub/config/configuration.ini
@@ -1,6 +1,5 @@
# These values are intended as configurable assumptions
[buildings]
-max_location_distance_for_shared_walls = 5.0
min_coordinate = -1.7976931348623157e+308
max_coordinate = 1.7976931348623157e+308
comnet_lighting_latent = 0
@@ -17,4 +16,8 @@ convective_heat_transfer_coefficient_exterior = 20
#W/mK
soil_conductivity = 3
#m
-soil_thickness = 0.5
\ No newline at end of file
+soil_thickness = 0.5
+short_wave_reflectance = 0.3
+
+#C
+cold_water_temperature = 10
\ No newline at end of file
diff --git a/hub/data/costs/montreal_costs.xml b/hub/data/costs/montreal_costs.xml
index 8cb0f0da..6a30e95f 100644
--- a/hub/data/costs/montreal_costs.xml
+++ b/hub/data/costs/montreal_costs.xml
@@ -1,89 +1,202 @@
-
+
+ CAD
- 56
- 9.8
-
-
- 43.4
- 36
- 50
-
-
- 78
- 984.5
- 20
-
-
-
-
-
- 363.5
- 363.5
+
+
+ 0
+
+
+
+ 304
+
+
+ 857.14
+
+
+
+
+ 118
+
+
+
+
+
+
+
+ 800
+ 800
+ 25
+
+
+
+ 622.86
+ 622.86
+ 25
+
+
+ 622.86
+ 622.86
15
-
-
- 363.5
- 363.5
+
+
+ 0
+ 0
15
-
-
- 363.5
- 363.5
+
+
+ 47.62
+ 47.62
15
-
-
-
- 17
- 17
- 15
-
-
- 365
- 365
- 15
-
-
- 365
- 365
- 15
-
-
- 88
- 2.5
+
+
+
+
+ 139
+ 139
+ 20
+
+
+
+
+ 2.5
+ 14
+
-
-
- 0
- 0
-
- 5.6
-
-
- 40
- 40
- 0.05
- 1
- 4.6
-
- 30
+
+
+ 12.27
+ 0
+ 0.075
+
+
+ 17.71
+ 0.640
+
+
+ 1.2
+
+
+ 0.09
+
+
+
+ 40
+ 40
+ 1
+
+ 30
6.3
-
- 2
- 1.5
- 3.6
-
-
- 0
- 0
-
-
- 2
-
- 0
+
+ 2
+ 1.5
+ 3.6
+
+ 0
+ 2
-
+
+ CAD
+
+
+
+ 0
+
+
+
+ 304
+
+
+ 857.14
+
+
+
+
+ 118
+
+
+
+
+
+
+
+ 800
+ 800
+ 25
+
+
+
+ 622.86
+ 622.86
+ 25
+
+
+ 622.86
+ 622.86
+ 15
+
+
+ 0
+ 0
+ 15
+
+
+ 47.62
+ 47.62
+ 15
+
+
+
+
+ 139
+ 139
+ 20
+
+
+
+
+ 6
+ 14
+
+
+
+
+
+ 12.27
+ 0
+ 0.075
+
+
+ 17.71
+ 0.640
+
+
+ 1.2
+
+
+ 0.09
+
+
+
+ 40
+ 40
+ 1
+
+ 30
+
+ 6.3
+
+
+ 2
+ 1.5
+ 3.6
+
+ 0
+ 2
+
+
+
\ No newline at end of file
diff --git a/hub/data/usage/nrcan.xml b/hub/data/usage/nrcan.xml
index dfcbf90a..9fb644b0 100644
--- a/hub/data/usage/nrcan.xml
+++ b/hub/data/usage/nrcan.xml
@@ -1,5 +1,6 @@
- NECB2020/data/space_types.json
- NECB2015/data/schedules.json
+ NECB2015/data/space_types.json
+ NECB2015/qaqc/qaqc_data/space_compliance_2015.json>
+ NECB2015/data/schedules.json
\ No newline at end of file
diff --git a/hub/exports/building_energy/idf.py b/hub/exports/building_energy/idf.py
index b4a63a7d..0c97cbdd 100644
--- a/hub/exports/building_energy/idf.py
+++ b/hub/exports/building_energy/idf.py
@@ -187,6 +187,8 @@ class Idf:
def _add_infiltration_schedules(self, thermal_zone):
_infiltration_schedules = []
+ if thermal_zone.thermal_control is None:
+ return
for hvac_availability_schedule in thermal_zone.thermal_control.hvac_availability_schedules:
_schedule = Schedule()
_schedule.type = cte.INFILTRATION
@@ -337,13 +339,17 @@ class Idf:
)
def _add_infiltration(self, thermal_zone, zone_name):
+
for zone in self._idf.idfobjects["ZONE"]:
if zone.Name == f'{zone_name}_infiltration':
return
+ schedule = f'Infiltration schedules {thermal_zone.usage_name}'
+ if schedule not in self._idf.idfobjects[self._HOURLY_SCHEDULE]:
+ return
self._idf.newidfobject(self._INFILTRATION,
Name=f'{zone_name}_infiltration',
Zone_or_ZoneList_Name=zone_name,
- Schedule_Name=f'Infiltration schedules {thermal_zone.usage_name}',
+ Schedule_Name=schedule,
Design_Flow_Rate_Calculation_Method='AirChanges/Hour',
Air_Changes_per_Hour=thermal_zone.mechanical_air_change
)
@@ -378,6 +384,8 @@ class Idf:
self._lod = self._city.level_of_detail.geometry
for building in self._city.buildings:
for internal_zone in building.internal_zones:
+ if internal_zone.thermal_zones is None:
+ continue
for thermal_zone in internal_zone.thermal_zones:
for thermal_boundary in thermal_zone.thermal_boundaries:
self._add_construction(thermal_boundary)
@@ -388,19 +396,26 @@ class Idf:
usage = thermal_zone.usage_name
if building.name in self._target_buildings or building.name in self._adjacent_buildings:
self._add_infiltration_schedules(thermal_zone)
- self._add_schedules(usage, 'Occupancy', thermal_zone.occupancy.occupancy_schedules)
- self._add_schedules(usage, 'HVAC AVAIL', thermal_zone.thermal_control.hvac_availability_schedules)
- self._add_schedules(usage, 'Heating thermostat', thermal_zone.thermal_control.heating_set_point_schedules)
- self._add_schedules(usage, 'Cooling thermostat', thermal_zone.thermal_control.cooling_set_point_schedules)
- self._add_people_activity_level_schedules(thermal_zone)
+ if thermal_zone.occupancy is not None:
+ self._add_schedules(usage, 'Occupancy', thermal_zone.occupancy.occupancy_schedules)
+ self._add_people_activity_level_schedules(thermal_zone)
+ self._add_occupancy(thermal_zone, building.name)
+
+ if thermal_zone.thermal_control is not None:
+ self._add_schedules(usage, 'HVAC AVAIL', thermal_zone.thermal_control.hvac_availability_schedules)
+ self._add_schedules(usage, 'Heating thermostat', thermal_zone.thermal_control.heating_set_point_schedules)
+ self._add_schedules(usage, 'Cooling thermostat', thermal_zone.thermal_control.cooling_set_point_schedules)
self._add_zone(thermal_zone, building.name)
self._add_heating_system(thermal_zone, building.name)
self._add_infiltration(thermal_zone, building.name)
- self._add_occupancy(thermal_zone, building.name)
+
if self._export_type == "Surfaces":
if building.name in self._target_buildings or building.name in self._adjacent_buildings:
- self._add_surfaces(building, building.name)
+ if building.internal_zones[0].thermal_zones is not None:
+ self._add_surfaces(building, building.name)
+ else:
+ self._add_pure_geometry(building, building.name)
else:
self._add_shading(building)
else:
@@ -478,7 +493,34 @@ class Idf:
Diffuse_Solar_Reflectance_of_Unglazed_Part_of_Shading_Surface=solar_reflectance,
Fraction_of_Shading_Surface_That_Is_Glazed=0)
- # todo: Add properties for that name
+ def _add_pure_geometry(self, building, zone_name):
+ for surface in building.surfaces:
+ idf_surface_type = self.idf_surfaces[surface.type]
+ outside_boundary_condition = 'Outdoors'
+ sun_exposure = 'SunExposed'
+ wind_exposure = 'WindExposed'
+ if surface.type == cte.GROUND:
+ outside_boundary_condition = 'Ground'
+ sun_exposure = 'NoSun'
+ wind_exposure = 'NoWind'
+ idf_surface = self._idf.newidfobject(self._SURFACE, Name=f'{surface.name}',
+ Surface_Type=idf_surface_type,
+ Zone_Name=zone_name,
+ Outside_Boundary_Condition=outside_boundary_condition,
+ Sun_Exposure=sun_exposure,
+ Wind_Exposure=wind_exposure)
+ coordinates = self._matrix_to_list(surface.solid_polygon.coordinates,
+ self._city.lower_corner)
+ idf_surface.setcoords(coordinates)
+ if self._lod >= 3:
+ for internal_zone in building.internal_zones:
+ for thermal_zone in internal_zone.thermal_zones:
+ for boundary in thermal_zone.thermal_boundaries:
+ self._add_windows_by_vertices(boundary)
+ else:
+ # idf only allows setting wwr for external walls
+ wwr = 0
+ self._idf.set_wwr(wwr)
def _add_surfaces(self, building, zone_name):
for internal_zone in building.internal_zones:
@@ -505,7 +547,6 @@ class Idf:
Wind_Exposure=wind_exposure)
coordinates = self._matrix_to_list(boundary.parent_surface.solid_polygon.coordinates,
self._city.lower_corner)
-
surface.setcoords(coordinates)
if self._lod >= 3:
diff --git a/hub/exports/building_energy/insel/insel_monthly_energy_balance.py b/hub/exports/building_energy/insel/insel_monthly_energy_balance.py
index 47e0bff9..caf2e0a6 100644
--- a/hub/exports/building_energy/insel/insel_monthly_energy_balance.py
+++ b/hub/exports/building_energy/insel/insel_monthly_energy_balance.py
@@ -7,6 +7,8 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
import numpy as np
from pathlib import Path
+import sys
+from hub.hub_logger import logger
from hub.exports.formats.insel import Insel
from hub.imports.weather.helpers.weather import Weather
@@ -31,6 +33,7 @@ class InselMonthlyEnergyBalance(Insel):
self._weather_format = weather_format
self._contents = []
self._insel_files_paths = []
+ self._sanity_check()
for building in city.buildings:
self._insel_files_paths.append(building.name + '.insel')
file_name_out = building.name + '.out'
@@ -38,9 +41,13 @@ class InselMonthlyEnergyBalance(Insel):
if building.internal_zones is not None:
for internal_zone in building.internal_zones:
if internal_zone.thermal_zones is None:
+ logger.error(f'Building {building.name} has missing values. '
+ f'Monthly Energy Balance cannot be processed\n')
+ sys.stderr.write(f'Building {building.name} has missing values. '
+ f'Monthly Energy Balance cannot be processed\n')
break
self._contents.append(
- self.generate_meb_template(building, output_path, self._radiation_calculation_method,self._weather_format)
+ self._generate_meb_template(building, output_path, self._radiation_calculation_method,self._weather_format)
)
self._export()
@@ -51,8 +58,30 @@ class InselMonthlyEnergyBalance(Insel):
insel_file.write(content)
return
+ def _sanity_check(self):
+ levels_of_detail = self._city.level_of_detail
+ if levels_of_detail.geometry is None:
+ raise Exception(f'Level of detail of geometry not assigned')
+ if levels_of_detail.geometry < 1:
+ raise Exception(f'Level of detail of geometry = {levels_of_detail.geometry}. Required minimum level 1')
+ if levels_of_detail.construction is None:
+ raise Exception(f'Level of detail of construction not assigned')
+ if levels_of_detail.construction < 1:
+ raise Exception(f'Level of detail of construction = {levels_of_detail.construction}. Required minimum level 1')
+ if levels_of_detail.usage is None:
+ raise Exception(f'Level of detail of usage not assigned')
+ if levels_of_detail.usage < 1:
+ raise Exception(f'Level of detail of usage = {levels_of_detail.usage}. Required minimum level 1')
+ for building in self._city.buildings:
+ if cte.MONTH not in building.external_temperature:
+ raise Exception(f'Building {building.name} does not have external temperature assigned')
+ for surface in building.surfaces:
+ if surface.type != cte.GROUND:
+ if cte.MONTH not in surface.global_irradiance:
+ raise Exception(f'Building {building.name} does not have global irradiance on surfaces assigned')
+
@staticmethod
- def generate_meb_template(building, insel_outputs_path, radiation_calculation_method, weather_format):
+ def _generate_meb_template(building, insel_outputs_path, radiation_calculation_method, weather_format):
file = ""
i_block = 1
parameters = ["1", "12", "1"]
@@ -64,10 +93,11 @@ class InselMonthlyEnergyBalance(Insel):
for i in range(1, len(surfaces) + 1):
inputs.append(f"{str(100 + i)}.1 % Radiation surface {str(i)}")
+ number_of_storeys = int(building.eave_height / building.average_storey_height)
# BUILDING PARAMETERS
- parameters = [f'{0.85 * building.volume} % BP(1) Heated Volume (m3)',
+ parameters = [f'{building.volume} % BP(1) Heated Volume (m3)',
f'{building.average_storey_height} % BP(2) Average storey height (m)',
- f'{building.storeys_above_ground} % BP(3) Number of storeys above ground',
+ f'{number_of_storeys} % BP(3) Number of storeys above ground',
f'{building.attic_heated} % BP(4) Attic heating type (0=no room, 1=unheated, 2=heated)',
f'{building.basement_heated} % BP(5) Cellar heating type (0=no room, 1=unheated, 2=heated, '
f'99=invalid)']
@@ -87,11 +117,11 @@ class InselMonthlyEnergyBalance(Insel):
for i, usage in enumerate(internal_zone.usages):
percentage_usage = usage.percentage
- parameters.append(f'{float(internal_zone.area) * percentage_usage} % BP(11) #1 Area of zone {i + 1} (m2)')
+ parameters.append(f'{internal_zone.thermal_zones[0].total_floor_area * percentage_usage} '
+ f'% BP(11) #1 Area of zone {i + 1} (m2)')
total_internal_gain = 0
for ig in usage.internal_gains:
- total_internal_gain += float(ig.average_internal_gain) * \
- (float(ig.convective_fraction) + float(ig.radiative_fraction))
+ total_internal_gain += ig.average_internal_gain * (ig.convective_fraction + ig.radiative_fraction)
parameters.append(f'{total_internal_gain} % BP(12) #2 Internal gains of zone {i + 1}')
parameters.append(f'{usage.thermal_control.mean_heating_set_point} % BP(13) #3 Heating setpoint temperature '
f'zone {i + 1} (degree Celsius)')
@@ -101,7 +131,31 @@ class InselMonthlyEnergyBalance(Insel):
f'zone {i + 1} (degree Celsius)')
parameters.append(f'{usage.hours_day} % BP(16) #6 Usage hours per day zone {i + 1}')
parameters.append(f'{usage.days_year} % BP(17) #7 Usage days per year zone {i + 1}')
- parameters.append(f'{usage.mechanical_air_change} % BP(18) #8 Minimum air change rate zone {i + 1} (ACH)')
+
+ ventilation = 0
+ infiltration = 0
+ for schedule in usage.thermal_control.hvac_availability_schedules:
+ ventilation_day = 0
+ infiltration_day = 0
+ for value in schedule.values:
+ if value == 0:
+ infiltration_day += internal_zone.thermal_zones[0].infiltration_rate_system_off / 24
+ ventilation_day += 0
+ else:
+ ventilation_value = usage.mechanical_air_change * value
+ infiltration_value = internal_zone.thermal_zones[0].infiltration_rate_system_off * value
+ if ventilation_value >= infiltration_value:
+ ventilation_day += ventilation_value / 24
+ infiltration_day += 0
+ else:
+ ventilation_day += 0
+ infiltration_day += infiltration_value / 24
+ for day_type in schedule.day_types:
+ infiltration += infiltration_day * cte.DAYS_A_YEAR[day_type] / 365
+ ventilation += ventilation_day * cte.DAYS_A_YEAR[day_type] / 365
+
+ ventilation_infiltration = ventilation + infiltration
+ parameters.append(f'{ventilation_infiltration} % BP(18) #8 Minimum air change rate zone {i + 1} (ACH)')
parameters.append(f'{len(thermal_zone.thermal_boundaries)} % Number of surfaces = BP(11+8z) \n'
f'% 1. Surface type (1=wall, 2=ground 3=roof, 4=flat roof)\n'
@@ -117,17 +171,19 @@ class InselMonthlyEnergyBalance(Insel):
for thermal_boundary in thermal_zone.thermal_boundaries:
type_code = _CONSTRUCTION_CODE[thermal_boundary.type]
- window_area = 0
- if thermal_boundary.window_ratio < 1:
- window_area = thermal_boundary.opaque_area * thermal_boundary.window_ratio / (1 - thermal_boundary.window_ratio)
+ wall_area = thermal_boundary.opaque_area * (1 + thermal_boundary.window_ratio)
+ if thermal_boundary.type == cte.WALL:
+ if thermal_boundary.parent_surface.percentage_shared is not None:
+ wall_area = wall_area * (1 - thermal_boundary.parent_surface.percentage_shared)
+ window_area = wall_area * thermal_boundary.window_ratio
parameters.append(type_code)
if thermal_boundary.type != cte.GROUND:
- parameters.append(thermal_boundary.opaque_area + window_area)
+ parameters.append(wall_area)
parameters.append('0.0')
else:
parameters.append('0.0')
- parameters.append(thermal_boundary.opaque_area + window_area)
+ parameters.append(wall_area)
parameters.append(thermal_boundary.u_value)
parameters.append(window_area)
diff --git a/hub/exports/exports_factory.py b/hub/exports/exports_factory.py
index 678b5a06..ae99dd0d 100644
--- a/hub/exports/exports_factory.py
+++ b/hub/exports/exports_factory.py
@@ -71,7 +71,7 @@ class ExportsFactory:
Export the city geometry to obj with grounded coordinates
:return: None
"""
- return Obj(self._city, self._path).to_ground_points()
+ return Obj(self._city, self._path)
@property
def _sra(self):
diff --git a/hub/exports/formats/obj.py b/hub/exports/formats/obj.py
index ccdb07d4..4dcfeb64 100644
--- a/hub/exports/formats/obj.py
+++ b/hub/exports/formats/obj.py
@@ -6,29 +6,52 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
from pathlib import Path
-import trimesh.exchange.obj
-from hub.exports.formats.triangular import Triangular
-from hub.imports.geometry_factory import GeometryFactory
-class Obj(Triangular):
+class Obj:
"""
Export to obj format
"""
def __init__(self, city, path):
- super().__init__(city, path, 'obj')
+ self._city = city
+ self._path = path
+ self._export()
- def to_ground_points(self):
- """
- Move closer to the origin
- """
- file_name_in = self._city.name + '.' + self._triangular_format
- file_name_out = self._city.name + '_ground.' + self._triangular_format
- file_path_in = (Path(self._path).resolve() / file_name_in).resolve()
- file_path_out = (Path(self._path).resolve() / file_name_out).resolve()
- obj = GeometryFactory('obj', path=file_path_in)
- scene = obj.scene
- scene.rezero()
- obj_file = trimesh.exchange.obj.export_obj(scene)
- with open(file_path_out, 'w') as file:
- file.write(obj_file)
+ def _to_vertex(self, coordinate):
+ x = coordinate[0] - self._city.lower_corner[0]
+ y = coordinate[1] - self._city.lower_corner[1]
+ z = coordinate[2] - self._city.lower_corner[2]
+ return f'v {x} {y} {z}\n'
+
+ def _export(self):
+ if self._city.name is None:
+ self._city.name = 'unknown_city'
+ file_name = self._city.name + '.obj'
+ file_path = (Path(self._path).resolve() / file_name).resolve()
+ vertices = {}
+ with open(file_path, 'w') as obj:
+ obj.write("# cerc-hub export\n")
+ vertex_index = 0
+ faces = []
+ for building in self._city.buildings:
+ obj.write(f'# building {building.name}\n')
+ obj.write(f'g {building.name}\n')
+ obj.write('s off\n')
+ for surface in building.surfaces:
+ obj.write(f'# surface {surface.name}\n')
+ face = 'f '
+ for coordinate in surface.perimeter_polygon.coordinates:
+ vertex = self._to_vertex(coordinate)
+ if vertex not in vertices.keys():
+ vertex_index += 1
+ vertices[vertex] = vertex_index
+ current = vertex_index
+ obj.write(vertex)
+ else:
+ current = vertices[vertex]
+
+ face = f'{face} {current}'
+
+ faces.append(f'{face} {face.split(" ")[1]}\n')
+ obj.writelines(faces)
+ faces = []
diff --git a/hub/exports/formats/simplified_radiosity_algorithm.py b/hub/exports/formats/simplified_radiosity_algorithm.py
index 8a19cac3..e2fa2ab9 100644
--- a/hub/exports/formats/simplified_radiosity_algorithm.py
+++ b/hub/exports/formats/simplified_radiosity_algorithm.py
@@ -8,6 +8,7 @@ import xmltodict
from hub.imports.weather_factory import WeatherFactory
import hub.helpers.constants as cte
+from hub.helpers.configuration_helper import ConfigurationHelper
class SimplifiedRadiosityAlgorithm:
@@ -88,10 +89,15 @@ class SimplifiedRadiosityAlgorithm:
'@Simulate': f'{simulate}'
}
walls, roofs, floors = [], [], []
+ default_short_wave_reflectance = ConfigurationHelper().short_wave_reflectance
for surface in building.surfaces:
+ if surface.short_wave_reflectance is None:
+ short_wave_reflectance = default_short_wave_reflectance
+ else:
+ short_wave_reflectance = surface.short_wave_reflectance
surface_dict = {
'@id': f'{surface.id}',
- '@ShortWaveReflectance': f'{surface.short_wave_reflectance}'
+ '@ShortWaveReflectance': f'{short_wave_reflectance}'
}
for point_index, point in enumerate(surface.perimeter_polygon.coordinates):
point = self._correct_point(point)
diff --git a/hub/helpers/configuration_helper.py b/hub/helpers/configuration_helper.py
index 88cc5671..936d46c7 100644
--- a/hub/helpers/configuration_helper.py
+++ b/hub/helpers/configuration_helper.py
@@ -17,14 +17,6 @@ class ConfigurationHelper:
self._config = configparser.ConfigParser()
self._config.read(config_file)
- @property
- def max_location_distance_for_shared_walls(self) -> float:
- """
- Get configured maximal distance between attributes to consider that they may share walls in meters
- :return: 5.0
- """
- return self._config.getfloat('buildings', 'max_location_distance_for_shared_walls')
-
@property
def min_coordinate(self) -> float:
"""
@@ -138,3 +130,19 @@ class ConfigurationHelper:
:return: 0.5
"""
return self._config.getfloat('buildings', 'soil_thickness').real
+
+ @property
+ def short_wave_reflectance(self) -> float:
+ """
+ Get configured short wave reflectance for surfaces that don't have construction assigned
+ :return: 0.3
+ """
+ return self._config.getfloat('buildings', 'short_wave_reflectance').real
+
+ @property
+ def cold_water_temperature(self) -> float:
+ """
+ Get configured cold water temperature in Celsius
+ :return: 10
+ """
+ return self._config.getfloat('buildings', 'cold_water_temperature').real
diff --git a/hub/helpers/constants.py b/hub/helpers/constants.py
index 8c601f5c..b147e26d 100644
--- a/hub/helpers/constants.py
+++ b/hub/helpers/constants.py
@@ -8,13 +8,21 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
# universal constants
KELVIN = 273.15
+WATER_DENSITY = 1000 # kg/m3
+WATER_HEAT_CAPACITY = 4182 # J/kgK
+
+AIR_DENSITY = 1.293 # kg/m3
+AIR_HEAT_CAPACITY = 1005.2 # J/kgK
+
# converters
HOUR_TO_MINUTES = 60
MINUTES_TO_SECONDS = 60
+HOUR_TO_SECONDS = 3600
METERS_TO_FEET = 3.28084
BTU_H_TO_WATTS = 0.29307107
KILO_WATTS_HOUR_TO_JULES = 3600000
+GALLONS_TO_QUBIC_METERS = 0.0037854117954011185
# time
SECOND = 'second'
@@ -40,6 +48,24 @@ WEEK_DAYS = 'Weekdays'
WEEK_ENDS = 'Weekends'
ALL_DAYS = 'Alldays'
+DAYS_A_MONTH = {'monday': [5, 4, 4, 5, 4, 4, 5, 4, 4, 5, 4, 5],
+ 'tuesday': [5, 4, 4, 4, 5, 4, 5, 4, 4, 5, 4, 4],
+ 'wednesday': [5, 4, 4, 4, 5, 4, 4, 5, 4, 5, 4, 4],
+ 'thursday': [4, 4, 5, 4, 5, 4, 4, 5, 4, 4, 5, 4],
+ 'friday': [4, 4, 5, 4, 4, 5, 4, 5, 4, 4, 5, 4],
+ 'saturday': [4, 4, 5, 4, 4, 5, 4, 4, 5, 4, 4, 5],
+ 'sunday': [4, 4, 4, 5, 4, 4, 5, 4, 5, 4, 4, 5],
+ 'holiday': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
+
+DAYS_A_YEAR = {'monday': 53,
+ 'tuesday': 52,
+ 'wednesday': 52,
+ 'thursday': 52,
+ 'friday': 52,
+ 'saturday': 52,
+ 'sunday': 52,
+ 'holiday': 0}
+
# data types
ANY_NUMBER = 'any_number'
FRACTION = 'fraction'
@@ -158,3 +184,19 @@ MIN_FLOAT = float('-inf')
# Tools
SRA = 'sra'
INSEL_MEB = 'insel meb'
+
+# Costs units
+CURRENCY_PER_SQM = 'currency/m2'
+CURRENCY_PER_CBM = 'currency/m3'
+CURRENCY_PER_KW = 'currency/kW'
+CURRENCY_PER_KWH = 'currency/kWh'
+CURRENCY_PER_MONTH = 'currency/month'
+CURRENCY_PER_LITRE = 'currency/l'
+CURRENCY_PER_KG = 'currency/kg'
+CURRENCY_PER_CBM_PER_HOUR = 'currency/(m3/h)'
+PERCENTAGE = '%'
+
+# Costs chapters
+SUPERSTRUCTURE = 'B_shell'
+ENVELOPE = 'D_services'
+ALLOWANCES_OVERHEAD_PROFIT = 'Z_allowances_overhead_profit'
diff --git a/hub/helpers/data/alkis_function_to_hub_function.py b/hub/helpers/data/alkis_function_to_hub_function.py
index 37273db0..7c01bc22 100644
--- a/hub/helpers/data/alkis_function_to_hub_function.py
+++ b/hub/helpers/data/alkis_function_to_hub_function.py
@@ -8,6 +8,7 @@ Project Coder Guille Gutierrez Guillermo.GutierrezMorote@concordia.ca
import hub.helpers.constants as cte
+
class AlkisFunctionToHubFunction:
def __init__(self):
diff --git a/hub/helpers/data/hft_function_to_hub_function.py b/hub/helpers/data/hft_function_to_hub_function.py
index 00f63a53..b9d814c1 100644
--- a/hub/helpers/data/hft_function_to_hub_function.py
+++ b/hub/helpers/data/hft_function_to_hub_function.py
@@ -12,21 +12,21 @@ class HftFunctionToHubFunction:
def __init__(self):
self._dictionary = {
- 'residential': cte.RESIDENTIAL,
- 'single family house': cte.SINGLE_FAMILY_HOUSE,
- 'multifamily house': cte.MULTI_FAMILY_HOUSE,
- 'hotel': cte.HOTEL,
- 'hospital': cte.HOSPITAL,
- 'outpatient': cte.OUT_PATIENT_HEALTH_CARE,
- 'commercial': cte.SUPERMARKET,
- 'strip mall': cte.STRIP_MALL,
- 'warehouse': cte.WAREHOUSE,
- 'primary school': cte.PRIMARY_SCHOOL,
- 'secondary school': cte.EDUCATION,
- 'office': cte.MEDIUM_OFFICE,
- 'large office': cte.LARGE_OFFICE
- }
+ 'residential': cte.RESIDENTIAL,
+ 'single family house': cte.SINGLE_FAMILY_HOUSE,
+ 'multifamily house': cte.MULTI_FAMILY_HOUSE,
+ 'hotel': cte.HOTEL,
+ 'hospital': cte.HOSPITAL,
+ 'outpatient': cte.OUT_PATIENT_HEALTH_CARE,
+ 'commercial': cte.SUPERMARKET,
+ 'strip mall': cte.STRIP_MALL,
+ 'warehouse': cte.WAREHOUSE,
+ 'primary school': cte.PRIMARY_SCHOOL,
+ 'secondary school': cte.EDUCATION,
+ 'office': cte.MEDIUM_OFFICE,
+ 'large office': cte.LARGE_OFFICE
+ }
@property
- def dictionary(self) -> dict:
+ def dictionary(self) -> dict:
return self._dictionary
diff --git a/hub/helpers/data/hub_function_to_nrcan_construction_function.py b/hub/helpers/data/hub_function_to_nrcan_construction_function.py
index c54382c3..82370e08 100644
--- a/hub/helpers/data/hub_function_to_nrcan_construction_function.py
+++ b/hub/helpers/data/hub_function_to_nrcan_construction_function.py
@@ -12,66 +12,66 @@ class HubFunctionToNrcanConstructionFunction:
def __init__(self):
self._dictionary = {
- cte.RESIDENTIAL: 'MidriseApartment',
- cte.SINGLE_FAMILY_HOUSE: 'MidriseApartment',
- cte.MULTI_FAMILY_HOUSE: 'HighriseApartment',
- cte.ROW_HOUSE: 'MidriseApartment',
- cte.MID_RISE_APARTMENT: 'MidriseApartment',
- cte.HIGH_RISE_APARTMENT: 'HighriseApartment',
- cte.OFFICE_AND_ADMINISTRATION: 'MediumOffice',
- cte.SMALL_OFFICE: 'SmallOffice',
- cte.MEDIUM_OFFICE: 'MediumOffice',
- cte.LARGE_OFFICE: 'LargeOffice',
- cte.COURTHOUSE: 'MediumOffice',
- cte.FIRE_STATION: 'n/a',
- cte.PENITENTIARY: 'LargeHotel',
- cte.POLICE_STATION: 'n/a',
- cte.POST_OFFICE: 'MediumOffice',
- cte.LIBRARY: 'MediumOffice',
- cte.EDUCATION: 'SecondarySchool',
- cte.PRIMARY_SCHOOL: 'PrimarySchool',
- cte.PRIMARY_SCHOOL_WITH_SHOWER: 'PrimarySchool',
- cte.SECONDARY_SCHOOL: 'SecondarySchool',
- cte.UNIVERSITY: 'SecondarySchool',
- cte.LABORATORY_AND_RESEARCH_CENTER: 'SecondarySchool',
- cte.STAND_ALONE_RETAIL: 'RetailStandalone',
- cte.HOSPITAL: 'Hospital',
- cte.OUT_PATIENT_HEALTH_CARE: 'Outpatient',
- cte.HEALTH_CARE: 'Outpatient',
- cte.RETIREMENT_HOME_OR_ORPHANAGE: 'SmallHotel',
- cte.COMMERCIAL: 'RetailStripmall',
- cte.STRIP_MALL: 'RetailStripmall',
- cte.SUPERMARKET: 'RetailStripmall',
- cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'RetailStandalone',
- cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'RetailStandalone',
- cte.RESTAURANT: 'FullServiceRestaurant',
- cte.QUICK_SERVICE_RESTAURANT: 'QuickServiceRestaurant',
- cte.FULL_SERVICE_RESTAURANT: 'FullServiceRestaurant',
- cte.HOTEL: 'SmallHotel',
- cte.HOTEL_MEDIUM_CLASS: 'SmallHotel',
- cte.SMALL_HOTEL: 'SmallHotel',
- cte.LARGE_HOTEL: 'LargeHotel',
- cte.DORMITORY: 'SmallHotel',
- cte.EVENT_LOCATION: 'n/a',
- cte.CONVENTION_CENTER: 'n/a',
- cte.HALL: 'n/a',
- cte.GREEN_HOUSE: 'n/a',
- cte.INDUSTRY: 'n/a',
- cte.WORKSHOP: 'n/a',
- cte.WAREHOUSE: 'Warehouse',
- cte.WAREHOUSE_REFRIGERATED: 'Warehouse',
- cte.SPORTS_LOCATION: 'n/a',
- cte.SPORTS_ARENA: 'n/a',
- cte.GYMNASIUM: 'n/a',
- cte.MOTION_PICTURE_THEATRE: 'n/a',
- cte.MUSEUM: 'n/a',
- cte.PERFORMING_ARTS_THEATRE: 'n/a',
- cte.TRANSPORTATION: 'n/a',
- cte.AUTOMOTIVE_FACILITY: 'n/a',
- cte.PARKING_GARAGE: 'n/a',
- cte.RELIGIOUS: 'n/a',
- cte.NON_HEATED: 'n/a'
- }
+ cte.RESIDENTIAL: 'MidriseApartment',
+ cte.SINGLE_FAMILY_HOUSE: 'MidriseApartment',
+ cte.MULTI_FAMILY_HOUSE: 'HighriseApartment',
+ cte.ROW_HOUSE: 'MidriseApartment',
+ cte.MID_RISE_APARTMENT: 'MidriseApartment',
+ cte.HIGH_RISE_APARTMENT: 'HighriseApartment',
+ cte.OFFICE_AND_ADMINISTRATION: 'MediumOffice',
+ cte.SMALL_OFFICE: 'SmallOffice',
+ cte.MEDIUM_OFFICE: 'MediumOffice',
+ cte.LARGE_OFFICE: 'LargeOffice',
+ cte.COURTHOUSE: 'MediumOffice',
+ cte.FIRE_STATION: 'n/a',
+ cte.PENITENTIARY: 'LargeHotel',
+ cte.POLICE_STATION: 'n/a',
+ cte.POST_OFFICE: 'MediumOffice',
+ cte.LIBRARY: 'MediumOffice',
+ cte.EDUCATION: 'SecondarySchool',
+ cte.PRIMARY_SCHOOL: 'PrimarySchool',
+ cte.PRIMARY_SCHOOL_WITH_SHOWER: 'PrimarySchool',
+ cte.SECONDARY_SCHOOL: 'SecondarySchool',
+ cte.UNIVERSITY: 'SecondarySchool',
+ cte.LABORATORY_AND_RESEARCH_CENTER: 'SecondarySchool',
+ cte.STAND_ALONE_RETAIL: 'RetailStandalone',
+ cte.HOSPITAL: 'Hospital',
+ cte.OUT_PATIENT_HEALTH_CARE: 'Outpatient',
+ cte.HEALTH_CARE: 'Outpatient',
+ cte.RETIREMENT_HOME_OR_ORPHANAGE: 'SmallHotel',
+ cte.COMMERCIAL: 'RetailStripmall',
+ cte.STRIP_MALL: 'RetailStripmall',
+ cte.SUPERMARKET: 'RetailStripmall',
+ cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'RetailStandalone',
+ cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'RetailStandalone',
+ cte.RESTAURANT: 'FullServiceRestaurant',
+ cte.QUICK_SERVICE_RESTAURANT: 'QuickServiceRestaurant',
+ cte.FULL_SERVICE_RESTAURANT: 'FullServiceRestaurant',
+ cte.HOTEL: 'SmallHotel',
+ cte.HOTEL_MEDIUM_CLASS: 'SmallHotel',
+ cte.SMALL_HOTEL: 'SmallHotel',
+ cte.LARGE_HOTEL: 'LargeHotel',
+ cte.DORMITORY: 'SmallHotel',
+ cte.EVENT_LOCATION: 'n/a',
+ cte.CONVENTION_CENTER: 'n/a',
+ cte.HALL: 'n/a',
+ cte.GREEN_HOUSE: 'n/a',
+ cte.INDUSTRY: 'n/a',
+ cte.WORKSHOP: 'n/a',
+ cte.WAREHOUSE: 'Warehouse',
+ cte.WAREHOUSE_REFRIGERATED: 'Warehouse',
+ cte.SPORTS_LOCATION: 'n/a',
+ cte.SPORTS_ARENA: 'n/a',
+ cte.GYMNASIUM: 'n/a',
+ cte.MOTION_PICTURE_THEATRE: 'n/a',
+ cte.MUSEUM: 'n/a',
+ cte.PERFORMING_ARTS_THEATRE: 'n/a',
+ cte.TRANSPORTATION: 'n/a',
+ cte.AUTOMOTIVE_FACILITY: 'n/a',
+ cte.PARKING_GARAGE: 'n/a',
+ cte.RELIGIOUS: 'n/a',
+ cte.NON_HEATED: 'n/a'
+ }
@property
def dictionary(self) -> dict:
diff --git a/hub/helpers/data/hub_function_to_nrel_construction_function.py b/hub/helpers/data/hub_function_to_nrel_construction_function.py
index e1f62aec..2c0a2906 100644
--- a/hub/helpers/data/hub_function_to_nrel_construction_function.py
+++ b/hub/helpers/data/hub_function_to_nrel_construction_function.py
@@ -12,66 +12,66 @@ class HubFunctionToNrelConstructionFunction:
def __init__(self):
self._dictionary = {
- cte.RESIDENTIAL: 'residential',
- cte.SINGLE_FAMILY_HOUSE: 'residential',
- cte.MULTI_FAMILY_HOUSE: 'midrise apartment',
- cte.ROW_HOUSE: 'midrise apartment',
- cte.MID_RISE_APARTMENT: 'midrise apartment',
- cte.HIGH_RISE_APARTMENT: 'high-rise apartment',
- cte.OFFICE_AND_ADMINISTRATION: 'medium office',
- cte.SMALL_OFFICE: 'small office',
- cte.MEDIUM_OFFICE: 'medium office',
- cte.LARGE_OFFICE: 'large office',
- cte.COURTHOUSE: 'medium office',
- cte.FIRE_STATION: 'n/a',
- cte.PENITENTIARY: 'large hotel',
- cte.POLICE_STATION: 'n/a',
- cte.POST_OFFICE: 'medium office',
- cte.LIBRARY: 'medium office',
- cte.EDUCATION: 'secondary school',
- cte.PRIMARY_SCHOOL: 'primary school',
- cte.PRIMARY_SCHOOL_WITH_SHOWER: 'primary school',
- cte.SECONDARY_SCHOOL: 'secondary school',
- cte.UNIVERSITY: 'secondary school',
- cte.LABORATORY_AND_RESEARCH_CENTER: 'secondary school',
- cte.STAND_ALONE_RETAIL: 'stand-alone retail',
- cte.HOSPITAL: 'hospital',
- cte.OUT_PATIENT_HEALTH_CARE: 'outpatient healthcare',
- cte.HEALTH_CARE: 'outpatient healthcare',
- cte.RETIREMENT_HOME_OR_ORPHANAGE: 'small hotel',
- cte.COMMERCIAL: 'strip mall',
- cte.STRIP_MALL: 'strip mall',
- cte.SUPERMARKET: 'supermarket',
- cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'stand-alone retail',
- cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'stand-alone retail',
- cte.RESTAURANT: 'full service restaurant',
- cte.QUICK_SERVICE_RESTAURANT: 'quick service restaurant',
- cte.FULL_SERVICE_RESTAURANT: 'full service restaurant',
- cte.HOTEL: 'small hotel',
- cte.HOTEL_MEDIUM_CLASS: 'small hotel',
- cte.SMALL_HOTEL: 'small hotel',
- cte.LARGE_HOTEL: 'large hotel',
- cte.DORMITORY: 'small hotel',
- cte.EVENT_LOCATION: 'n/a',
- cte.CONVENTION_CENTER: 'n/a',
- cte.HALL: 'n/a',
- cte.GREEN_HOUSE: 'n/a',
- cte.INDUSTRY: 'n/a',
- cte.WORKSHOP: 'n/a',
- cte.WAREHOUSE: 'warehouse',
- cte.WAREHOUSE_REFRIGERATED: 'warehouse',
- cte.SPORTS_LOCATION: 'n/a',
- cte.SPORTS_ARENA: 'n/a',
- cte.GYMNASIUM: 'n/a',
- cte.MOTION_PICTURE_THEATRE: 'n/a',
- cte.MUSEUM: 'n/a',
- cte.PERFORMING_ARTS_THEATRE: 'n/a',
- cte.TRANSPORTATION: 'n/a',
- cte.AUTOMOTIVE_FACILITY: 'n/aquebec_to_hub',
- cte.PARKING_GARAGE: 'n/a',
- cte.RELIGIOUS: 'n/a',
- cte.NON_HEATED: 'n/a'
- }
+ cte.RESIDENTIAL: 'residential',
+ cte.SINGLE_FAMILY_HOUSE: 'residential',
+ cte.MULTI_FAMILY_HOUSE: 'midrise apartment',
+ cte.ROW_HOUSE: 'midrise apartment',
+ cte.MID_RISE_APARTMENT: 'midrise apartment',
+ cte.HIGH_RISE_APARTMENT: 'high-rise apartment',
+ cte.OFFICE_AND_ADMINISTRATION: 'medium office',
+ cte.SMALL_OFFICE: 'small office',
+ cte.MEDIUM_OFFICE: 'medium office',
+ cte.LARGE_OFFICE: 'large office',
+ cte.COURTHOUSE: 'medium office',
+ cte.FIRE_STATION: 'n/a',
+ cte.PENITENTIARY: 'large hotel',
+ cte.POLICE_STATION: 'n/a',
+ cte.POST_OFFICE: 'medium office',
+ cte.LIBRARY: 'medium office',
+ cte.EDUCATION: 'secondary school',
+ cte.PRIMARY_SCHOOL: 'primary school',
+ cte.PRIMARY_SCHOOL_WITH_SHOWER: 'primary school',
+ cte.SECONDARY_SCHOOL: 'secondary school',
+ cte.UNIVERSITY: 'secondary school',
+ cte.LABORATORY_AND_RESEARCH_CENTER: 'secondary school',
+ cte.STAND_ALONE_RETAIL: 'stand-alone retail',
+ cte.HOSPITAL: 'hospital',
+ cte.OUT_PATIENT_HEALTH_CARE: 'outpatient healthcare',
+ cte.HEALTH_CARE: 'outpatient healthcare',
+ cte.RETIREMENT_HOME_OR_ORPHANAGE: 'small hotel',
+ cte.COMMERCIAL: 'strip mall',
+ cte.STRIP_MALL: 'strip mall',
+ cte.SUPERMARKET: 'supermarket',
+ cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'stand-alone retail',
+ cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'stand-alone retail',
+ cte.RESTAURANT: 'full service restaurant',
+ cte.QUICK_SERVICE_RESTAURANT: 'quick service restaurant',
+ cte.FULL_SERVICE_RESTAURANT: 'full service restaurant',
+ cte.HOTEL: 'small hotel',
+ cte.HOTEL_MEDIUM_CLASS: 'small hotel',
+ cte.SMALL_HOTEL: 'small hotel',
+ cte.LARGE_HOTEL: 'large hotel',
+ cte.DORMITORY: 'small hotel',
+ cte.EVENT_LOCATION: 'n/a',
+ cte.CONVENTION_CENTER: 'n/a',
+ cte.HALL: 'n/a',
+ cte.GREEN_HOUSE: 'n/a',
+ cte.INDUSTRY: 'n/a',
+ cte.WORKSHOP: 'n/a',
+ cte.WAREHOUSE: 'warehouse',
+ cte.WAREHOUSE_REFRIGERATED: 'warehouse',
+ cte.SPORTS_LOCATION: 'n/a',
+ cte.SPORTS_ARENA: 'n/a',
+ cte.GYMNASIUM: 'n/a',
+ cte.MOTION_PICTURE_THEATRE: 'n/a',
+ cte.MUSEUM: 'n/a',
+ cte.PERFORMING_ARTS_THEATRE: 'n/a',
+ cte.TRANSPORTATION: 'n/a',
+ cte.AUTOMOTIVE_FACILITY: 'n/aquebec_to_hub',
+ cte.PARKING_GARAGE: 'n/a',
+ cte.RELIGIOUS: 'n/a',
+ cte.NON_HEATED: 'n/a'
+ }
@property
def dictionary(self) -> dict:
diff --git a/hub/helpers/data/hub_usage_to_comnet_usage.py b/hub/helpers/data/hub_usage_to_comnet_usage.py
index 8a6cc2c3..3fb16c5a 100644
--- a/hub/helpers/data/hub_usage_to_comnet_usage.py
+++ b/hub/helpers/data/hub_usage_to_comnet_usage.py
@@ -12,66 +12,66 @@ class HubUsageToComnetUsage:
def __init__(self):
self._dictionary = {
- cte.RESIDENTIAL: 'BA Multifamily',
- cte.SINGLE_FAMILY_HOUSE: 'BA Multifamily',
- cte.MULTI_FAMILY_HOUSE: 'BA Multifamily',
- cte.ROW_HOUSE: 'BA Multifamily',
- cte.MID_RISE_APARTMENT: 'BA Multifamily',
- cte.HIGH_RISE_APARTMENT: 'BA Multifamily',
- cte.OFFICE_AND_ADMINISTRATION: 'BA Office',
- cte.SMALL_OFFICE: 'BA Office',
- cte.MEDIUM_OFFICE: 'BA Office',
- cte.LARGE_OFFICE: 'BA Office',
- cte.COURTHOUSE: 'BA Courthouse',
- cte.FIRE_STATION: 'BA Fire Station',
- cte.PENITENTIARY: 'BA Penitentiary',
- cte.POLICE_STATION: 'BA Police Station',
- cte.POST_OFFICE: 'BA Post Office',
- cte.LIBRARY: 'BA Library',
- cte.EDUCATION: 'BA School/University',
- cte.PRIMARY_SCHOOL: 'BA School/University',
- cte.PRIMARY_SCHOOL_WITH_SHOWER: 'BA School/University',
- cte.SECONDARY_SCHOOL: 'BA School/University',
- cte.UNIVERSITY: 'BA School/University',
- cte.LABORATORY_AND_RESEARCH_CENTER: 'BA School/University',
- cte.STAND_ALONE_RETAIL: 'BA Retail',
- cte.HOSPITAL: 'BA Hospital',
- cte.OUT_PATIENT_HEALTH_CARE: 'BA Healthcare Clinic',
- cte.HEALTH_CARE: 'BA Healthcare Clinic',
- cte.RETIREMENT_HOME_OR_ORPHANAGE: 'BA Healthcare Clinic',
- cte.COMMERCIAL: 'BA Retail',
- cte.STRIP_MALL: 'BA Retail',
- cte.SUPERMARKET: 'BA Retail',
- cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'BA Retail',
- cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'BA Retail',
- cte.RESTAURANT: 'BA Dining: Bar Lounge/Leisure',
- cte.QUICK_SERVICE_RESTAURANT: 'BA Dining: Cafeteria/Fast Food',
- cte.FULL_SERVICE_RESTAURANT: 'BA Dining: Bar Lounge/Leisure',
- cte.HOTEL: 'BA Hotel',
- cte.HOTEL_MEDIUM_CLASS: 'BA Motel',
- cte.SMALL_HOTEL: 'BA Motel',
- cte.LARGE_HOTEL: 'BA Hotel',
- cte.DORMITORY: 'BA Dormitory',
- cte.EVENT_LOCATION: 'BA Convention Center',
- cte.CONVENTION_CENTER: 'BA Convention Center',
- cte.HALL: 'BA Town Hall',
- cte.GREEN_HOUSE: 'n/a',
- cte.INDUSTRY: 'BA Manufacturing Facility',
- cte.WORKSHOP: 'BA Workshop',
- cte.WAREHOUSE: 'BA Warehouse',
- cte.WAREHOUSE_REFRIGERATED: 'BA Warehouse',
- cte.SPORTS_LOCATION: 'BA Exercise Center',
- cte.SPORTS_ARENA: 'BA Sports Arena',
- cte.GYMNASIUM: 'BA Gymnasium',
- cte.MOTION_PICTURE_THEATRE: 'BA Motion Picture Theater',
- cte.MUSEUM: 'BA Museum',
- cte.PERFORMING_ARTS_THEATRE: 'BA Performing Arts Theater',
- cte.TRANSPORTATION: 'BA Transportation',
- cte.AUTOMOTIVE_FACILITY: 'BA Automotive Facility',
- cte.PARKING_GARAGE: 'BA Parking Garage',
- cte.RELIGIOUS: 'BA Religious Building',
- cte.NON_HEATED: 'n/a'
- }
+ cte.RESIDENTIAL: 'BA Multifamily',
+ cte.SINGLE_FAMILY_HOUSE: 'BA Multifamily',
+ cte.MULTI_FAMILY_HOUSE: 'BA Multifamily',
+ cte.ROW_HOUSE: 'BA Multifamily',
+ cte.MID_RISE_APARTMENT: 'BA Multifamily',
+ cte.HIGH_RISE_APARTMENT: 'BA Multifamily',
+ cte.OFFICE_AND_ADMINISTRATION: 'BA Office',
+ cte.SMALL_OFFICE: 'BA Office',
+ cte.MEDIUM_OFFICE: 'BA Office',
+ cte.LARGE_OFFICE: 'BA Office',
+ cte.COURTHOUSE: 'BA Courthouse',
+ cte.FIRE_STATION: 'BA Fire Station',
+ cte.PENITENTIARY: 'BA Penitentiary',
+ cte.POLICE_STATION: 'BA Police Station',
+ cte.POST_OFFICE: 'BA Post Office',
+ cte.LIBRARY: 'BA Library',
+ cte.EDUCATION: 'BA School/University',
+ cte.PRIMARY_SCHOOL: 'BA School/University',
+ cte.PRIMARY_SCHOOL_WITH_SHOWER: 'BA School/University',
+ cte.SECONDARY_SCHOOL: 'BA School/University',
+ cte.UNIVERSITY: 'BA School/University',
+ cte.LABORATORY_AND_RESEARCH_CENTER: 'BA School/University',
+ cte.STAND_ALONE_RETAIL: 'BA Retail',
+ cte.HOSPITAL: 'BA Hospital',
+ cte.OUT_PATIENT_HEALTH_CARE: 'BA Healthcare Clinic',
+ cte.HEALTH_CARE: 'BA Healthcare Clinic',
+ cte.RETIREMENT_HOME_OR_ORPHANAGE: 'BA Healthcare Clinic',
+ cte.COMMERCIAL: 'BA Retail',
+ cte.STRIP_MALL: 'BA Retail',
+ cte.SUPERMARKET: 'BA Retail',
+ cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'BA Retail',
+ cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'BA Retail',
+ cte.RESTAURANT: 'BA Dining: Bar Lounge/Leisure',
+ cte.QUICK_SERVICE_RESTAURANT: 'BA Dining: Cafeteria/Fast Food',
+ cte.FULL_SERVICE_RESTAURANT: 'BA Dining: Bar Lounge/Leisure',
+ cte.HOTEL: 'BA Hotel',
+ cte.HOTEL_MEDIUM_CLASS: 'BA Motel',
+ cte.SMALL_HOTEL: 'BA Motel',
+ cte.LARGE_HOTEL: 'BA Hotel',
+ cte.DORMITORY: 'BA Dormitory',
+ cte.EVENT_LOCATION: 'BA Convention Center',
+ cte.CONVENTION_CENTER: 'BA Convention Center',
+ cte.HALL: 'BA Town Hall',
+ cte.GREEN_HOUSE: 'n/a',
+ cte.INDUSTRY: 'BA Manufacturing Facility',
+ cte.WORKSHOP: 'BA Workshop',
+ cte.WAREHOUSE: 'BA Warehouse',
+ cte.WAREHOUSE_REFRIGERATED: 'BA Warehouse',
+ cte.SPORTS_LOCATION: 'BA Exercise Center',
+ cte.SPORTS_ARENA: 'BA Sports Arena',
+ cte.GYMNASIUM: 'BA Gymnasium',
+ cte.MOTION_PICTURE_THEATRE: 'BA Motion Picture Theater',
+ cte.MUSEUM: 'BA Museum',
+ cte.PERFORMING_ARTS_THEATRE: 'BA Performing Arts Theater',
+ cte.TRANSPORTATION: 'BA Transportation',
+ cte.AUTOMOTIVE_FACILITY: 'BA Automotive Facility',
+ cte.PARKING_GARAGE: 'BA Parking Garage',
+ cte.RELIGIOUS: 'BA Religious Building',
+ cte.NON_HEATED: 'n/a'
+ }
@property
def dictionary(self) -> dict:
diff --git a/hub/helpers/data/hub_usage_to_hft_usage.py b/hub/helpers/data/hub_usage_to_hft_usage.py
index a05a2ba0..988e0649 100644
--- a/hub/helpers/data/hub_usage_to_hft_usage.py
+++ b/hub/helpers/data/hub_usage_to_hft_usage.py
@@ -12,66 +12,66 @@ class HubUsageToHftUsage:
def __init__(self):
self._dictionary = {
- cte.RESIDENTIAL: 'residential',
- cte.SINGLE_FAMILY_HOUSE: 'single family house',
- cte.MULTI_FAMILY_HOUSE: 'multifamily house',
- cte.ROW_HOUSE: 'single family house',
- cte.MID_RISE_APARTMENT: 'multifamily house',
- cte.HIGH_RISE_APARTMENT: 'multifamily house',
- cte.OFFICE_AND_ADMINISTRATION: 'office and administration',
- cte.SMALL_OFFICE: 'office and administration',
- cte.MEDIUM_OFFICE: 'office and administration',
- cte.LARGE_OFFICE: 'office and administration',
- cte.COURTHOUSE: 'office and administration',
- cte.FIRE_STATION: 'office and administration',
- cte.PENITENTIARY: 'school with shower',
- cte.POLICE_STATION: 'office and administration',
- cte.POST_OFFICE: 'office and administration',
- cte.LIBRARY: 'office and administration',
- cte.EDUCATION: 'education',
- cte.PRIMARY_SCHOOL: 'school without shower',
- cte.PRIMARY_SCHOOL_WITH_SHOWER: 'school with shower',
- cte.SECONDARY_SCHOOL: 'education',
- cte.UNIVERSITY: 'education',
- cte.LABORATORY_AND_RESEARCH_CENTER: 'laboratory and research centers',
- cte.STAND_ALONE_RETAIL: 'retail',
- cte.HOSPITAL: 'health care',
- cte.OUT_PATIENT_HEALTH_CARE: 'health care',
- cte.HEALTH_CARE: 'health care',
- cte.RETIREMENT_HOME_OR_ORPHANAGE: 'Home for the aged or orphanage',
- cte.COMMERCIAL: 'retail',
- cte.STRIP_MALL: 'retail',
- cte.SUPERMARKET: 'retail shop / refrigerated food',
- cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'retail',
- cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'retail shop / refrigerated food',
- cte.RESTAURANT: 'restaurant',
- cte.QUICK_SERVICE_RESTAURANT: 'restaurant',
- cte.FULL_SERVICE_RESTAURANT: 'restaurant',
- cte.HOTEL: 'hotel',
- cte.HOTEL_MEDIUM_CLASS: 'hotel (Medium-class)',
- cte.SMALL_HOTEL: 'hotel',
- cte.LARGE_HOTEL: 'hotel',
- cte.DORMITORY: 'dormitory',
- cte.EVENT_LOCATION: 'event location',
- cte.CONVENTION_CENTER: 'event location',
- cte.HALL: 'hall',
- cte.GREEN_HOUSE: 'green house',
- cte.INDUSTRY: 'industry',
- cte.WORKSHOP: 'industry',
- cte.WAREHOUSE: 'industry',
- cte.WAREHOUSE_REFRIGERATED: 'industry',
- cte.SPORTS_LOCATION: 'sport location',
- cte.SPORTS_ARENA: 'sport location',
- cte.GYMNASIUM: 'sport location',
- cte.MOTION_PICTURE_THEATRE: 'event location',
- cte.MUSEUM: 'event location',
- cte.PERFORMING_ARTS_THEATRE: 'event location',
- cte.TRANSPORTATION: 'n/a',
- cte.AUTOMOTIVE_FACILITY: 'n/a',
- cte.PARKING_GARAGE: 'n/a',
- cte.RELIGIOUS: 'event location',
- cte.NON_HEATED: 'non-heated'
- }
+ cte.RESIDENTIAL: 'residential',
+ cte.SINGLE_FAMILY_HOUSE: 'single family house',
+ cte.MULTI_FAMILY_HOUSE: 'multifamily house',
+ cte.ROW_HOUSE: 'single family house',
+ cte.MID_RISE_APARTMENT: 'multifamily house',
+ cte.HIGH_RISE_APARTMENT: 'multifamily house',
+ cte.OFFICE_AND_ADMINISTRATION: 'office and administration',
+ cte.SMALL_OFFICE: 'office and administration',
+ cte.MEDIUM_OFFICE: 'office and administration',
+ cte.LARGE_OFFICE: 'office and administration',
+ cte.COURTHOUSE: 'office and administration',
+ cte.FIRE_STATION: 'office and administration',
+ cte.PENITENTIARY: 'school with shower',
+ cte.POLICE_STATION: 'office and administration',
+ cte.POST_OFFICE: 'office and administration',
+ cte.LIBRARY: 'office and administration',
+ cte.EDUCATION: 'education',
+ cte.PRIMARY_SCHOOL: 'school without shower',
+ cte.PRIMARY_SCHOOL_WITH_SHOWER: 'school with shower',
+ cte.SECONDARY_SCHOOL: 'education',
+ cte.UNIVERSITY: 'education',
+ cte.LABORATORY_AND_RESEARCH_CENTER: 'laboratory and research centers',
+ cte.STAND_ALONE_RETAIL: 'retail',
+ cte.HOSPITAL: 'health care',
+ cte.OUT_PATIENT_HEALTH_CARE: 'health care',
+ cte.HEALTH_CARE: 'health care',
+ cte.RETIREMENT_HOME_OR_ORPHANAGE: 'Home for the aged or orphanage',
+ cte.COMMERCIAL: 'retail',
+ cte.STRIP_MALL: 'retail',
+ cte.SUPERMARKET: 'retail shop / refrigerated food',
+ cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'retail',
+ cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'retail shop / refrigerated food',
+ cte.RESTAURANT: 'restaurant',
+ cte.QUICK_SERVICE_RESTAURANT: 'restaurant',
+ cte.FULL_SERVICE_RESTAURANT: 'restaurant',
+ cte.HOTEL: 'hotel',
+ cte.HOTEL_MEDIUM_CLASS: 'hotel (Medium-class)',
+ cte.SMALL_HOTEL: 'hotel',
+ cte.LARGE_HOTEL: 'hotel',
+ cte.DORMITORY: 'dormitory',
+ cte.EVENT_LOCATION: 'event location',
+ cte.CONVENTION_CENTER: 'event location',
+ cte.HALL: 'hall',
+ cte.GREEN_HOUSE: 'green house',
+ cte.INDUSTRY: 'industry',
+ cte.WORKSHOP: 'industry',
+ cte.WAREHOUSE: 'industry',
+ cte.WAREHOUSE_REFRIGERATED: 'industry',
+ cte.SPORTS_LOCATION: 'sport location',
+ cte.SPORTS_ARENA: 'sport location',
+ cte.GYMNASIUM: 'sport location',
+ cte.MOTION_PICTURE_THEATRE: 'event location',
+ cte.MUSEUM: 'event location',
+ cte.PERFORMING_ARTS_THEATRE: 'event location',
+ cte.TRANSPORTATION: 'n/a',
+ cte.AUTOMOTIVE_FACILITY: 'n/a',
+ cte.PARKING_GARAGE: 'n/a',
+ cte.RELIGIOUS: 'event location',
+ cte.NON_HEATED: 'non-heated'
+ }
@property
def dictionary(self) -> dict:
diff --git a/hub/helpers/data/hub_usage_to_nrcan_usage.py b/hub/helpers/data/hub_usage_to_nrcan_usage.py
index b792d0d2..94eaa68f 100644
--- a/hub/helpers/data/hub_usage_to_nrcan_usage.py
+++ b/hub/helpers/data/hub_usage_to_nrcan_usage.py
@@ -12,66 +12,66 @@ class HubUsageToNrcanUsage:
def __init__(self):
self._dictionary = {
- cte.RESIDENTIAL: 'Multi-unit residential building',
- cte.SINGLE_FAMILY_HOUSE: 'Multi-unit residential building',
- cte.MULTI_FAMILY_HOUSE: 'Multi-unit residential building',
- cte.ROW_HOUSE: 'Multi-unit residential building',
- cte.MID_RISE_APARTMENT: 'Multi-unit residential building',
- cte.HIGH_RISE_APARTMENT: 'Multi-unit residential building',
- cte.OFFICE_AND_ADMINISTRATION: 'Office',
- cte.SMALL_OFFICE: 'Office',
- cte.MEDIUM_OFFICE: 'Office',
- cte.LARGE_OFFICE: 'Office',
- cte.COURTHOUSE: 'Courthouse',
- cte.FIRE_STATION: 'Fire station',
- cte.PENITENTIARY: 'Penitentiary',
- cte.POLICE_STATION: 'Police station',
- cte.POST_OFFICE: 'Post office',
- cte.LIBRARY: 'Library',
- cte.EDUCATION: 'School/university',
- cte.PRIMARY_SCHOOL: 'School/university',
- cte.PRIMARY_SCHOOL_WITH_SHOWER: 'School/university',
- cte.SECONDARY_SCHOOL: 'School/university',
- cte.UNIVERSITY: 'School/university',
- cte.LABORATORY_AND_RESEARCH_CENTER: 'School/university',
- cte.STAND_ALONE_RETAIL: 'Retail',
- cte.HOSPITAL: 'Hospital',
- cte.OUT_PATIENT_HEALTH_CARE: 'Health-care clinic',
- cte.HEALTH_CARE: 'Health-care clinic',
- cte.RETIREMENT_HOME_OR_ORPHANAGE: 'Health-care clinic',
- cte.COMMERCIAL: 'Retail',
- cte.STRIP_MALL: 'Retail',
- cte.SUPERMARKET: 'Retail',
- cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'Retail',
- cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'Retail',
- cte.RESTAURANT: 'Dining - bar/lounge',
- cte.QUICK_SERVICE_RESTAURANT: 'Dining - cafeteria',
- cte.FULL_SERVICE_RESTAURANT: 'Dining - bar/lounge',
- cte.HOTEL: 'Hotel',
- cte.HOTEL_MEDIUM_CLASS: 'Motel',
- cte.SMALL_HOTEL: 'Motel',
- cte.LARGE_HOTEL: 'Hotel',
- cte.DORMITORY: 'Dormitory',
- cte.EVENT_LOCATION: 'Convention centre',
- cte.CONVENTION_CENTER: 'Convention centre',
- cte.HALL: 'Town hall',
- cte.GREEN_HOUSE: 'n/a',
- cte.INDUSTRY: 'Manufacturing facility',
- cte.WORKSHOP: 'Workshop',
- cte.WAREHOUSE: 'Warehouse',
- cte.WAREHOUSE_REFRIGERATED: 'Warehouse - refrigerated',
- cte.SPORTS_LOCATION: 'Exercise centre',
- cte.SPORTS_ARENA: 'Sports arena',
- cte.GYMNASIUM: 'Gymnasium',
- cte.MOTION_PICTURE_THEATRE: 'Motion picture theatre',
- cte.MUSEUM: 'Museum',
- cte.PERFORMING_ARTS_THEATRE: 'Performing arts theatre',
- cte.TRANSPORTATION: 'Transportation',
- cte.AUTOMOTIVE_FACILITY: 'Automotive facility',
- cte.PARKING_GARAGE: 'Parking garage',
- cte.RELIGIOUS: 'Religious',
- cte.NON_HEATED: 'n/a'
- }
+ cte.RESIDENTIAL: 'Multi-unit residential building',
+ cte.SINGLE_FAMILY_HOUSE: 'Multi-unit residential building',
+ cte.MULTI_FAMILY_HOUSE: 'Multi-unit residential building',
+ cte.ROW_HOUSE: 'Multi-unit residential building',
+ cte.MID_RISE_APARTMENT: 'Multi-unit residential building',
+ cte.HIGH_RISE_APARTMENT: 'Multi-unit residential building',
+ cte.OFFICE_AND_ADMINISTRATION: 'Office',
+ cte.SMALL_OFFICE: 'Office',
+ cte.MEDIUM_OFFICE: 'Office',
+ cte.LARGE_OFFICE: 'Office',
+ cte.COURTHOUSE: 'Courthouse',
+ cte.FIRE_STATION: 'Fire station',
+ cte.PENITENTIARY: 'Penitentiary',
+ cte.POLICE_STATION: 'Police station',
+ cte.POST_OFFICE: 'Post office',
+ cte.LIBRARY: 'Library',
+ cte.EDUCATION: 'School/university',
+ cte.PRIMARY_SCHOOL: 'School/university',
+ cte.PRIMARY_SCHOOL_WITH_SHOWER: 'School/university',
+ cte.SECONDARY_SCHOOL: 'School/university',
+ cte.UNIVERSITY: 'School/university',
+ cte.LABORATORY_AND_RESEARCH_CENTER: 'School/university',
+ cte.STAND_ALONE_RETAIL: 'Retail area',
+ cte.HOSPITAL: 'Hospital',
+ cte.OUT_PATIENT_HEALTH_CARE: 'Health care clinic',
+ cte.HEALTH_CARE: 'Health care clinic',
+ cte.RETIREMENT_HOME_OR_ORPHANAGE: 'Health care clinic',
+ cte.COMMERCIAL: 'Retail area',
+ cte.STRIP_MALL: 'Retail area',
+ cte.SUPERMARKET: 'Retail area',
+ cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'Retail area',
+ cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'Retail area',
+ cte.RESTAURANT: 'Dining - bar lounge/leisure',
+ cte.QUICK_SERVICE_RESTAURANT: 'Dining - cafeteria/fast food',
+ cte.FULL_SERVICE_RESTAURANT: 'Dining - bar lounge/leisure',
+ cte.HOTEL: 'Hotel/Motel',
+ cte.HOTEL_MEDIUM_CLASS: 'Hotel/Motel',
+ cte.SMALL_HOTEL: 'Hotel/Motel',
+ cte.LARGE_HOTEL: 'Hotel/Motel',
+ cte.DORMITORY: 'Dormitory',
+ cte.EVENT_LOCATION: 'Convention centre',
+ cte.CONVENTION_CENTER: 'Convention centre',
+ cte.HALL: 'Town hall',
+ cte.GREEN_HOUSE: 'n/a',
+ cte.INDUSTRY: 'Manufacturing facility',
+ cte.WORKSHOP: 'Workshop',
+ cte.WAREHOUSE: 'Warehouse',
+ cte.WAREHOUSE_REFRIGERATED: 'Warehouse',
+ cte.SPORTS_LOCATION: 'Exercise centre',
+ cte.SPORTS_ARENA: 'Sports arena',
+ cte.GYMNASIUM: 'Gymnasium',
+ cte.MOTION_PICTURE_THEATRE: 'Motion picture theatre',
+ cte.MUSEUM: 'Museum',
+ cte.PERFORMING_ARTS_THEATRE: 'Performing arts theatre',
+ cte.TRANSPORTATION: 'Transportation facility',
+ cte.AUTOMOTIVE_FACILITY: 'Automotive facility',
+ cte.PARKING_GARAGE: 'Storage garage',
+ cte.RELIGIOUS: 'Religious building',
+ cte.NON_HEATED: 'n/a'
+ }
@property
def dictionary(self) -> dict:
diff --git a/hub/helpers/data/pluto_function_to_hub_function.py b/hub/helpers/data/pluto_function_to_hub_function.py
index c7a640d8..0e89b656 100644
--- a/hub/helpers/data/pluto_function_to_hub_function.py
+++ b/hub/helpers/data/pluto_function_to_hub_function.py
@@ -12,205 +12,205 @@ class PlutoFunctionToHubFunction:
def __init__(self):
self._dictionary = {
- 'A0': cte.SINGLE_FAMILY_HOUSE,
- 'A1': cte.SINGLE_FAMILY_HOUSE,
- 'A2': cte.SINGLE_FAMILY_HOUSE,
- 'A3': cte.SINGLE_FAMILY_HOUSE,
- 'A4': cte.SINGLE_FAMILY_HOUSE,
- 'A5': cte.SINGLE_FAMILY_HOUSE,
- 'A6': cte.SINGLE_FAMILY_HOUSE,
- 'A7': cte.SINGLE_FAMILY_HOUSE,
- 'A8': cte.SINGLE_FAMILY_HOUSE,
- 'A9': cte.SINGLE_FAMILY_HOUSE,
- 'B1': cte.MULTI_FAMILY_HOUSE,
- 'B2': cte.MULTI_FAMILY_HOUSE,
- 'B3': cte.MULTI_FAMILY_HOUSE,
- 'B9': cte.MULTI_FAMILY_HOUSE,
- 'C0': cte.RESIDENTIAL,
- 'C1': cte.RESIDENTIAL,
- 'C2': cte.RESIDENTIAL,
- 'C3': cte.RESIDENTIAL,
- 'C4': cte.RESIDENTIAL,
- 'C5': cte.RESIDENTIAL,
- 'C6': cte.RESIDENTIAL,
- 'C7': cte.RESIDENTIAL,
- 'C8': cte.RESIDENTIAL,
- 'C9': cte.RESIDENTIAL,
- 'D0': cte.RESIDENTIAL,
- 'D1': cte.RESIDENTIAL,
- 'D2': cte.RESIDENTIAL,
- 'D3': cte.RESIDENTIAL,
- 'D4': cte.RESIDENTIAL,
- 'D5': cte.RESIDENTIAL,
- 'D6': cte.RESIDENTIAL,
- 'D7': cte.RESIDENTIAL,
- 'D8': cte.RESIDENTIAL,
- 'D9': cte.RESIDENTIAL,
- 'E1': cte.WAREHOUSE,
- 'E3': cte.WAREHOUSE,
- 'E4': cte.WAREHOUSE,
- 'E5': cte.WAREHOUSE,
- 'E7': cte.WAREHOUSE,
- 'E9': cte.WAREHOUSE,
- 'F1': cte.WAREHOUSE,
- 'F2': cte.WAREHOUSE,
- 'F4': cte.WAREHOUSE,
- 'F5': cte.WAREHOUSE,
- 'F8': cte.WAREHOUSE,
- 'F9': cte.WAREHOUSE,
- 'G0': cte.SMALL_OFFICE,
- 'G1': cte.SMALL_OFFICE,
- 'G2': cte.SMALL_OFFICE,
- 'G3': cte.SMALL_OFFICE,
- 'G4': cte.SMALL_OFFICE,
- 'G5': cte.SMALL_OFFICE,
- 'G6': cte.SMALL_OFFICE,
- 'G7': cte.SMALL_OFFICE,
- 'G8': cte.SMALL_OFFICE,
- 'G9': cte.SMALL_OFFICE,
- 'H1': cte.HOTEL,
- 'H2': cte.HOTEL,
- 'H3': cte.HOTEL,
- 'H4': cte.HOTEL,
- 'H5': cte.HOTEL,
- 'H6': cte.HOTEL,
- 'H7': cte.HOTEL,
- 'H8': cte.HOTEL,
- 'H9': cte.HOTEL,
- 'HB': cte.HOTEL,
- 'HH': cte.HOTEL,
- 'HR': cte.HOTEL,
- 'HS': cte.HOTEL,
- 'I1': cte.HOSPITAL,
- 'I2': cte.OUT_PATIENT_HEALTH_CARE,
- 'I3': cte.OUT_PATIENT_HEALTH_CARE,
- 'I4': cte.RESIDENTIAL,
- 'I5': cte.OUT_PATIENT_HEALTH_CARE,
- 'I6': cte.OUT_PATIENT_HEALTH_CARE,
- 'I7': cte.OUT_PATIENT_HEALTH_CARE,
- 'I9': cte.OUT_PATIENT_HEALTH_CARE,
- 'J1': cte.LARGE_OFFICE,
- 'J2': cte.LARGE_OFFICE,
- 'J3': cte.LARGE_OFFICE,
- 'J4': cte.LARGE_OFFICE,
- 'J5': cte.LARGE_OFFICE,
- 'J6': cte.LARGE_OFFICE,
- 'J7': cte.LARGE_OFFICE,
- 'J8': cte.LARGE_OFFICE,
- 'J9': cte.LARGE_OFFICE,
- 'K1': cte.STRIP_MALL,
- 'K2': cte.STRIP_MALL,
- 'K3': cte.STRIP_MALL,
- 'K4': cte.RESIDENTIAL,
- 'K5': cte.RESTAURANT,
- 'K6': cte.SUPERMARKET,
- 'K7': cte.SUPERMARKET,
- 'K8': cte.SUPERMARKET,
- 'K9': cte.SUPERMARKET,
- 'L1': cte.RESIDENTIAL,
- 'L2': cte.RESIDENTIAL,
- 'L3': cte.RESIDENTIAL,
- 'L8': cte.RESIDENTIAL,
- 'L9': cte.RESIDENTIAL,
- 'M1': cte.LARGE_OFFICE,
- 'M2': cte.LARGE_OFFICE,
- 'M3': cte.LARGE_OFFICE,
- 'M4': cte.LARGE_OFFICE,
- 'M9': cte.LARGE_OFFICE,
- 'N1': cte.RESIDENTIAL,
- 'N2': cte.RESIDENTIAL,
- 'N3': cte.RESIDENTIAL,
- 'N4': cte.RESIDENTIAL,
- 'N9': cte.RESIDENTIAL,
- 'O1': cte.SMALL_OFFICE,
- 'O2': cte.SMALL_OFFICE,
- 'O3': cte.SMALL_OFFICE,
- 'O4': cte.SMALL_OFFICE,
- 'O5': cte.SMALL_OFFICE,
- 'O6': cte.SMALL_OFFICE,
- 'O7': cte.SMALL_OFFICE,
- 'O8': cte.SMALL_OFFICE,
- 'O9': cte.SMALL_OFFICE,
- 'P1': cte.LARGE_OFFICE,
- 'P2': cte.HOTEL,
- 'P3': cte.SMALL_OFFICE,
- 'P4': cte.SMALL_OFFICE,
- 'P5': cte.SMALL_OFFICE,
- 'P6': cte.SMALL_OFFICE,
- 'P7': cte.LARGE_OFFICE,
- 'P8': cte.LARGE_OFFICE,
- 'P9': cte.SMALL_OFFICE,
- 'Q0': cte.SMALL_OFFICE,
- 'Q1': cte.SMALL_OFFICE,
- 'Q2': cte.SMALL_OFFICE,
- 'Q3': cte.SMALL_OFFICE,
- 'Q4': cte.SMALL_OFFICE,
- 'Q5': cte.SMALL_OFFICE,
- 'Q6': cte.SMALL_OFFICE,
- 'Q7': cte.SMALL_OFFICE,
- 'Q8': cte.SMALL_OFFICE,
- 'Q9': cte.SMALL_OFFICE,
- 'R0': cte.RESIDENTIAL,
- 'R1': cte.RESIDENTIAL,
- 'R2': cte.RESIDENTIAL,
- 'R3': cte.RESIDENTIAL,
- 'R4': cte.RESIDENTIAL,
- 'R5': cte.RESIDENTIAL,
- 'R6': cte.RESIDENTIAL,
- 'R7': cte.RESIDENTIAL,
- 'R8': cte.RESIDENTIAL,
- 'R9': cte.RESIDENTIAL,
- 'RA': cte.RESIDENTIAL,
- 'RB': cte.RESIDENTIAL,
- 'RC': cte.RESIDENTIAL,
- 'RD': cte.RESIDENTIAL,
- 'RG': cte.RESIDENTIAL,
- 'RH': cte.RESIDENTIAL,
- 'RI': cte.RESIDENTIAL,
- 'RK': cte.RESIDENTIAL,
- 'RM': cte.RESIDENTIAL,
- 'RR': cte.RESIDENTIAL,
- 'RS': cte.RESIDENTIAL,
- 'RW': cte.RESIDENTIAL,
- 'RX': cte.RESIDENTIAL,
- 'RZ': cte.RESIDENTIAL,
- 'S0': cte.RESIDENTIAL,
- 'S1': cte.RESIDENTIAL,
- 'S2': cte.RESIDENTIAL,
- 'S3': cte.RESIDENTIAL,
- 'S4': cte.RESIDENTIAL,
- 'S5': cte.RESIDENTIAL,
- 'S9': cte.RESIDENTIAL,
- 'U0': cte.WAREHOUSE,
- 'U1': cte.WAREHOUSE,
- 'U2': cte.WAREHOUSE,
- 'U3': cte.WAREHOUSE,
- 'U4': cte.WAREHOUSE,
- 'U5': cte.WAREHOUSE,
- 'U6': cte.WAREHOUSE,
- 'U7': cte.WAREHOUSE,
- 'U8': cte.WAREHOUSE,
- 'U9': cte.WAREHOUSE,
- 'W1': cte.PRIMARY_SCHOOL,
- 'W2': cte.PRIMARY_SCHOOL,
- 'W3': cte.SECONDARY_SCHOOL,
- 'W4': cte.EDUCATION,
- 'W5': cte.SECONDARY_SCHOOL,
- 'W6': cte.SECONDARY_SCHOOL,
- 'W7': cte.SECONDARY_SCHOOL,
- 'W8': cte.PRIMARY_SCHOOL,
- 'W9': cte.SECONDARY_SCHOOL,
- 'Y1': cte.LARGE_OFFICE,
- 'Y2': cte.LARGE_OFFICE,
- 'Y3': cte.LARGE_OFFICE,
- 'Y4': cte.LARGE_OFFICE,
- 'Y5': cte.LARGE_OFFICE,
- 'Y6': cte.LARGE_OFFICE,
- 'Y7': cte.LARGE_OFFICE,
- 'Y8': cte.LARGE_OFFICE,
- 'Y9': cte.LARGE_OFFICE,
- 'Z1': cte.LARGE_OFFICE
- }
+ 'A0': cte.SINGLE_FAMILY_HOUSE,
+ 'A1': cte.SINGLE_FAMILY_HOUSE,
+ 'A2': cte.SINGLE_FAMILY_HOUSE,
+ 'A3': cte.SINGLE_FAMILY_HOUSE,
+ 'A4': cte.SINGLE_FAMILY_HOUSE,
+ 'A5': cte.SINGLE_FAMILY_HOUSE,
+ 'A6': cte.SINGLE_FAMILY_HOUSE,
+ 'A7': cte.SINGLE_FAMILY_HOUSE,
+ 'A8': cte.SINGLE_FAMILY_HOUSE,
+ 'A9': cte.SINGLE_FAMILY_HOUSE,
+ 'B1': cte.MULTI_FAMILY_HOUSE,
+ 'B2': cte.MULTI_FAMILY_HOUSE,
+ 'B3': cte.MULTI_FAMILY_HOUSE,
+ 'B9': cte.MULTI_FAMILY_HOUSE,
+ 'C0': cte.RESIDENTIAL,
+ 'C1': cte.RESIDENTIAL,
+ 'C2': cte.RESIDENTIAL,
+ 'C3': cte.RESIDENTIAL,
+ 'C4': cte.RESIDENTIAL,
+ 'C5': cte.RESIDENTIAL,
+ 'C6': cte.RESIDENTIAL,
+ 'C7': cte.RESIDENTIAL,
+ 'C8': cte.RESIDENTIAL,
+ 'C9': cte.RESIDENTIAL,
+ 'D0': cte.RESIDENTIAL,
+ 'D1': cte.RESIDENTIAL,
+ 'D2': cte.RESIDENTIAL,
+ 'D3': cte.RESIDENTIAL,
+ 'D4': cte.RESIDENTIAL,
+ 'D5': cte.RESIDENTIAL,
+ 'D6': cte.RESIDENTIAL,
+ 'D7': cte.RESIDENTIAL,
+ 'D8': cte.RESIDENTIAL,
+ 'D9': cte.RESIDENTIAL,
+ 'E1': cte.WAREHOUSE,
+ 'E3': cte.WAREHOUSE,
+ 'E4': cte.WAREHOUSE,
+ 'E5': cte.WAREHOUSE,
+ 'E7': cte.WAREHOUSE,
+ 'E9': cte.WAREHOUSE,
+ 'F1': cte.WAREHOUSE,
+ 'F2': cte.WAREHOUSE,
+ 'F4': cte.WAREHOUSE,
+ 'F5': cte.WAREHOUSE,
+ 'F8': cte.WAREHOUSE,
+ 'F9': cte.WAREHOUSE,
+ 'G0': cte.SMALL_OFFICE,
+ 'G1': cte.SMALL_OFFICE,
+ 'G2': cte.SMALL_OFFICE,
+ 'G3': cte.SMALL_OFFICE,
+ 'G4': cte.SMALL_OFFICE,
+ 'G5': cte.SMALL_OFFICE,
+ 'G6': cte.SMALL_OFFICE,
+ 'G7': cte.SMALL_OFFICE,
+ 'G8': cte.SMALL_OFFICE,
+ 'G9': cte.SMALL_OFFICE,
+ 'H1': cte.HOTEL,
+ 'H2': cte.HOTEL,
+ 'H3': cte.HOTEL,
+ 'H4': cte.HOTEL,
+ 'H5': cte.HOTEL,
+ 'H6': cte.HOTEL,
+ 'H7': cte.HOTEL,
+ 'H8': cte.HOTEL,
+ 'H9': cte.HOTEL,
+ 'HB': cte.HOTEL,
+ 'HH': cte.HOTEL,
+ 'HR': cte.HOTEL,
+ 'HS': cte.HOTEL,
+ 'I1': cte.HOSPITAL,
+ 'I2': cte.OUT_PATIENT_HEALTH_CARE,
+ 'I3': cte.OUT_PATIENT_HEALTH_CARE,
+ 'I4': cte.RESIDENTIAL,
+ 'I5': cte.OUT_PATIENT_HEALTH_CARE,
+ 'I6': cte.OUT_PATIENT_HEALTH_CARE,
+ 'I7': cte.OUT_PATIENT_HEALTH_CARE,
+ 'I9': cte.OUT_PATIENT_HEALTH_CARE,
+ 'J1': cte.LARGE_OFFICE,
+ 'J2': cte.LARGE_OFFICE,
+ 'J3': cte.LARGE_OFFICE,
+ 'J4': cte.LARGE_OFFICE,
+ 'J5': cte.LARGE_OFFICE,
+ 'J6': cte.LARGE_OFFICE,
+ 'J7': cte.LARGE_OFFICE,
+ 'J8': cte.LARGE_OFFICE,
+ 'J9': cte.LARGE_OFFICE,
+ 'K1': cte.STRIP_MALL,
+ 'K2': cte.STRIP_MALL,
+ 'K3': cte.STRIP_MALL,
+ 'K4': cte.RESIDENTIAL,
+ 'K5': cte.RESTAURANT,
+ 'K6': cte.SUPERMARKET,
+ 'K7': cte.SUPERMARKET,
+ 'K8': cte.SUPERMARKET,
+ 'K9': cte.SUPERMARKET,
+ 'L1': cte.RESIDENTIAL,
+ 'L2': cte.RESIDENTIAL,
+ 'L3': cte.RESIDENTIAL,
+ 'L8': cte.RESIDENTIAL,
+ 'L9': cte.RESIDENTIAL,
+ 'M1': cte.LARGE_OFFICE,
+ 'M2': cte.LARGE_OFFICE,
+ 'M3': cte.LARGE_OFFICE,
+ 'M4': cte.LARGE_OFFICE,
+ 'M9': cte.LARGE_OFFICE,
+ 'N1': cte.RESIDENTIAL,
+ 'N2': cte.RESIDENTIAL,
+ 'N3': cte.RESIDENTIAL,
+ 'N4': cte.RESIDENTIAL,
+ 'N9': cte.RESIDENTIAL,
+ 'O1': cte.SMALL_OFFICE,
+ 'O2': cte.SMALL_OFFICE,
+ 'O3': cte.SMALL_OFFICE,
+ 'O4': cte.SMALL_OFFICE,
+ 'O5': cte.SMALL_OFFICE,
+ 'O6': cte.SMALL_OFFICE,
+ 'O7': cte.SMALL_OFFICE,
+ 'O8': cte.SMALL_OFFICE,
+ 'O9': cte.SMALL_OFFICE,
+ 'P1': cte.LARGE_OFFICE,
+ 'P2': cte.HOTEL,
+ 'P3': cte.SMALL_OFFICE,
+ 'P4': cte.SMALL_OFFICE,
+ 'P5': cte.SMALL_OFFICE,
+ 'P6': cte.SMALL_OFFICE,
+ 'P7': cte.LARGE_OFFICE,
+ 'P8': cte.LARGE_OFFICE,
+ 'P9': cte.SMALL_OFFICE,
+ 'Q0': cte.SMALL_OFFICE,
+ 'Q1': cte.SMALL_OFFICE,
+ 'Q2': cte.SMALL_OFFICE,
+ 'Q3': cte.SMALL_OFFICE,
+ 'Q4': cte.SMALL_OFFICE,
+ 'Q5': cte.SMALL_OFFICE,
+ 'Q6': cte.SMALL_OFFICE,
+ 'Q7': cte.SMALL_OFFICE,
+ 'Q8': cte.SMALL_OFFICE,
+ 'Q9': cte.SMALL_OFFICE,
+ 'R0': cte.RESIDENTIAL,
+ 'R1': cte.RESIDENTIAL,
+ 'R2': cte.RESIDENTIAL,
+ 'R3': cte.RESIDENTIAL,
+ 'R4': cte.RESIDENTIAL,
+ 'R5': cte.RESIDENTIAL,
+ 'R6': cte.RESIDENTIAL,
+ 'R7': cte.RESIDENTIAL,
+ 'R8': cte.RESIDENTIAL,
+ 'R9': cte.RESIDENTIAL,
+ 'RA': cte.RESIDENTIAL,
+ 'RB': cte.RESIDENTIAL,
+ 'RC': cte.RESIDENTIAL,
+ 'RD': cte.RESIDENTIAL,
+ 'RG': cte.RESIDENTIAL,
+ 'RH': cte.RESIDENTIAL,
+ 'RI': cte.RESIDENTIAL,
+ 'RK': cte.RESIDENTIAL,
+ 'RM': cte.RESIDENTIAL,
+ 'RR': cte.RESIDENTIAL,
+ 'RS': cte.RESIDENTIAL,
+ 'RW': cte.RESIDENTIAL,
+ 'RX': cte.RESIDENTIAL,
+ 'RZ': cte.RESIDENTIAL,
+ 'S0': cte.RESIDENTIAL,
+ 'S1': cte.RESIDENTIAL,
+ 'S2': cte.RESIDENTIAL,
+ 'S3': cte.RESIDENTIAL,
+ 'S4': cte.RESIDENTIAL,
+ 'S5': cte.RESIDENTIAL,
+ 'S9': cte.RESIDENTIAL,
+ 'U0': cte.WAREHOUSE,
+ 'U1': cte.WAREHOUSE,
+ 'U2': cte.WAREHOUSE,
+ 'U3': cte.WAREHOUSE,
+ 'U4': cte.WAREHOUSE,
+ 'U5': cte.WAREHOUSE,
+ 'U6': cte.WAREHOUSE,
+ 'U7': cte.WAREHOUSE,
+ 'U8': cte.WAREHOUSE,
+ 'U9': cte.WAREHOUSE,
+ 'W1': cte.PRIMARY_SCHOOL,
+ 'W2': cte.PRIMARY_SCHOOL,
+ 'W3': cte.SECONDARY_SCHOOL,
+ 'W4': cte.EDUCATION,
+ 'W5': cte.SECONDARY_SCHOOL,
+ 'W6': cte.SECONDARY_SCHOOL,
+ 'W7': cte.SECONDARY_SCHOOL,
+ 'W8': cte.PRIMARY_SCHOOL,
+ 'W9': cte.SECONDARY_SCHOOL,
+ 'Y1': cte.LARGE_OFFICE,
+ 'Y2': cte.LARGE_OFFICE,
+ 'Y3': cte.LARGE_OFFICE,
+ 'Y4': cte.LARGE_OFFICE,
+ 'Y5': cte.LARGE_OFFICE,
+ 'Y6': cte.LARGE_OFFICE,
+ 'Y7': cte.LARGE_OFFICE,
+ 'Y8': cte.LARGE_OFFICE,
+ 'Y9': cte.LARGE_OFFICE,
+ 'Z1': cte.LARGE_OFFICE
+ }
@property
def dictionary(self) -> dict:
diff --git a/hub/helpers/dictionaries.py b/hub/helpers/dictionaries.py
index 3561d682..1fc73fde 100644
--- a/hub/helpers/dictionaries.py
+++ b/hub/helpers/dictionaries.py
@@ -15,6 +15,7 @@ from hub.helpers.data.hub_usage_to_comnet_usage import HubUsageToComnetUsage
from hub.helpers.data.hub_usage_to_hft_usage import HubUsageToHftUsage
from hub.helpers.data.hub_usage_to_nrcan_usage import HubUsageToNrcanUsage
+
class Dictionaries:
"""
Dictionaries class
diff --git a/hub/helpers/geometry_helper.py b/hub/helpers/geometry_helper.py
index d46eb71b..02658bbd 100644
--- a/hub/helpers/geometry_helper.py
+++ b/hub/helpers/geometry_helper.py
@@ -9,6 +9,7 @@ import math
import numpy as np
import requests
+from PIL import Image
from trimesh import Trimesh
from trimesh import intersections
@@ -63,7 +64,7 @@ class GeometryHelper:
return MapPoint(((city.upper_corner[0] - coordinate[0]) * 0.5), ((city.upper_corner[1] - coordinate[1]) * 0.5))
@staticmethod
- def city_mapping(city, building_names=None):
+ def city_mapping(city, building_names=None, plot=False):
"""
Returns a shared_information dictionary like
@@ -78,6 +79,107 @@ class GeometryHelper:
y = int((city.upper_corner[1] - city.lower_corner[1]) * 0.5) + 1
city_map = [['' for _ in range(y + 1)] for _ in range(x + 1)]
map_info = [[{} for _ in range(y + 1)] for _ in range(x + 1)]
+ img = Image.new('RGB', (x + 1, y + 1), "black") # create a new black image
+ city_image = img.load() # create the pixel map
+ for building_name in building_names:
+ building = city.city_object(building_name)
+ line = 0
+ for ground in building.grounds:
+ length = len(ground.perimeter_polygon.coordinates) - 1
+ for i, coordinate in enumerate(ground.perimeter_polygon.coordinates):
+
+ j = i + 1
+ if i == length:
+ j = 0
+ next_coordinate = ground.perimeter_polygon.coordinates[j]
+ point = GeometryHelper.coordinate_to_map_point(coordinate, city)
+ distance = int(GeometryHelper.distance_between_points(coordinate, next_coordinate))
+ if distance == 0:
+ continue
+ delta_x = (coordinate[0] - next_coordinate[0]) / (distance / 0.5)
+ delta_y = (coordinate[1] - next_coordinate[1]) / (distance / 0.5)
+ for k in range(0, distance):
+ x = MapPoint(point.x + (delta_x * k), point.y + (delta_y * k)).x
+ y = MapPoint(point.x + (delta_x * k), point.y + (delta_y * k)).y
+ if city_map[x][y] == '':
+ city_map[x][y] = building.name
+ map_info[x][y] = {
+ 'line_start': (coordinate[0], coordinate[1]),
+ 'line_end': (next_coordinate[0], next_coordinate[1]),
+ }
+ city_image[x, y] = (100, 0, 0)
+ elif city_map[x][y] != building.name:
+ neighbour = city.city_object(city_map[x][y])
+ neighbour_info = map_info[x][y]
+
+ # prepare the keys
+ neighbour_start_coordinate = f'{GeometryHelper.coordinate_to_map_point(neighbour_info["line_start"], city)}'
+ building_start_coordinate = f'{GeometryHelper.coordinate_to_map_point(coordinate, city)}'
+ neighbour_key = f'{neighbour.name}_{neighbour_start_coordinate}_{building_start_coordinate}'
+ building_key = f'{building.name}_{building_start_coordinate}_{neighbour_start_coordinate}'
+
+ # Add my neighbour info to my shared lines
+ if building.name in lines_information.keys() and neighbour_key in lines_information[building.name]:
+ shared_points = int(lines_information[building.name][neighbour_key]['shared_points'])
+ lines_information[building.name][neighbour_key]['shared_points'] = shared_points + 1
+ else:
+ if building.name not in lines_information.keys():
+ lines_information[building.name] = {}
+ lines_information[building.name][neighbour_key] = {
+ 'neighbour_name': neighbour.name,
+ 'line_start': (coordinate[0], coordinate[1]),
+ 'line_end': (next_coordinate[0], next_coordinate[1]),
+ 'neighbour_line_start': neighbour_info['line_start'],
+ 'neighbour_line_end': neighbour_info['line_end'],
+ 'coordinate_start': f"{GeometryHelper.coordinate_to_map_point(coordinate, city)}",
+ 'coordinate_end': f"{GeometryHelper.coordinate_to_map_point(next_coordinate, city)}",
+ 'neighbour_start': f"{GeometryHelper.coordinate_to_map_point(neighbour_info['line_start'], city)}",
+ 'neighbour_end': f"{GeometryHelper.coordinate_to_map_point(neighbour_info['line_end'], city)}",
+ 'shared_points': 1
+ }
+
+ # Add my info to my neighbour shared lines
+ if neighbour.name in lines_information.keys() and building_key in lines_information[neighbour.name]:
+ shared_points = int(lines_information[neighbour.name][building_key]['shared_points'])
+ lines_information[neighbour.name][building_key]['shared_points'] = shared_points + 1
+ else:
+ if neighbour.name not in lines_information.keys():
+ lines_information[neighbour.name] = {}
+ lines_information[neighbour.name][building_key] = {
+ 'neighbour_name': building.name,
+ 'line_start': neighbour_info['line_start'],
+ 'line_end': neighbour_info['line_end'],
+ 'neighbour_line_start': (coordinate[0], coordinate[1]),
+ 'neighbour_line_end': (next_coordinate[0], next_coordinate[1]),
+ 'neighbour_start': f"{GeometryHelper.coordinate_to_map_point(coordinate, city)}",
+ 'neighbour_end': f"{GeometryHelper.coordinate_to_map_point(next_coordinate, city)}",
+ 'coordinate_start': f"{GeometryHelper.coordinate_to_map_point(neighbour_info['line_start'], city)}",
+ 'coordinate_end': f"{GeometryHelper.coordinate_to_map_point(neighbour_info['line_end'], city)}",
+ 'shared_points': 1
+ }
+
+ if building.neighbours is None:
+ building.neighbours = [neighbour]
+ elif neighbour not in building.neighbours:
+ building.neighbours.append(neighbour)
+ if neighbour.neighbours is None:
+ neighbour.neighbours = [building]
+ elif building not in neighbour.neighbours:
+ neighbour.neighbours.append(building)
+ line += 1
+
+ if plot:
+ img.show()
+ return lines_information
+
+ @staticmethod
+ def fast_city_mapping(city, building_names=None):
+ lines_information = {}
+ if building_names is None:
+ building_names = [b.name for b in city.buildings]
+ x = int((city.upper_corner[0] - city.lower_corner[0]) * 0.5) + 1
+ y = int((city.upper_corner[1] - city.lower_corner[1]) * 0.5) + 1
+ city_map = [['' for _ in range(y + 1)] for _ in range(x + 1)]
for building_name in building_names:
building = city.city_object(building_name)
line = 0
@@ -99,52 +201,8 @@ class GeometryHelper:
y = MapPoint(point.x + (delta_x * k), point.y + (delta_y * k)).y
if city_map[x][y] == '':
city_map[x][y] = building.name
- map_info[x][y] = {
- 'line_start': (coordinate[0], coordinate[1]),
- 'line_end': (next_coordinate[0], next_coordinate[1]),
- }
elif city_map[x][y] != building.name:
neighbour = city.city_object(city_map[x][y])
- neighbour_info = map_info[x][y]
-
- # prepare the keys
- neighbour_start_coordinate = f'{neighbour_info["line_start"][0]}_{neighbour_info["line_start"][1]}'
- building_start_coordinate = f'{coordinate[0]}_{coordinate[1]}'
- neighbour_key = f'{neighbour.name}_{neighbour_start_coordinate}_{building_start_coordinate}'
- building_key = f'{building.name}_{building_start_coordinate}_{neighbour_start_coordinate}'
-
- # Add my neighbour info to my shared lines
- if building.name in lines_information.keys() and neighbour_key in lines_information[building.name]:
- shared_points = int(lines_information[building.name][neighbour_key]['shared_points'])
- lines_information[building.name][neighbour_key]['shared_points'] = shared_points + 1
- else:
- if building.name not in lines_information.keys():
- lines_information[building.name] = {}
- lines_information[building.name][neighbour_key] = {
- 'neighbour_name': neighbour.name,
- 'line_start': (coordinate[0], coordinate[1]),
- 'line_end': (next_coordinate[0], next_coordinate[1]),
- 'neighbour_line_start': neighbour_info['line_start'],
- 'neighbour_line_end': neighbour_info['line_end'],
- 'shared_points': 1
- }
-
- # Add my info to my neighbour shared lines
- if neighbour.name in lines_information.keys() and building_key in lines_information[neighbour.name]:
- shared_points = int(lines_information[neighbour.name][building_key]['shared_points'])
- lines_information[neighbour.name][building_key]['shared_points'] = shared_points + 1
- else:
- if neighbour.name not in lines_information.keys():
- lines_information[neighbour.name] = {}
- lines_information[neighbour.name][building_key] = {
- 'neighbour_name': building.name,
- 'line_start': neighbour_info['line_start'],
- 'line_end': neighbour_info['line_end'],
- 'neighbour_line_start': (coordinate[0], coordinate[1]),
- 'neighbour_line_end': (next_coordinate[0], next_coordinate[1]),
- 'shared_points': 1
- }
-
if building.neighbours is None:
building.neighbours = [neighbour]
elif neighbour not in building.neighbours:
diff --git a/hub/hub_logger/__init__.py b/hub/hub_logger/__init__.py
index 4c3dd95c..1c7c5f04 100644
--- a/hub/hub_logger/__init__.py
+++ b/hub/hub_logger/__init__.py
@@ -1,16 +1,33 @@
import logging as logger
from pathlib import Path
import os
+import logging
+import sys
+
+
+def get_logger(file_logger=False):
+ """
+ Returns a logging object
+ :param file_logger: a boolean to indicate the kind of logging
+ object to return, true (default) means a file logger is required
+ :return:
+ """
+ log_format = "%(asctime)s:%(levelname)s:{%(pathname)s:%(funcName)s:%(lineno)d} - %(message)s"
+ if file_logger:
+ log_dir = (Path(__file__).parent.parent / 'logs').resolve()
+ log_file = (log_dir / 'hub.log').resolve()
+ try:
+ if not os.path.isfile(log_file):
+ if not os.path.exists(log_dir):
+ os.mkdir(log_dir)
+ with open(log_file, 'x'):
+ pass
+ logger.basicConfig(filename=log_file, format=log_format, level=logger.DEBUG)
+ return logger
+ except IOError as err:
+ print(f'I/O exception: {err}')
+ else:
+ logging.getLogger().addHandler(logging.StreamHandler(stream=sys.stdout))
+ logging.getLogger().setLevel(logging.DEBUG)
+ return logger.getLogger()
-log_dir = (Path(__file__).parent.parent / 'logs').resolve()
-log_file = (log_dir / 'hub.log').resolve()
-try:
- if not os.path.isfile(log_file):
- if not os.path.exists:
- os.mkdir(log_dir)
- with open(log_file, 'x'):
- pass
- logger.basicConfig(filename=log_file, format="%(asctime)s:%(levelname)s:{%(pathname)s:%(funcName)s:%(lineno)d} "
- "- %(message)s", level=logger.DEBUG)
-except IOError as err:
- print(f'I/O exception: {err}')
diff --git a/hub/imports/construction/helpers/storeys_generation.py b/hub/imports/construction/helpers/storeys_generation.py
index 179f7431..a42171d0 100644
--- a/hub/imports/construction/helpers/storeys_generation.py
+++ b/hub/imports/construction/helpers/storeys_generation.py
@@ -4,6 +4,7 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
+import datetime
import sys
import math
import numpy as np
@@ -39,7 +40,7 @@ class StoreysGeneration:
number_of_storeys, height = self._calculate_number_storeys_and_height(self._building.average_storey_height,
self._building.eave_height,
self._building.storeys_above_ground)
- number_of_storeys = 1
+
if not self._divide_in_storeys or number_of_storeys == 1:
storey = Storey('storey_0', self._building.surfaces, [None, None], self._internal_zone.volume,
self._internal_zone, self._floor_area)
@@ -55,7 +56,6 @@ class StoreysGeneration:
else:
thermal_zones = [storey.neighbours[1], storey.thermal_zone]
thermal_boundary.thermal_zones = thermal_zones
-
return [storey.thermal_zone]
if number_of_storeys == 0:
diff --git a/hub/imports/construction/nrcan_physics_parameters.py b/hub/imports/construction/nrcan_physics_parameters.py
index 4ceb4e57..25867dfa 100644
--- a/hub/imports/construction/nrcan_physics_parameters.py
+++ b/hub/imports/construction/nrcan_physics_parameters.py
@@ -4,8 +4,10 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
+import datetime
import math
import sys
+from hub.hub_logger import get_logger
import hub.helpers.constants as cte
from hub.catalog_factories.construction_catalog_factory import ConstructionCatalogFactory
@@ -15,6 +17,8 @@ from hub.helpers.dictionaries import Dictionaries
from hub.imports.construction.helpers.construction_helper import ConstructionHelper
from hub.imports.construction.helpers.storeys_generation import StoreysGeneration
+logger = get_logger()
+
class NrcanPhysicsParameters:
"""
@@ -35,14 +39,21 @@ class NrcanPhysicsParameters:
for building in city.buildings:
try:
function = Dictionaries().hub_function_to_nrcan_construction_function[building.function]
+
archetype = self._search_archetype(nrcan_catalog, function, building.year_of_construction, self._climate_zone)
+
except KeyError:
+ logger.error(f'Building {building.name} has unknown construction archetype for building function: '
+ f'{function} [{building.function}], building year of construction: {building.year_of_construction} '
+ f'and climate zone {self._climate_zone}\n')
sys.stderr.write(f'Building {building.name} has unknown construction archetype for building function: '
- f'{building.function}, building year of construction: {building.year_of_construction} '
+ f'{function} [{building.function}], building year of construction: {building.year_of_construction} '
f'and climate zone {self._climate_zone}\n')
- return
+ continue
+
# if building has no thermal zones defined from geometry, and the building will be divided in storeys,
# one thermal zone per storey is assigned
+
if len(building.internal_zones) == 1:
if building.internal_zones[0].thermal_zones is None:
self._create_storeys(building, archetype, self._divide_in_storeys)
@@ -58,7 +69,6 @@ class NrcanPhysicsParameters:
for internal_zone in building.internal_zones:
for thermal_zone in internal_zone.thermal_zones:
thermal_zone.total_floor_area = thermal_zone.footprint_area
-
for internal_zone in building.internal_zones:
self._assign_values(internal_zone.thermal_zones, archetype)
for thermal_zone in internal_zone.thermal_zones:
@@ -69,7 +79,7 @@ class NrcanPhysicsParameters:
nrcan_archetypes = nrcan_catalog.entries('archetypes')
for building_archetype in nrcan_archetypes:
construction_period_limits = building_archetype.construction_period.split('_')
- if int(construction_period_limits[0]) <= year_of_construction < int(construction_period_limits[1]):
+ if int(construction_period_limits[0]) <= int(year_of_construction) <= int(construction_period_limits[1]):
if (str(function) == str(building_archetype.function)) and \
(climate_zone == str(building_archetype.climate_zone)):
return building_archetype
diff --git a/hub/imports/construction/nrel_physics_parameters.py b/hub/imports/construction/nrel_physics_parameters.py
index 78f08d30..4d74e4ea 100644
--- a/hub/imports/construction/nrel_physics_parameters.py
+++ b/hub/imports/construction/nrel_physics_parameters.py
@@ -7,7 +7,7 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord
"""
import sys
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
from hub.catalog_factories.construction_catalog_factory import ConstructionCatalogFactory
from hub.city_model_structure.building_demand.layer import Layer
from hub.city_model_structure.building_demand.material import Material
@@ -15,6 +15,8 @@ from hub.helpers.dictionaries import Dictionaries
from hub.imports.construction.helpers.construction_helper import ConstructionHelper
from hub.imports.construction.helpers.storeys_generation import StoreysGeneration
+logger = get_logger()
+
class NrelPhysicsParameters:
"""
@@ -39,14 +41,14 @@ class NrelPhysicsParameters:
archetype = self._search_archetype(nrel_catalog, function, building.year_of_construction,
self._climate_zone)
except KeyError:
- logger.error(f'Building {building.name} has unknown archetype for building function: {building.function} '
- f'and building year of construction: {building.year_of_construction} '
+ logger.error(f'Building {building.name} has unknown construction archetype for building function: '
+ f'{building.function} and building year of construction: {building.year_of_construction} '
f'and climate zone reference norm {self._climate_zone}\n')
- sys.stderr.write(f'Building {building.name} has unknown archetype for building function: {building.function} '
- f'and building year of construction: {building.year_of_construction} '
+ sys.stderr.write(f'Building {building.name} has unknown construction archetype for building function: '
+ f'{building.function} and building year of construction: {building.year_of_construction} '
f'and climate zone reference norm {self._climate_zone}\n')
- return
+ continue
# if building has no thermal zones defined from geometry, and the building will be divided in storeys,
# one thermal zone per storey is assigned
@@ -78,7 +80,7 @@ class NrelPhysicsParameters:
construction_period_limits = building_archetype.construction_period.split(' - ')
if construction_period_limits[1] == 'PRESENT':
construction_period_limits[1] = 3000
- if int(construction_period_limits[0]) <= year_of_construction < int(construction_period_limits[1]):
+ if int(construction_period_limits[0]) <= int(year_of_construction) < int(construction_period_limits[1]):
if (str(function) == str(building_archetype.function)) and \
(climate_zone == str(building_archetype.climate_zone)):
return building_archetype
diff --git a/hub/imports/construction_factory.py b/hub/imports/construction_factory.py
index f9ce905a..f70dc0f9 100644
--- a/hub/imports/construction_factory.py
+++ b/hub/imports/construction_factory.py
@@ -7,11 +7,13 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord
"""
from pathlib import Path
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
from hub.helpers.utils import validate_import_export_type
from hub.imports.construction.nrel_physics_parameters import NrelPhysicsParameters
from hub.imports.construction.nrcan_physics_parameters import NrcanPhysicsParameters
+logger = get_logger()
+
class ConstructionFactory:
"""
diff --git a/hub/imports/energy_systems_factory.py b/hub/imports/energy_systems_factory.py
index b1f44876..84cb4c1e 100644
--- a/hub/imports/energy_systems_factory.py
+++ b/hub/imports/energy_systems_factory.py
@@ -9,7 +9,9 @@ from pathlib import Path
from hub.imports.energy_systems.air_source_hp_parameters import AirSourceHeatPumpParameters
from hub.imports.energy_systems.water_to_water_hp_parameters import WaterToWaterHPParameters
from hub.helpers.utils import validate_import_export_type
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
+
+logger = get_logger()
class EnergySystemsFactory:
diff --git a/hub/imports/geometry/geojson.py b/hub/imports/geometry/geojson.py
index 1adf95d1..41e6eac2 100644
--- a/hub/imports/geometry/geojson.py
+++ b/hub/imports/geometry/geojson.py
@@ -4,12 +4,12 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guillermo Gutierrez Guillermo.GutierrezMorote@concordia.ca
"""
+
import json
-import trimesh.creation
+import numpy as np
from pyproj import Transformer
-from shapely.geometry import Polygon as ShapelyPolygon
import hub.helpers.constants as cte
from hub.helpers.geometry_helper import GeometryHelper
@@ -64,8 +64,12 @@ class Geojson:
buildings = []
for zone, surface_coordinates in enumerate(surfaces_coordinates):
points = igh.points_from_string(igh.remove_last_point_from_string(surface_coordinates))
+ # geojson provides the roofs, need to be transform into grounds
+ points = igh.invert_points(points)
polygon = Polygon(points)
- surfaces.append(Surface(polygon, polygon, surface_type=cte.GROUND))
+ polygon.area = igh.ground_area(points)
+ surface = Surface(polygon, polygon)
+ surfaces.append(surface)
buildings.append(Building(f'{name}_zone_{zone}', surfaces, year_of_construction, function))
return buildings
@@ -74,22 +78,43 @@ class Geojson:
lod0_buildings = Geojson._create_buildings_lod0(name, year_of_construction, function, surface_coordinates)
surfaces = []
buildings = []
+
for zone, lod0_building in enumerate(lod0_buildings):
- for surface in lod0_building.surfaces:
- shapely_polygon = ShapelyPolygon(surface.solid_polygon.coordinates)
- if not shapely_polygon.is_valid:
- print(surface.solid_polygon.area)
- print('error?', name, surface_coordinates)
- continue
- mesh = trimesh.creation.extrude_polygon(shapely_polygon, height)
- for face in mesh.faces:
- points = []
- for vertex_index in face:
- points.append(mesh.vertices[vertex_index])
- polygon = Polygon(points)
- surface = Surface(polygon, polygon)
- surfaces.append(surface)
- buildings.append(Building(f'{name}_zone_{zone}', surfaces, year_of_construction, function))
+ for surface in lod0_building.grounds:
+
+ volume = surface.solid_polygon.area * height
+ surfaces.append(surface)
+ roof_coordinates = []
+ # adding a roof means invert the polygon coordinates and change the Z value
+ for coordinate in surface.solid_polygon.coordinates:
+ roof_coordinate = np.array([coordinate[0], coordinate[1], height])
+ # insert the roof rotated already
+ roof_coordinates.insert(0, roof_coordinate)
+ polygon = Polygon(roof_coordinates)
+ polygon.area = surface.solid_polygon.area
+ roof = Surface(polygon, polygon)
+ surfaces.append(roof)
+ # adding a wall means add the point coordinates and the next point coordinates with Z's height and 0
+ coordinates_length = len(roof.solid_polygon.coordinates)
+ for i, coordinate in enumerate(roof.solid_polygon.coordinates):
+ j = i + 1
+ if j == coordinates_length:
+ j = 0
+ next_coordinate = roof.solid_polygon.coordinates[j]
+ wall_coordinates = [
+ np.array([coordinate[0], coordinate[1], 0.0]),
+ np.array([next_coordinate[0], next_coordinate[1], 0.0]),
+ np.array([next_coordinate[0], next_coordinate[1], next_coordinate[2]]),
+ np.array([coordinate[0], coordinate[1], coordinate[2]])
+ ]
+ polygon = Polygon(wall_coordinates)
+ wall = Surface(polygon, polygon)
+ surfaces.append(wall)
+
+ building = Building(f'{name}_zone_{zone}', surfaces, year_of_construction, function)
+ building.volume = volume
+ buildings.append(building)
+
return buildings
def _get_polygons(self, polygons, coordinates):
@@ -110,8 +135,9 @@ class Geojson:
@staticmethod
def _find_wall(line_1, line_2):
for i in range(0, 2):
+ j = 1 - i
point_1 = line_1[i]
- point_2 = line_2[i]
+ point_2 = line_2[j]
distance = GeometryHelper.distance_between_points(point_1, point_2)
if distance > 1e-2:
return False
@@ -119,6 +145,10 @@ class Geojson:
def _store_shared_percentage_to_walls(self, city, city_mapped):
for building in city.buildings:
+ if building.name not in city_mapped.keys():
+ for wall in building.walls:
+ wall.percentage_shared = 0
+ continue
building_mapped = city_mapped[building.name]
for wall in building.walls:
percentage = 0
@@ -126,12 +156,8 @@ class Geojson:
for point in wall.perimeter_polygon.coordinates:
if point[2] < 0.5:
ground_line.append(point)
- # todo: erase when we have no triangulation
- if len(ground_line) < 2:
- continue
- # todo: erase down to here
for entry in building_mapped:
- if building_mapped[entry]['shared_points'] <= 5:
+ if building_mapped[entry]['shared_points'] <= 3:
continue
line = [building_mapped[entry]['line_start'], building_mapped[entry]['line_end']]
neighbour_line = [building_mapped[entry]['neighbour_line_start'],
@@ -204,10 +230,12 @@ class Geojson:
self._city = City([self._min_x, self._min_y, 0.0], [self._max_x, self._max_y, self._max_z], 'epsg:26911')
for building in buildings:
- self._city.add_city_object(building)
+ # Do not include "small building-like structures" to buildings
+ if building.floor_area >= 25:
+ self._city.add_city_object(building)
self._city.level_of_detail.geometry = lod
if lod == 1:
- lines_information = GeometryHelper.city_mapping(self._city)
+ lines_information = GeometryHelper.city_mapping(self._city, plot=False)
self._store_shared_percentage_to_walls(self._city, lines_information)
if len(missing_functions) > 0:
print(f'There are unknown functions {missing_functions}')
diff --git a/hub/imports/geometry/helpers/geometry_helper.py b/hub/imports/geometry/helpers/geometry_helper.py
index b9384801..717287fc 100644
--- a/hub/imports/geometry/helpers/geometry_helper.py
+++ b/hub/imports/geometry/helpers/geometry_helper.py
@@ -4,6 +4,8 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
+import math
+import sys
import numpy as np
@@ -45,3 +47,61 @@ class GeometryHelper:
array = points.split(' ')
res = " "
return res.join(array[0:len(array) - 3])
+
+ @staticmethod
+ def invert_points(points):
+ res = []
+ for point in points:
+ res.insert(0,point)
+ return res
+
+ @staticmethod
+ def ground_area(points):
+ """
+ Get ground surface area in square meters
+ :return: float
+ """
+ # New method to calculate area
+
+ if len(points) < 3:
+ sys.stderr.write('Warning: the area of a line or point cannot be calculated 1. Area = 0\n')
+ return 0
+ alpha = 0
+ vec_1 = points[1] - points[0]
+ for i in range(2, len(points)):
+ vec_2 = points[i] - points[0]
+ alpha += GeometryHelper.angle_between_vectors(vec_1, vec_2)
+ if alpha == 0:
+ sys.stderr.write('Warning: the area of a line or point cannot be calculated 2. Area = 0\n')
+ return 0
+ #
+ horizontal_points = points
+ area = 0
+ for i in range(0, len(horizontal_points) - 1):
+ point = horizontal_points[i]
+ next_point = horizontal_points[i + 1]
+ area += (next_point[1] + point[1]) / 2 * (next_point[0] - point[0])
+ next_point = horizontal_points[0]
+ point = horizontal_points[len(horizontal_points) - 1]
+ area += (next_point[1] + point[1]) / 2 * (next_point[0] - point[0])
+ _area = abs(area)
+ return _area
+
+ @staticmethod
+ def angle_between_vectors(vec_1, vec_2):
+ """
+ angle between vectors in radians
+ :param vec_1: vector
+ :param vec_2: vector
+ :return: float
+ """
+ if np.linalg.norm(vec_1) == 0 or np.linalg.norm(vec_2) == 0:
+ sys.stderr.write("Warning: impossible to calculate angle between planes' normal. Return 0\n")
+ return 0
+ cosine = np.dot(vec_1, vec_2) / np.linalg.norm(vec_1) / np.linalg.norm(vec_2)
+ if cosine > 1 and cosine - 1 < 1e-5:
+ cosine = 1
+ elif cosine < -1 and cosine + 1 > -1e-5:
+ cosine = -1
+ alpha = math.acos(cosine)
+ return alpha
diff --git a/hub/imports/geometry_factory.py b/hub/imports/geometry_factory.py
index 2c870085..97362b05 100644
--- a/hub/imports/geometry_factory.py
+++ b/hub/imports/geometry_factory.py
@@ -13,7 +13,9 @@ from hub.imports.geometry.rhino import Rhino
from hub.imports.geometry.gpandas import GPandas
from hub.imports.geometry.geojson import Geojson
from hub.helpers.utils import validate_import_export_type
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
+
+logger = get_logger()
class GeometryFactory:
diff --git a/hub/imports/life_cycle_assessment_factory.py b/hub/imports/life_cycle_assessment_factory.py
index a46924a7..c4dcdd86 100644
--- a/hub/imports/life_cycle_assessment_factory.py
+++ b/hub/imports/life_cycle_assessment_factory.py
@@ -11,7 +11,9 @@ from hub.imports.life_cycle_assessment.lca_vehicle import LcaVehicle
from hub.imports.life_cycle_assessment.lca_machine import LcaMachine
from hub.imports.life_cycle_assessment.lca_material import LcaMaterial
from hub.helpers.utils import validate_import_export_type
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
+
+logger = get_logger()
class LifeCycleAssessment:
diff --git a/hub/imports/results/insel_monthly_energry_balance.py b/hub/imports/results/insel_monthly_energry_balance.py
index 50b5f34d..5e421330 100644
--- a/hub/imports/results/insel_monthly_energry_balance.py
+++ b/hub/imports/results/insel_monthly_energry_balance.py
@@ -10,6 +10,7 @@ import pandas as pd
import csv
import hub.helpers.constants as cte
+
class InselMonthlyEnergyBalance:
"""
Import SRA results
@@ -20,7 +21,7 @@ class InselMonthlyEnergyBalance:
self._base_path = base_path
@staticmethod
- def _demand(insel_output_file_path):
+ def _conditioning_demand(insel_output_file_path):
heating = []
cooling = []
with open(Path(insel_output_file_path).resolve()) as csv_file:
@@ -39,15 +40,74 @@ class InselMonthlyEnergyBalance:
monthly_cooling = pd.DataFrame(cooling, columns=[cte.INSEL_MEB]).astype(float)
return monthly_heating, monthly_cooling
+ def _dhw_demand(self):
+ for building in self._city.buildings:
+ domestic_hot_water_demand = []
+ if building.internal_zones[0].thermal_zones is None:
+ domestic_hot_water_demand = [0] * 12
+ else:
+ thermal_zone = building.internal_zones[0].thermal_zones[0]
+ area = thermal_zone.total_floor_area
+ cold_water = building.cold_water_temperature[cte.MONTH]['epw']
+ for month in range(0, 12):
+ total_dhw_demand = 0
+ for schedule in thermal_zone.domestic_hot_water.schedules:
+ total_day = 0
+ for value in schedule.values:
+ total_day += value
+ for day_type in schedule.day_types:
+ demand = thermal_zone.domestic_hot_water.peak_flow * cte.WATER_DENSITY * cte.WATER_HEAT_CAPACITY \
+ * (thermal_zone.domestic_hot_water.service_temperature - cold_water[month])
+ total_dhw_demand += total_day * cte.DAYS_A_MONTH[day_type][month] * demand
+ domestic_hot_water_demand.append(total_dhw_demand * area)
+
+ building.domestic_hot_water_heat_demand[cte.MONTH] = \
+ pd.DataFrame(domestic_hot_water_demand, columns=[cte.INSEL_MEB])
+
+ def _electrical_demand(self):
+ for building in self._city.buildings:
+ lighting_demand = []
+ appliances_demand = []
+ if building.internal_zones[0].thermal_zones is None:
+ lighting_demand = [0] * 12
+ appliances_demand = [0] * 12
+ else:
+ thermal_zone = building.internal_zones[0].thermal_zones[0]
+ area = thermal_zone.total_floor_area
+
+ for month in range(0, 12):
+ total_lighting = 0
+ for schedule in thermal_zone.lighting.schedules:
+ total_day = 0
+ for value in schedule.values:
+ total_day += value
+ for day_type in schedule.day_types:
+ total_lighting += total_day * cte.DAYS_A_MONTH[day_type][month] * thermal_zone.lighting.density
+ lighting_demand.append(total_lighting * area)
+
+ total_appliances = 0
+ for schedule in thermal_zone.appliances.schedules:
+ total_day = 0
+ for value in schedule.values:
+ total_day += value
+ for day_type in schedule.day_types:
+ total_appliances += total_day * cte.DAYS_A_MONTH[day_type][month] * thermal_zone.appliances.density
+ appliances_demand.append(total_appliances * area)
+
+ building.lighting_electrical_demand[cte.MONTH] = pd.DataFrame(lighting_demand, columns=[cte.INSEL_MEB])
+ building.appliances_electrical_demand[cte.MONTH] = pd.DataFrame(appliances_demand, columns=[cte.INSEL_MEB])
+
def enrich(self):
for building in self._city.buildings:
file_name = building.name + '.out'
insel_output_file_path = Path(self._base_path / file_name).resolve()
if insel_output_file_path.is_file():
- building.heating[cte.MONTH], building.cooling[cte.MONTH] = self._demand(insel_output_file_path)
+ building.heating[cte.MONTH], building.cooling[cte.MONTH] = self._conditioning_demand(insel_output_file_path)
building.heating[cte.YEAR] = pd.DataFrame(
[building.heating[cte.MONTH][cte.INSEL_MEB].astype(float).sum()], columns=[cte.INSEL_MEB]
)
building.cooling[cte.YEAR] = pd.DataFrame(
[building.cooling[cte.MONTH][cte.INSEL_MEB].astype(float).sum()], columns=[cte.INSEL_MEB]
)
+ self._dhw_demand()
+ self._electrical_demand()
diff --git a/hub/imports/results_factory.py b/hub/imports/results_factory.py
index 62adf124..794b4ac5 100644
--- a/hub/imports/results_factory.py
+++ b/hub/imports/results_factory.py
@@ -8,11 +8,13 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord
from pathlib import Path
from hub.helpers.utils import validate_import_export_type
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
from hub.imports.results.simplified_radiosity_algorithm import SimplifiedRadiosityAlgorithm
from hub.imports.results.insel_monthly_energry_balance import InselMonthlyEnergyBalance
from hub.imports.results.insel_heatpump_energy_demand import InselHeatPumpEnergyDemand
+logger = get_logger()
+
class ResultFactory:
"""
diff --git a/hub/imports/sensors_factory.py b/hub/imports/sensors_factory.py
index d4793950..a91b0e9d 100644
--- a/hub/imports/sensors_factory.py
+++ b/hub/imports/sensors_factory.py
@@ -6,9 +6,11 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
from pathlib import Path
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
from hub.helpers.utils import validate_import_export_type
+logger = get_logger()
+
class SensorsFactory:
"""
diff --git a/hub/imports/usage/comnet_usage_parameters.py b/hub/imports/usage/comnet_usage_parameters.py
index 2747c1af..6ee24ec6 100644
--- a/hub/imports/usage/comnet_usage_parameters.py
+++ b/hub/imports/usage/comnet_usage_parameters.py
@@ -8,6 +8,7 @@ import copy
import sys
import numpy
+from hub.hub_logger import get_logger
import hub.helpers.constants as cte
from hub.helpers.dictionaries import Dictionaries
from hub.city_model_structure.building_demand.usage import Usage
@@ -20,6 +21,8 @@ from hub.city_model_structure.attributes.schedule import Schedule
from hub.city_model_structure.building_demand.internal_gain import InternalGain
from hub.catalog_factories.usage_catalog_factory import UsageCatalogFactory
+logger = get_logger()
+
class ComnetUsageParameters:
"""
@@ -41,9 +44,9 @@ class ComnetUsageParameters:
try:
archetype_usage = self._search_archetypes(comnet_catalog, usage_name)
except KeyError:
- sys.stderr.write(f'Building {building.name} has unknown usage archetype for building function:'
- f' {building.function}')
- return
+ logger.error(f'Building {building.name} has unknown usage archetype for usage: {usage_name}')
+ sys.stderr.write(f'Building {building.name} has unknown usage archetype for usage: {usage_name}')
+ continue
for internal_zone in building.internal_zones:
if internal_zone.area is None:
@@ -55,7 +58,7 @@ class ComnetUsageParameters:
volume_per_area = internal_zone.volume / internal_zone.area
usage = Usage()
usage.name = usage_name
- self._assign_values(usage, archetype_usage, volume_per_area)
+ self._assign_values(usage, archetype_usage, volume_per_area, building.cold_water_temperature)
usage.percentage = 1
self._calculate_reduced_values_from_extended_library(usage, archetype_usage)
@@ -70,12 +73,12 @@ class ComnetUsageParameters:
raise KeyError('archetype not found')
@staticmethod
- def _assign_values(usage, archetype, volume_per_area):
+ def _assign_values(usage, archetype, volume_per_area, cold_water_temperature):
# Due to the fact that python is not a typed language, the wrong object type is assigned to
# usage.occupancy when writing usage.occupancy = archetype.occupancy.
# Same happens for lighting and appliances. Therefore, this walk around has been done.
usage.mechanical_air_change = archetype.ventilation_rate / volume_per_area \
- * cte.HOUR_TO_MINUTES * cte.MINUTES_TO_SECONDS
+ * cte.HOUR_TO_SECONDS
_occupancy = Occupancy()
_occupancy.occupancy_density = archetype.occupancy.occupancy_density
_occupancy.sensible_radiative_internal_gain = archetype.occupancy.sensible_radiative_internal_gain
@@ -105,6 +108,14 @@ class ComnetUsageParameters:
_domestic_hot_water = DomesticHotWater()
_domestic_hot_water.density = archetype.domestic_hot_water.density
_domestic_hot_water.service_temperature = archetype.domestic_hot_water.service_temperature
+ peak_flow = None
+ if len(cold_water_temperature) > 0:
+ cold_temperature = cold_water_temperature[cte.YEAR]['epw']
+ peak_flow = 0
+ if (archetype.domestic_hot_water.service_temperature - cold_temperature) > 0:
+ peak_flow = archetype.domestic_hot_water.density / cte.WATER_DENSITY / cte.WATER_HEAT_CAPACITY \
+ / (archetype.domestic_hot_water.service_temperature - cold_temperature)
+ _domestic_hot_water.peak_flow = peak_flow
_domestic_hot_water.schedules = archetype.domestic_hot_water.schedules
usage.domestic_hot_water = _domestic_hot_water
diff --git a/hub/imports/usage/nrcan_usage_parameters.py b/hub/imports/usage/nrcan_usage_parameters.py
index bc80487b..5898f2a0 100644
--- a/hub/imports/usage/nrcan_usage_parameters.py
+++ b/hub/imports/usage/nrcan_usage_parameters.py
@@ -7,6 +7,7 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
import sys
+from hub.hub_logger import get_logger
import hub.helpers.constants as cte
from hub.helpers.dictionaries import Dictionaries
from hub.city_model_structure.building_demand.usage import Usage
@@ -17,6 +18,8 @@ from hub.city_model_structure.building_demand.thermal_control import ThermalCont
from hub.city_model_structure.building_demand.domestic_hot_water import DomesticHotWater
from hub.catalog_factories.usage_catalog_factory import UsageCatalogFactory
+logger = get_logger()
+
class NrcanUsageParameters:
"""
@@ -40,17 +43,17 @@ class NrcanUsageParameters:
try:
archetype_usage = self._search_archetypes(nrcan_catalog, usage_name)
except KeyError:
- sys.stderr.write(f'Building {building.name} has unknown usage archetype for building function:'
- f' {building.function}')
- return
+ logger.error(f'Building {building.name} has unknown usage archetype for usage: {usage_name}\n')
+ sys.stderr.write(f'Building {building.name} has unknown usage archetype for usage: {usage_name}\n')
+ continue
usage_name = Dictionaries().hub_usage_to_comnet_usage[building.function]
try:
comnet_archetype_usage = self._search_archetypes(comnet_catalog, usage_name)
except KeyError:
- sys.stderr.write(f'Building {building.name} has unknown usage archetype for building function:'
- f' {building.function}')
- return
+ logger.error(f'Building {building.name} has unknown usage archetype for usage: {usage_name}\n')
+ sys.stderr.write(f'Building {building.name} has unknown usage archetype for usage: {usage_name}\n')
+ continue
for internal_zone in building.internal_zones:
if internal_zone.area is None:
@@ -62,8 +65,8 @@ class NrcanUsageParameters:
volume_per_area = internal_zone.volume / internal_zone.area
usage = Usage()
usage.name = usage_name
- self._assign_values(usage, archetype_usage, volume_per_area)
- self._assign_comnet_extra_values(usage, comnet_archetype_usage)
+ self._assign_values(usage, archetype_usage, volume_per_area, building.cold_water_temperature)
+ self._assign_comnet_extra_values(usage, comnet_archetype_usage, archetype_usage.occupancy.occupancy_density)
usage.percentage = 1
self._calculate_reduced_values_from_extended_library(usage, archetype_usage)
@@ -78,12 +81,11 @@ class NrcanUsageParameters:
raise KeyError('archetype not found')
@staticmethod
- def _assign_values(usage, archetype, volume_per_area):
+ def _assign_values(usage, archetype, volume_per_area, cold_water_temperature):
if archetype.mechanical_air_change > 0:
usage.mechanical_air_change = archetype.mechanical_air_change
elif archetype.ventilation_rate > 0:
- usage.mechanical_air_change = archetype.ventilation_rate / volume_per_area \
- * cte.HOUR_TO_MINUTES * cte.MINUTES_TO_SECONDS
+ usage.mechanical_air_change = archetype.ventilation_rate / volume_per_area * cte.HOUR_TO_SECONDS
else:
usage.mechanical_air_change = 0
_occupancy = Occupancy()
@@ -113,17 +115,26 @@ class NrcanUsageParameters:
_control.hvac_availability_schedules = archetype.thermal_control.hvac_availability_schedules
usage.thermal_control = _control
_domestic_hot_water = DomesticHotWater()
- _domestic_hot_water.density = archetype.domestic_hot_water.density
+ _domestic_hot_water.peak_flow = archetype.domestic_hot_water.peak_flow
_domestic_hot_water.service_temperature = archetype.domestic_hot_water.service_temperature
+ density = None
+ if len(cold_water_temperature) > 0:
+ cold_temperature = cold_water_temperature[cte.YEAR]['epw']
+ density = archetype.domestic_hot_water.peak_flow * cte.WATER_DENSITY * cte.WATER_HEAT_CAPACITY \
+ * (archetype.domestic_hot_water.service_temperature - cold_temperature)
+ _domestic_hot_water.density = density
_domestic_hot_water.schedules = archetype.domestic_hot_water.schedules
usage.domestic_hot_water = _domestic_hot_water
@staticmethod
- def _assign_comnet_extra_values(usage, archetype):
+ def _assign_comnet_extra_values(usage, archetype, occupancy_density):
_occupancy = usage.occupancy
- _occupancy.sensible_radiative_internal_gain = archetype.occupancy.sensible_radiative_internal_gain
- _occupancy.latent_internal_gain = archetype.occupancy.latent_internal_gain
- _occupancy.sensible_convective_internal_gain = archetype.occupancy.sensible_convective_internal_gain
+ archetype_density = archetype.occupancy.occupancy_density
+ _occupancy.sensible_radiative_internal_gain = archetype.occupancy.sensible_radiative_internal_gain \
+ * occupancy_density / archetype_density
+ _occupancy.latent_internal_gain = archetype.occupancy.latent_internal_gain * occupancy_density / archetype_density
+ _occupancy.sensible_convective_internal_gain = archetype.occupancy.sensible_convective_internal_gain \
+ * occupancy_density / archetype_density
@staticmethod
def _calculate_reduced_values_from_extended_library(usage, archetype):
diff --git a/hub/imports/usage_factory.py b/hub/imports/usage_factory.py
index e8962480..4871532c 100644
--- a/hub/imports/usage_factory.py
+++ b/hub/imports/usage_factory.py
@@ -9,9 +9,11 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord
from pathlib import Path
from hub.imports.usage.comnet_usage_parameters import ComnetUsageParameters
from hub.imports.usage.nrcan_usage_parameters import NrcanUsageParameters
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
from hub.helpers.utils import validate_import_export_type
+logger = get_logger()
+
class UsageFactory:
"""
diff --git a/hub/imports/weather/epw_weather_parameters.py b/hub/imports/weather/epw_weather_parameters.py
index 47ddb5fe..faaa91f0 100644
--- a/hub/imports/weather/epw_weather_parameters.py
+++ b/hub/imports/weather/epw_weather_parameters.py
@@ -32,14 +32,13 @@ class EpwWeatherParameters:
_ = file.readline().split(',')
line = file.readline().split(',')
number_records = int(line[1])
- depth_measurement_ground_temperature = []
- ground_temperature = []
+ ground_temperature = {}
for i in range(0, number_records):
- depth_measurement_ground_temperature.append(line[i*16+2])
+ depth_measurement_ground_temperature = line[i*16+2]
temperatures = []
for j in range(0, 12):
- temperatures.append(line[i*16+j+6])
- ground_temperature.append(temperatures)
+ temperatures.append(float(line[i*16+j+6]))
+ ground_temperature[depth_measurement_ground_temperature] = temperatures
file.close()
except SystemExit:
sys.stderr.write(f'Error: weather file {self._path} not found. Please download it from '
@@ -74,6 +73,14 @@ class EpwWeatherParameters:
sys.exit()
for building in self._city.buildings:
+ building.ground_temperature[cte.MONTH] = ground_temperature
+ ground_temperature = {}
+ for set in building.ground_temperature[cte.MONTH]:
+ temperature = 0
+ for value in building.ground_temperature[cte.MONTH][set]:
+ temperature += value / 12
+ ground_temperature[set] = [temperature]
+ building.ground_temperature[cte.YEAR] = ground_temperature
if cte.HOUR in building.external_temperature:
del building.external_temperature[cte.HOUR]
new_value = pd.DataFrame(self._weather_values[['dry_bulb_temperature_c']].to_numpy(), columns=['epw'])
@@ -111,10 +118,46 @@ class EpwWeatherParameters:
building.beam[cte.HOUR] = new_value
else:
pd.concat([building.beam[cte.HOUR], new_value], axis=1)
+
+ new_value = wh().cold_water_temperature(building.external_temperature[cte.HOUR]['epw'])
+ if cte.HOUR not in building.cold_water_temperature:
+ building.cold_water_temperature[cte.HOUR] = new_value
+ else:
+ pd.concat([building.cold_water_temperature[cte.HOUR], new_value], axis=1)
# create the monthly and yearly values out of the hourly
for building in self._city.buildings:
if cte.MONTH not in building.external_temperature:
- building.external_temperature[cte.MONTH] = wh().get_monthly_mean_values(building.external_temperature[cte.HOUR][['epw']])
+ building.external_temperature[cte.MONTH] = \
+ wh().get_monthly_mean_values(building.external_temperature[cte.HOUR][['epw']])
if cte.YEAR not in building.external_temperature:
- building.external_temperature[cte.YEAR] = wh(). get_yearly_mean_values(building.external_temperature[cte.HOUR][['epw']])
+ building.external_temperature[cte.YEAR] = \
+ wh(). get_yearly_mean_values(building.external_temperature[cte.HOUR][['epw']])
+ if cte.MONTH not in building.cold_water_temperature:
+ building.cold_water_temperature[cte.MONTH] = wh().get_monthly_mean_values(
+ building.cold_water_temperature[cte.HOUR][['epw']])
+ if cte.YEAR not in building.cold_water_temperature:
+ building.cold_water_temperature[cte.YEAR] = wh().get_yearly_mean_values(
+ building.cold_water_temperature[cte.HOUR][['epw']])
+
+ # If the usage has already being imported, the domestic hot water missing values must be calculated here that
+ # the cold water temperature is finally known
+ cold_temperature = building.cold_water_temperature[cte.YEAR]['epw']
+ for internal_zone in building.internal_zones:
+ if internal_zone.usages is not None:
+ for usage in internal_zone.usages:
+ if usage.domestic_hot_water.peak_flow is None:
+ if usage.domestic_hot_water.density is None:
+ continue
+ peak_flow = 0
+ if (usage.domestic_hot_water.service_temperature - cold_temperature) > 0:
+ peak_flow = usage.domestic_hot_water.density / cte.WATER_DENSITY / cte.WATER_HEAT_CAPACITY \
+ / (usage.domestic_hot_water.service_temperature - cold_temperature)
+ usage.domestic_hot_water.peak_flow = peak_flow
+ if usage.domestic_hot_water.density is None:
+ if usage.domestic_hot_water.peak_flow is None:
+ continue
+ density = usage.domestic_hot_water.peak_flow * cte.WATER_DENSITY * cte.WATER_HEAT_CAPACITY \
+ * (usage.domestic_hot_water.service_temperature - cold_temperature)
+ usage.domestic_hot_water.density = density
+
self._city.level_of_detail.weather = 2
diff --git a/hub/imports/weather/helpers/weather.py b/hub/imports/weather/helpers/weather.py
index ae4c9ad2..f595f41e 100644
--- a/hub/imports/weather/helpers/weather.py
+++ b/hub/imports/weather/helpers/weather.py
@@ -4,6 +4,7 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
+
import math
import hub.helpers.constants as cte
import pandas as pd
@@ -20,7 +21,7 @@ class Weather:
def sky_temperature(ambient_temperature):
"""
Get sky temperature from ambient temperature in Celsius
- :return: float
+ :return: List[float]
"""
# Swinbank - Source sky model approximation(1963) based on cloudiness statistics(32 %) in United States
# ambient temperatures( in °C)
@@ -32,6 +33,37 @@ class Weather:
values.append(value)
return values
+ @staticmethod
+ def cold_water_temperature(ambient_temperature):
+ """
+ Get cold water temperature from ambient temperature in Celsius
+ :return: dict
+ """
+ # Equation from "TOWARDS DEVELOPMENT OF AN ALGORITHM FOR MAINS WATER TEMPERATURE", 2004, Jay Burch
+ # and Craig Christensen, National Renewable Energy Laboratory
+ # ambient temperatures( in °C)
+ # cold water temperatures( in °C)
+ ambient_temperature_fahrenheit = []
+ average_temperature = 0
+ maximum_temperature = -1000
+ minimum_temperature = 1000
+ for temperature in ambient_temperature:
+ value = temperature * 9 / 5 + 32
+ ambient_temperature_fahrenheit.append(value)
+ average_temperature += value / 8760
+ if value > maximum_temperature:
+ maximum_temperature = value
+ if value < minimum_temperature:
+ minimum_temperature = value
+ delta_temperature = maximum_temperature - minimum_temperature
+ ratio = 0.4 + 0.01 * (average_temperature - 44)
+ lag = 35 - 1 * (average_temperature - 44)
+ cold_temperature = []
+ for temperature in ambient_temperature_fahrenheit:
+ radians = (0.986 * (temperature-15-lag) - 90) * math.pi / 180
+ cold_temperature.append((average_temperature + 6 + ratio * (delta_temperature/2) * math.sin(radians) - 32) * 5/9)
+ return pd.DataFrame(cold_temperature, columns=['epw'])
+
def get_monthly_mean_values(self, values):
out = None
if values is not None:
@@ -41,7 +73,8 @@ class Weather:
del out['month']
return out
- def get_yearly_mean_values(self, values):
+ @staticmethod
+ def get_yearly_mean_values(values):
return values.mean()
def get_total_month(self, values):
diff --git a/hub/imports/weather_factory.py b/hub/imports/weather_factory.py
index 296755de..5ddf355c 100644
--- a/hub/imports/weather_factory.py
+++ b/hub/imports/weather_factory.py
@@ -7,9 +7,11 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
from pathlib import Path
from hub.imports.weather.xls_weather_parameters import XlsWeatherParameters
from hub.imports.weather.epw_weather_parameters import EpwWeatherParameters
-from hub.hub_logger import logger
+from hub.hub_logger import get_logger
from hub.helpers.utils import validate_import_export_type
+logger = get_logger()
+
class WeatherFactory:
"""
diff --git a/hub/unittests/test_city_layers.py b/hub/unittests/test_city_layers.py
index a763e895..0d9b02be 100644
--- a/hub/unittests/test_city_layers.py
+++ b/hub/unittests/test_city_layers.py
@@ -59,7 +59,6 @@ class CityLayerTest(TestCase):
return gdf, target_buildings, adjacent_buildings
def _genidf(self, bldgs_group):
- t0 = time.time()
buildings_df, target_buildings, adjacent_buildings = self._prepare_buildings(bldgs_group)
output_path = (Path(__file__).parent / 'tests_outputs').resolve()
city = GeometryFactory('gpandas', data_frame=buildings_df).city
@@ -70,7 +69,6 @@ class CityLayerTest(TestCase):
filepath = os.path.join(output_path, city.name + ".idf")
newfilepath = filepath[:-4] + "_" + uuid.uuid4().hex[:10] + ".idf"
os.rename(filepath, newfilepath)
- print(f"It took {round((time.time() - t0), 0)} seconds")
return newfilepath
def test_city_layers(self):
diff --git a/hub/unittests/test_city_merge.py b/hub/unittests/test_city_merge.py
index 28f2ec77..7a5483fc 100644
--- a/hub/unittests/test_city_merge.py
+++ b/hub/unittests/test_city_merge.py
@@ -63,7 +63,7 @@ class TestCityMerge(TestCase):
ResultFactory('sra', city_two, self._output_path).enrich()
merged_city = city_one.merge(city_two)
self.assertEqual(len(merged_city.buildings), 2)
- self.assertEqual(merged_city.buildings[1].surfaces[0].global_irradiance['year'].iloc[0], 254.3453196347032)
+ self.assertEqual(round(merged_city.buildings[1].surfaces[0].global_irradiance['year'].iloc[0]), 254)
self.assertEqual(merged_city.buildings[0].surfaces[0].global_irradiance, {})
self.assertEqual(merged_city.buildings[0].surfaces[2].global_irradiance, {})
self.assertEqual(city_one.buildings[0].surfaces[0].global_irradiance, merged_city.buildings[0].surfaces[0].global_irradiance)
diff --git a/hub/unittests/test_costs_catalog.py b/hub/unittests/test_costs_catalog.py
index 22786f30..1dd25021 100644
--- a/hub/unittests/test_costs_catalog.py
+++ b/hub/unittests/test_costs_catalog.py
@@ -17,7 +17,7 @@ class TestCostsCatalog(TestCase):
catalog_categories = catalog.names()
self.assertIsNotNone(catalog, 'catalog is none')
content = catalog.entries()
- self.assertTrue(len(content.archetypes) == 1)
+ self.assertTrue(len(content.archetypes) == 2)
# retrieving all the entries should not raise any exceptions
for category in catalog_categories:
diff --git a/hub/unittests/test_db_factory.py b/hub/unittests/test_db_factory.py
index 9d815bf3..ee5730af 100644
--- a/hub/unittests/test_db_factory.py
+++ b/hub/unittests/test_db_factory.py
@@ -4,7 +4,11 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Peter Yefi peteryefi@gmail.com
"""
+import unittest
from unittest import TestCase
+
+import sqlalchemy.exc
+
from hub.imports.geometry_factory import GeometryFactory
from hub.imports.db_factory import DBFactory
from hub.imports.user_factory import UserFactory
@@ -16,6 +20,40 @@ from hub.persistence.models import User, UserRoles
from sqlalchemy.exc import ProgrammingError
import uuid
+class Skip:
+
+ _value = False
+ _message = 'PostgreSQL not properly installed in host machine'
+
+ def __init__(self):
+ # Create test database
+ env = '/usr/local/etc/hub/.env'
+ repo = Repository(db_name='test_db', app_env='TEST', dotenv_path=env)
+ eng = create_engine(f'postgresql://{repo.configuration.get_db_user()}@/{repo.configuration.get_db_user()}')
+ try:
+ # delete test database if it exists
+ conn = eng.connect()
+ conn.execute('commit')
+ conn.execute('DROP DATABASE test_db')
+ conn.close()
+ except ProgrammingError as err:
+ print(f'Database does not exist. Nothing to delete')
+ except sqlalchemy.exc.OperationalError:
+ self._value = True
+
+ @property
+ def value(self):
+ return self._value
+
+ @property
+ def message(self):
+ return self._message
+
+ @value.setter
+ def value(self, skip_value):
+ self._value = skip_value
+
+skip = Skip()
class TestDBFactory(TestCase):
"""
@@ -32,7 +70,6 @@ class TestDBFactory(TestCase):
env = '/usr/local/etc/hub/.env'
repo = Repository(db_name='test_db', app_env='TEST', dotenv_path=env)
eng = create_engine(f'postgresql://{repo.configuration.get_db_user()}@/{repo.configuration.get_db_user()}')
-
try:
# delete test database if it exists
conn = eng.connect()
@@ -41,7 +78,9 @@ class TestDBFactory(TestCase):
conn.close()
except ProgrammingError as err:
print(f'Database does not exist. Nothing to delete')
-
+ except sqlalchemy.exc.OperationalError:
+ skip.value = True
+ return
cnn = eng.connect()
cnn.execute('commit')
cnn.execute("CREATE DATABASE test_db")
@@ -62,11 +101,13 @@ class TestDBFactory(TestCase):
cls._user = user_factory.create_user("Admin", cls.application.id, "Admin@123", UserRoles.Admin)
cls.pickle_path = 'tests_data/pickle_path.bz2'
+ @unittest.skipIf(skip.value, skip.message)
def test_save_application(self):
self.assertEqual(self.application.name, "test")
self.assertEqual(self.application.description, "test application")
self.assertEqual(str(self.application.application_uuid), self.unique_id)
+ @unittest.skipIf(skip.value, skip.message)
def test_save_city(self):
self.city.name = "Montréal"
saved_city = self._db_factory.persist_city(self.city, self.pickle_path, self.application.id, self._user.id)
@@ -75,6 +116,7 @@ class TestDBFactory(TestCase):
self.assertEqual(saved_city.level_of_detail, self.city.level_of_detail.geometry)
self._db_factory.delete_city(saved_city.id)
+ @unittest.skipIf(skip.value, skip.message)
def test_get_city_by_name(self):
city = self._db_factory.persist_city(self.city, self.pickle_path, self.application.id, self._user.id)
retrieved_city = self._export_db_factory.get_city_by_name(city.name)
@@ -82,18 +124,21 @@ class TestDBFactory(TestCase):
self.assertEqual(retrieved_city[0].user_id, self._user.id)
self._db_factory.delete_city(city.id)
+ @unittest.skipIf(skip.value, skip.message)
def test_get_city_by_user(self):
city = self._db_factory.persist_city(self.city, self.pickle_path, self.application.id, self._user.id)
retrieved_city = self._export_db_factory.get_city_by_user(self._user.id)
self.assertEqual(retrieved_city[0].pickle_path, self.pickle_path)
self._db_factory.delete_city(city.id)
+ @unittest.skipIf(skip.value, skip.message)
def test_get_city_by_id(self):
city = self._db_factory.persist_city(self.city, self.pickle_path, self.application.id, self._user.id)
retrieved_city = self._export_db_factory.get_city(city.id)
self.assertEqual(retrieved_city.level_of_detail, self.city.level_of_detail.geometry)
self._db_factory.delete_city(city.id)
+ @unittest.skipIf(skip.value, skip.message)
def test_get_update_city(self):
city = self._db_factory.persist_city(self.city, self.pickle_path, self.application.id, self._user.id)
self.city.name = "Ottawa"
diff --git a/hub/unittests/test_energy_systems_water_to_water_hp.py b/hub/unittests/test_energy_systems_water_to_water_hp.py
index d2096d6f..c54c29d6 100644
--- a/hub/unittests/test_energy_systems_water_to_water_hp.py
+++ b/hub/unittests/test_energy_systems_water_to_water_hp.py
@@ -82,9 +82,3 @@ class TestEnergySystemsFactory(TestCase):
df = pd.read_csv(self._output_path)
self.assertEqual(df.shape, (13, 3))
self.assertEqual(df.iloc[0, 1], 1031544.62)
-
- def tearDown(self) -> None:
- try:
- os.remove(self._output_path)
- except OSError:
- pass
diff --git a/hub/unittests/test_exports.py b/hub/unittests/test_exports.py
index 283c9595..3487569f 100644
--- a/hub/unittests/test_exports.py
+++ b/hub/unittests/test_exports.py
@@ -71,8 +71,6 @@ class TestExports(TestCase):
self._complete_city = self._get_complete_city(from_pickle)
EnergyBuildingsExportsFactory(export_type, self._complete_city, self._output_path).export()
-
-
def test_obj_export(self):
"""
export to obj
@@ -102,17 +100,18 @@ class TestExports(TestCase):
"""
export to IDF
"""
- city = self._get_citygml('EV_GM_MB_LoD2.gml')
- for building in city.buildings:
- building.year_of_construction = 2006
- if building.function is None:
- building.function = 'large office'
- ConstructionFactory('nrel', city).enrich()
- UsageFactory('comnet', city).enrich()
+ file = 'FZK_Haus_LoD_2.gml'
+ file_path = (self._example_path / file).resolve()
+ city = GeometryFactory('citygml',
+ path=file_path,
+ function_to_hub=Dictionaries().alkis_function_to_hub_function).city
+ self.assertIsNotNone(city, 'city is none')
+ EnergyBuildingsExportsFactory('idf', city, self._output_path).export()
+ ConstructionFactory('nrcan', city).enrich()
+ EnergyBuildingsExportsFactory('idf', city, self._output_path).export()
+ UsageFactory('nrcan', city).enrich()
try:
EnergyBuildingsExportsFactory('idf', city, self._output_path).export()
- EnergyBuildingsExportsFactory('idf', city, self._output_path,
- target_buildings=['gml_1066158', 'gml_1066159']).export()
except Exception:
self.fail("Idf ExportsFactory raised ExceptionType unexpectedly!")
diff --git a/hub/unittests/test_geometry_factory.py b/hub/unittests/test_geometry_factory.py
index c6a19d39..42be913b 100644
--- a/hub/unittests/test_geometry_factory.py
+++ b/hub/unittests/test_geometry_factory.py
@@ -4,12 +4,12 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
-
from pathlib import Path
from unittest import TestCase
-from hub.helpers.geometry_helper import GeometryHelper
import hub.exports.exports_factory
+from hub.helpers.dictionaries import MontrealFunctionToHubFunction
+from hub.helpers.geometry_helper import GeometryHelper
from hub.imports.construction_factory import ConstructionFactory
from hub.imports.geometry_factory import GeometryFactory
@@ -19,6 +19,7 @@ class TestGeometryFactory(TestCase):
Non-functional TestGeometryFactory
Load testing
"""
+
def setUp(self) -> None:
"""
Test setup
@@ -34,7 +35,8 @@ class TestGeometryFactory(TestCase):
path=file_path,
height_field=height_field,
year_of_construction_field=year_of_construction_field,
- function_field=function_field).city
+ function_field=function_field,
+ ).city
self.assertIsNotNone(self._city, 'city is none')
return self._city
@@ -116,7 +118,6 @@ class TestGeometryFactory(TestCase):
city = self._get_city(file, 'rhino')
self.assertIsNotNone(city, 'city is none')
self.assertTrue(len(city.buildings) == 36)
- i = 0
def test_import_obj(self):
"""
@@ -133,18 +134,15 @@ class TestGeometryFactory(TestCase):
"""
Test geojson import
"""
- file = 'neighbours.geojson'
- city = self._get_city(file, 'geojson',
- height_field='citygml_me',
- year_of_construction_field='ANNEE_CONS',
- function_field='CODE_UTILI')
-
- hub.exports.exports_factory.ExportsFactory('obj', city, self._output_path).export()
- self.assertEqual(207, len(city.buildings), 'wrong number of buildings')
- self._check_buildings(city)
- for building in city.buildings:
- for wall in building.walls:
- self.assertIsNotNone(wall.percentage_shared, 'wall percentage shared is not assigned')
+ file = '2000_buildings.geojson'
+ city = GeometryFactory('geojson',
+ path=(self._example_path / file).resolve(),
+ height_field='building_height',
+ year_of_construction_field='ANNEE_CONS',
+ function_field='CODE_UTILI',
+ function_to_hub=MontrealFunctionToHubFunction().dictionary).city
+ # include 25 square meter condition for a building reduces buildings number from 2289 to 2057
+ self.assertEqual(2057, len(city.buildings), 'wrong number of buildings')
def test_map_neighbours(self):
"""
@@ -155,14 +153,20 @@ class TestGeometryFactory(TestCase):
height_field='citygml_me',
year_of_construction_field='ANNEE_CONS',
function_field='LIBELLE_UT')
- print(GeometryHelper.city_mapping(city))
+ info_lod1 = GeometryHelper.city_mapping(city, plot=False)
+ city = self._get_city(file, 'geojson',
+ year_of_construction_field='ANNEE_CONS',
+ function_field='LIBELLE_UT')
+
+ info_lod0 = GeometryHelper.city_mapping(city, plot=False)
+ hub.exports.exports_factory.ExportsFactory('obj', city, self._output_path).export()
+ self.assertEqual(info_lod0, info_lod1)
for building in city.buildings:
self.assertEqual(2, len(building.neighbours))
- self.assertEqual('2_part_0_zone_0',city.city_object('1_part_0_zone_0').neighbours[0].name)
- self.assertEqual('3_part_0_zone_0',city.city_object('1_part_0_zone_0').neighbours[1].name)
- self.assertEqual('1_part_0_zone_0',city.city_object('2_part_0_zone_0').neighbours[0].name)
- self.assertEqual('3_part_0_zone_0',city.city_object('2_part_0_zone_0').neighbours[1].name)
+ self.assertEqual('2_part_0_zone_0', city.city_object('1_part_0_zone_0').neighbours[0].name)
+ self.assertEqual('3_part_0_zone_0', city.city_object('1_part_0_zone_0').neighbours[1].name)
+ self.assertEqual('1_part_0_zone_0', city.city_object('2_part_0_zone_0').neighbours[0].name)
+ self.assertEqual('3_part_0_zone_0', city.city_object('2_part_0_zone_0').neighbours[1].name)
self.assertEqual('1_part_0_zone_0', city.city_object('3_part_0_zone_0').neighbours[0].name)
self.assertEqual('2_part_0_zone_0', city.city_object('3_part_0_zone_0').neighbours[1].name)
-
diff --git a/hub/unittests/test_usage_factory.py b/hub/unittests/test_usage_factory.py
index 6ff43b60..ad5fb1b4 100644
--- a/hub/unittests/test_usage_factory.py
+++ b/hub/unittests/test_usage_factory.py
@@ -51,8 +51,9 @@ class TestUsageFactory(TestCase):
self.assertIsNotNone(building.walls, 'building walls is none')
self.assertIsNotNone(building.roofs, 'building roofs is none')
for internal_zone in building.internal_zones:
- self.assertTrue(len(internal_zone.usages) > 0, 'usage zones are not defined')
- self.assertIsNone(internal_zone.thermal_zones, 'thermal zones are defined')
+ if internal_zone.usages is not None:
+ self.assertTrue(len(internal_zone.usages) > 0, 'usage zones are not defined')
+ self.assertIsNone(internal_zone.thermal_zones, 'thermal zones are defined')
self.assertIsNone(building.basement_heated, 'building basement_heated is not none')
self.assertIsNone(building.attic_heated, 'building attic_heated is not none')
self.assertIsNone(building.terrains, 'building terrains is not none')
@@ -66,7 +67,6 @@ class TestUsageFactory(TestCase):
self.assertIsNotNone(building.roof_type, 'building roof type is none')
self.assertIsNotNone(building.floor_area, 'building floor_area is none')
self.assertIsNone(building.households, 'building households is not none')
- self.assertTrue(building.is_conditioned, 'building is not conditioned')
def _check_usage(self, usage):
self.assertIsNotNone(usage.name, 'usage is none')
@@ -128,3 +128,59 @@ class TestUsageFactory(TestCase):
self.assertIsNotNone(usage.domestic_hot_water.service_temperature,
'domestic hot water service temperature is none')
self.assertIsNotNone(usage.domestic_hot_water.schedules, 'domestic hot water schedules is none')
+
+ def test_import_nrcan(self):
+ """
+ Enrich the city with the usage information from nrcan and verify it
+ """
+ file = 'selected_building.geojson'
+ file_path = (self._example_path / file).resolve()
+ city = GeometryFactory('geojson',
+ path=file_path,
+ height_field='building_height',
+ year_of_construction_field='ANNEE_CONS',
+ function_field='CODE_UTILI',
+ function_to_hub=Dictionaries().montreal_function_to_hub_function).city
+
+ UsageFactory('nrcan', city).enrich()
+ self._check_buildings(city)
+ for building in city.buildings:
+ for internal_zone in building.internal_zones:
+ if internal_zone.usages is not None:
+ self.assertIsNot(len(internal_zone.usages), 0, 'no building usage defined')
+ for usage in internal_zone.usages:
+ self._check_usage(usage)
+ self.assertIsNotNone(usage.mechanical_air_change, 'mechanical air change is none')
+ self.assertIsNotNone(usage.thermal_control.heating_set_point_schedules,
+ 'control heating set point schedule is none')
+ self.assertIsNotNone(usage.thermal_control.cooling_set_point_schedules,
+ 'control cooling set point schedule is none')
+ self.assertIsNotNone(usage.occupancy, 'occupancy is none')
+ occupancy = usage.occupancy
+ self.assertIsNotNone(occupancy.occupancy_density, 'occupancy density is none')
+ self.assertIsNotNone(occupancy.latent_internal_gain, 'occupancy latent internal gain is none')
+ self.assertIsNotNone(occupancy.sensible_convective_internal_gain,
+ 'occupancy sensible convective internal gain is none')
+ self.assertIsNotNone(occupancy.sensible_radiative_internal_gain,
+ 'occupancy sensible radiant internal gain is none')
+ self.assertIsNotNone(occupancy.occupancy_schedules, 'occupancy schedule is none')
+ self.assertIsNotNone(usage.lighting, 'lighting is none')
+ lighting = usage.lighting
+ self.assertIsNotNone(lighting.density, 'lighting density is none')
+ self.assertIsNotNone(lighting.latent_fraction, 'lighting latent fraction is none')
+ self.assertIsNotNone(lighting.convective_fraction, 'lighting convective fraction is none')
+ self.assertIsNotNone(lighting.radiative_fraction, 'lighting radiant fraction is none')
+ self.assertIsNotNone(lighting.schedules, 'lighting schedule is none')
+ self.assertIsNotNone(usage.appliances, 'appliances is none')
+ appliances = usage.appliances
+ self.assertIsNotNone(appliances.density, 'appliances density is none')
+ self.assertIsNotNone(appliances.latent_fraction, 'appliances latent fraction is none')
+ self.assertIsNotNone(appliances.convective_fraction, 'appliances convective fraction is none')
+ self.assertIsNotNone(appliances.radiative_fraction, 'appliances radiant fraction is none')
+ self.assertIsNotNone(appliances.schedules, 'appliances schedule is none')
+ self.assertIsNotNone(usage.thermal_control.hvac_availability_schedules,
+ 'control hvac availability is none')
+ self.assertIsNotNone(usage.domestic_hot_water.peak_flow, 'domestic hot water peak flow is none')
+ self.assertIsNotNone(usage.domestic_hot_water.service_temperature,
+ 'domestic hot water service temperature is none')
+ self.assertIsNotNone(usage.domestic_hot_water.schedules, 'domestic hot water schedules is none')
diff --git a/hub/unittests/tests_data/2000_buildings.geojson b/hub/unittests/tests_data/2000_buildings.geojson
new file mode 100644
index 00000000..68cae81e
--- /dev/null
+++ b/hub/unittests/tests_data/2000_buildings.geojson
@@ -0,0 +1,256070 @@
+{
+ "type":"FeatureCollection",
+ "features":[
+ {
+ "type":"Feature",
+ "id":0,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56519740275978,
+ 45.52093542208236
+ ],
+ [
+ -73.56539585795433,
+ 45.52102665021003
+ ],
+ [
+ -73.5654306248453,
+ 45.520960705622365
+ ],
+ [
+ -73.56511545473629,
+ 45.52081582484074
+ ],
+ [
+ -73.56511246988642,
+ 45.520819146936375
+ ],
+ [
+ -73.56510636978498,
+ 45.520825747060876
+ ],
+ [
+ -73.56526236978438,
+ 45.52089634653946
+ ],
+ [
+ -73.56523916997357,
+ 45.52092164716658
+ ],
+ [
+ -73.56521826972921,
+ 45.52091224655323
+ ],
+ [
+ -73.56519740275978,
+ 45.52093542208236
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":0,
+ "ID_UEV":"01040584",
+ "CIVIQUE_DE":" 1020",
+ "CIVIQUE_FI":" 1022",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-73-0136-3-000-0000",
+ "SUPERFICIE":255,
+ "SUPERFIC_1":228,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000912956090839,
+ "OBJECTID":82550,
+ "Join_Count":1,
+ "TARGET_FID":82550,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":82550,
+ "Shape_Le_1":0.000912956090839,
+ "Shape_Ar_1":1.66196971524e-08,
+ "OBJECTID_3":82550,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82549,
+ "g_objectid":"941500",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565298",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"68",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994273064610000000",
+ "g_sup_tota":"557.7",
+ "g_geometry":"0.00117041",
+ "g_geomet_1":"6.454e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000912956090839,
+ "Shape_Area":1.66196971524e-08,
+ "Shape_Le_3":0.000912957894818,
+ "Shape_Ar_2":1.66196971524e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56491817045904,
+ 45.521569146449245
+ ],
+ [
+ -73.56505927049079,
+ 45.52160844682266
+ ],
+ [
+ -73.56505847009416,
+ 45.521610046716575
+ ],
+ [
+ -73.56519966995066,
+ 45.52164314716381
+ ],
+ [
+ -73.56526036969215,
+ 45.52151544703055
+ ],
+ [
+ -73.56526226995963,
+ 45.5215112471966
+ ],
+ [
+ -73.56525187019949,
+ 45.521508747081306
+ ],
+ [
+ -73.56529027035154,
+ 45.521428046417505
+ ],
+ [
+ -73.56529957024082,
+ 45.52143024705855
+ ],
+ [
+ -73.56531017054978,
+ 45.521408746966394
+ ],
+ [
+ -73.56530546979344,
+ 45.52140754727078
+ ],
+ [
+ -73.56516817029667,
+ 45.52137114721097
+ ],
+ [
+ -73.56516247039355,
+ 45.521369647141796
+ ],
+ [
+ -73.56515807001077,
+ 45.52137904685582
+ ],
+ [
+ -73.5650647698451,
+ 45.52135764658841
+ ],
+ [
+ -73.56502927000665,
+ 45.521349547294065
+ ],
+ [
+ -73.56499057038036,
+ 45.52143334702164
+ ],
+ [
+ -73.56496526975324,
+ 45.521427647118514
+ ],
+ [
+ -73.5649651699285,
+ 45.52142794659276
+ ],
+ [
+ -73.56493407047282,
+ 45.52154384672144
+ ],
+ [
+ -73.56493257040364,
+ 45.52154364707195
+ ],
+ [
+ -73.56491817045904,
+ 45.521569146449245
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1,
+ "ID_UEV":"01040586",
+ "CIVIQUE_DE":" 1100",
+ "CIVIQUE_FI":" 1100",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":11,
+ "NOMBRE_LOG":90,
+ "ANNEE_CONS":1978,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-73-1895-3-000-0000",
+ "SUPERFICIE":2942,
+ "SUPERFIC_1":6448,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00113753893497,
+ "OBJECTID":82551,
+ "Join_Count":1,
+ "TARGET_FID":82551,
+ "feature_id":"8e6f41d7-26b3-4751-8246-667ca6c37db4",
+ "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.5,
+ "heightmax":39.7,
+ "elevmin":30.59,
+ "elevmax":35.78,
+ "bldgarea":627.32,
+ "comment":" ",
+ "OBJECTID_2":82551,
+ "Shape_Le_1":0.00113753893497,
+ "Shape_Ar_1":7.22502750079e-08,
+ "OBJECTID_3":82551,
+ "Join_Cou_1":1,
+ "TARGET_F_1":82550,
+ "g_objectid":"941501",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565299",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"90",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994273189530000000",
+ "g_sup_tota":"2941.8",
+ "g_geometry":"0.00249628",
+ "g_geomet_1":"3.36349e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00113753893497,
+ "Shape_Area":7.22502750079e-08,
+ "Shape_Le_3":0.00113753878511,
+ "Shape_Ar_2":7.22502750079e-08,
+ "building_height":18.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":2,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56512448303032,
+ 45.52218407498537
+ ],
+ [
+ -73.56511527037527,
+ 45.52219264642379
+ ],
+ [
+ -73.56511517055053,
+ 45.522192747147855
+ ],
+ [
+ -73.565135370223,
+ 45.52221354666814
+ ],
+ [
+ -73.56510667015854,
+ 45.5222282469863
+ ],
+ [
+ -73.56510707035686,
+ 45.5222284466358
+ ],
+ [
+ -73.565074870131,
+ 45.52227304671403
+ ],
+ [
+ -73.56506258269388,
+ 45.52229009965867
+ ],
+ [
+ -73.56513134575684,
+ 45.522321860116044
+ ],
+ [
+ -73.56528367022705,
+ 45.52237594714254
+ ],
+ [
+ -73.56528386987654,
+ 45.522375746593724
+ ],
+ [
+ -73.56528956977967,
+ 45.52225964681554
+ ],
+ [
+ -73.56528988184442,
+ 45.52225334076935
+ ],
+ [
+ -73.56526472600814,
+ 45.52224213072005
+ ],
+ [
+ -73.56526186526472,
+ 45.52224530352823
+ ],
+ [
+ -73.56518771975931,
+ 45.522212262436256
+ ],
+ [
+ -73.56512448303032,
+ 45.52218407498537
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":2,
+ "ID_UEV":"01040588",
+ "CIVIQUE_DE":" 1180",
+ "CIVIQUE_FI":" 1180",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1940,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-74-0588-3-000-0000",
+ "SUPERFICIE":328,
+ "SUPERFIC_1":614,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000692883466536,
+ "OBJECTID":82552,
+ "Join_Count":1,
+ "TARGET_FID":82552,
+ "feature_id":"414ec5d5-97cc-4d0a-b7c1-856047d50d72",
+ "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.42,
+ "heightmax":47.53,
+ "elevmin":31.24,
+ "elevmax":36.45,
+ "bldgarea":974.45,
+ "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_2":82552,
+ "Shape_Le_1":0.000692883466536,
+ "Shape_Ar_1":2.42952373689e-08,
+ "OBJECTID_3":82552,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82551,
+ "g_objectid":"941503",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565302",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"145",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994274086060000000",
+ "g_sup_tota":"1013.7",
+ "g_geometry":"0.00154052",
+ "g_geomet_1":"1.16092e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000692883466536,
+ "Shape_Area":2.42952373689e-08,
+ "Shape_Le_3":0.000692883527231,
+ "Shape_Ar_2":2.42952373689e-08,
+ "building_height":22.555
+ }
+ },
+ {
+ "type":"Feature",
+ "id":3,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56479561444789,
+ 45.5160442765724
+ ],
+ [
+ -73.56489937013167,
+ 45.51608454551566
+ ],
+ [
+ -73.56488266972127,
+ 45.51610584595832
+ ],
+ [
+ -73.56492306996554,
+ 45.51612134577378
+ ],
+ [
+ -73.56488687045456,
+ 45.51616794594425
+ ],
+ [
+ -73.56483594994098,
+ 45.516233683687844
+ ],
+ [
+ -73.56496604047223,
+ 45.516293265572045
+ ],
+ [
+ -73.56498137031583,
+ 45.5162991462389
+ ],
+ [
+ -73.56498147014058,
+ 45.51629884586534
+ ],
+ [
+ -73.56501414700712,
+ 45.51626459158793
+ ],
+ [
+ -73.5650227984852,
+ 45.51623685829467
+ ],
+ [
+ -73.56500876996061,
+ 45.51623074560272
+ ],
+ [
+ -73.56503346354535,
+ 45.51620266786912
+ ],
+ [
+ -73.56504422483296,
+ 45.51616816717747
+ ],
+ [
+ -73.56502747046324,
+ 45.51616084579669
+ ],
+ [
+ -73.56505696372973,
+ 45.516127324466744
+ ],
+ [
+ -73.56506572672376,
+ 45.51609923054535
+ ],
+ [
+ -73.5650581697206,
+ 45.516095946221235
+ ],
+ [
+ -73.56507153544484,
+ 45.5160806109817
+ ],
+ [
+ -73.56508074989853,
+ 45.516051070051134
+ ],
+ [
+ -73.56505887029248,
+ 45.51604164605541
+ ],
+ [
+ -73.56509746649672,
+ 45.515997477651766
+ ],
+ [
+ -73.56511128907657,
+ 45.515953162658626
+ ],
+ [
+ -73.56502547037101,
+ 45.51591574546558
+ ],
+ [
+ -73.56494587047739,
+ 45.51588104602375
+ ],
+ [
+ -73.56494547027907,
+ 45.51588084547493
+ ],
+ [
+ -73.56493257040364,
+ 45.51589624546565
+ ],
+ [
+ -73.56493007298633,
+ 45.51589520495004
+ ],
+ [
+ -73.56479561444789,
+ 45.5160442765724
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":3,
+ "ID_UEV":"01002914",
+ "CIVIQUE_DE":" 1773",
+ "CIVIQUE_FI":" 1781",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-77-2799-9-000-0000",
+ "SUPERFICIE":848,
+ "SUPERFIC_1":2039,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00133408086893,
+ "OBJECTID":82553,
+ "Join_Count":1,
+ "TARGET_FID":82553,
+ "feature_id":"dc48b794-f01d-40a5-baf1-47b457de8e4d",
+ "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.53,
+ "heightmax":18.23,
+ "elevmin":24.24,
+ "elevmax":26.39,
+ "bldgarea":3310.44,
+ "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_2":82553,
+ "Shape_Le_1":0.00133408086893,
+ "Shape_Ar_1":7.0970412353e-08,
+ "OBJECTID_3":82553,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82552,
+ "g_objectid":"944712",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994177279990000000",
+ "g_sup_tota":"847.7",
+ "g_geometry":"0.00129417",
+ "g_geomet_1":"9.81845e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00133408086893,
+ "Shape_Area":7.0970412353e-08,
+ "Shape_Le_3":0.00133408090112,
+ "Shape_Ar_2":7.0970412353e-08,
+ "building_height":8.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":4,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57010023136243,
+ 45.5088917210264
+ ],
+ [
+ -73.5701814122642,
+ 45.508929720080815
+ ],
+ [
+ -73.57026670306773,
+ 45.50883749280634
+ ],
+ [
+ -73.57018485037239,
+ 45.50880022220279
+ ],
+ [
+ -73.57010023136243,
+ 45.5088917210264
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":4,
+ "ID_UEV":"01000566",
+ "CIVIQUE_DE":" 2090",
+ "CIVIQUE_FI":" 2092",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-0985-8-000-0000",
+ "SUPERFICIE":321,
+ "SUPERFIC_1":269,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000429822412842,
+ "OBJECTID":82559,
+ "Join_Count":1,
+ "TARGET_FID":82559,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":82559,
+ "Shape_Le_1":0.000429822412842,
+ "Shape_Ar_1":1.06856775929e-08,
+ "OBJECTID_3":82559,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82558,
+ "g_objectid":"939774",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340541",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039168120000000",
+ "g_sup_tota":"320.4",
+ "g_geometry":"0.0010433",
+ "g_geomet_1":"3.68935e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000429822412842,
+ "Shape_Area":1.06856775929e-08,
+ "Shape_Le_3":0.000429821850854,
+ "Shape_Ar_2":1.06856775929e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":5,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55547280145048,
+ 45.49948839802145
+ ],
+ [
+ -73.5555745930149,
+ 45.49952307947683
+ ],
+ [
+ -73.55572790134342,
+ 45.49929417503645
+ ],
+ [
+ -73.55562806940172,
+ 45.49925656358983
+ ],
+ [
+ -73.55547280145048,
+ 45.49948839802145
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":5,
+ "ID_UEV":"01004124",
+ "CIVIQUE_DE":" 112",
+ "CIVIQUE_FI":" 112",
+ "NOM_RUE":"rue McGill (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1890,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0039-49-5441-6-000-0000",
+ "SUPERFICIE":259,
+ "SUPERFIC_1":1394,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000768746427626,
+ "OBJECTID":82585,
+ "Join_Count":1,
+ "TARGET_FID":82585,
+ "feature_id":"c234199c-2474-441f-8fcd-00a2c44a3657",
+ "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":25.29,
+ "elevmin":12.9,
+ "elevmax":13.97,
+ "bldgarea":2902.07,
+ "comment":" ",
+ "OBJECTID_2":82585,
+ "Shape_Le_1":0.000768746427626,
+ "Shape_Ar_1":2.88009812275e-08,
+ "OBJECTID_3":82585,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82584,
+ "g_objectid":"937846",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1179969",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023003949474510000000",
+ "g_sup_tota":"226.5",
+ "g_geometry":"0.000757337",
+ "g_geomet_1":"2.60014e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000768746427626,
+ "Shape_Area":2.88009812275e-08,
+ "Shape_Le_3":0.000768745991934,
+ "Shape_Ar_2":2.88009812275e-08,
+ "building_height":12.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":6,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5599243133782,
+ 45.51934896043647
+ ],
+ [
+ -73.55999263487405,
+ 45.51938075686673
+ ],
+ [
+ -73.56007418809514,
+ 45.51929273662079
+ ],
+ [
+ -73.56004756816259,
+ 45.519277646896185
+ ],
+ [
+ -73.56006106788583,
+ 45.51926574706687
+ ],
+ [
+ -73.5600526682179,
+ 45.519261147034605
+ ],
+ [
+ -73.56002866801046,
+ 45.51924854663341
+ ],
+ [
+ -73.5599909684303,
+ 45.51928404647186
+ ],
+ [
+ -73.55998613097701,
+ 45.519281507685726
+ ],
+ [
+ -73.5599243133782,
+ 45.51934896043647
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":6,
+ "ID_UEV":"01040174",
+ "CIVIQUE_DE":" 1706",
+ "CIVIQUE_FI":" 1708",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-0953-9-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":162,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000429372585647,
+ "OBJECTID":82586,
+ "Join_Count":1,
+ "TARGET_FID":82586,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":82586,
+ "Shape_Le_1":0.000429372585647,
+ "Shape_Ar_1":9.24308236312e-09,
+ "OBJECTID_3":82586,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82585,
+ "g_objectid":"941680",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566344",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211095390000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.00056565",
+ "g_geomet_1":"1.49565e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000429372585647,
+ "Shape_Area":9.24308236312e-09,
+ "Shape_Le_3":0.000429371650945,
+ "Shape_Ar_2":9.24308236312e-09,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":7,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56512727452595,
+ 45.518877278613814
+ ],
+ [
+ -73.56520555241616,
+ 45.51891301767192
+ ],
+ [
+ -73.56527063005737,
+ 45.51884264212453
+ ],
+ [
+ -73.56519236475768,
+ 45.51880688777794
+ ],
+ [
+ -73.56512727452595,
+ 45.518877278613814
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":7,
+ "ID_UEV":"01003550",
+ "CIVIQUE_DE":" 2060",
+ "CIVIQUE_FI":" 2060",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-0403-1-000-0000",
+ "SUPERFICIE":122,
+ "SUPERFIC_1":126,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000363822981899,
+ "OBJECTID":82596,
+ "Join_Count":1,
+ "TARGET_FID":82596,
+ "feature_id":"e36f1ff0-2698-4ba9-8730-167994687ad4",
+ "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.07,
+ "heightmax":16.42,
+ "elevmin":27.15,
+ "elevmax":28.92,
+ "bldgarea":306.23,
+ "comment":" ",
+ "OBJECTID_2":82596,
+ "Shape_Le_1":0.000363822981899,
+ "Shape_Ar_1":7.83556520082e-09,
+ "OBJECTID_3":82596,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82595,
+ "g_objectid":"943166",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161411",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270109980000000",
+ "g_sup_tota":"122.3",
+ "g_geometry":"0.000520311",
+ "g_geomet_1":"1.42079e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000363822981899,
+ "Shape_Area":7.83556520082e-09,
+ "Shape_Le_3":0.000363822104644,
+ "Shape_Ar_2":7.83556520082e-09,
+ "building_height":7.175000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":8,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58168788980612,
+ 45.4988454151341
+ ],
+ [
+ -73.58182852488835,
+ 45.4989118138794
+ ],
+ [
+ -73.58187647314257,
+ 45.49885847059224
+ ],
+ [
+ -73.58173799733255,
+ 45.49879309077881
+ ],
+ [
+ -73.58168788980612,
+ 45.4988454151341
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":8,
+ "ID_UEV":"01003551",
+ "CIVIQUE_DE":" 24",
+ "CIVIQUE_FI":" 24",
+ "NOM_RUE":"place Redpath (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-48-0885-5-000-0000",
+ "SUPERFICIE":103,
+ "SUPERFIC_1":269,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000452827901265,
+ "OBJECTID":82597,
+ "Join_Count":1,
+ "TARGET_FID":82597,
+ "feature_id":"9b4f2561-2e5a-4bda-84ea-9322104d9911",
+ "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.46,
+ "heightmax":77.05,
+ "elevmin":61.89,
+ "elevmax":66.24,
+ "bldgarea":735.26,
+ "comment":" ",
+ "OBJECTID_2":82597,
+ "Shape_Le_1":0.000452827901265,
+ "Shape_Ar_1":1.06036029725e-08,
+ "OBJECTID_3":82597,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82596,
+ "g_objectid":"945601",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948279210000000",
+ "g_sup_tota":"1837.1",
+ "g_geometry":"0.007557",
+ "g_geomet_1":"2.09091e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000452827901265,
+ "Shape_Area":1.06036029725e-08,
+ "Shape_Le_3":0.000452828619634,
+ "Shape_Ar_2":1.06036029725e-08,
+ "building_height":37.295
+ }
+ },
+ {
+ "type":"Feature",
+ "id":9,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57361424682188,
+ 45.500252951262986
+ ],
+ [
+ -73.57362320406946,
+ 45.500257303082364
+ ],
+ [
+ -73.57385260583493,
+ 45.5000121272082
+ ],
+ [
+ -73.57385042767694,
+ 45.50001106780683
+ ],
+ [
+ -73.57361424682188,
+ 45.500252951262986
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":9,
+ "ID_UEV":"01037544",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-00-3329-8-000-0000",
+ "SUPERFICIE":423,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00068620908854,
+ "OBJECTID":82598,
+ "Join_Count":1,
+ "TARGET_FID":82598,
+ "feature_id":"857419b5-6018-4791-874a-72fe10ece41f",
+ "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.54,
+ "heightmax":14.82,
+ "elevmin":38.46,
+ "elevmax":40.04,
+ "bldgarea":214.17,
+ "comment":" ",
+ "OBJECTID_2":82598,
+ "Shape_Le_1":0.00068620908854,
+ "Shape_Ar_1":1.98566789244e-09,
+ "OBJECTID_3":82598,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82597,
+ "g_objectid":"938124",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340085",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994000412340000000",
+ "g_sup_tota":"211.2",
+ "g_geometry":"0.000827748",
+ "g_geomet_1":"2.43179e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00068620908854,
+ "Shape_Area":1.98566789244e-09,
+ "Shape_Le_3":0.000686209523011,
+ "Shape_Ar_2":1.98566789244e-09,
+ "building_height":7.140000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":10,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58173799733255,
+ 45.49879309077881
+ ],
+ [
+ -73.58187647314257,
+ 45.49885847059224
+ ],
+ [
+ -73.58192557432764,
+ 45.4988038430732
+ ],
+ [
+ -73.5818630741434,
+ 45.49877604323011
+ ],
+ [
+ -73.58178707423593,
+ 45.49874224311033
+ ],
+ [
+ -73.58178697441119,
+ 45.49874224311033
+ ],
+ [
+ -73.58175437398701,
+ 45.498775143008736
+ ],
+ [
+ -73.58175172368495,
+ 45.498773845287026
+ ],
+ [
+ -73.58173475797454,
+ 45.498791561931334
+ ],
+ [
+ -73.58173799733255,
+ 45.49879309077881
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":10,
+ "ID_UEV":"01003553",
+ "CIVIQUE_DE":" 3437",
+ "CIVIQUE_FI":" 3437",
+ "NOM_RUE":"rue Redpath (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-48-0378-1-000-0000",
+ "SUPERFICIE":137,
+ "SUPERFIC_1":294,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000455645849362,
+ "OBJECTID":82599,
+ "Join_Count":1,
+ "TARGET_FID":82599,
+ "feature_id":"9b4f2561-2e5a-4bda-84ea-9322104d9911",
+ "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.46,
+ "heightmax":77.05,
+ "elevmin":61.89,
+ "elevmax":66.24,
+ "bldgarea":735.26,
+ "comment":" ",
+ "OBJECTID_2":82599,
+ "Shape_Le_1":0.000455645849362,
+ "Shape_Ar_1":1.05221568649e-08,
+ "OBJECTID_3":82599,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82598,
+ "g_objectid":"945601",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948279210000000",
+ "g_sup_tota":"1837.1",
+ "g_geometry":"0.007557",
+ "g_geomet_1":"2.09091e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000455645849362,
+ "Shape_Area":1.05221568649e-08,
+ "Shape_Le_3":0.000455645434116,
+ "Shape_Ar_2":1.05221568649e-08,
+ "building_height":37.295
+ }
+ },
+ {
+ "type":"Feature",
+ "id":11,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56280682399758,
+ 45.504580274910055
+ ],
+ [
+ -73.56281526773226,
+ 45.50458294409788
+ ],
+ [
+ -73.5627490542473,
+ 45.50468647854844
+ ],
+ [
+ -73.56282993567484,
+ 45.50472464757472
+ ],
+ [
+ -73.56298320173522,
+ 45.50451766320988
+ ],
+ [
+ -73.56288758851325,
+ 45.504471204232985
+ ],
+ [
+ -73.56280682399758,
+ 45.504580274910055
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":11,
+ "ID_UEV":"01000383",
+ "CIVIQUE_DE":" 1061",
+ "CIVIQUE_FI":" 1065",
+ "NOM_RUE":"rue De Bleury (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1936,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-85-8720-4-000-0000",
+ "SUPERFICIE":240,
+ "SUPERFIC_1":721,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000720762972791,
+ "OBJECTID":82605,
+ "Join_Count":1,
+ "TARGET_FID":82605,
+ "feature_id":"7eee4778-b08a-4b4a-949e-ced886162fc1",
+ "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.6,
+ "heightmax":17.4,
+ "elevmin":17.56,
+ "elevmax":26.03,
+ "bldgarea":1787.9,
+ "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_2":82605,
+ "Shape_Le_1":0.000720762972791,
+ "Shape_Ar_1":2.54181395793e-08,
+ "OBJECTID_3":82605,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82604,
+ "g_objectid":"938437",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1179459",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6919",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994085872040000000",
+ "g_sup_tota":"239.9",
+ "g_geometry":"0.000740226",
+ "g_geomet_1":"2.75409e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000720762972791,
+ "Shape_Area":2.54181395793e-08,
+ "Shape_Le_3":0.000720760392363,
+ "Shape_Ar_2":2.54181395793e-08,
+ "building_height":8.399999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":12,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56066629723368,
+ 45.519582113274204
+ ],
+ [
+ -73.56052886823453,
+ 45.519528447130426
+ ],
+ [
+ -73.56046363590991,
+ 45.51959857356561
+ ],
+ [
+ -73.56059552418594,
+ 45.51965904757728
+ ],
+ [
+ -73.56066629723368,
+ 45.519582113274204
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":12,
+ "ID_UEV":"01040179",
+ "CIVIQUE_DE":" 1750",
+ "CIVIQUE_FI":" 1756",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-01-6682-9-000-0000",
+ "SUPERFICIE":258,
+ "SUPERFIC_1":244,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000492939181674,
+ "OBJECTID":82613,
+ "Join_Count":1,
+ "TARGET_FID":82613,
+ "feature_id":"21b1e82c-a1f9-4a0d-83b6-8353bb4e8809",
+ "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.51,
+ "heightmax":10.55,
+ "elevmin":24.27,
+ "elevmax":25.64,
+ "bldgarea":898.09,
+ "comment":" ",
+ "OBJECTID_2":82613,
+ "Shape_Le_1":0.000492939181674,
+ "Shape_Ar_1":1.37824768402e-08,
+ "OBJECTID_3":82613,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82612,
+ "g_objectid":"941672",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566333",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004201668290000000",
+ "g_sup_tota":"257.5",
+ "g_geometry":"0.000721756",
+ "g_geomet_1":"3.02015e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000492939181674,
+ "Shape_Area":1.37824768402e-08,
+ "Shape_Le_3":0.000492938815874,
+ "Shape_Ar_2":1.37824768402e-08,
+ "building_height":4.0200000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":13,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56101730892351,
+ 45.519852449481256
+ ],
+ [
+ -73.56108648387597,
+ 45.5198841676705
+ ],
+ [
+ -73.56114279222793,
+ 45.51982405428697
+ ],
+ [
+ -73.56107666867517,
+ 45.51979404660826
+ ],
+ [
+ -73.56111456880416,
+ 45.519752747041935
+ ],
+ [
+ -73.56111526937603,
+ 45.519751946645314
+ ],
+ [
+ -73.56111330076007,
+ 45.51975110308124
+ ],
+ [
+ -73.56101730892351,
+ 45.519852449481256
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":13,
+ "ID_UEV":"01040183",
+ "CIVIQUE_DE":" 1800",
+ "CIVIQUE_FI":" 1800",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-2410-7-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000429929849055,
+ "OBJECTID":82614,
+ "Join_Count":1,
+ "TARGET_FID":82614,
+ "feature_id":"21b1e82c-a1f9-4a0d-83b6-8353bb4e8809",
+ "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.51,
+ "heightmax":10.55,
+ "elevmin":24.27,
+ "elevmax":25.64,
+ "bldgarea":898.09,
+ "comment":" ",
+ "OBJECTID_2":82614,
+ "Shape_Le_1":0.000429929849055,
+ "Shape_Ar_1":6.05696926313e-09,
+ "OBJECTID_3":82614,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82613,
+ "g_objectid":"943031",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1979792",
+ "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":"66023004202241070000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000565337",
+ "g_geomet_1":"1.48198e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000429929849055,
+ "Shape_Area":6.05696926313e-09,
+ "Shape_Le_3":0.000429930748444,
+ "Shape_Ar_2":6.05696926313e-09,
+ "building_height":4.0200000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":14,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56115455715893,
+ 45.51991538044075
+ ],
+ [
+ -73.56122317273308,
+ 45.519946843222534
+ ],
+ [
+ -73.56127990376639,
+ 45.51988627658069
+ ],
+ [
+ -73.56121107595224,
+ 45.519855042226716
+ ],
+ [
+ -73.56115455715893,
+ 45.51991538044075
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":14,
+ "ID_UEV":"01040184",
+ "CIVIQUE_DE":" 1812",
+ "CIVIQUE_FI":" 1812",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-1317-5-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":101,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000316730080205,
+ "OBJECTID":82615,
+ "Join_Count":1,
+ "TARGET_FID":82615,
+ "feature_id":"21b1e82c-a1f9-4a0d-83b6-8353bb4e8809",
+ "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.51,
+ "heightmax":10.55,
+ "elevmin":24.27,
+ "elevmax":25.64,
+ "bldgarea":898.09,
+ "comment":" ",
+ "OBJECTID_2":82615,
+ "Shape_Le_1":0.000316730080205,
+ "Shape_Ar_1":5.92952551712e-09,
+ "OBJECTID_3":82615,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82614,
+ "g_objectid":"941491",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565271",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004202091990000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000564275",
+ "g_geomet_1":"1.47947e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000316730080205,
+ "Shape_Area":5.92952551712e-09,
+ "Shape_Le_3":0.000316729359083,
+ "Shape_Ar_2":5.92952551712e-09,
+ "building_height":4.0200000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":15,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55977877609149,
+ 45.527115261910104
+ ],
+ [
+ -73.55960196937723,
+ 45.52702674793636
+ ],
+ [
+ -73.55947386904566,
+ 45.526962647858205
+ ],
+ [
+ -73.55946756929474,
+ 45.52696934780745
+ ],
+ [
+ -73.55939256943337,
+ 45.52704844767801
+ ],
+ [
+ -73.55968056922474,
+ 45.52719114760367
+ ],
+ [
+ -73.55969868247007,
+ 45.52720007877091
+ ],
+ [
+ -73.55977877609149,
+ 45.527115261910104
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":15,
+ "ID_UEV":"01034554",
+ "CIVIQUE_DE":" 2039",
+ "CIVIQUE_FI":" 2049",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":15,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-4621-8-000-0000",
+ "SUPERFICIE":706,
+ "SUPERFIC_1":942,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000917435803683,
+ "OBJECTID":82619,
+ "Join_Count":1,
+ "TARGET_FID":82619,
+ "feature_id":"9c7483b4-3da6-40d1-a9be-e2041750ece0",
+ "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.56,
+ "heightmax":38.89,
+ "elevmin":25.62,
+ "elevmax":26.85,
+ "bldgarea":486.15,
+ "comment":" ",
+ "OBJECTID_2":82619,
+ "Shape_Le_1":0.000917435803683,
+ "Shape_Ar_1":3.83453001267e-08,
+ "OBJECTID_3":82619,
+ "Join_Cou_1":2,
+ "TARGET_F_1":82618,
+ "g_objectid":"942869",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884712",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310303110000000",
+ "g_sup_tota":"142.1",
+ "g_geometry":"0.00063176",
+ "g_geomet_1":"1.64389e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000917435803683,
+ "Shape_Area":3.83453001267e-08,
+ "Shape_Le_3":0.000917435183847,
+ "Shape_Ar_2":3.83453001267e-08,
+ "building_height":18.165
+ }
+ },
+ {
+ "type":"Feature",
+ "id":16,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57013860093753,
+ 45.50702373021127
+ ],
+ [
+ -73.57045489429977,
+ 45.50717495121332
+ ],
+ [
+ -73.57054977637293,
+ 45.50701880912104
+ ],
+ [
+ -73.5705172712769,
+ 45.507001544835724
+ ],
+ [
+ -73.57052310697765,
+ 45.50699610843395
+ ],
+ [
+ -73.57029931068648,
+ 45.50688959452946
+ ],
+ [
+ -73.57029307119012,
+ 45.506896044467176
+ ],
+ [
+ -73.57026867078437,
+ 45.50688444501142
+ ],
+ [
+ -73.57026857095963,
+ 45.50688454483617
+ ],
+ [
+ -73.57013860093753,
+ 45.50702373021127
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":16,
+ "ID_UEV":"01000315",
+ "CIVIQUE_DE":" 396",
+ "CIVIQUE_FI":" 396",
+ "NOM_RUE":"rue de la Concorde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-37-0190-9-000-0000",
+ "SUPERFICIE":560,
+ "SUPERFIC_1":882,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00105249072597,
+ "OBJECTID":82621,
+ "Join_Count":1,
+ "TARGET_FID":82621,
+ "feature_id":"c39c009a-18b0-497b-9af0-398d8c17b664",
+ "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":63.63,
+ "elevmin":34.65,
+ "elevmax":36.67,
+ "bldgarea":3724.51,
+ "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_2":82621,
+ "Shape_Le_1":0.00105249072597,
+ "Shape_Ar_1":6.23838425546e-08,
+ "OBJECTID_3":82621,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82620,
+ "g_objectid":"945042",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340527",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"26",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994038212770000000",
+ "g_sup_tota":"2262",
+ "g_geometry":"0.00210978",
+ "g_geomet_1":"2.60491e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00105249072597,
+ "Shape_Area":6.23838425546e-08,
+ "Shape_Le_3":0.00105249144511,
+ "Shape_Ar_2":6.23838425546e-08,
+ "building_height":31.565
+ }
+ },
+ {
+ "type":"Feature",
+ "id":17,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58153756902543,
+ 45.49900238460266
+ ],
+ [
+ -73.58168469181692,
+ 45.4990718482375
+ ],
+ [
+ -73.58170877386267,
+ 45.499045043044596
+ ],
+ [
+ -73.58173263197723,
+ 45.4990184995544
+ ],
+ [
+ -73.58158767475324,
+ 45.4989500611467
+ ],
+ [
+ -73.58153756902543,
+ 45.49900238460266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":17,
+ "ID_UEV":"01003546",
+ "CIVIQUE_DE":" 30",
+ "CIVIQUE_FI":" 30",
+ "NOM_RUE":"place Redpath (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-1902-5-000-0000",
+ "SUPERFICIE":103,
+ "SUPERFIC_1":272,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000467167341566,
+ "OBJECTID":82623,
+ "Join_Count":1,
+ "TARGET_FID":82623,
+ "feature_id":"9b4f2561-2e5a-4bda-84ea-9322104d9911",
+ "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.46,
+ "heightmax":77.05,
+ "elevmin":61.89,
+ "elevmax":66.24,
+ "bldgarea":735.26,
+ "comment":" ",
+ "OBJECTID_2":82623,
+ "Shape_Le_1":0.000467167341566,
+ "Shape_Ar_1":1.10962017265e-08,
+ "OBJECTID_3":82623,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82622,
+ "g_objectid":"945601",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948279210000000",
+ "g_sup_tota":"1837.1",
+ "g_geometry":"0.007557",
+ "g_geomet_1":"2.09091e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000467167341566,
+ "Shape_Area":1.10962017265e-08,
+ "Shape_Le_3":0.000467167407894,
+ "Shape_Ar_2":1.10962017265e-08,
+ "building_height":37.295
+ }
+ },
+ {
+ "type":"Feature",
+ "id":18,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.58041657398755,
+ 45.50615544376901
+ ],
+ [
+ -73.58042247443949,
+ 45.506186943422996
+ ],
+ [
+ -73.5804230742873,
+ 45.50619174400408
+ ],
+ [
+ -73.58051197407019,
+ 45.506183543985664
+ ],
+ [
+ -73.58050877428235,
+ 45.50615084373674
+ ],
+ [
+ -73.58050837408405,
+ 45.50614734357534
+ ],
+ [
+ -73.58041657398755,
+ 45.50615544376901
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.57872417400327,
+ 45.505985643672815
+ ],
+ [
+ -73.57873087395251,
+ 45.50607544367708
+ ],
+ [
+ -73.57873097377727,
+ 45.50607544367708
+ ],
+ [
+ -73.57892407440835,
+ 45.506046043940074
+ ],
+ [
+ -73.57897137425137,
+ 45.50603884396777
+ ],
+ [
+ -73.57897137425137,
+ 45.50603874414302
+ ],
+ [
+ -73.57896227401159,
+ 45.50597654343303
+ ],
+ [
+ -73.57896217418683,
+ 45.50597604340997
+ ],
+ [
+ -73.57894657454662,
+ 45.5059772440049
+ ],
+ [
+ -73.57891227440379,
+ 45.505759644042634
+ ],
+ [
+ -73.57892307436224,
+ 45.505758843646014
+ ],
+ [
+ -73.5788817738966,
+ 45.505497944025194
+ ],
+ [
+ -73.57887447409955,
+ 45.50549844404825
+ ],
+ [
+ -73.57876957447813,
+ 45.5055057438453
+ ],
+ [
+ -73.57876967430288,
+ 45.505507044264974
+ ],
+ [
+ -73.57877137402154,
+ 45.505595944047876
+ ],
+ [
+ -73.57882877415045,
+ 45.50559544402482
+ ],
+ [
+ -73.57883007457013,
+ 45.50565774366024
+ ],
+ [
+ -73.57882757445485,
+ 45.50565814385855
+ ],
+ [
+ -73.57865597301658,
+ 45.50568484383077
+ ],
+ [
+ -73.5786719728551,
+ 45.5057889439549
+ ],
+ [
+ -73.57867207267985,
+ 45.5057889439549
+ ],
+ [
+ -73.57870897456137,
+ 45.50578754371047
+ ],
+ [
+ -73.57872237445986,
+ 45.50596124416638
+ ],
+ [
+ -73.57872417400327,
+ 45.505985643672815
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5787666732652,
+ 45.5050519441422
+ ],
+ [
+ -73.57859467342728,
+ 45.50506564351493
+ ],
+ [
+ -73.57859537309983,
+ 45.50506954387465
+ ],
+ [
+ -73.57865377327487,
+ 45.50539594381805
+ ],
+ [
+ -73.57866387356076,
+ 45.50545274409916
+ ],
+ [
+ -73.57867297290122,
+ 45.50545174405304
+ ],
+ [
+ -73.57883417368002,
+ 45.50543344374873
+ ],
+ [
+ -73.57877227334359,
+ 45.50505144411915
+ ],
+ [
+ -73.5787666732652,
+ 45.5050519441422
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":18,
+ "ID_UEV":"01037719",
+ "CIVIQUE_DE":" 3625",
+ "CIVIQUE_FI":" 3633",
+ "NOM_RUE":"rue McTavish (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1949,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services d'aqueduc et d'irrigation",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-56-6547-6-000-0000",
+ "SUPERFICIE":36655,
+ "SUPERFIC_1":25362,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00313181528312,
+ "OBJECTID":82632,
+ "Join_Count":3,
+ "TARGET_FID":82632,
+ "feature_id":"ae87aad1-76b3-4f6e-baec-a1cdc987f3a2",
+ "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":85.41,
+ "elevmin":62.13,
+ "elevmax":71.34,
+ "bldgarea":590.49,
+ "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_2":82632,
+ "Shape_Le_1":0.00313181528312,
+ "Shape_Ar_1":1.7763708189e-07,
+ "OBJECTID_3":82632,
+ "Join_Cou_1":1,
+ "TARGET_F_1":82631,
+ "g_objectid":"945778",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1339024",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4839",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984056654760000000",
+ "g_sup_tota":"36655.2",
+ "g_geometry":"0.00826613",
+ "g_geomet_1":"4.221e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00313181528312,
+ "Shape_Area":1.7763708189e-07,
+ "Shape_Le_3":0.00313181588136,
+ "Shape_Ar_2":1.7763708189e-07,
+ "building_height":42.449999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":19,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56560501508123,
+ 45.51618075588747
+ ],
+ [
+ -73.5655329452111,
+ 45.516259865650575
+ ],
+ [
+ -73.56571750947732,
+ 45.51634282721
+ ],
+ [
+ -73.56574145752408,
+ 45.51631652923473
+ ],
+ [
+ -73.56579158933222,
+ 45.516261495222125
+ ],
+ [
+ -73.56563596974605,
+ 45.516194145893415
+ ],
+ [
+ -73.56560501508123,
+ 45.51618075588747
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":19,
+ "ID_UEV":"01002916",
+ "CIVIQUE_DE":" 2015",
+ "CIVIQUE_FI":" 2025",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-6917-2-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":580,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000622675341347,
+ "OBJECTID":82639,
+ "Join_Count":1,
+ "TARGET_FID":82639,
+ "feature_id":"38a5e889-9a8e-4542-a891-83e5040ba34b",
+ "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":15.27,
+ "elevmin":26.03,
+ "elevmax":29.22,
+ "bldgarea":973.3,
+ "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_2":82639,
+ "Shape_Le_1":0.000622675341347,
+ "Shape_Ar_1":2.08680358923e-08,
+ "OBJECTID_3":82639,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82638,
+ "g_objectid":"943144",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161366",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":"8",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168851780000000",
+ "g_sup_tota":"803.8",
+ "g_geometry":"0.00140707",
+ "g_geomet_1":"9.13007e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000622675341347,
+ "Shape_Area":2.08680358923e-08,
+ "Shape_Le_3":0.000622675807507,
+ "Shape_Ar_2":2.08680358923e-08,
+ "building_height":7.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":20,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56592164119263,
+ 45.51633768668519
+ ],
+ [
+ -73.56591877055666,
+ 45.51633634579602
+ ],
+ [
+ -73.56584776998045,
+ 45.51630314552404
+ ],
+ [
+ -73.56568907651152,
+ 45.51647239973176
+ ],
+ [
+ -73.56576644698579,
+ 45.51650762167969
+ ],
+ [
+ -73.56592164119263,
+ 45.51633768668519
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":20,
+ "ID_UEV":"01002918",
+ "CIVIQUE_DE":" 2031",
+ "CIVIQUE_FI":" 2037",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-5832-4-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":389,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000628710048533,
+ "OBJECTID":82640,
+ "Join_Count":1,
+ "TARGET_FID":82640,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":82640,
+ "Shape_Le_1":0.000628710048533,
+ "Shape_Ar_1":1.82992947263e-08,
+ "OBJECTID_3":82640,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82639,
+ "g_objectid":"938323",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161377",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168583240000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000679946",
+ "g_geomet_1":"2.14049e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000628710048533,
+ "Shape_Area":1.82992947263e-08,
+ "Shape_Le_3":0.00062870973252,
+ "Shape_Ar_2":1.82992947263e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":21,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57733303791122,
+ 45.498860494966166
+ ],
+ [
+ -73.57733607312312,
+ 45.4988616425011
+ ],
+ [
+ -73.57731372137299,
+ 45.49889108990217
+ ],
+ [
+ -73.57735882687021,
+ 45.49891277165738
+ ],
+ [
+ -73.57736597288319,
+ 45.498915442643856
+ ],
+ [
+ -73.57736607270793,
+ 45.498915442643856
+ ],
+ [
+ -73.57739657321513,
+ 45.49888554288379
+ ],
+ [
+ -73.5774168628198,
+ 45.498895762779526
+ ],
+ [
+ -73.57763441152072,
+ 45.49867193860938
+ ],
+ [
+ -73.57756167345431,
+ 45.49863774278789
+ ],
+ [
+ -73.57756157273025,
+ 45.49863774278789
+ ],
+ [
+ -73.57753277284104,
+ 45.4986671425249
+ ],
+ [
+ -73.5775247472911,
+ 45.498663256554345
+ ],
+ [
+ -73.57733303791122,
+ 45.498860494966166
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":21,
+ "ID_UEV":"01036305",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue de la Montagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-78-4475-8-000-0000",
+ "SUPERFICIE":264,
+ "SUPERFIC_1":631,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000881151495096,
+ "OBJECTID":82643,
+ "Join_Count":1,
+ "TARGET_FID":82643,
+ "feature_id":"5c1c550a-8cc0-47a6-aaca-d3697a482c59",
+ "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.98,
+ "heightmax":89.76,
+ "elevmin":44.06,
+ "elevmax":47.94,
+ "bldgarea":3095.55,
+ "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_2":82643,
+ "Shape_Le_1":0.000881151495096,
+ "Shape_Ar_1":2.85093211657e-08,
+ "OBJECTID_3":82643,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82642,
+ "g_objectid":"945076",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1341069",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"9",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983978388000000000",
+ "g_sup_tota":"267.7",
+ "g_geometry":"0.000905137",
+ "g_geomet_1":"3.07645e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000881151495096,
+ "Shape_Area":2.85093211657e-08,
+ "Shape_Le_3":0.000881151959965,
+ "Shape_Ar_2":2.85093211657e-08,
+ "building_height":43.89
+ }
+ },
+ {
+ "type":"Feature",
+ "id":22,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57150987100559,
+ 45.50441214395558
+ ],
+ [
+ -73.57135217128751,
+ 45.504574043507596
+ ],
+ [
+ -73.5713519707387,
+ 45.50457434388116
+ ],
+ [
+ -73.57137237095999,
+ 45.50458424361825
+ ],
+ [
+ -73.57132157095558,
+ 45.50463614349352
+ ],
+ [
+ -73.57146197131478,
+ 45.504704044106646
+ ],
+ [
+ -73.57188724722053,
+ 45.50490978650774
+ ],
+ [
+ -73.57207811483498,
+ 45.504715246961375
+ ],
+ [
+ -73.57227757097496,
+ 45.504511443498615
+ ],
+ [
+ -73.57229137107176,
+ 45.504497343927575
+ ],
+ [
+ -73.5722836710764,
+ 45.504493743941424
+ ],
+ [
+ -73.57222757136716,
+ 45.50446904406143
+ ],
+ [
+ -73.5717088711893,
+ 45.50424064414071
+ ],
+ [
+ -73.57166347071444,
+ 45.50429164379462
+ ],
+ [
+ -73.57163817098665,
+ 45.50428044363786
+ ],
+ [
+ -73.57163787151241,
+ 45.504280744011425
+ ],
+ [
+ -73.57150987100559,
+ 45.50441214395558
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":22,
+ "ID_UEV":"01037855",
+ "CIVIQUE_DE":" 2001",
+ "CIVIQUE_FI":" 2001",
+ "NOM_RUE":"boulevard Robert-Bourassa (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":20,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1975,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-15-9117-9-000-0000",
+ "SUPERFICIE":3517,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00244385556187,
+ "OBJECTID":82644,
+ "Join_Count":1,
+ "TARGET_FID":82644,
+ "feature_id":"c5914605-8727-4003-8451-1f5161d99020",
+ "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.11,
+ "heightmax":83.5,
+ "elevmin":36.06,
+ "elevmax":38.96,
+ "bldgarea":3004.58,
+ "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_2":82644,
+ "Shape_Le_1":0.00244385556187,
+ "Shape_Ar_1":3.45938209569e-07,
+ "OBJECTID_3":82644,
+ "Join_Cou_1":2,
+ "TARGET_F_1":82643,
+ "g_objectid":"945035",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340351",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"90",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994015911790000000",
+ "g_sup_tota":"3517",
+ "g_geometry":"0.00260939",
+ "g_geomet_1":"4.04976e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00244385556187,
+ "Shape_Area":3.45938209569e-07,
+ "Shape_Le_3":0.00244385538323,
+ "Shape_Ar_2":3.45938209569e-07,
+ "building_height":39.695
+ }
+ },
+ {
+ "type":"Feature",
+ "id":23,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55907103032564,
+ 45.519281388975216
+ ],
+ [
+ -73.55907436770974,
+ 45.51928304642575
+ ],
+ [
+ -73.55913818450146,
+ 45.51931472774279
+ ],
+ [
+ -73.55922306881142,
+ 45.51922327568392
+ ],
+ [
+ -73.5591545764444,
+ 45.51919137403298
+ ],
+ [
+ -73.55907103032564,
+ 45.519281388975216
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":23,
+ "ID_UEV":"01040214",
+ "CIVIQUE_DE":" 1681",
+ "CIVIQUE_FI":" 1681",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-7849-2-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":210,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000398119335959,
+ "OBJECTID":82645,
+ "Join_Count":1,
+ "TARGET_FID":82645,
+ "feature_id":"905124e0-226d-4e9f-b849-275d9025ac0a",
+ "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.95,
+ "heightmax":11.88,
+ "elevmin":24.88,
+ "elevmax":28.14,
+ "bldgarea":4334.91,
+ "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_2":82645,
+ "Shape_Le_1":0.000398119335959,
+ "Shape_Ar_1":8.90104312695e-09,
+ "OBJECTID_3":82645,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82644,
+ "g_objectid":"941708",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566383",
+ "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":"66023004211784920000000",
+ "g_sup_tota":"140.5",
+ "g_geometry":"0.000609699",
+ "g_geomet_1":"1.6488e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000398119335959,
+ "Shape_Area":8.90104312695e-09,
+ "Shape_Le_3":0.000398118281065,
+ "Shape_Ar_2":8.90104312695e-09,
+ "building_height":5.465000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":24,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55891750526051,
+ 45.51923598490308
+ ],
+ [
+ -73.55891756821305,
+ 45.519236046956294
+ ],
+ [
+ -73.55893826790859,
+ 45.51921544708551
+ ],
+ [
+ -73.55900406590676,
+ 45.519248128448666
+ ],
+ [
+ -73.55908624415669,
+ 45.519159590193226
+ ],
+ [
+ -73.55904956800501,
+ 45.51914254714113
+ ],
+ [
+ -73.55901784172187,
+ 45.5191278809972
+ ],
+ [
+ -73.55891750526051,
+ 45.51923598490308
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":24,
+ "ID_UEV":"01040218",
+ "CIVIQUE_DE":" 1661",
+ "CIVIQUE_FI":" 1661",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-8942-4-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00044644514415,
+ "OBJECTID":82646,
+ "Join_Count":1,
+ "TARGET_FID":82646,
+ "feature_id":"905124e0-226d-4e9f-b849-275d9025ac0a",
+ "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.95,
+ "heightmax":11.88,
+ "elevmin":24.88,
+ "elevmax":28.14,
+ "bldgarea":4334.91,
+ "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_2":82646,
+ "Shape_Le_1":0.00044644514415,
+ "Shape_Ar_1":8.60678563475e-09,
+ "OBJECTID_3":82646,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82645,
+ "g_objectid":"941710",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566386",
+ "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":"66023004211894240000000",
+ "g_sup_tota":"140.5",
+ "g_geometry":"0.000605859",
+ "g_geomet_1":"1.63065e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00044644514415,
+ "Shape_Area":8.60678563475e-09,
+ "Shape_Le_3":0.000446444221572,
+ "Shape_Ar_2":8.60678563475e-09,
+ "building_height":5.465000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":25,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55877498340061,
+ 45.51915113027074
+ ],
+ [
+ -73.55885043831891,
+ 45.51918904029227
+ ],
+ [
+ -73.55894044786523,
+ 45.51909206100011
+ ],
+ [
+ -73.55886306390113,
+ 45.51905623021115
+ ],
+ [
+ -73.55877498340061,
+ 45.51915113027074
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":25,
+ "ID_UEV":"01040222",
+ "CIVIQUE_DE":" 1641",
+ "CIVIQUE_FI":" 1641",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-0135-2-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":227,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000431509801832,
+ "OBJECTID":82647,
+ "Join_Count":1,
+ "TARGET_FID":82647,
+ "feature_id":"905124e0-226d-4e9f-b849-275d9025ac0a",
+ "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.95,
+ "heightmax":11.88,
+ "elevmin":24.88,
+ "elevmax":28.14,
+ "bldgarea":4334.91,
+ "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_2":82647,
+ "Shape_Le_1":0.000431509801832,
+ "Shape_Ar_1":1.06148007305e-08,
+ "OBJECTID_3":82647,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82646,
+ "g_objectid":"941711",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566387",
+ "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":"66023004211943900000000",
+ "g_sup_tota":"158.9",
+ "g_geometry":"0.000625127",
+ "g_geomet_1":"1.84249e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000431509801832,
+ "Shape_Area":1.06148007305e-08,
+ "Shape_Le_3":0.000431509226671,
+ "Shape_Ar_2":1.06148007305e-08,
+ "building_height":5.465000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":26,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55870827618784,
+ 45.51911761523605
+ ],
+ [
+ -73.55877498340061,
+ 45.51915113027074
+ ],
+ [
+ -73.55886306390113,
+ 45.51905623021115
+ ],
+ [
+ -73.55879464977511,
+ 45.5190245524914
+ ],
+ [
+ -73.55870827618784,
+ 45.51911761523605
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":26,
+ "ID_UEV":"01040223",
+ "CIVIQUE_DE":" 1631",
+ "CIVIQUE_FI":" 1631",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-0631-0-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":205,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000406490187123,
+ "OBJECTID":82648,
+ "Join_Count":1,
+ "TARGET_FID":82648,
+ "feature_id":"905124e0-226d-4e9f-b849-275d9025ac0a",
+ "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.95,
+ "heightmax":11.88,
+ "elevmin":24.88,
+ "elevmax":28.14,
+ "bldgarea":4334.91,
+ "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_2":82648,
+ "Shape_Le_1":0.000406490187123,
+ "Shape_Ar_1":9.19267094283e-09,
+ "OBJECTID_3":82648,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82647,
+ "g_objectid":"941717",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566393",
+ "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":"66023004221122760000000",
+ "g_sup_tota":"140.5",
+ "g_geometry":"0.000604326",
+ "g_geomet_1":"1.62567e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000406490187123,
+ "Shape_Area":9.19267094283e-09,
+ "Shape_Le_3":0.000406490778401,
+ "Shape_Ar_2":9.19267094283e-09,
+ "building_height":5.465000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":27,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55864154379405,
+ 45.51908408671153
+ ],
+ [
+ -73.55870827618784,
+ 45.51911761523605
+ ],
+ [
+ -73.55879464977511,
+ 45.5190245524914
+ ],
+ [
+ -73.55872621316605,
+ 45.51899286487911
+ ],
+ [
+ -73.55864154379405,
+ 45.51908408671153
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":27,
+ "ID_UEV":"01040224",
+ "CIVIQUE_DE":" 1621",
+ "CIVIQUE_FI":" 1621",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-1227-6-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000401526941474,
+ "OBJECTID":82649,
+ "Join_Count":1,
+ "TARGET_FID":82649,
+ "feature_id":"905124e0-226d-4e9f-b849-275d9025ac0a",
+ "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.95,
+ "heightmax":11.88,
+ "elevmin":24.88,
+ "elevmax":28.14,
+ "bldgarea":4334.91,
+ "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_2":82649,
+ "Shape_Le_1":0.000401526941474,
+ "Shape_Ar_1":9.01605607265e-09,
+ "OBJECTID_3":82649,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82648,
+ "g_objectid":"941717",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566393",
+ "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":"66023004221122760000000",
+ "g_sup_tota":"140.5",
+ "g_geometry":"0.000604326",
+ "g_geomet_1":"1.62567e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000401526941474,
+ "Shape_Area":9.01605607265e-09,
+ "Shape_Le_3":0.000401527406411,
+ "Shape_Ar_2":9.01605607265e-09,
+ "building_height":5.465000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":28,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56872946311607,
+ 45.51100175357836
+ ],
+ [
+ -73.5687955363068,
+ 45.511032589532675
+ ],
+ [
+ -73.56888116615474,
+ 45.51093911220056
+ ],
+ [
+ -73.56882567078992,
+ 45.51091204440562
+ ],
+ [
+ -73.5688232713987,
+ 45.51091484489447
+ ],
+ [
+ -73.5687855709192,
+ 45.510953044497704
+ ],
+ [
+ -73.56877834756453,
+ 45.51094950746409
+ ],
+ [
+ -73.56872946311607,
+ 45.51100175357836
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56886666638539,
+ 45.51085511462214
+ ],
+ [
+ -73.56886687143081,
+ 45.51085524502383
+ ],
+ [
+ -73.56889757068818,
+ 45.51087484484851
+ ],
+ [
+ -73.56890227144451,
+ 45.51087064501455
+ ],
+ [
+ -73.56893043371439,
+ 45.51088532914492
+ ],
+ [
+ -73.56903696110871,
+ 45.510769037811144
+ ],
+ [
+ -73.56897159388579,
+ 45.510739616490405
+ ],
+ [
+ -73.56887917145843,
+ 45.51084174979721
+ ],
+ [
+ -73.56886666638539,
+ 45.51085511462214
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":28,
+ "ID_UEV":"01001183",
+ "CIVIQUE_DE":" 2091",
+ "CIVIQUE_FI":" 2093",
+ "NOM_RUE":"rue Saint-Urbain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-42-1519-6-000-0000",
+ "SUPERFICIE":240,
+ "SUPERFIC_1":144,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000858545941012,
+ "OBJECTID":82654,
+ "Join_Count":2,
+ "TARGET_FID":82654,
+ "feature_id":"6376b293-efd4-49f8-bd6f-43fd71107bb9",
+ "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.5,
+ "heightmax":6.08,
+ "elevmin":34.83,
+ "elevmax":35.78,
+ "bldgarea":115.67,
+ "comment":" ",
+ "OBJECTID_2":82654,
+ "Shape_Le_1":0.000858545941012,
+ "Shape_Ar_1":1.8977390352e-08,
+ "OBJECTID_3":82654,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82653,
+ "g_objectid":"943034",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160594",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994142151960000000",
+ "g_sup_tota":"239.6",
+ "g_geometry":"0.000951538",
+ "g_geomet_1":"2.74704e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000858545941012,
+ "Shape_Area":1.8977390352e-08,
+ "Shape_Le_3":0.000858546042638,
+ "Shape_Ar_2":1.8977390352e-08,
+ "building_height":1.79
+ }
+ },
+ {
+ "type":"Feature",
+ "id":29,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58106947549774,
+ 45.49995217120603
+ ],
+ [
+ -73.58114754474524,
+ 45.49998832125432
+ ],
+ [
+ -73.58123146228401,
+ 45.49990278313723
+ ],
+ [
+ -73.58114956372323,
+ 45.499865935215034
+ ],
+ [
+ -73.58106947549774,
+ 45.49995217120603
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":29,
+ "ID_UEV":"01036529",
+ "CIVIQUE_DE":" 26",
+ "CIVIQUE_FI":" 26",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Presbyt\u00c3\u00a8re",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-40-5702-2-000-0000",
+ "SUPERFICIE":92,
+ "SUPERFIC_1":244,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000413357163711,
+ "OBJECTID":82656,
+ "Join_Count":1,
+ "TARGET_FID":82656,
+ "feature_id":"dc4ee5d2-23ed-4f64-937a-8e4dc3b17398",
+ "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.38,
+ "heightmax":80.62,
+ "elevmin":61.34,
+ "elevmax":67.3,
+ "bldgarea":906.84,
+ "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_2":82656,
+ "Shape_Le_1":0.000413357163711,
+ "Shape_Ar_1":9.86261330414e-09,
+ "OBJECTID_3":82656,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82655,
+ "g_objectid":"938189",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340927",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984040460900000000",
+ "g_sup_tota":"813.1",
+ "g_geometry":"0.00141413",
+ "g_geomet_1":"9.39989e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000413357163711,
+ "Shape_Area":9.86261330414e-09,
+ "Shape_Le_3":0.000413356907913,
+ "Shape_Ar_2":9.86261330414e-09,
+ "building_height":39.120000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":30,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.58039756591678,
+ 45.50003234846441
+ ],
+ [
+ -73.58041368896242,
+ 45.50004008623129
+ ],
+ [
+ -73.5804561738352,
+ 45.50000134253822
+ ],
+ [
+ -73.58046635236212,
+ 45.4999920570381
+ ],
+ [
+ -73.5804471833127,
+ 45.49998285787289
+ ],
+ [
+ -73.58039756591678,
+ 45.50003234846441
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58075241231582,
+ 45.49981192463091
+ ],
+ [
+ -73.58074957405545,
+ 45.499815042580444
+ ],
+ [
+ -73.58114357783569,
+ 45.499992364606236
+ ],
+ [
+ -73.58114754474524,
+ 45.49998832125432
+ ],
+ [
+ -73.58106947549774,
+ 45.49995217120603
+ ],
+ [
+ -73.58098966786073,
+ 45.49991521716384
+ ],
+ [
+ -73.58090986022371,
+ 45.499878263121644
+ ],
+ [
+ -73.58083154636063,
+ 45.49984199975878
+ ],
+ [
+ -73.58082728087615,
+ 45.49984659169714
+ ],
+ [
+ -73.58075241231582,
+ 45.49981192463091
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58052345481543,
+ 45.49993991254722
+ ],
+ [
+ -73.58052294310119,
+ 45.49994042606011
+ ],
+ [
+ -73.58052348809035,
+ 45.49993992873502
+ ],
+ [
+ -73.58052345481543,
+ 45.49993991254722
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58057833414465,
+ 45.499884902816305
+ ],
+ [
+ -73.58058189096334,
+ 45.49988663760853
+ ],
+ [
+ -73.58063447432338,
+ 45.49983864258958
+ ],
+ [
+ -73.58063457414812,
+ 45.499838542764834
+ ],
+ [
+ -73.58062781214566,
+ 45.49983530790343
+ ],
+ [
+ -73.58057833414465,
+ 45.499884902816305
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58061077988543,
+ 45.49981895013474
+ ],
+ [
+ -73.5806167306994,
+ 45.4998218531463
+ ],
+ [
+ -73.58066516818481,
+ 45.499771527084604
+ ],
+ [
+ -73.58066003755253,
+ 45.49976915107575
+ ],
+ [
+ -73.58061077988543,
+ 45.49981895013474
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":30,
+ "ID_UEV":"01036531",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-40-8612-0-000-0000",
+ "SUPERFICIE":1627,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00136596467031,
+ "OBJECTID":82657,
+ "Join_Count":2,
+ "TARGET_FID":82657,
+ "feature_id":"d79fc7c8-21a3-4cd9-bd24-5b7e771ed72e",
+ "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":73.97,
+ "elevmin":58.73,
+ "elevmax":62.67,
+ "bldgarea":1130.72,
+ "comment":" ",
+ "OBJECTID_2":82657,
+ "Shape_Le_1":0.00136596467031,
+ "Shape_Ar_1":4.88563828895e-09,
+ "OBJECTID_3":82657,
+ "Join_Cou_1":13,
+ "TARGET_F_1":82656,
+ "g_objectid":"938189",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340927",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984040460900000000",
+ "g_sup_tota":"813.1",
+ "g_geometry":"0.00141413",
+ "g_geomet_1":"9.39989e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00136596467031,
+ "Shape_Area":4.88563828895e-09,
+ "Shape_Le_3":0.00136596532191,
+ "Shape_Ar_2":4.88563828895e-09,
+ "building_height":36.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":31,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56457977355954,
+ 45.52017699861989
+ ],
+ [
+ -73.56468360748434,
+ 45.52022353673713
+ ],
+ [
+ -73.56476721745497,
+ 45.52013417290405
+ ],
+ [
+ -73.56475786990163,
+ 45.5201300468145
+ ],
+ [
+ -73.56476046984166,
+ 45.52012704667616
+ ],
+ [
+ -73.56466455085018,
+ 45.520086698592564
+ ],
+ [
+ -73.56457977355954,
+ 45.52017699861989
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":31,
+ "ID_UEV":"01039974",
+ "CIVIQUE_DE":" 2106",
+ "CIVIQUE_FI":" 2110",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-4243-5-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":301,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00047827199861,
+ "OBJECTID":82667,
+ "Join_Count":1,
+ "TARGET_FID":82667,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":82667,
+ "Shape_Le_1":0.00047827199861,
+ "Shape_Ar_1":1.34190382817e-08,
+ "OBJECTID_3":82667,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82666,
+ "g_objectid":"943371",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272344810000000",
+ "g_sup_tota":"1001.4",
+ "g_geometry":"0.00138964",
+ "g_geomet_1":"1.14197e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00047827199861,
+ "Shape_Area":1.34190382817e-08,
+ "Shape_Le_3":0.000478272002548,
+ "Shape_Ar_2":1.34190382817e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":32,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56468360748434,
+ 45.52022353673713
+ ],
+ [
+ -73.56479043974883,
+ 45.5202714184415
+ ],
+ [
+ -73.56487412706116,
+ 45.520181455659944
+ ],
+ [
+ -73.56482876975376,
+ 45.520161346818995
+ ],
+ [
+ -73.56476721745497,
+ 45.52013417290405
+ ],
+ [
+ -73.56468360748434,
+ 45.52022353673713
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":32,
+ "ID_UEV":"01039975",
+ "CIVIQUE_DE":" 2116",
+ "CIVIQUE_FI":" 2120",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-3448-1-000-0000",
+ "SUPERFICIE":333,
+ "SUPERFIC_1":302,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000479225059835,
+ "OBJECTID":82668,
+ "Join_Count":1,
+ "TARGET_FID":82668,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":82668,
+ "Shape_Le_1":0.000479225059835,
+ "Shape_Ar_1":1.35656683772e-08,
+ "OBJECTID_3":82668,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82667,
+ "g_objectid":"943371",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272344810000000",
+ "g_sup_tota":"1001.4",
+ "g_geometry":"0.00138964",
+ "g_geomet_1":"1.14197e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000479225059835,
+ "Shape_Area":1.35656683772e-08,
+ "Shape_Le_3":0.000479224423414,
+ "Shape_Ar_2":1.35656683772e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":33,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.560139002235,
+ 45.52772825600451
+ ],
+ [
+ -73.56022076769612,
+ 45.52776564891586
+ ],
+ [
+ -73.56031460745501,
+ 45.52766622166909
+ ],
+ [
+ -73.56023345083493,
+ 45.52762818394383
+ ],
+ [
+ -73.560139002235,
+ 45.52772825600451
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":33,
+ "ID_UEV":"01034663",
+ "CIVIQUE_DE":" 2124",
+ "CIVIQUE_FI":" 2128",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-00-9285-8-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000453860021283,
+ "OBJECTID":82674,
+ "Join_Count":1,
+ "TARGET_FID":82674,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":82674,
+ "Shape_Le_1":0.000453860021283,
+ "Shape_Ar_1":1.16763820516e-08,
+ "OBJECTID_3":82674,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82673,
+ "g_objectid":"942859",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004300928580000000",
+ "g_sup_tota":"176.5",
+ "g_geometry":"0.000657017",
+ "g_geomet_1":"2.03306e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000453860021283,
+ "Shape_Area":1.16763820516e-08,
+ "Shape_Le_3":0.000453860409086,
+ "Shape_Ar_2":1.16763820516e-08,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":34,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56077865043622,
+ 45.52913388467134
+ ],
+ [
+ -73.56082813293384,
+ 45.529157849805216
+ ],
+ [
+ -73.56093602999563,
+ 45.52904498219047
+ ],
+ [
+ -73.56088592786513,
+ 45.52902166366914
+ ],
+ [
+ -73.56077865043622,
+ 45.52913388467134
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":34,
+ "ID_UEV":"01035174",
+ "CIVIQUE_DE":" 2249",
+ "CIVIQUE_FI":" 2251",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1913,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-4644-7-000-0000",
+ "SUPERFICIE":117,
+ "SUPERFIC_1":175,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000421635841143,
+ "OBJECTID":82677,
+ "Join_Count":1,
+ "TARGET_FID":82677,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":82677,
+ "Shape_Le_1":0.000421635841143,
+ "Shape_Ar_1":8.14740189745e-09,
+ "OBJECTID_3":82677,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82676,
+ "g_objectid":"942833",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884582",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302424610000000",
+ "g_sup_tota":"117.3",
+ "g_geometry":"0.000626768",
+ "g_geomet_1":"1.35125e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000421635841143,
+ "Shape_Area":8.14740189745e-09,
+ "Shape_Le_3":0.000421635156839,
+ "Shape_Ar_2":8.14740189745e-09,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":35,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56033401752273,
+ 45.52893070983469
+ ],
+ [
+ -73.56042766932333,
+ 45.528980548463835
+ ],
+ [
+ -73.56042896794436,
+ 45.52897934247297
+ ],
+ [
+ -73.56055168673281,
+ 45.528850161156306
+ ],
+ [
+ -73.56049256889878,
+ 45.528818648911816
+ ],
+ [
+ -73.56048746884346,
+ 45.52881604897178
+ ],
+ [
+ -73.56048166911559,
+ 45.52882204924847
+ ],
+ [
+ -73.56045129631212,
+ 45.5288076097337
+ ],
+ [
+ -73.56033401752273,
+ 45.52893070983469
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":35,
+ "ID_UEV":"01035177",
+ "CIVIQUE_DE":" 2215",
+ "CIVIQUE_FI":" 2225",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-7922-4-000-0000",
+ "SUPERFICIE":234,
+ "SUPERFIC_1":424,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000570755391087,
+ "OBJECTID":82678,
+ "Join_Count":1,
+ "TARGET_FID":82678,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":82678,
+ "Shape_Le_1":0.000570755391087,
+ "Shape_Ar_1":1.80966635436e-08,
+ "OBJECTID_3":82678,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82677,
+ "g_objectid":"943492",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316897",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302792240000000",
+ "g_sup_tota":"234.1",
+ "g_geometry":"0.000740989",
+ "g_geomet_1":"2.68442e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000570755391087,
+ "Shape_Area":1.80966635436e-08,
+ "Shape_Le_3":0.000570754087553,
+ "Shape_Ar_2":1.80966635436e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":36,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55930542332847,
+ 45.52805195978041
+ ],
+ [
+ -73.55937066374698,
+ 45.528082508851
+ ],
+ [
+ -73.55949153083132,
+ 45.52795291744348
+ ],
+ [
+ -73.55946606922556,
+ 45.527940848541625
+ ],
+ [
+ -73.55946596940082,
+ 45.527940848541625
+ ],
+ [
+ -73.5594268686769,
+ 45.52797744915026
+ ],
+ [
+ -73.5593916889971,
+ 45.52795894829712
+ ],
+ [
+ -73.55930542332847,
+ 45.52805195978041
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":36,
+ "ID_UEV":"01034984",
+ "CIVIQUE_DE":" 2080",
+ "CIVIQUE_FI":" 2082",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-5820-3-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":163,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000497688355507,
+ "OBJECTID":82686,
+ "Join_Count":1,
+ "TARGET_FID":82686,
+ "feature_id":"79707d52-4887-4528-bf65-1f81c2073eda",
+ "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.48,
+ "heightmax":35.93,
+ "elevmin":24.91,
+ "elevmax":26.52,
+ "bldgarea":1051.26,
+ "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_2":82686,
+ "Shape_Le_1":0.000497688355507,
+ "Shape_Ar_1":1.01313471481e-08,
+ "OBJECTID_3":82686,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82685,
+ "g_objectid":"942881",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884727",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311582030000000",
+ "g_sup_tota":"154.2",
+ "g_geometry":"0.000665002",
+ "g_geomet_1":"1.79267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000497688355507,
+ "Shape_Area":1.01313471481e-08,
+ "Shape_Le_3":0.00049768762927,
+ "Shape_Ar_2":1.01313471481e-08,
+ "building_height":16.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":37,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55981541177368,
+ 45.52695945796291
+ ],
+ [
+ -73.55989712237614,
+ 45.52699691652477
+ ],
+ [
+ -73.55999110692589,
+ 45.526896476641376
+ ],
+ [
+ -73.55999519344526,
+ 45.52689211043285
+ ],
+ [
+ -73.55991534983536,
+ 45.52685265627536
+ ],
+ [
+ -73.55981541177368,
+ 45.52695945796291
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":37,
+ "ID_UEV":"01034297",
+ "CIVIQUE_DE":" 2062",
+ "CIVIQUE_FI":" 2068",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1909,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-19-1798-0-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":261,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000468749231643,
+ "OBJECTID":82704,
+ "Join_Count":1,
+ "TARGET_FID":82704,
+ "feature_id":"7bcf993c-aca4-4e2b-b813-05741135755d",
+ "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.48,
+ "heightmax":40.09,
+ "elevmin":25.43,
+ "elevmax":27.59,
+ "bldgarea":1494.32,
+ "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_2":82704,
+ "Shape_Le_1":0.000468749231643,
+ "Shape_Ar_1":1.23538631947e-08,
+ "OBJECTID_3":82704,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82703,
+ "g_objectid":"941947",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566936",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004219179800000000",
+ "g_sup_tota":"187.1",
+ "g_geometry":"0.000684827",
+ "g_geomet_1":"2.1544e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000468749231643,
+ "Shape_Area":1.23538631947e-08,
+ "Shape_Le_3":0.000468749698633,
+ "Shape_Ar_2":1.23538631947e-08,
+ "building_height":18.805000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":38,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55973019201659,
+ 45.52754129144774
+ ],
+ [
+ -73.55981195388041,
+ 45.52757868615774
+ ],
+ [
+ -73.55990883694511,
+ 45.52747603394211
+ ],
+ [
+ -73.559827683023,
+ 45.52743799621685
+ ],
+ [
+ -73.55973019201659,
+ 45.52754129144774
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":38,
+ "ID_UEV":"01034655",
+ "CIVIQUE_DE":" 2086",
+ "CIVIQUE_FI":" 2092",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-2464-5-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":251,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000462722287875,
+ "OBJECTID":82725,
+ "Join_Count":1,
+ "TARGET_FID":82725,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":82725,
+ "Shape_Le_1":0.000462722287875,
+ "Shape_Ar_1":1.205356098e-08,
+ "OBJECTID_3":82725,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82724,
+ "g_objectid":"942866",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884708",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310186880000000",
+ "g_sup_tota":"176.5",
+ "g_geometry":"0.000654932",
+ "g_geomet_1":"2.01354e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000462722287875,
+ "Shape_Area":1.205356098e-08,
+ "Shape_Le_3":0.000462721918531,
+ "Shape_Ar_2":1.205356098e-08,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":39,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5690678654115,
+ 45.51104152069991
+ ],
+ [
+ -73.56905227116722,
+ 45.51105644494927
+ ],
+ [
+ -73.56900067076619,
+ 45.51102984480179
+ ],
+ [
+ -73.56899847102446,
+ 45.51102884475568
+ ],
+ [
+ -73.56893637103853,
+ 45.511097345216605
+ ],
+ [
+ -73.56899397801152,
+ 45.5111231710478
+ ],
+ [
+ -73.5690678654115,
+ 45.51104152069991
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56907355452277,
+ 45.51093234570149
+ ],
+ [
+ -73.56908227075203,
+ 45.51093684500969
+ ],
+ [
+ -73.56906037136089,
+ 45.510957845078785
+ ],
+ [
+ -73.56911711948132,
+ 45.51098709283036
+ ],
+ [
+ -73.56923409070257,
+ 45.51085783147404
+ ],
+ [
+ -73.56916835385829,
+ 45.510828207805844
+ ],
+ [
+ -73.56907355452277,
+ 45.51093234570149
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":39,
+ "ID_UEV":"01001178",
+ "CIVIQUE_DE":" 2105",
+ "CIVIQUE_FI":" 2109",
+ "NOM_RUE":"rue Saint-Urbain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-42-0029-7-000-0000",
+ "SUPERFICIE":239,
+ "SUPERFIC_1":168,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000839013965108,
+ "OBJECTID":82735,
+ "Join_Count":1,
+ "TARGET_FID":82735,
+ "feature_id":"fd41ce0c-c716-49e1-a68d-659c83f46ff3",
+ "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":20.56,
+ "elevmin":33.3,
+ "elevmax":39.29,
+ "bldgarea":1803.22,
+ "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_2":82735,
+ "Shape_Le_1":0.000839013965108,
+ "Shape_Ar_1":1.70831525975e-08,
+ "OBJECTID_3":82735,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82734,
+ "g_objectid":"943067",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160926",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994142052620000000",
+ "g_sup_tota":"238.2",
+ "g_geometry":"0.000949386",
+ "g_geomet_1":"2.75875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000839013965108,
+ "Shape_Area":1.70831525975e-08,
+ "Shape_Le_3":0.000839013283607,
+ "Shape_Ar_2":1.70831525975e-08,
+ "building_height":10.024999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":40,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56901057769785,
+ 45.51089983880681
+ ],
+ [
+ -73.56907355452277,
+ 45.51093234570149
+ ],
+ [
+ -73.56916835385829,
+ 45.510828207805844
+ ],
+ [
+ -73.56911407077959,
+ 45.51080374444754
+ ],
+ [
+ -73.56910273032858,
+ 45.51079864079493
+ ],
+ [
+ -73.56901057769785,
+ 45.51089983880681
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":40,
+ "ID_UEV":"01001179",
+ "CIVIQUE_DE":" 2101",
+ "CIVIQUE_FI":" 2103",
+ "NOM_RUE":"rue Saint-Urbain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-42-0526-2-000-0000",
+ "SUPERFICIE":238,
+ "SUPERFIC_1":149,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000420542016874,
+ "OBJECTID":82736,
+ "Join_Count":1,
+ "TARGET_FID":82736,
+ "feature_id":"fd41ce0c-c716-49e1-a68d-659c83f46ff3",
+ "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":20.56,
+ "elevmin":33.3,
+ "elevmax":39.29,
+ "bldgarea":1803.22,
+ "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_2":82736,
+ "Shape_Le_1":0.000420542016874,
+ "Shape_Ar_1":9.5029542376e-09,
+ "OBJECTID_3":82736,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82735,
+ "g_objectid":"943068",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160937",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994142102210000000",
+ "g_sup_tota":"239.2",
+ "g_geometry":"0.000950865",
+ "g_geomet_1":"2.7809e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000420542016874,
+ "Shape_Area":9.5029542376e-09,
+ "Shape_Le_3":0.000420542186272,
+ "Shape_Ar_2":9.5029542376e-09,
+ "building_height":10.024999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":41,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55612011007686,
+ 45.50068488574917
+ ],
+ [
+ -73.55651020450418,
+ 45.50084993382768
+ ],
+ [
+ -73.5566771501522,
+ 45.5006600806485
+ ],
+ [
+ -73.55648556577809,
+ 45.500574443605984
+ ],
+ [
+ -73.55648546595333,
+ 45.500574443605984
+ ],
+ [
+ -73.55644486605956,
+ 45.5006180436381
+ ],
+ [
+ -73.55641996653007,
+ 45.5006454441822
+ ],
+ [
+ -73.556232149416,
+ 45.50056099064749
+ ],
+ [
+ -73.55612011007686,
+ 45.50068488574917
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55637792052646,
+ 45.500402841268404
+ ],
+ [
+ -73.55637046604602,
+ 45.50041194420616
+ ],
+ [
+ -73.55675770242787,
+ 45.50056847570489
+ ],
+ [
+ -73.55675892190857,
+ 45.50056708895029
+ ],
+ [
+ -73.55652493090268,
+ 45.50046980119067
+ ],
+ [
+ -73.55637792052646,
+ 45.500402841268404
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":41,
+ "ID_UEV":"01000192",
+ "CIVIQUE_DE":" 378",
+ "CIVIQUE_FI":" 384",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":19,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-30-8879-2-000-0000",
+ "SUPERFICIE":1302,
+ "SUPERFIC_1":3559,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00220215415244,
+ "OBJECTID":82738,
+ "Join_Count":2,
+ "TARGET_FID":82738,
+ "feature_id":"3b46bb29-cec8-4785-b035-1905934dd66d",
+ "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.16,
+ "heightmax":50.21,
+ "elevmin":12.92,
+ "elevmax":13.62,
+ "bldgarea":1323.71,
+ "comment":" ",
+ "OBJECTID_2":82738,
+ "Shape_Le_1":0.00220215415244,
+ "Shape_Ar_1":8.6094115626e-08,
+ "OBJECTID_3":82738,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82737,
+ "g_objectid":"944923",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1179911",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"8",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004030755830000000",
+ "g_sup_tota":"461.3",
+ "g_geometry":"0.00110569",
+ "g_geomet_1":"5.38069e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00220215415244,
+ "Shape_Area":8.6094115626e-08,
+ "Shape_Le_3":0.0022021545342,
+ "Shape_Ar_2":8.6094115626e-08,
+ "building_height":24.525000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":42,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55637792052646,
+ 45.500402841268404
+ ],
+ [
+ -73.55652493090268,
+ 45.50046980119067
+ ],
+ [
+ -73.55675892190857,
+ 45.50056708895029
+ ],
+ [
+ -73.55683285427465,
+ 45.50048301492949
+ ],
+ [
+ -73.55670646625227,
+ 45.500431944229135
+ ],
+ [
+ -73.55671956577719,
+ 45.50041604421536
+ ],
+ [
+ -73.5568468441284,
+ 45.500467105023176
+ ],
+ [
+ -73.5568520170288,
+ 45.50046122165835
+ ],
+ [
+ -73.55647205346435,
+ 45.500310981816654
+ ],
+ [
+ -73.55646706582428,
+ 45.50031724379606
+ ],
+ [
+ -73.55645645922006,
+ 45.50031294143939
+ ],
+ [
+ -73.5564043525007,
+ 45.50037056370085
+ ],
+ [
+ -73.55637792052646,
+ 45.500402841268404
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":42,
+ "ID_UEV":"01000194",
+ "CIVIQUE_DE":" 400",
+ "CIVIQUE_FI":" 402",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-30-7558-3-000-0000",
+ "SUPERFICIE":461,
+ "SUPERFIC_1":2201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00137624639913,
+ "OBJECTID":82739,
+ "Join_Count":1,
+ "TARGET_FID":82739,
+ "feature_id":"3b46bb29-cec8-4785-b035-1905934dd66d",
+ "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.16,
+ "heightmax":50.21,
+ "elevmin":12.92,
+ "elevmax":13.62,
+ "bldgarea":1323.71,
+ "comment":" ",
+ "OBJECTID_2":82739,
+ "Shape_Le_1":0.00137624639913,
+ "Shape_Ar_1":5.09692569846e-08,
+ "OBJECTID_3":82739,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82738,
+ "g_objectid":"944923",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1179911",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"8",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004030755830000000",
+ "g_sup_tota":"461.3",
+ "g_geometry":"0.00110569",
+ "g_geomet_1":"5.38069e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00137624639913,
+ "Shape_Area":5.09692569846e-08,
+ "Shape_Le_3":0.0013762461647,
+ "Shape_Ar_2":5.09692569846e-08,
+ "building_height":24.525000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":43,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56542367938114,
+ 45.519220078594046
+ ],
+ [
+ -73.56555432839139,
+ 45.51928130713691
+ ],
+ [
+ -73.56562769688254,
+ 45.51920187811448
+ ],
+ [
+ -73.56549531937533,
+ 45.51914252285944
+ ],
+ [
+ -73.56542367938114,
+ 45.519220078594046
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":43,
+ "ID_UEV":"01003560",
+ "CIVIQUE_DE":" 2109",
+ "CIVIQUE_FI":" 2117",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-61-8349-9-000-0000",
+ "SUPERFICIE":249,
+ "SUPERFIC_1":275,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00050307006627,
+ "OBJECTID":82742,
+ "Join_Count":1,
+ "TARGET_FID":82742,
+ "feature_id":"283011ce-5798-4d0d-b764-55f3f9958704",
+ "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.4,
+ "heightmax":14.36,
+ "elevmin":26.4,
+ "elevmax":32.46,
+ "bldgarea":1423.12,
+ "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_2":82742,
+ "Shape_Le_1":0.00050307006627,
+ "Shape_Ar_1":1.46942284624e-08,
+ "OBJECTID_3":82742,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82741,
+ "g_objectid":"943169",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161445",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994261834990000000",
+ "g_sup_tota":"249",
+ "g_geometry":"0.000714829",
+ "g_geomet_1":"2.92415e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00050307006627,
+ "Shape_Area":1.46942284624e-08,
+ "Shape_Le_3":0.000503069432905,
+ "Shape_Ar_2":1.46942284624e-08,
+ "building_height":6.4799999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":44,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.58065985409084,
+ 45.50036408948144
+ ],
+ [
+ -73.58074056194921,
+ 45.500402820584
+ ],
+ [
+ -73.58078541743491,
+ 45.50035793721932
+ ],
+ [
+ -73.58070487685043,
+ 45.500319287055746
+ ],
+ [
+ -73.58062408625442,
+ 45.500280514584375
+ ],
+ [
+ -73.5805451590537,
+ 45.500242638737085
+ ],
+ [
+ -73.58046623095365,
+ 45.50020476199047
+ ],
+ [
+ -73.58047063223573,
+ 45.50020022670939
+ ],
+ [
+ -73.58039247125738,
+ 45.50016271868481
+ ],
+ [
+ -73.58038917434277,
+ 45.500166042579096
+ ],
+ [
+ -73.5803857740061,
+ 45.50017084316018
+ ],
+ [
+ -73.58042147439338,
+ 45.50018324301255
+ ],
+ [
+ -73.58039006287295,
+ 45.50022798158638
+ ],
+ [
+ -73.58042746567685,
+ 45.50024593115509
+ ],
+ [
+ -73.58042306889136,
+ 45.50025046104024
+ ],
+ [
+ -73.58050199699142,
+ 45.500288337786856
+ ],
+ [
+ -73.58058092509147,
+ 45.500326213634146
+ ],
+ [
+ -73.58065985409084,
+ 45.50036408948144
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58016792583096,
+ 45.50026140489022
+ ],
+ [
+ -73.58016993941303,
+ 45.500262370762094
+ ],
+ [
+ -73.58041368896242,
+ 45.50004008623129
+ ],
+ [
+ -73.58039756591678,
+ 45.50003234846441
+ ],
+ [
+ -73.58039211782382,
+ 45.50003778396685
+ ],
+ [
+ -73.58033705143562,
+ 45.50009271096014
+ ],
+ [
+ -73.58028198504742,
+ 45.50014763615478
+ ],
+ [
+ -73.58022691955854,
+ 45.500202563148065
+ ],
+ [
+ -73.58016792583096,
+ 45.50026140489022
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58066003755253,
+ 45.49976915107575
+ ],
+ [
+ -73.58066516818481,
+ 45.499771527084604
+ ],
+ [
+ -73.58087997395349,
+ 45.49954834323175
+ ],
+ [
+ -73.58087892984058,
+ 45.49954784590666
+ ],
+ [
+ -73.58082903185618,
+ 45.49959829247751
+ ],
+ [
+ -73.58077446908833,
+ 45.49965345689182
+ ],
+ [
+ -73.58071990632047,
+ 45.499708622205446
+ ],
+ [
+ -73.58066534355261,
+ 45.499763784821106
+ ],
+ [
+ -73.58066003755253,
+ 45.49976915107575
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":44,
+ "ID_UEV":"01036547",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-50-1522-7-000-0000",
+ "SUPERFICIE":720,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0023156792123,
+ "OBJECTID":82747,
+ "Join_Count":2,
+ "TARGET_FID":82747,
+ "feature_id":"d79fc7c8-21a3-4cd9-bd24-5b7e771ed72e",
+ "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":73.97,
+ "elevmin":58.73,
+ "elevmax":62.67,
+ "bldgarea":1130.72,
+ "comment":" ",
+ "OBJECTID_2":82747,
+ "Shape_Le_1":0.0023156792123,
+ "Shape_Ar_1":2.82653222814e-08,
+ "OBJECTID_3":82747,
+ "Join_Cou_1":24,
+ "TARGET_F_1":82746,
+ "g_objectid":"939911",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340943",
+ "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":"66023983949987890000000",
+ "g_sup_tota":"91",
+ "g_geometry":"0.000440251",
+ "g_geomet_1":"1.04767e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0023156792123,
+ "Shape_Area":2.82653222814e-08,
+ "Shape_Le_3":0.00231568034141,
+ "Shape_Ar_2":2.82653222814e-08,
+ "building_height":36.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":45,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.58038455902202,
+ 45.49954892419379
+ ],
+ [
+ -73.58050438738941,
+ 45.49960836128714
+ ],
+ [
+ -73.5805156738811,
+ 45.49959734279343
+ ],
+ [
+ -73.58055909225016,
+ 45.499554942456925
+ ],
+ [
+ -73.58043901027395,
+ 45.499495381257134
+ ],
+ [
+ -73.58038455902202,
+ 45.49954892419379
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58025632109418,
+ 45.49944783140259
+ ],
+ [
+ -73.58026187440782,
+ 45.49945034320907
+ ],
+ [
+ -73.58026197423257,
+ 45.499450242485
+ ],
+ [
+ -73.58028844397835,
+ 45.499420697057815
+ ],
+ [
+ -73.58028499327966,
+ 45.499418984748644
+ ],
+ [
+ -73.58025632109418,
+ 45.49944783140259
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":45,
+ "ID_UEV":"01036552",
+ "CIVIQUE_DE":" 3",
+ "CIVIQUE_FI":" 3",
+ "NOM_RUE":"place Ontario (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-59-1458-7-000-0000",
+ "SUPERFICIE":224,
+ "SUPERFIC_1":158,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000511056579942,
+ "OBJECTID":82748,
+ "Join_Count":1,
+ "TARGET_FID":82748,
+ "feature_id":"010979ee-0205-4775-a953-8383a0002017",
+ "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.05,
+ "heightmax":74.41,
+ "elevmin":53.4,
+ "elevmax":59.38,
+ "bldgarea":1091.49,
+ "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_2":82748,
+ "Shape_Le_1":0.000511056579942,
+ "Shape_Ar_1":9.85285501424e-09,
+ "OBJECTID_3":82748,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82747,
+ "g_objectid":"939925",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340957",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983959294450000000",
+ "g_sup_tota":"308.2",
+ "g_geometry":"0.000899739",
+ "g_geomet_1":"3.54784e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000511056579942,
+ "Shape_Area":9.85285501424e-09,
+ "Shape_Le_3":0.000511057353209,
+ "Shape_Ar_2":9.85285501424e-09,
+ "building_height":36.18
+ }
+ },
+ {
+ "type":"Feature",
+ "id":46,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58010579706672,
+ 45.49959927363786
+ ],
+ [
+ -73.58011387387802,
+ 45.49960334307012
+ ],
+ [
+ -73.58005937406271,
+ 45.49965694266407
+ ],
+ [
+ -73.58005557442706,
+ 45.49966054265022
+ ],
+ [
+ -73.58016930449165,
+ 45.49971945993542
+ ],
+ [
+ -73.58024941250223,
+ 45.49963886179433
+ ],
+ [
+ -73.58024937383138,
+ 45.49963884290857
+ ],
+ [
+ -73.58012594817582,
+ 45.499579000220976
+ ],
+ [
+ -73.58010579706672,
+ 45.49959927363786
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":46,
+ "ID_UEV":"01036557",
+ "CIVIQUE_DE":" 6",
+ "CIVIQUE_FI":" 6",
+ "NOM_RUE":"place Ontario (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-59-3469-2-000-0000",
+ "SUPERFICIE":208,
+ "SUPERFIC_1":227,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000498236884253,
+ "OBJECTID":82749,
+ "Join_Count":1,
+ "TARGET_FID":82749,
+ "feature_id":"010979ee-0205-4775-a953-8383a0002017",
+ "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.05,
+ "heightmax":74.41,
+ "elevmin":53.4,
+ "elevmax":59.38,
+ "bldgarea":1091.49,
+ "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_2":82749,
+ "Shape_Le_1":0.000498236884253,
+ "Shape_Ar_1":1.38381306955e-08,
+ "OBJECTID_3":82749,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82748,
+ "g_objectid":"939939",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340988",
+ "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":"66023983959346920000000",
+ "g_sup_tota":"208.2",
+ "g_geometry":"0.000668703",
+ "g_geomet_1":"2.42687e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000498236884253,
+ "Shape_Area":1.38381306955e-08,
+ "Shape_Le_3":0.000498236283936,
+ "Shape_Ar_2":1.38381306955e-08,
+ "building_height":36.18
+ }
+ },
+ {
+ "type":"Feature",
+ "id":47,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56205309409685,
+ 45.50440073965271
+ ],
+ [
+ -73.56212506594089,
+ 45.50443486622639
+ ],
+ [
+ -73.56212611634903,
+ 45.50443373757722
+ ],
+ [
+ -73.56220525219248,
+ 45.50447203880384
+ ],
+ [
+ -73.56220631429181,
+ 45.50447091285264
+ ],
+ [
+ -73.56242027469776,
+ 45.50424428369703
+ ],
+ [
+ -73.56233877543599,
+ 45.50420524322769
+ ],
+ [
+ -73.56225748481691,
+ 45.50416653011157
+ ],
+ [
+ -73.5621760530043,
+ 45.504128211797834
+ ],
+ [
+ -73.5620713584283,
+ 45.50424148680547
+ ],
+ [
+ -73.56196471502143,
+ 45.50435622860736
+ ],
+ [
+ -73.56197489714563,
+ 45.50436097522912
+ ],
+ [
+ -73.56216716770247,
+ 45.50415664386432
+ ],
+ [
+ -73.56224586827405,
+ 45.504193243573624
+ ],
+ [
+ -73.56205309409685,
+ 45.50440073965271
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":47,
+ "ID_UEV":"01000393",
+ "CIVIQUE_DE":" 1021",
+ "CIVIQUE_FI":" 1025",
+ "NOM_RUE":"rue De Bleury (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":10,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"H\u00c3\u00b4tel (incluant les h\u00c3\u00b4tels-motels)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-94-4088-2-000-0000",
+ "SUPERFICIE":698,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0017254524224,
+ "OBJECTID":82752,
+ "Join_Count":1,
+ "TARGET_FID":82752,
+ "feature_id":"693c899e-a320-4674-836d-c44d6f05b815",
+ "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":62.02,
+ "elevmin":14.54,
+ "elevmax":17.21,
+ "bldgarea":2108.35,
+ "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_2":82752,
+ "Shape_Le_1":0.0017254524224,
+ "Shape_Ar_1":5.66537768433e-08,
+ "OBJECTID_3":82752,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82751,
+ "g_objectid":"945533",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"4386572",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994095530070000000",
+ "g_sup_tota":"152.2",
+ "g_geometry":"0.000827268",
+ "g_geomet_1":"1.69245e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0017254524224,
+ "Shape_Area":5.66537768433e-08,
+ "Shape_Le_3":0.00172545341539,
+ "Shape_Ar_2":5.66537768433e-08,
+ "building_height":30.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":48,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55742483121284,
+ 45.50257197276862
+ ],
+ [
+ -73.55749034232728,
+ 45.50261064721389
+ ],
+ [
+ -73.55766305352894,
+ 45.502708645437934
+ ],
+ [
+ -73.55780336935186,
+ 45.50262299310694
+ ],
+ [
+ -73.55787526655216,
+ 45.502575444151724
+ ],
+ [
+ -73.55787496617859,
+ 45.502575243602905
+ ],
+ [
+ -73.5576979661101,
+ 45.5024886442858
+ ],
+ [
+ -73.55758110280749,
+ 45.502431468088076
+ ],
+ [
+ -73.55742483121284,
+ 45.50257197276862
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":48,
+ "ID_UEV":"01036183",
+ "CIVIQUE_DE":" 468",
+ "CIVIQUE_FI":" 468",
+ "NOM_RUE":"rue Saint-Jean (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-22-9497-9-000-0000",
+ "SUPERFICIE":560,
+ "SUPERFIC_1":2146,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00106290210043,
+ "OBJECTID":82753,
+ "Join_Count":1,
+ "TARGET_FID":82753,
+ "feature_id":"b8d2437a-902d-443e-b809-cf1bda81f5bd",
+ "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.96,
+ "heightmax":28.7,
+ "elevmin":15.76,
+ "elevmax":18.58,
+ "bldgarea":1303.78,
+ "comment":" ",
+ "OBJECTID_2":82753,
+ "Shape_Le_1":0.00106290210043,
+ "Shape_Ar_1":6.26775760236e-08,
+ "OBJECTID_3":82753,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82752,
+ "g_objectid":"944950",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180755",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004032098440000000",
+ "g_sup_tota":"197.9",
+ "g_geometry":"0.000664781",
+ "g_geomet_1":"2.27855e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00106290210043,
+ "Shape_Area":6.26775760236e-08,
+ "Shape_Le_3":0.00106290208088,
+ "Shape_Ar_2":6.26775760236e-08,
+ "building_height":13.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":49,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55128107578287,
+ 45.528993750511475
+ ],
+ [
+ -73.55128936573348,
+ 45.5289975492478
+ ],
+ [
+ -73.5513346663836,
+ 45.52901824894333
+ ],
+ [
+ -73.55133626627752,
+ 45.52901664904941
+ ],
+ [
+ -73.55136766610676,
+ 45.528982548556066
+ ],
+ [
+ -73.55139302249184,
+ 45.52899411653554
+ ],
+ [
+ -73.55150283151231,
+ 45.5288774960499
+ ],
+ [
+ -73.55142696650314,
+ 45.52884114905008
+ ],
+ [
+ -73.55142544934685,
+ 45.52884042149855
+ ],
+ [
+ -73.55128107578287,
+ 45.528993750511475
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":49,
+ "ID_UEV":"01018442",
+ "CIVIQUE_DE":" 1681",
+ "CIVIQUE_FI":" 1685",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-72-8626-3-000-0000",
+ "SUPERFICIE":223,
+ "SUPERFIC_1":351,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000592001462518,
+ "OBJECTID":82757,
+ "Join_Count":1,
+ "TARGET_FID":82757,
+ "feature_id":"ef9f99e9-b72a-459d-a003-11d6da78defc",
+ "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.48,
+ "heightmax":34.11,
+ "elevmin":18.43,
+ "elevmax":20.99,
+ "bldgarea":2146.82,
+ "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_2":82757,
+ "Shape_Le_1":0.000592001462518,
+ "Shape_Ar_1":1.58767353744e-08,
+ "OBJECTID_3":82757,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82756,
+ "g_objectid":"940796",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424444",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004372862630000000",
+ "g_sup_tota":"223",
+ "g_geometry":"0.000801561",
+ "g_geomet_1":"2.57362e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000592001462518,
+ "Shape_Area":1.58767353744e-08,
+ "Shape_Le_3":0.000592003051393,
+ "Shape_Ar_2":1.58767353744e-08,
+ "building_height":15.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":50,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55742391480366,
+ 45.51535825752786
+ ],
+ [
+ -73.55748882517099,
+ 45.51538626151705
+ ],
+ [
+ -73.55761386690827,
+ 45.51524114601237
+ ],
+ [
+ -73.55755416721288,
+ 45.5152157455605
+ ],
+ [
+ -73.55754866695926,
+ 45.51521334616928
+ ],
+ [
+ -73.55742391480366,
+ 45.51535825752786
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55760584045902,
+ 45.51514238516324
+ ],
+ [
+ -73.55761036674687,
+ 45.515144646058864
+ ],
+ [
+ -73.55756496717134,
+ 45.515189545611335
+ ],
+ [
+ -73.55756496717134,
+ 45.51518964543608
+ ],
+ [
+ -73.55762336734637,
+ 45.51521794620155
+ ],
+ [
+ -73.55766886674665,
+ 45.51517164550533
+ ],
+ [
+ -73.55768270641362,
+ 45.515178381427454
+ ],
+ [
+ -73.55778071542952,
+ 45.51507148261313
+ ],
+ [
+ -73.55770351672577,
+ 45.515035847876376
+ ],
+ [
+ -73.55760584045902,
+ 45.51514238516324
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":50,
+ "ID_UEV":"01003416",
+ "CIVIQUE_DE":" 1227",
+ "CIVIQUE_FI":" 1229",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1876,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-26-9898-7-000-0000",
+ "SUPERFICIE":338,
+ "SUPERFIC_1":383,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00111314898654,
+ "OBJECTID":82765,
+ "Join_Count":2,
+ "TARGET_FID":82765,
+ "feature_id":"b2f57165-e4c2-4a26-9ca1-7c5dcc16afbe",
+ "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":28.97,
+ "elevmin":21.7,
+ "elevmax":22.62,
+ "bldgarea":114.79,
+ "comment":" ",
+ "OBJECTID_2":82765,
+ "Shape_Le_1":0.00111314898654,
+ "Shape_Ar_1":2.85644390414e-08,
+ "OBJECTID_3":82765,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82764,
+ "g_objectid":"938330",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2162088",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004126989870000000",
+ "g_sup_tota":"337.5",
+ "g_geometry":"0.00111772",
+ "g_geomet_1":"3.83375e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00111314898654,
+ "Shape_Area":2.85644390414e-08,
+ "Shape_Le_3":0.00111314805001,
+ "Shape_Ar_2":2.85644390414e-08,
+ "building_height":14.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":51,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55410968823337,
+ 45.50072052768051
+ ],
+ [
+ -73.55413183943469,
+ 45.50081773629979
+ ],
+ [
+ -73.55413226841131,
+ 45.500817167928254
+ ],
+ [
+ -73.5541123655151,
+ 45.500719143623876
+ ],
+ [
+ -73.55410944002048,
+ 45.50071943770218
+ ],
+ [
+ -73.55410968823337,
+ 45.50072052768051
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55388337384048,
+ 45.50054650077069
+ ],
+ [
+ -73.554231435754,
+ 45.5006918869713
+ ],
+ [
+ -73.5543480337566,
+ 45.50053969020483
+ ],
+ [
+ -73.5539663884599,
+ 45.500398986774115
+ ],
+ [
+ -73.55387460724917,
+ 45.500523052746985
+ ],
+ [
+ -73.55387643017495,
+ 45.50052355816597
+ ],
+ [
+ -73.55388337384048,
+ 45.50054650077069
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":51,
+ "ID_UEV":"01036271",
+ "CIVIQUE_DE":" 119",
+ "CIVIQUE_FI":" 123",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":7,
+ "NOMBRE_LOG":39,
+ "ANNEE_CONS":1982,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-50-7075-6-000-0000",
+ "SUPERFICIE":850,
+ "SUPERFIC_1":4398,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0013603695881,
+ "OBJECTID":82767,
+ "Join_Count":1,
+ "TARGET_FID":82767,
+ "feature_id":"b7a80b3c-10bb-407e-b90d-85532a20320b",
+ "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":24.59,
+ "elevmin":11.28,
+ "elevmax":14.43,
+ "bldgarea":6065.17,
+ "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_2":82767,
+ "Shape_Le_1":0.0013603695881,
+ "Shape_Ar_1":7.07265531264e-08,
+ "OBJECTID_3":82767,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82766,
+ "g_objectid":"944934",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180457",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"9",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004050975440000000",
+ "g_sup_tota":"541.5",
+ "g_geometry":"0.00107044",
+ "g_geomet_1":"6.23403e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0013603695881,
+ "Shape_Area":7.07265531264e-08,
+ "Shape_Le_3":0.00136037029421,
+ "Shape_Ar_2":7.07265531264e-08,
+ "building_height":11.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":52,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56227421850222,
+ 45.51732572775043
+ ],
+ [
+ -73.56235716926979,
+ 45.51736434643773
+ ],
+ [
+ -73.56238766887766,
+ 45.51733204728645
+ ],
+ [
+ -73.56253499041932,
+ 45.51740062778704
+ ],
+ [
+ -73.56264893272392,
+ 45.51727659329044
+ ],
+ [
+ -73.56241675475128,
+ 45.517170568617146
+ ],
+ [
+ -73.56227421850222,
+ 45.51732572775043
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":52,
+ "ID_UEV":"01003372",
+ "CIVIQUE_DE":" 1683",
+ "CIVIQUE_FI":" 1683",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Auberge ou g\u00c3\u00aete touristique (H\u00c3\u00b4tel \u00c3\u00a0 caract\u00c3\u00a8re familial, d'au plus 3 \u00c3\u00a9tages en hauteur de b\u00c3\u00a2timent)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-2032-9-000-0000",
+ "SUPERFICIE":561,
+ "SUPERFIC_1":259,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000932786161337,
+ "OBJECTID":82775,
+ "Join_Count":1,
+ "TARGET_FID":82775,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":82775,
+ "Shape_Le_1":0.000932786161337,
+ "Shape_Ar_1":4.4511785039e-08,
+ "OBJECTID_3":82775,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82774,
+ "g_objectid":"943285",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161664",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994199312430000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702133",
+ "g_geomet_1":"2.1514e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000932786161337,
+ "Shape_Area":4.4511785039e-08,
+ "Shape_Le_3":0.00093278421642,
+ "Shape_Ar_2":4.4511785039e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":53,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57689343670458,
+ 45.499761391725144
+ ],
+ [
+ -73.57698341747259,
+ 45.49980586499897
+ ],
+ [
+ -73.57724624344122,
+ 45.49954245357167
+ ],
+ [
+ -73.57715887340512,
+ 45.49949894257244
+ ],
+ [
+ -73.57715697313765,
+ 45.49950084283992
+ ],
+ [
+ -73.57711037296718,
+ 45.49955354311182
+ ],
+ [
+ -73.577103720682,
+ 45.49955064099958
+ ],
+ [
+ -73.57689343670458,
+ 45.499761391725144
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":53,
+ "ID_UEV":"01037388",
+ "CIVIQUE_DE":" 2070",
+ "CIVIQUE_FI":" 2072",
+ "NOM_RUE":"rue Drummond (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1936,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-79-7873-9-000-0000",
+ "SUPERFICIE":343,
+ "SUPERFIC_1":798,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000948090888212,
+ "OBJECTID":82779,
+ "Join_Count":1,
+ "TARGET_FID":82779,
+ "feature_id":"76a58260-38fb-45c4-ae87-32fb34844c79",
+ "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.64,
+ "heightmax":122.37,
+ "elevmin":43.72,
+ "elevmax":46.59,
+ "bldgarea":3555.37,
+ "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_2":82779,
+ "Shape_Le_1":0.000948090888212,
+ "Shape_Ar_1":3.50648290561e-08,
+ "OBJECTID_3":82779,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82778,
+ "g_objectid":"938088",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338854",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983979856920000000",
+ "g_sup_tota":"303.9",
+ "g_geometry":"0.00101024",
+ "g_geomet_1":"3.49858e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000948090888212,
+ "Shape_Area":3.50648290561e-08,
+ "Shape_Le_3":0.000948092801411,
+ "Shape_Ar_2":3.50648290561e-08,
+ "building_height":60.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":54,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57241999930537,
+ 45.505187945017944
+ ],
+ [
+ -73.57245877087742,
+ 45.50514764369909
+ ],
+ [
+ -73.5724925709972,
+ 45.505163643537614
+ ],
+ [
+ -73.57249277154601,
+ 45.50516354371287
+ ],
+ [
+ -73.57260077113052,
+ 45.50505604415141
+ ],
+ [
+ -73.57260437111668,
+ 45.50505234344119
+ ],
+ [
+ -73.57256807088162,
+ 45.505034843533494
+ ],
+ [
+ -73.57260847112589,
+ 45.50499364379192
+ ],
+ [
+ -73.57231707099787,
+ 45.50485274340968
+ ],
+ [
+ -73.5722752714085,
+ 45.50489544411975
+ ],
+ [
+ -73.57223907099818,
+ 45.50487794421205
+ ],
+ [
+ -73.57223907099818,
+ 45.5048780440368
+ ],
+ [
+ -73.57209289699145,
+ 45.5050301769514
+ ],
+ [
+ -73.57241999930537,
+ 45.505187945017944
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":54,
+ "ID_UEV":"01037867",
+ "CIVIQUE_DE":" 625",
+ "CIVIQUE_FI":" 625",
+ "NOM_RUE":"avenue du Pr\u00c3\u00a9sident-Kennedy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":15,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1972,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-15-4469-9-000-0000",
+ "SUPERFICIE":1013,
+ "SUPERFIC_1":12508,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00134696563378,
+ "OBJECTID":82781,
+ "Join_Count":1,
+ "TARGET_FID":82781,
+ "feature_id":"f7d81a53-315e-4c9d-b68a-01200f9d0c0d",
+ "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":58.67,
+ "elevmin":38.33,
+ "elevmax":41.52,
+ "bldgarea":864.36,
+ "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_2":82781,
+ "Shape_Le_1":0.00134696563378,
+ "Shape_Ar_1":9.69727995437e-08,
+ "OBJECTID_3":82781,
+ "Join_Cou_1":2,
+ "TARGET_F_1":82780,
+ "g_objectid":"945036",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340352",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"39",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994015446990000000",
+ "g_sup_tota":"1013.4",
+ "g_geometry":"0.0014407",
+ "g_geomet_1":"1.1709e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00134696563378,
+ "Shape_Area":9.69727995437e-08,
+ "Shape_Le_3":0.0013469669832,
+ "Shape_Ar_2":9.69727995437e-08,
+ "building_height":29.080000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":55,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55959088253505,
+ 45.53731399209735
+ ],
+ [
+ -73.55949626935919,
+ 45.537281849428105
+ ],
+ [
+ -73.55949586916088,
+ 45.53728234945116
+ ],
+ [
+ -73.55940586950712,
+ 45.537391750179424
+ ],
+ [
+ -73.5594079694241,
+ 45.537392549676724
+ ],
+ [
+ -73.5595029639125,
+ 45.53743520721933
+ ],
+ [
+ -73.55959088253505,
+ 45.53731399209735
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":55,
+ "ID_UEV":"01024341",
+ "CIVIQUE_DE":" 2608",
+ "CIVIQUE_FI":" 2616",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-5259-2-000-0000",
+ "SUPERFICIE":229,
+ "SUPERFIC_1":374,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000498348872677,
+ "OBJECTID":82782,
+ "Join_Count":1,
+ "TARGET_FID":82782,
+ "feature_id":"eaffc312-dfec-499d-a4e4-8935bfc906bd",
+ "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.62,
+ "heightmax":54.58,
+ "elevmin":40.73,
+ "elevmax":42.77,
+ "bldgarea":479.67,
+ "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_2":82782,
+ "Shape_Le_1":0.000498348872677,
+ "Shape_Ar_1":1.44394023725e-08,
+ "OBJECTID_3":82782,
+ "Join_Cou_1":2,
+ "TARGET_F_1":82781,
+ "g_objectid":"944173",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361437",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411525920000000",
+ "g_sup_tota":"228.5",
+ "g_geometry":"0.000717644",
+ "g_geomet_1":"2.63711e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000498348872677,
+ "Shape_Area":1.44394023725e-08,
+ "Shape_Le_3":0.00049834970216,
+ "Shape_Ar_2":1.44394023725e-08,
+ "building_height":26.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":56,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56480280003105,
+ 45.51802736891823
+ ],
+ [
+ -73.56488372372671,
+ 45.51806225362041
+ ],
+ [
+ -73.56497875598664,
+ 45.5179575464539
+ ],
+ [
+ -73.56490726977653,
+ 45.517917546407936
+ ],
+ [
+ -73.56491846993329,
+ 45.5179077464956
+ ],
+ [
+ -73.56491796991023,
+ 45.517907546846104
+ ],
+ [
+ -73.56491339685762,
+ 45.51790551257964
+ ],
+ [
+ -73.56480280003105,
+ 45.51802736891823
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":56,
+ "ID_UEV":"01003038",
+ "CIVIQUE_DE":" 2020",
+ "CIVIQUE_FI":" 2024",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-2705-9-000-0000",
+ "SUPERFICIE":201,
+ "SUPERFIC_1":361,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000496428915185,
+ "OBJECTID":82783,
+ "Join_Count":1,
+ "TARGET_FID":82783,
+ "feature_id":"02437dd3-64c3-49ff-b65a-5082346d0b17",
+ "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":19.57,
+ "elevmin":24.38,
+ "elevmax":38.3,
+ "bldgarea":3609.32,
+ "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_2":82783,
+ "Shape_Le_1":0.000496428915185,
+ "Shape_Ar_1":1.22384912312e-08,
+ "OBJECTID_3":82783,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82782,
+ "g_objectid":"943150",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161384",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270210940000000",
+ "g_sup_tota":"200.7",
+ "g_geometry":"0.000726316",
+ "g_geomet_1":"2.25567e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000496428915185,
+ "Shape_Area":1.22384912312e-08,
+ "Shape_Le_3":0.000496429263718,
+ "Shape_Ar_2":1.22384912312e-08,
+ "building_height":9.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":57,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56488372372671,
+ 45.51806225362041
+ ],
+ [
+ -73.5649015698734,
+ 45.518069946421186
+ ],
+ [
+ -73.56496252052575,
+ 45.518096220114764
+ ],
+ [
+ -73.56510317089646,
+ 45.51794124804046
+ ],
+ [
+ -73.56503277016806,
+ 45.51792304666157
+ ],
+ [
+ -73.5650326703433,
+ 45.51792304666157
+ ],
+ [
+ -73.56498786971626,
+ 45.517962646509226
+ ],
+ [
+ -73.56497875598664,
+ 45.5179575464539
+ ],
+ [
+ -73.56488372372671,
+ 45.51806225362041
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":57,
+ "ID_UEV":"01003040",
+ "CIVIQUE_DE":" 2026",
+ "CIVIQUE_FI":" 2030",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-2109-4-000-0000",
+ "SUPERFICIE":201,
+ "SUPERFIC_1":374,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000579542165262,
+ "OBJECTID":82784,
+ "Join_Count":1,
+ "TARGET_FID":82784,
+ "feature_id":"02437dd3-64c3-49ff-b65a-5082346d0b17",
+ "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":19.57,
+ "elevmin":24.38,
+ "elevmax":38.3,
+ "bldgarea":3609.32,
+ "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_2":82784,
+ "Shape_Le_1":0.000579542165262,
+ "Shape_Ar_1":1.56463698641e-08,
+ "OBJECTID_3":82784,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82783,
+ "g_objectid":"938520",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"2161382",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6517",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270151380000000",
+ "g_sup_tota":"200.3",
+ "g_geometry":"0.000730468",
+ "g_geomet_1":"2.28911e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000579542165262,
+ "Shape_Area":1.56463698641e-08,
+ "Shape_Le_3":0.000579542841367,
+ "Shape_Ar_2":1.56463698641e-08,
+ "building_height":9.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":58,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57081546218568,
+ 45.50520489993648
+ ],
+ [
+ -73.57134828082035,
+ 45.5054591014067
+ ],
+ [
+ -73.57159999746375,
+ 45.50520255810187
+ ],
+ [
+ -73.5717096706866,
+ 45.50508924352406
+ ],
+ [
+ -73.57117487084545,
+ 45.50483344395857
+ ],
+ [
+ -73.57081546218568,
+ 45.50520489993648
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":58,
+ "ID_UEV":"01037869",
+ "CIVIQUE_DE":" 2021",
+ "CIVIQUE_FI":" 2021",
+ "NOM_RUE":"avenue Union (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":14,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1966,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-25-3282-6-000-0000",
+ "SUPERFICIE":2627,
+ "SUPERFIC_1":35461,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00221715651028,
+ "OBJECTID":82785,
+ "Join_Count":1,
+ "TARGET_FID":82785,
+ "feature_id":"0f6fdeef-71a4-4025-86d3-d2d46384dd2e",
+ "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":57.26,
+ "elevmin":35.83,
+ "elevmax":37.73,
+ "bldgarea":2594.5,
+ "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_2":82785,
+ "Shape_Le_1":0.00221715651028,
+ "Shape_Ar_1":2.89955830821e-07,
+ "OBJECTID_3":82785,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82784,
+ "g_objectid":"945037",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340353",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"42",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994025328260000000",
+ "g_sup_tota":"2627.1",
+ "g_geometry":"0.00226716",
+ "g_geomet_1":"3.02524e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00221715651028,
+ "Shape_Area":2.89955830821e-07,
+ "Shape_Le_3":0.00221715519841,
+ "Shape_Ar_2":2.89955830821e-07,
+ "building_height":28.375
+ }
+ },
+ {
+ "type":"Feature",
+ "id":59,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55732200992466,
+ 45.502511273926444
+ ],
+ [
+ -73.55742483121284,
+ 45.50257197276862
+ ],
+ [
+ -73.55758110280749,
+ 45.502431468088076
+ ],
+ [
+ -73.55747881841458,
+ 45.50238142351418
+ ],
+ [
+ -73.55741266698284,
+ 45.50244727816965
+ ],
+ [
+ -73.5574013454176,
+ 45.502441589957705
+ ],
+ [
+ -73.55732200992466,
+ 45.502511273926444
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":59,
+ "ID_UEV":"01036185",
+ "CIVIQUE_DE":" 464",
+ "CIVIQUE_FI":" 464",
+ "NOM_RUE":"rue Saint-Jean (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-32-0984-4-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":778,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000655026199491,
+ "OBJECTID":82788,
+ "Join_Count":1,
+ "TARGET_FID":82788,
+ "feature_id":"b8d2437a-902d-443e-b809-cf1bda81f5bd",
+ "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.96,
+ "heightmax":28.7,
+ "elevmin":15.76,
+ "elevmax":18.58,
+ "bldgarea":1303.78,
+ "comment":" ",
+ "OBJECTID_2":82788,
+ "Shape_Le_1":0.000655026199491,
+ "Shape_Ar_1":2.22824592888e-08,
+ "OBJECTID_3":82788,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82787,
+ "g_objectid":"944950",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180755",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004032098440000000",
+ "g_sup_tota":"197.9",
+ "g_geometry":"0.000664781",
+ "g_geomet_1":"2.27855e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000655026199491,
+ "Shape_Area":2.22824592888e-08,
+ "Shape_Le_3":0.000655026384007,
+ "Shape_Ar_2":2.22824592888e-08,
+ "building_height":13.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":60,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56026378856484,
+ 45.52746948507897
+ ],
+ [
+ -73.56050228337553,
+ 45.52759069120773
+ ],
+ [
+ -73.56060229698026,
+ 45.52748320783407
+ ],
+ [
+ -73.56035768048442,
+ 45.527370055134234
+ ],
+ [
+ -73.56026378856484,
+ 45.52746948507897
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":60,
+ "ID_UEV":"01034542",
+ "CIVIQUE_DE":" 2117",
+ "CIVIQUE_FI":" 2143",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":14,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-00-7965-7-000-0000",
+ "SUPERFICIE":530,
+ "SUPERFIC_1":801,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000820620140929,
+ "OBJECTID":82791,
+ "Join_Count":1,
+ "TARGET_FID":82791,
+ "feature_id":"a685446f-e91c-4b34-848e-2d7c6bc5bd47",
+ "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.56,
+ "heightmax":40.5,
+ "elevmin":26.49,
+ "elevmax":27.51,
+ "bldgarea":947.78,
+ "comment":" ",
+ "OBJECTID_2":82791,
+ "Shape_Le_1":0.000820620140929,
+ "Shape_Ar_1":3.63514423727e-08,
+ "OBJECTID_3":82791,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82790,
+ "g_objectid":"942855",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884695",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"14",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004300796570000000",
+ "g_sup_tota":"529.5",
+ "g_geometry":"0.00101924",
+ "g_geomet_1":"6.1488e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000820620140929,
+ "Shape_Area":3.63514423727e-08,
+ "Shape_Le_3":0.000820619355896,
+ "Shape_Ar_2":3.63514423727e-08,
+ "building_height":18.97
+ }
+ },
+ {
+ "type":"Feature",
+ "id":61,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55634895336335,
+ 45.517587587847196
+ ],
+ [
+ -73.55627076720398,
+ 45.51755094676907
+ ],
+ [
+ -73.55619235711343,
+ 45.517633629538665
+ ],
+ [
+ -73.55627311353521,
+ 45.517670392025266
+ ],
+ [
+ -73.55634895336335,
+ 45.517587587847196
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5561573797811,
+ 45.51760850877596
+ ],
+ [
+ -73.55616156702455,
+ 45.51761024716547
+ ],
+ [
+ -73.55616356711677,
+ 45.51760784687493
+ ],
+ [
+ -73.55622406720877,
+ 45.517539346414004
+ ],
+ [
+ -73.55622106077519,
+ 45.51753803969907
+ ],
+ [
+ -73.5561573797811,
+ 45.51760850877596
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":61,
+ "ID_UEV":"01040149",
+ "CIVIQUE_DE":" 1310",
+ "CIVIQUE_FI":" 1314",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-49-0465-6-000-0000",
+ "SUPERFICIE":138,
+ "SUPERFIC_1":260,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000598619064601,
+ "OBJECTID":82797,
+ "Join_Count":2,
+ "TARGET_FID":82797,
+ "feature_id":"fb225e80-e19a-4074-9180-1ae6e713f40b",
+ "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":3.61,
+ "heightmax":36.95,
+ "elevmin":21.25,
+ "elevmax":22.66,
+ "bldgarea":188.7,
+ "comment":" ",
+ "OBJECTID_2":82797,
+ "Shape_Le_1":0.000598619064601,
+ "Shape_Ar_1":9.75248396529e-09,
+ "OBJECTID_3":82797,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82796,
+ "g_objectid":"941779",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566506",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004149164940000000",
+ "g_sup_tota":"594.6",
+ "g_geometry":"0.0010769",
+ "g_geomet_1":"6.88011e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000598619064601,
+ "Shape_Area":9.75248396529e-09,
+ "Shape_Le_3":0.000598621137921,
+ "Shape_Ar_2":9.75248396529e-09,
+ "building_height":16.67
+ }
+ },
+ {
+ "type":"Feature",
+ "id":62,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56320745578131,
+ 45.517985571127504
+ ],
+ [
+ -73.56328025590093,
+ 45.51801866707812
+ ],
+ [
+ -73.56328046904027,
+ 45.518018446744215
+ ],
+ [
+ -73.56328521206473,
+ 45.5180205997212
+ ],
+ [
+ -73.56336717537668,
+ 45.5179315002888
+ ],
+ [
+ -73.56335906888776,
+ 45.517928046892145
+ ],
+ [
+ -73.56337626932121,
+ 45.51790804686916
+ ],
+ [
+ -73.5633717691137,
+ 45.51790604677693
+ ],
+ [
+ -73.56331466935835,
+ 45.517880546500315
+ ],
+ [
+ -73.56327906879584,
+ 45.51791994669848
+ ],
+ [
+ -73.56327109810454,
+ 45.517916386282494
+ ],
+ [
+ -73.56320745578131,
+ 45.517985571127504
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":62,
+ "ID_UEV":"01003521",
+ "CIVIQUE_DE":" 1792",
+ "CIVIQUE_FI":" 1792",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-80-5404-5-000-0000",
+ "SUPERFICIE":110,
+ "SUPERFIC_1":216,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000465035157626,
+ "OBJECTID":82798,
+ "Join_Count":1,
+ "TARGET_FID":82798,
+ "feature_id":"c35bc821-e0be-4b5f-9de4-7ecfec6c5aba",
+ "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":14.42,
+ "elevmin":23.6,
+ "elevmax":24.49,
+ "bldgarea":561.78,
+ "comment":" ",
+ "OBJECTID_2":82798,
+ "Shape_Le_1":0.000465035157626,
+ "Shape_Ar_1":1.12818240864e-08,
+ "OBJECTID_3":82798,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82797,
+ "g_objectid":"943264",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161623",
+ "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":"66023994280540450000000",
+ "g_sup_tota":"109.9",
+ "g_geometry":"0.00048324",
+ "g_geomet_1":"1.2662e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000465035157626,
+ "Shape_Area":1.12818240864e-08,
+ "Shape_Le_3":0.00046503651986,
+ "Shape_Ar_2":1.12818240864e-08,
+ "building_height":6.96
+ }
+ },
+ {
+ "type":"Feature",
+ "id":63,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55493318034384,
+ 45.52445637491207
+ ],
+ [
+ -73.55485566687737,
+ 45.52442174741601
+ ],
+ [
+ -73.55485246708953,
+ 45.52442524757741
+ ],
+ [
+ -73.55473962735377,
+ 45.52454757965737
+ ],
+ [
+ -73.55481607332497,
+ 45.524582995858864
+ ],
+ [
+ -73.55493318034384,
+ 45.52445637491207
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":63,
+ "ID_UEV":"01034243",
+ "CIVIQUE_DE":" 1650",
+ "CIVIQUE_FI":" 1654",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1916,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-57-1531-5-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":326,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000512789549202,
+ "OBJECTID":82801,
+ "Join_Count":1,
+ "TARGET_FID":82801,
+ "feature_id":"7a1cccbe-d7d5-44f1-a640-325177f0d7af",
+ "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.51,
+ "heightmax":37.41,
+ "elevmin":24.39,
+ "elevmax":25.96,
+ "bldgarea":876.48,
+ "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_2":82801,
+ "Shape_Le_1":0.000512789549202,
+ "Shape_Ar_1":1.3797692888e-08,
+ "OBJECTID_3":82801,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82800,
+ "g_objectid":"942406",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729311",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257093590000000",
+ "g_sup_tota":"149.1",
+ "g_geometry":"0.000579514",
+ "g_geomet_1":"1.70983e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000512789549202,
+ "Shape_Area":1.3797692888e-08,
+ "Shape_Le_3":0.000512790065319,
+ "Shape_Ar_2":1.3797692888e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":64,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55481607332497,
+ 45.524582995858864
+ ],
+ [
+ -73.55489783788676,
+ 45.52462087440413
+ ],
+ [
+ -73.55500987542726,
+ 45.52449905403841
+ ],
+ [
+ -73.55500716756858,
+ 45.524497848047545
+ ],
+ [
+ -73.55501256709813,
+ 45.524491847770854
+ ],
+ [
+ -73.55501146722727,
+ 45.5244913477478
+ ],
+ [
+ -73.55493318034384,
+ 45.52445637491207
+ ],
+ [
+ -73.55481607332497,
+ 45.524582995858864
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":64,
+ "ID_UEV":"01034245",
+ "CIVIQUE_DE":" 1656",
+ "CIVIQUE_FI":" 1660",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1916,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-57-0935-9-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":328,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000526081592117,
+ "OBJECTID":82802,
+ "Join_Count":1,
+ "TARGET_FID":82802,
+ "feature_id":"7a1cccbe-d7d5-44f1-a640-325177f0d7af",
+ "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.51,
+ "heightmax":37.41,
+ "elevmin":24.39,
+ "elevmax":25.96,
+ "bldgarea":876.48,
+ "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_2":82802,
+ "Shape_Le_1":0.000526081592117,
+ "Shape_Ar_1":1.47796098337e-08,
+ "OBJECTID_3":82802,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82801,
+ "g_objectid":"942406",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729311",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257093590000000",
+ "g_sup_tota":"149.1",
+ "g_geometry":"0.000579514",
+ "g_geomet_1":"1.70983e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000526081592117,
+ "Shape_Area":1.47796098337e-08,
+ "Shape_Le_3":0.000526080352955,
+ "Shape_Ar_2":1.47796098337e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":65,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5693051200571,
+ 45.50804366843085
+ ],
+ [
+ -73.56974735088139,
+ 45.508249276832956
+ ],
+ [
+ -73.56983277118728,
+ 45.5081598446514
+ ],
+ [
+ -73.56969177098028,
+ 45.50809324445796
+ ],
+ [
+ -73.56985027109498,
+ 45.50792754527029
+ ],
+ [
+ -73.56986087500123,
+ 45.50793257068189
+ ],
+ [
+ -73.5699435568715,
+ 45.50784422398205
+ ],
+ [
+ -73.5698506712933,
+ 45.507797644495994
+ ],
+ [
+ -73.56964307089285,
+ 45.507693545271195
+ ],
+ [
+ -73.56964867097123,
+ 45.507687945192814
+ ],
+ [
+ -73.56964337126641,
+ 45.50768544507752
+ ],
+ [
+ -73.56964007615043,
+ 45.50768389104903
+ ],
+ [
+ -73.56945237594823,
+ 45.50788550106532
+ ],
+ [
+ -73.56941368531517,
+ 45.50792705873707
+ ],
+ [
+ -73.5693051200571,
+ 45.50804366843085
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":65,
+ "ID_UEV":"01000336",
+ "CIVIQUE_DE":" 2067",
+ "CIVIQUE_FI":" 2067",
+ "NOM_RUE":"rue De Bleury (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1905,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres bases et r\u00c3\u00a9serves militaires",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-38-5595-2-000-0000",
+ "SUPERFICIE":1752,
+ "SUPERFIC_1":2108,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00197447414002,
+ "OBJECTID":82805,
+ "Join_Count":1,
+ "TARGET_FID":82805,
+ "feature_id":"7a1aa508-d59c-4153-8399-94ca1866b3a7",
+ "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.75,
+ "heightmax":26.75,
+ "elevmin":33.61,
+ "elevmax":35.82,
+ "bldgarea":1945.13,
+ "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_2":82805,
+ "Shape_Le_1":0.00197447414002,
+ "Shape_Ar_1":1.72126583647e-07,
+ "OBJECTID_3":82805,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82804,
+ "g_objectid":"945734",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1340528",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039280720000000",
+ "g_sup_tota":"1133",
+ "g_geometry":"0.00170293",
+ "g_geomet_1":"1.30474e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00197447414002,
+ "Shape_Area":1.72126583647e-07,
+ "Shape_Le_3":0.00197447308292,
+ "Shape_Ar_2":1.72126583647e-07,
+ "building_height":13.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":66,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55577970049463,
+ 45.538303966704994
+ ],
+ [
+ -73.55578786813744,
+ 45.53830715120436
+ ],
+ [
+ -73.55582466839557,
+ 45.53826085050814
+ ],
+ [
+ -73.55589914215354,
+ 45.538289976851246
+ ],
+ [
+ -73.55597441001285,
+ 45.53818482362101
+ ],
+ [
+ -73.55592926854276,
+ 45.53816765106654
+ ],
+ [
+ -73.55592906799394,
+ 45.53816765106654
+ ],
+ [
+ -73.55591606829375,
+ 45.5381860511956
+ ],
+ [
+ -73.55588516848758,
+ 45.53817525123715
+ ],
+ [
+ -73.55587676792035,
+ 45.53817265129712
+ ],
+ [
+ -73.55584726835859,
+ 45.53821905091876
+ ],
+ [
+ -73.5558417249375,
+ 45.538217316126534
+ ],
+ [
+ -73.55577970049463,
+ 45.538303966704994
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":66,
+ "ID_UEV":"01025142",
+ "CIVIQUE_DE":" 2386",
+ "CIVIQUE_FI":" 2386",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-3659-0-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":84,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000557099561983,
+ "OBJECTID":82811,
+ "Join_Count":1,
+ "TARGET_FID":82811,
+ "feature_id":"ee598ffa-6e9b-4a71-ba9b-2c7cca213f6d",
+ "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":35.53,
+ "elevmin":18.68,
+ "elevmax":24.19,
+ "bldgarea":2418.71,
+ "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_2":82811,
+ "Shape_Le_1":0.000557099561983,
+ "Shape_Ar_1":1.08419903831e-08,
+ "OBJECTID_3":82811,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82810,
+ "g_objectid":"944012",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361222",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442435620000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000669613",
+ "g_geomet_1":"2.15246e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000557099561983,
+ "Shape_Area":1.08419903831e-08,
+ "Shape_Le_3":0.00055709939439,
+ "Shape_Ar_2":1.08419903831e-08,
+ "building_height":17.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":67,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55698225774684,
+ 45.52563355059818
+ ],
+ [
+ -73.55706267242624,
+ 45.52567236893498
+ ],
+ [
+ -73.55718709722859,
+ 45.525542860265084
+ ],
+ [
+ -73.5571582685611,
+ 45.52552594761469
+ ],
+ [
+ -73.55715036801692,
+ 45.52552174778073
+ ],
+ [
+ -73.55711016832146,
+ 45.525561048154145
+ ],
+ [
+ -73.55707095248431,
+ 45.52554123159286
+ ],
+ [
+ -73.55698225774684,
+ 45.52563355059818
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5571461250155,
+ 45.525462986977566
+ ],
+ [
+ -73.55720216806745,
+ 45.52548904753181
+ ],
+ [
+ -73.55720571949021,
+ 45.52548527217786
+ ],
+ [
+ -73.5571497798603,
+ 45.52545918284531
+ ],
+ [
+ -73.5571461250155,
+ 45.525462986977566
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":67,
+ "ID_UEV":"01034272",
+ "CIVIQUE_DE":" 1850",
+ "CIVIQUE_FI":" 1854",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-38-3851-5-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000673424522329,
+ "OBJECTID":82812,
+ "Join_Count":2,
+ "TARGET_FID":82812,
+ "feature_id":"13363199-665b-4f02-a188-32bfed70ce03",
+ "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.66,
+ "heightmax":36.35,
+ "elevmin":23.46,
+ "elevmax":24.51,
+ "bldgarea":310.56,
+ "comment":" ",
+ "OBJECTID_2":82812,
+ "Shape_Le_1":0.000673424522329,
+ "Shape_Ar_1":1.3395174059e-08,
+ "OBJECTID_3":82812,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82811,
+ "g_objectid":"942189",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567600",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004238444710000000",
+ "g_sup_tota":"183.3",
+ "g_geometry":"0.000675578",
+ "g_geomet_1":"2.12214e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000673424522329,
+ "Shape_Area":1.3395174059e-08,
+ "Shape_Le_3":0.000673426393823,
+ "Shape_Ar_2":1.3395174059e-08,
+ "building_height":16.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":68,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55314509069522,
+ 45.497455311463746
+ ],
+ [
+ -73.55333290331268,
+ 45.49752584259386
+ ],
+ [
+ -73.55347266155593,
+ 45.497546109715486
+ ],
+ [
+ -73.55354336895316,
+ 45.49745294264948
+ ],
+ [
+ -73.55357866374618,
+ 45.497332643936666
+ ],
+ [
+ -73.55357986434112,
+ 45.49733284358616
+ ],
+ [
+ -73.55346306399106,
+ 45.49728804385843
+ ],
+ [
+ -73.5534726849383,
+ 45.49727560623454
+ ],
+ [
+ -73.55338846163005,
+ 45.49724203364323
+ ],
+ [
+ -73.5532797470845,
+ 45.49719872589078
+ ],
+ [
+ -73.55327971291027,
+ 45.49719871330027
+ ],
+ [
+ -73.55324633816981,
+ 45.4972623268452
+ ],
+ [
+ -73.55321295173817,
+ 45.49732596467183
+ ],
+ [
+ -73.55317956530654,
+ 45.49738960249845
+ ],
+ [
+ -73.55314509069522,
+ 45.497455311463746
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":68,
+ "ID_UEV":"01004137",
+ "CIVIQUE_DE":" 10",
+ "CIVIQUE_FI":" 10",
+ "NOM_RUE":"rue King (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0039-67-2719-0-000-0000",
+ "SUPERFICIE":891,
+ "SUPERFIC_1":831,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00122372723689,
+ "OBJECTID":82815,
+ "Join_Count":1,
+ "TARGET_FID":82815,
+ "feature_id":"a90dbe87-7da0-48ff-b077-44a698cf3966",
+ "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":33.01,
+ "elevmin":13.29,
+ "elevmax":14.04,
+ "bldgarea":2603.59,
+ "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_2":82815,
+ "Shape_Le_1":0.00122372723689,
+ "Shape_Ar_1":9.32928253964e-08,
+ "OBJECTID_3":82815,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82814,
+ "g_objectid":"938361",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"3066755",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023003967271900000000",
+ "g_sup_tota":"891.2",
+ "g_geometry":"0.00136937",
+ "g_geomet_1":"1.03959e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00122372723689,
+ "Shape_Area":9.32928253964e-08,
+ "Shape_Le_3":0.00122372746904,
+ "Shape_Ar_2":9.32928253964e-08,
+ "building_height":16.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":69,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56256511500989,
+ 45.52856086094527
+ ],
+ [
+ -73.56271406882107,
+ 45.52863234445743
+ ],
+ [
+ -73.56282066726183,
+ 45.528518505574866
+ ],
+ [
+ -73.56278697056409,
+ 45.52849194859485
+ ],
+ [
+ -73.56276907045807,
+ 45.52850314875161
+ ],
+ [
+ -73.56272197026456,
+ 45.52846614884399
+ ],
+ [
+ -73.5627214702415,
+ 45.528465848470425
+ ],
+ [
+ -73.56267364339577,
+ 45.528445924889816
+ ],
+ [
+ -73.56267164420287,
+ 45.52844804189392
+ ],
+ [
+ -73.56257965974535,
+ 45.52854545645794
+ ],
+ [
+ -73.56256511500989,
+ 45.52856086094527
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":69,
+ "ID_UEV":"01034501",
+ "CIVIQUE_DE":" 2345",
+ "CIVIQUE_FI":" 2361",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-0383-1-000-0000",
+ "SUPERFICIE":325,
+ "SUPERFIC_1":529,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000655561673533,
+ "OBJECTID":82820,
+ "Join_Count":1,
+ "TARGET_FID":82820,
+ "feature_id":"627c93de-3511-4cbc-a377-97d2326e5737",
+ "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.93,
+ "heightmax":40.68,
+ "elevmin":27.05,
+ "elevmax":39.63,
+ "bldgarea":2860.19,
+ "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_2":82820,
+ "Shape_Le_1":0.000655561673533,
+ "Shape_Ar_1":2.47789339178e-08,
+ "OBJECTID_3":82820,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82819,
+ "g_objectid":"942986",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885487",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391038310000000",
+ "g_sup_tota":"324.8",
+ "g_geometry":"0.000811989",
+ "g_geomet_1":"3.78082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000655561673533,
+ "Shape_Area":2.47789339178e-08,
+ "Shape_Le_3":0.000655561739675,
+ "Shape_Ar_2":2.47789339178e-08,
+ "building_height":19.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":70,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56135137019143,
+ 45.52793646704461
+ ],
+ [
+ -73.56135496927826,
+ 45.52793814877684
+ ],
+ [
+ -73.56132376909851,
+ 45.52797104867525
+ ],
+ [
+ -73.56132386892325,
+ 45.5279711485
+ ],
+ [
+ -73.56148599150714,
+ 45.52804174707926
+ ],
+ [
+ -73.56158362280779,
+ 45.527938754020575
+ ],
+ [
+ -73.56148086896877,
+ 45.5278888488416
+ ],
+ [
+ -73.56143266890439,
+ 45.527865448481954
+ ],
+ [
+ -73.56144206951774,
+ 45.52785584911844
+ ],
+ [
+ -73.56144156949468,
+ 45.52785544892013
+ ],
+ [
+ -73.56143203398302,
+ 45.52785137229329
+ ],
+ [
+ -73.56135137019143,
+ 45.52793646704461
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":70,
+ "ID_UEV":"01034527",
+ "CIVIQUE_DE":" 2213",
+ "CIVIQUE_FI":" 2229",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-0019-8-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":522,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000677704943627,
+ "OBJECTID":82822,
+ "Join_Count":1,
+ "TARGET_FID":82822,
+ "feature_id":"627c93de-3511-4cbc-a377-97d2326e5737",
+ "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.93,
+ "heightmax":40.68,
+ "elevmin":27.05,
+ "elevmax":39.63,
+ "bldgarea":2860.19,
+ "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_2":82822,
+ "Shape_Le_1":0.000677704943627,
+ "Shape_Ar_1":2.47770353609e-08,
+ "OBJECTID_3":82822,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82821,
+ "g_objectid":"942990",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885491",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391872710000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000839962",
+ "g_geomet_1":"4.0966e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000677704943627,
+ "Shape_Area":2.47770353609e-08,
+ "Shape_Le_3":0.000677705303672,
+ "Shape_Ar_2":2.47770353609e-08,
+ "building_height":19.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":71,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56116459988822,
+ 45.52788650071173
+ ],
+ [
+ -73.56117226930662,
+ 45.527889948712456
+ ],
+ [
+ -73.56117486924666,
+ 45.52788704929818
+ ],
+ [
+ -73.56119656898831,
+ 45.5278641489616
+ ],
+ [
+ -73.56135137019143,
+ 45.52793646704461
+ ],
+ [
+ -73.56143203398302,
+ 45.52785137229329
+ ],
+ [
+ -73.56141466897364,
+ 45.52784394928912
+ ],
+ [
+ -73.56132866950433,
+ 45.52780704920625
+ ],
+ [
+ -73.56129736949985,
+ 45.52779364840844
+ ],
+ [
+ -73.56127316874358,
+ 45.527783648846615
+ ],
+ [
+ -73.56127286926935,
+ 45.52778394922017
+ ],
+ [
+ -73.56126477537093,
+ 45.527780546185554
+ ],
+ [
+ -73.56116459988822,
+ 45.52788650071173
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":71,
+ "ID_UEV":"01034529",
+ "CIVIQUE_DE":" 2201",
+ "CIVIQUE_FI":" 2211",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-1310-0-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":430,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000659680560691,
+ "OBJECTID":82823,
+ "Join_Count":1,
+ "TARGET_FID":82823,
+ "feature_id":"627c93de-3511-4cbc-a377-97d2326e5737",
+ "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.93,
+ "heightmax":40.68,
+ "elevmin":27.05,
+ "elevmax":39.63,
+ "bldgarea":2860.19,
+ "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_2":82823,
+ "Shape_Le_1":0.000659680560691,
+ "Shape_Ar_1":1.96844588218e-08,
+ "OBJECTID_3":82823,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82822,
+ "g_objectid":"942979",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885475",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301131000000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000838998",
+ "g_geomet_1":"4.08559e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000659680560691,
+ "Shape_Area":1.96844588218e-08,
+ "Shape_Le_3":0.000659680633442,
+ "Shape_Ar_2":1.96844588218e-08,
+ "building_height":19.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":72,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56479043974883,
+ 45.5202714184415
+ ],
+ [
+ -73.56489568021331,
+ 45.52031858608417
+ ],
+ [
+ -73.56497965620801,
+ 45.520228310338545
+ ],
+ [
+ -73.56487906973513,
+ 45.52018364640845
+ ],
+ [
+ -73.56487412706116,
+ 45.520181455659944
+ ],
+ [
+ -73.56479043974883,
+ 45.5202714184415
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":72,
+ "ID_UEV":"01039976",
+ "CIVIQUE_DE":" 2126",
+ "CIVIQUE_FI":" 2130",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-2653-7-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":301,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000476969617017,
+ "OBJECTID":82832,
+ "Join_Count":1,
+ "TARGET_FID":82832,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":82832,
+ "Shape_Le_1":0.000476969617017,
+ "Shape_Ar_1":1.34388591292e-08,
+ "OBJECTID_3":82832,
+ "Join_Cou_1":6,
+ "TARGET_F_1":82831,
+ "g_objectid":"943371",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272344810000000",
+ "g_sup_tota":"1001.4",
+ "g_geometry":"0.00138964",
+ "g_geomet_1":"1.14197e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000476969617017,
+ "Shape_Area":1.34388591292e-08,
+ "Shape_Le_3":0.000476969182521,
+ "Shape_Ar_2":1.34388591292e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":73,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55669523192127,
+ 45.51849060700621
+ ],
+ [
+ -73.5567052521675,
+ 45.51849520254186
+ ],
+ [
+ -73.55677666733118,
+ 45.518418746678115
+ ],
+ [
+ -73.55680266673153,
+ 45.51843074723149
+ ],
+ [
+ -73.55684076740933,
+ 45.51838994678891
+ ],
+ [
+ -73.55684096705883,
+ 45.518389747139416
+ ],
+ [
+ -73.55681746687443,
+ 45.518380146876574
+ ],
+ [
+ -73.55686906727549,
+ 45.51831764669234
+ ],
+ [
+ -73.55686446724322,
+ 45.518315775203156
+ ],
+ [
+ -73.55669523192127,
+ 45.51849060700621
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":73,
+ "ID_UEV":"01040258",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-30-5858-5-000-0000",
+ "SUPERFICIE":312,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000555111018793,
+ "OBJECTID":82855,
+ "Join_Count":1,
+ "TARGET_FID":82855,
+ "feature_id":"9ce922a4-3af9-42ab-bea0-6fde2277d5ef",
+ "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.48,
+ "heightmax":16.75,
+ "elevmin":22.28,
+ "elevmax":23.77,
+ "bldgarea":1174.88,
+ "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_2":82855,
+ "Shape_Le_1":0.000555111018793,
+ "Shape_Ar_1":3.59532103658e-09,
+ "OBJECTID_3":82855,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82854,
+ "g_objectid":"938276",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1566522",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004230754720000000",
+ "g_sup_tota":"652.4",
+ "g_geometry":"0.00113734",
+ "g_geomet_1":"7.51431e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000555111018793,
+ "Shape_Area":3.59532103658e-09,
+ "Shape_Le_3":0.000555111626373,
+ "Shape_Ar_2":3.59532103658e-09,
+ "building_height":7.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":74,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55867401471585,
+ 45.53075100150781
+ ],
+ [
+ -73.55844766884668,
+ 45.530645648628074
+ ],
+ [
+ -73.55830956805397,
+ 45.53079224891345
+ ],
+ [
+ -73.55825366799422,
+ 45.53076624861378
+ ],
+ [
+ -73.5580926821534,
+ 45.5309370694405
+ ],
+ [
+ -73.55837401616975,
+ 45.53106553309817
+ ],
+ [
+ -73.55867401471585,
+ 45.53075100150781
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":74,
+ "ID_UEV":"01022744",
+ "CIVIQUE_DE":" 2205",
+ "CIVIQUE_FI":" 2205",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1961,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Industrie d'accessoires vestimentaires et d'autres v\u00c3\u00aatements",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-24-3937-0-000-0000",
+ "SUPERFICIE":1177,
+ "SUPERFIC_1":3001,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00149137940548,
+ "OBJECTID":82861,
+ "Join_Count":1,
+ "TARGET_FID":82861,
+ "feature_id":"f6eb07ec-b2c2-43d6-984c-0a32f1e82e79",
+ "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.46,
+ "heightmax":41.72,
+ "elevmin":23.06,
+ "elevmax":25.39,
+ "bldgarea":1041.61,
+ "comment":" ",
+ "OBJECTID_2":82861,
+ "Shape_Le_1":0.00149137940548,
+ "Shape_Ar_1":1.16163463092e-07,
+ "OBJECTID_3":82861,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82860,
+ "g_objectid":"2284945",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Industrie l\u00c3\u00a9g\u00c3\u00a8re",
+ "g_no_lot":"1423900",
+ "g_nb_poly_":"1",
+ "g_utilisat":"2699",
+ "g_nb_logem":" ",
+ "g_nb_locau":"48",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004324393700000000",
+ "g_sup_tota":"1177",
+ "g_geometry":"0.00153854",
+ "g_geomet_1":"1.36125e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00149137940548,
+ "Shape_Area":1.16163463092e-07,
+ "Shape_Le_3":0.0014913796489,
+ "Shape_Ar_2":1.16163463092e-07,
+ "building_height":19.63
+ }
+ },
+ {
+ "type":"Feature",
+ "id":75,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55822640144912,
+ 45.526197814927514
+ ],
+ [
+ -73.55829956039824,
+ 45.526234394851734
+ ],
+ [
+ -73.55840044904333,
+ 45.52612858781437
+ ],
+ [
+ -73.55833216801699,
+ 45.52609254748337
+ ],
+ [
+ -73.5583576682936,
+ 45.526068648
+ ],
+ [
+ -73.55835336773558,
+ 45.526066347534204
+ ],
+ [
+ -73.55835224718031,
+ 45.52606583402132
+ ],
+ [
+ -73.55822640144912,
+ 45.526197814927514
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":75,
+ "ID_UEV":"01034287",
+ "CIVIQUE_DE":" 1956",
+ "CIVIQUE_FI":" 1956",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-4214-4-000-0000",
+ "SUPERFICIE":170,
+ "SUPERFIC_1":266,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000528622550776,
+ "OBJECTID":82863,
+ "Join_Count":1,
+ "TARGET_FID":82863,
+ "feature_id":"65090e90-b10d-4179-abff-e66f48ed7326",
+ "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.5,
+ "heightmax":37.02,
+ "elevmin":23.45,
+ "elevmax":25.31,
+ "bldgarea":1077.77,
+ "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_2":82863,
+ "Shape_Le_1":0.000528622550776,
+ "Shape_Ar_1":1.16721615949e-08,
+ "OBJECTID_3":82863,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82862,
+ "g_objectid":"942114",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567364",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"18",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229610290000000",
+ "g_sup_tota":"938.3",
+ "g_geometry":"0.00141797",
+ "g_geomet_1":"1.07992e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000528622550776,
+ "Shape_Area":1.16721615949e-08,
+ "Shape_Le_3":0.000528622130918,
+ "Shape_Ar_2":1.16721615949e-08,
+ "building_height":17.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":76,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56190222203176,
+ 45.528541799814505
+ ],
+ [
+ -73.56200288854431,
+ 45.528588930584974
+ ],
+ [
+ -73.5621041108379,
+ 45.52848167743776
+ ],
+ [
+ -73.56209477047912,
+ 45.528477148451934
+ ],
+ [
+ -73.56211137016544,
+ 45.528460349116116
+ ],
+ [
+ -73.56211366973191,
+ 45.52845764845201
+ ],
+ [
+ -73.56204426994894,
+ 45.52842724866888
+ ],
+ [
+ -73.5620439704747,
+ 45.52842714884414
+ ],
+ [
+ -73.5620274697138,
+ 45.528444548927084
+ ],
+ [
+ -73.56200430227857,
+ 45.5284336374527
+ ],
+ [
+ -73.56190222203176,
+ 45.528541799814505
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":76,
+ "ID_UEV":"01034693",
+ "CIVIQUE_DE":" 2286",
+ "CIVIQUE_FI":" 2296",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-5577-3-000-0000",
+ "SUPERFICIE":216,
+ "SUPERFIC_1":372,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000570571306149,
+ "OBJECTID":82864,
+ "Join_Count":1,
+ "TARGET_FID":82864,
+ "feature_id":"a33a95b4-7393-4b8b-be81-13122e912340",
+ "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.93,
+ "heightmax":40.79,
+ "elevmin":29.13,
+ "elevmax":38.3,
+ "bldgarea":2129.79,
+ "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_2":82864,
+ "Shape_Le_1":0.000570571306149,
+ "Shape_Ar_1":1.74720378933e-08,
+ "OBJECTID_3":82864,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82863,
+ "g_objectid":"942848",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884687",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391637280000000",
+ "g_sup_tota":"213.2",
+ "g_geometry":"0.000695427",
+ "g_geomet_1":"2.47932e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000570571306149,
+ "Shape_Area":1.74720378933e-08,
+ "Shape_Le_3":0.00057057011122,
+ "Shape_Ar_2":1.74720378933e-08,
+ "building_height":19.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":77,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5542557075567,
+ 45.517670711284595
+ ],
+ [
+ -73.5542712658281,
+ 45.51767614678704
+ ],
+ [
+ -73.55433946591546,
+ 45.517700146994486
+ ],
+ [
+ -73.55432756608614,
+ 45.51771684650556
+ ],
+ [
+ -73.55432776573565,
+ 45.51771684650556
+ ],
+ [
+ -73.55448706624695,
+ 45.51780124698026
+ ],
+ [
+ -73.55448746644527,
+ 45.517801446629754
+ ],
+ [
+ -73.55450346628379,
+ 45.51777964706336
+ ],
+ [
+ -73.55453516648659,
+ 45.51779114669436
+ ],
+ [
+ -73.554525466399,
+ 45.517804247118605
+ ],
+ [
+ -73.55452576587324,
+ 45.51780434694335
+ ],
+ [
+ -73.55452867518007,
+ 45.51780572200676
+ ],
+ [
+ -73.55463500112624,
+ 45.517691375906566
+ ],
+ [
+ -73.55435576612754,
+ 45.5175638466445
+ ],
+ [
+ -73.55433736599849,
+ 45.51758374684274
+ ],
+ [
+ -73.55433680302289,
+ 45.517583490535955
+ ],
+ [
+ -73.5542557075567,
+ 45.517670711284595
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":77,
+ "ID_UEV":"01040349",
+ "CIVIQUE_DE":" 1185",
+ "CIVIQUE_FI":" 1197",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":40,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-59-4877-7-000-0000",
+ "SUPERFICIE":632,
+ "SUPERFIC_1":1076,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000980746270496,
+ "OBJECTID":82866,
+ "Join_Count":1,
+ "TARGET_FID":82866,
+ "feature_id":"4d55fe75-78bb-4bda-b363-2617ccefec9e",
+ "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,
+ "heightmax":33.5,
+ "elevmin":19.7,
+ "elevmax":21.64,
+ "bldgarea":1454.25,
+ "comment":" ",
+ "OBJECTID_2":82866,
+ "Shape_Le_1":0.000980746270496,
+ "Shape_Ar_1":4.53470974407e-08,
+ "OBJECTID_3":82866,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82865,
+ "g_objectid":"941846",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566659",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"40",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004159487770000000",
+ "g_sup_tota":"631.5",
+ "g_geometry":"0.00111465",
+ "g_geomet_1":"7.28965e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000980746270496,
+ "Shape_Area":4.53470974407e-08,
+ "Shape_Le_3":0.000980745847426,
+ "Shape_Ar_2":4.53470974407e-08,
+ "building_height":16.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":78,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55829956039824,
+ 45.526234394851734
+ ],
+ [
+ -73.55830386815084,
+ 45.52623654782872
+ ],
+ [
+ -73.55828948079674,
+ 45.52625079398925
+ ],
+ [
+ -73.55842569301316,
+ 45.52631521872266
+ ],
+ [
+ -73.55850776784106,
+ 45.52622564804552
+ ],
+ [
+ -73.55840256784607,
+ 45.52617804782894
+ ],
+ [
+ -73.55840246802133,
+ 45.52617804782894
+ ],
+ [
+ -73.55837896783694,
+ 45.52620004794415
+ ],
+ [
+ -73.55834926772637,
+ 45.52618434757987
+ ],
+ [
+ -73.55840586835798,
+ 45.52613144765848
+ ],
+ [
+ -73.55840044904333,
+ 45.52612858781437
+ ],
+ [
+ -73.55829956039824,
+ 45.526234394851734
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55861701928185,
+ 45.52614777574955
+ ],
+ [
+ -73.55855636810375,
+ 45.526119647653914
+ ],
+ [
+ -73.558556268279,
+ 45.526119647653914
+ ],
+ [
+ -73.55850326853286,
+ 45.52617634811027
+ ],
+ [
+ -73.55856333425231,
+ 45.52620407780624
+ ],
+ [
+ -73.55861701928185,
+ 45.52614777574955
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":78,
+ "ID_UEV":"01034289",
+ "CIVIQUE_DE":" 1960",
+ "CIVIQUE_FI":" 1970",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-3320-0-000-0000",
+ "SUPERFICIE":371,
+ "SUPERFIC_1":351,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000996902552456,
+ "OBJECTID":82869,
+ "Join_Count":2,
+ "TARGET_FID":82869,
+ "feature_id":"65090e90-b10d-4179-abff-e66f48ed7326",
+ "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.5,
+ "heightmax":37.02,
+ "elevmin":23.45,
+ "elevmax":25.31,
+ "bldgarea":1077.77,
+ "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_2":82869,
+ "Shape_Le_1":0.000996902552456,
+ "Shape_Ar_1":2.16766174827e-08,
+ "OBJECTID_3":82869,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82868,
+ "g_objectid":"942108",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567356",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229332000000000",
+ "g_sup_tota":"371.1",
+ "g_geometry":"0.000861772",
+ "g_geomet_1":"4.27827e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000996902552456,
+ "Shape_Area":2.16766174827e-08,
+ "Shape_Le_3":0.000996903065084,
+ "Shape_Ar_2":2.16766174827e-08,
+ "building_height":17.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":79,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55671098534555,
+ 45.515434128832275
+ ],
+ [
+ -73.55678924524932,
+ 45.51546881928088
+ ],
+ [
+ -73.55680504903563,
+ 45.51545152172065
+ ],
+ [
+ -73.5569411650246,
+ 45.515302549023716
+ ],
+ [
+ -73.55686348878083,
+ 45.51526903668699
+ ],
+ [
+ -73.55673933737236,
+ 45.51540343676949
+ ],
+ [
+ -73.55671098534555,
+ 45.515434128832275
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":79,
+ "ID_UEV":"01003654",
+ "CIVIQUE_DE":" 1211",
+ "CIVIQUE_FI":" 1215",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-37-5918-4-000-0000",
+ "SUPERFICIE":169,
+ "SUPERFIC_1":371,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000620174269278,
+ "OBJECTID":82871,
+ "Join_Count":1,
+ "TARGET_FID":82871,
+ "feature_id":"a7012c4c-509f-4c89-856d-cbbe5d83dc80",
+ "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":50.19,
+ "elevmin":21.72,
+ "elevmax":24.6,
+ "bldgarea":4043.34,
+ "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_2":82871,
+ "Shape_Le_1":0.000620174269278,
+ "Shape_Ar_1":1.81083652296e-08,
+ "OBJECTID_3":82871,
+ "Join_Cou_1":6,
+ "TARGET_F_1":82870,
+ "g_objectid":"943464",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162259",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004137723770000000",
+ "g_sup_tota":"175.9",
+ "g_geometry":"0.000670424",
+ "g_geomet_1":"2.08701e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000620174269278,
+ "Shape_Area":1.81083652296e-08,
+ "Shape_Le_3":0.000620174482157,
+ "Shape_Ar_2":1.81083652296e-08,
+ "building_height":24.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":80,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5555863984154,
+ 45.502326793297165
+ ],
+ [
+ -73.55582292281149,
+ 45.50240791484369
+ ],
+ [
+ -73.55583653854725,
+ 45.5023892566092
+ ],
+ [
+ -73.55586461987815,
+ 45.50235308317854
+ ],
+ [
+ -73.5557848841869,
+ 45.502326206039875
+ ],
+ [
+ -73.55578615672759,
+ 45.502324339946625
+ ],
+ [
+ -73.55573002104548,
+ 45.502305773442984
+ ],
+ [
+ -73.55573238446382,
+ 45.50230224360396
+ ],
+ [
+ -73.55562376434709,
+ 45.50226601351601
+ ],
+ [
+ -73.5555879650344,
+ 45.502324243719166
+ ],
+ [
+ -73.5555863984154,
+ 45.502326793297165
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":80,
+ "ID_UEV":"01000265",
+ "CIVIQUE_DE":" 231",
+ "CIVIQUE_FI":" 231",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1862,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-42-4469-1-000-0000",
+ "SUPERFICIE":147,
+ "SUPERFIC_1":615,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000654568345132,
+ "OBJECTID":82880,
+ "Join_Count":1,
+ "TARGET_FID":82880,
+ "feature_id":"b6ccdff4-b60e-41c1-a01d-54b2ef58ff7d",
+ "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.95,
+ "heightmax":20.39,
+ "elevmin":13.73,
+ "elevmax":16.41,
+ "bldgarea":1790.73,
+ "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_2":82880,
+ "Shape_Le_1":0.000654568345132,
+ "Shape_Ar_1":1.71653588317e-08,
+ "OBJECTID_3":82880,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82879,
+ "g_objectid":"938028",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180993",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004042406080000000",
+ "g_sup_tota":"303",
+ "g_geometry":"0.000814818",
+ "g_geomet_1":"3.48878e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000654568345132,
+ "Shape_Area":1.71653588317e-08,
+ "Shape_Le_3":0.000654567683402,
+ "Shape_Ar_2":1.71653588317e-08,
+ "building_height":9.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":81,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55554977352507,
+ 45.50238634550374
+ ],
+ [
+ -73.55554654405961,
+ 45.50239159484652
+ ],
+ [
+ -73.55551455067781,
+ 45.50244826202797
+ ],
+ [
+ -73.55573296812382,
+ 45.50253119211112
+ ],
+ [
+ -73.55578072122515,
+ 45.502465751143795
+ ],
+ [
+ -73.55554977352507,
+ 45.50238634550374
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":81,
+ "ID_UEV":"01000267",
+ "CIVIQUE_DE":" 221",
+ "CIVIQUE_FI":" 221",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-42-5083-9-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":562,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00063009704013,
+ "OBJECTID":82881,
+ "Join_Count":1,
+ "TARGET_FID":82881,
+ "feature_id":"b6ccdff4-b60e-41c1-a01d-54b2ef58ff7d",
+ "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.95,
+ "heightmax":20.39,
+ "elevmin":13.73,
+ "elevmax":16.41,
+ "bldgarea":1790.73,
+ "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_2":82881,
+ "Shape_Le_1":0.00063009704013,
+ "Shape_Ar_1":1.76824044719e-08,
+ "OBJECTID_3":82881,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82880,
+ "g_objectid":"939561",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180997",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004042508390000000",
+ "g_sup_tota":"153.6",
+ "g_geometry":"0.000630285",
+ "g_geomet_1":"1.76831e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00063009704013,
+ "Shape_Area":1.76824044719e-08,
+ "Shape_Le_3":0.000630098325984,
+ "Shape_Ar_2":1.76824044719e-08,
+ "building_height":9.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":82,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55547805439055,
+ 45.502548468087625
+ ],
+ [
+ -73.55552639744712,
+ 45.50256961474622
+ ],
+ [
+ -73.5555295657587,
+ 45.50256516400141
+ ],
+ [
+ -73.55562680045831,
+ 45.50260530074433
+ ],
+ [
+ -73.55567825426986,
+ 45.50255863582268
+ ],
+ [
+ -73.55555808236146,
+ 45.502505441822976
+ ],
+ [
+ -73.55552710521359,
+ 45.502493542892985
+ ],
+ [
+ -73.55547805439055,
+ 45.502548468087625
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":82,
+ "ID_UEV":"01000269",
+ "CIVIQUE_DE":" 215",
+ "CIVIQUE_FI":" 215",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-42-5693-5-000-0000",
+ "SUPERFICIE":111,
+ "SUPERFIC_1":418,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000471127281582,
+ "OBJECTID":82882,
+ "Join_Count":1,
+ "TARGET_FID":82882,
+ "feature_id":"d042b9f1-73bb-41b9-ab0f-67691e54d022",
+ "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":22.69,
+ "elevmin":13.51,
+ "elevmax":15.77,
+ "bldgarea":891.79,
+ "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_2":82882,
+ "Shape_Le_1":0.000471127281582,
+ "Shape_Ar_1":1.07080940059e-08,
+ "OBJECTID_3":82882,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82881,
+ "g_objectid":"938029",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180998",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004043540450000000",
+ "g_sup_tota":"268",
+ "g_geometry":"0.00095444",
+ "g_geomet_1":"3.0859e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000471127281582,
+ "Shape_Area":1.07080940059e-08,
+ "Shape_Le_3":0.00047112700206,
+ "Shape_Ar_2":1.07080940059e-08,
+ "building_height":10.84
+ }
+ },
+ {
+ "type":"Feature",
+ "id":83,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55414910102203,
+ 45.51778894065738
+ ],
+ [
+ -73.5541465658332,
+ 45.517787747257024
+ ],
+ [
+ -73.55409996656205,
+ 45.51783654716921
+ ],
+ [
+ -73.55397506601832,
+ 45.51777754714638
+ ],
+ [
+ -73.55391586274871,
+ 45.51783950144213
+ ],
+ [
+ -73.55404771145456,
+ 45.517900082473126
+ ],
+ [
+ -73.55414910102203,
+ 45.51778894065738
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":83,
+ "ID_UEV":"01040356",
+ "CIVIQUE_DE":" 1178",
+ "CIVIQUE_FI":" 1186",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-59-7685-1-000-0000",
+ "SUPERFICIE":284,
+ "SUPERFIC_1":407,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00058964655073,
+ "OBJECTID":82883,
+ "Join_Count":1,
+ "TARGET_FID":82883,
+ "feature_id":"c514cac7-0b5c-43ea-ad0c-7056044f1d5e",
+ "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,
+ "heightmax":37.29,
+ "elevmin":19.13,
+ "elevmax":21.12,
+ "bldgarea":684.24,
+ "comment":" ",
+ "OBJECTID_2":82883,
+ "Shape_Le_1":0.00058964655073,
+ "Shape_Ar_1":1.17937247022e-08,
+ "OBJECTID_3":82883,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82882,
+ "g_objectid":"941848",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566673",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004159768510000000",
+ "g_sup_tota":"284.4",
+ "g_geometry":"0.000747979",
+ "g_geomet_1":"3.24529e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00058964655073,
+ "Shape_Area":1.17937247022e-08,
+ "Shape_Le_3":0.000589646304518,
+ "Shape_Ar_2":1.17937247022e-08,
+ "building_height":18.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":84,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56163521421561,
+ 45.52813214513269
+ ],
+ [
+ -73.56164806912494,
+ 45.528139748900585
+ ],
+ [
+ -73.56164946936936,
+ 45.528138549204975
+ ],
+ [
+ -73.56168596925393,
+ 45.52810064907599
+ ],
+ [
+ -73.5618115694702,
+ 45.52816064914494
+ ],
+ [
+ -73.56184226872756,
+ 45.52817524873903
+ ],
+ [
+ -73.5618488418724,
+ 45.528178721920774
+ ],
+ [
+ -73.56193007493485,
+ 45.5280926460091
+ ],
+ [
+ -73.56181706882451,
+ 45.528036048974776
+ ],
+ [
+ -73.56175519906503,
+ 45.528005078122156
+ ],
+ [
+ -73.56163521421561,
+ 45.52813214513269
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":84,
+ "ID_UEV":"01034523",
+ "CIVIQUE_DE":" 2249",
+ "CIVIQUE_FI":" 2265",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-7435-2-000-0000",
+ "SUPERFICIE":388,
+ "SUPERFIC_1":488,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00073871619817,
+ "OBJECTID":82884,
+ "Join_Count":1,
+ "TARGET_FID":82884,
+ "feature_id":"627c93de-3511-4cbc-a377-97d2326e5737",
+ "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.93,
+ "heightmax":40.68,
+ "elevmin":27.05,
+ "elevmax":39.63,
+ "bldgarea":2860.19,
+ "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_2":82884,
+ "Shape_Le_1":0.00073871619817,
+ "Shape_Ar_1":2.32823953953e-08,
+ "OBJECTID_3":82884,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82883,
+ "g_objectid":"942989",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885490",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391743520000000",
+ "g_sup_tota":"388.3",
+ "g_geometry":"0.000875334",
+ "g_geomet_1":"4.50182e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00073871619817,
+ "Shape_Area":2.32823953953e-08,
+ "Shape_Le_3":0.000738715311083,
+ "Shape_Ar_2":2.32823953953e-08,
+ "building_height":19.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":85,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5733955245057,
+ 45.50174519093811
+ ],
+ [
+ -73.57347701117698,
+ 45.50178514691729
+ ],
+ [
+ -73.5735713131874,
+ 45.501831422432495
+ ],
+ [
+ -73.57367472982676,
+ 45.501726183766664
+ ],
+ [
+ -73.57375347176715,
+ 45.50164014382787
+ ],
+ [
+ -73.57379795943012,
+ 45.50159151748484
+ ],
+ [
+ -73.57370980968182,
+ 45.501548260094424
+ ],
+ [
+ -73.57367856453597,
+ 45.50153293924404
+ ],
+ [
+ -73.57363027094209,
+ 45.50151094362544
+ ],
+ [
+ -73.57362577073458,
+ 45.50150874388372
+ ],
+ [
+ -73.57339587074469,
+ 45.5017448437998
+ ],
+ [
+ -73.5733955245057,
+ 45.50174519093811
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":85,
+ "ID_UEV":"01037671",
+ "CIVIQUE_DE":" 980",
+ "CIVIQUE_FI":" 980",
+ "NOM_RUE":"boulevard De Maisonneuve Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":15,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2010,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"H\u00c3\u00b4tel (incluant les h\u00c3\u00b4tels-motels)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-01-4997-9-000-0000",
+ "SUPERFICIE":561,
+ "SUPERFIC_1":1684,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00104698427927,
+ "OBJECTID":82888,
+ "Join_Count":1,
+ "TARGET_FID":82888,
+ "feature_id":"90456363-ff16-4bcf-bb40-0a3438a5d4ee",
+ "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.55,
+ "heightmax":51.95,
+ "elevmin":39.09,
+ "elevmax":40.21,
+ "bldgarea":542.51,
+ "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_2":82888,
+ "Shape_Le_1":0.00104698427927,
+ "Shape_Ar_1":6.13203153533e-08,
+ "OBJECTID_3":82888,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82887,
+ "g_objectid":"1839542",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Restauration et h\u00c3\u00a9bergement",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"5831",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994001499790000000",
+ "g_sup_tota":"560.8",
+ "g_geometry":"0.00107392",
+ "g_geomet_1":"6.45578e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00104698427927,
+ "Shape_Area":6.13203153533e-08,
+ "Shape_Le_3":0.0010469838281,
+ "Shape_Ar_2":6.13203153533e-08,
+ "building_height":25.700000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":86,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57823257579459,
+ 45.498848055543625
+ ],
+ [
+ -73.57829976144667,
+ 45.49888036998338
+ ],
+ [
+ -73.57850444534571,
+ 45.49867358077143
+ ],
+ [
+ -73.57849477313711,
+ 45.49866894296764
+ ],
+ [
+ -73.57842928180776,
+ 45.49863751525942
+ ],
+ [
+ -73.57831954113576,
+ 45.49874838458058
+ ],
+ [
+ -73.57832153583206,
+ 45.49874936124432
+ ],
+ [
+ -73.57823257579459,
+ 45.498848055543625
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":86,
+ "ID_UEV":"01036571",
+ "CIVIQUE_DE":" 2165",
+ "CIVIQUE_FI":" 2165",
+ "NOM_RUE":"rue Crescent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-68-7472-3-000-0000",
+ "SUPERFICIE":211,
+ "SUPERFIC_1":595,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000739968413466,
+ "OBJECTID":82893,
+ "Join_Count":1,
+ "TARGET_FID":82893,
+ "feature_id":"9e80653d-ddf8-495c-b978-2811cb72d3fd",
+ "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.95,
+ "heightmax":69.3,
+ "elevmin":44.62,
+ "elevmax":49.13,
+ "bldgarea":3052.19,
+ "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_2":82893,
+ "Shape_Le_1":0.000739968413466,
+ "Shape_Ar_1":2.22194046708e-08,
+ "OBJECTID_3":82893,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82892,
+ "g_objectid":"938363",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"3336841",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983968806880000000",
+ "g_sup_tota":"222.8",
+ "g_geometry":"0.000813252",
+ "g_geomet_1":"2.60794e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000739968413466,
+ "Shape_Area":2.22194046708e-08,
+ "Shape_Le_3":0.000739968355588,
+ "Shape_Ar_2":2.22194046708e-08,
+ "building_height":33.675
+ }
+ },
+ {
+ "type":"Feature",
+ "id":87,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58005873824202,
+ 45.49949820962497
+ ],
+ [
+ -73.58015305913821,
+ 45.49954344012796
+ ],
+ [
+ -73.58017317427442,
+ 45.49952294277988
+ ],
+ [
+ -73.58017347374866,
+ 45.49952254258157
+ ],
+ [
+ -73.58015817448201,
+ 45.499515642982836
+ ],
+ [
+ -73.58023047367926,
+ 45.49943614291396
+ ],
+ [
+ -73.58025632109418,
+ 45.49944783140259
+ ],
+ [
+ -73.58028499327966,
+ 45.499418984748644
+ ],
+ [
+ -73.58033553607797,
+ 45.49936813348287
+ ],
+ [
+ -73.58035837436134,
+ 45.49934264309879
+ ],
+ [
+ -73.58025768356708,
+ 45.499298052013785
+ ],
+ [
+ -73.58005873824202,
+ 45.49949820962497
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":87,
+ "ID_UEV":"01036561",
+ "CIVIQUE_DE":" 3419",
+ "CIVIQUE_FI":" 3419",
+ "NOM_RUE":"avenue du Mus\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-59-2944-5-000-0000",
+ "SUPERFICIE":308,
+ "SUPERFIC_1":561,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00082536067106,
+ "OBJECTID":82896,
+ "Join_Count":1,
+ "TARGET_FID":82896,
+ "feature_id":"010979ee-0205-4775-a953-8383a0002017",
+ "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.05,
+ "heightmax":74.41,
+ "elevmin":53.4,
+ "elevmax":59.38,
+ "bldgarea":1091.49,
+ "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_2":82896,
+ "Shape_Le_1":0.00082536067106,
+ "Shape_Ar_1":2.68681436295e-08,
+ "OBJECTID_3":82896,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82895,
+ "g_objectid":"939925",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340957",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983959294450000000",
+ "g_sup_tota":"308.2",
+ "g_geometry":"0.000899739",
+ "g_geomet_1":"3.54784e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00082536067106,
+ "Shape_Area":2.68681436295e-08,
+ "Shape_Le_3":0.000825359288663,
+ "Shape_Ar_2":2.68681436295e-08,
+ "building_height":36.18
+ }
+ },
+ {
+ "type":"Feature",
+ "id":88,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5800278330399,
+ 45.49948338969697
+ ],
+ [
+ -73.58005873824202,
+ 45.49949820962497
+ ],
+ [
+ -73.58025768356708,
+ 45.499298052013785
+ ],
+ [
+ -73.58017838584567,
+ 45.499262933487884
+ ],
+ [
+ -73.58014991600766,
+ 45.499291577794374
+ ],
+ [
+ -73.57999927326969,
+ 45.499459742923094
+ ],
+ [
+ -73.58000437332501,
+ 45.499461942664816
+ ],
+ [
+ -73.5800346732834,
+ 45.49947634260942
+ ],
+ [
+ -73.5800278330399,
+ 45.49948338969697
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":88,
+ "ID_UEV":"01036563",
+ "CIVIQUE_DE":" 3415",
+ "CIVIQUE_FI":" 3415",
+ "NOM_RUE":"avenue du Mus\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1894,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-59-3639-0-000-0000",
+ "SUPERFICIE":239,
+ "SUPERFIC_1":540,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000718289843317,
+ "OBJECTID":82897,
+ "Join_Count":1,
+ "TARGET_FID":82897,
+ "feature_id":"010979ee-0205-4775-a953-8383a0002017",
+ "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.05,
+ "heightmax":74.41,
+ "elevmin":53.4,
+ "elevmax":59.38,
+ "bldgarea":1091.49,
+ "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_2":82897,
+ "Shape_Le_1":0.000718289843317,
+ "Shape_Ar_1":2.09310346894e-08,
+ "OBJECTID_3":82897,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82896,
+ "g_objectid":"939925",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340957",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983959294450000000",
+ "g_sup_tota":"308.2",
+ "g_geometry":"0.000899739",
+ "g_geomet_1":"3.54784e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000718289843317,
+ "Shape_Area":2.09310346894e-08,
+ "Shape_Le_3":0.000718290964138,
+ "Shape_Ar_2":2.09310346894e-08,
+ "building_height":36.18
+ }
+ },
+ {
+ "type":"Feature",
+ "id":89,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55871168102111,
+ 45.517498929981926
+ ],
+ [
+ -73.55879850606804,
+ 45.51753876545196
+ ],
+ [
+ -73.55886318081299,
+ 45.51747005814696
+ ],
+ [
+ -73.55883349509158,
+ 45.51745727698204
+ ],
+ [
+ -73.55885287098505,
+ 45.51743591268752
+ ],
+ [
+ -73.5587781445176,
+ 45.517402402149436
+ ],
+ [
+ -73.55877376841653,
+ 45.5174072467973
+ ],
+ [
+ -73.55880826820885,
+ 45.51742264678801
+ ],
+ [
+ -73.55879676767853,
+ 45.517435247189205
+ ],
+ [
+ -73.55877845208575,
+ 45.51742702109045
+ ],
+ [
+ -73.55871168102111,
+ 45.517498929981926
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":89,
+ "ID_UEV":"01040677",
+ "CIVIQUE_DE":" 1480",
+ "CIVIQUE_FI":" 1482",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-29-0751-1-000-0000",
+ "SUPERFICIE":103,
+ "SUPERFIC_1":214,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000512521798569,
+ "OBJECTID":82900,
+ "Join_Count":1,
+ "TARGET_FID":82900,
+ "feature_id":"c42ee2e8-8c36-4bfa-af83-3c636f09436b",
+ "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":66.24,
+ "elevmin":23.23,
+ "elevmax":27.73,
+ "bldgarea":6512.52,
+ "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_2":82900,
+ "Shape_Le_1":0.000512521798569,
+ "Shape_Ar_1":1.0039514042e-08,
+ "OBJECTID_3":82900,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82899,
+ "g_objectid":"943432",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162068",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004129124870000000",
+ "g_sup_tota":"75.8",
+ "g_geometry":"0.000401731",
+ "g_geomet_1":"8.72585e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000512521798569,
+ "Shape_Area":1.0039514042e-08,
+ "Shape_Le_3":0.000512520120921,
+ "Shape_Ar_2":1.0039514042e-08,
+ "building_height":32.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":90,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5542911687243,
+ 45.50028761113464
+ ],
+ [
+ -73.55447136498336,
+ 45.500079043963005
+ ],
+ [
+ -73.55486516551682,
+ 45.500247343990026
+ ],
+ [
+ -73.55469536542063,
+ 45.50044384405845
+ ],
+ [
+ -73.55486256467746,
+ 45.500515243933656
+ ],
+ [
+ -73.55486766473278,
+ 45.50051744367538
+ ],
+ [
+ -73.55487286551218,
+ 45.50051024370308
+ ],
+ [
+ -73.55502216556233,
+ 45.50056244395192
+ ],
+ [
+ -73.55500396418344,
+ 45.50058820413261
+ ],
+ [
+ -73.55535366825903,
+ 45.50071868946624
+ ],
+ [
+ -73.5554582189435,
+ 45.50060111210194
+ ],
+ [
+ -73.55534976520134,
+ 45.500561543730555
+ ],
+ [
+ -73.55534686488775,
+ 45.500565543915016
+ ],
+ [
+ -73.55531986544128,
+ 45.50060434426537
+ ],
+ [
+ -73.55506506502257,
+ 45.50051654345401
+ ],
+ [
+ -73.55506496519783,
+ 45.50051654345401
+ ],
+ [
+ -73.55503356536859,
+ 45.50054894422869
+ ],
+ [
+ -73.55488426531844,
+ 45.50047714415518
+ ],
+ [
+ -73.5549034649448,
+ 45.50045734378168
+ ],
+ [
+ -73.55486766473278,
+ 45.50044004352348
+ ],
+ [
+ -73.55498376541028,
+ 45.50032154345476
+ ],
+ [
+ -73.55532856548275,
+ 45.50048864378618
+ ],
+ [
+ -73.55533066539974,
+ 45.5004865438692
+ ],
+ [
+ -73.55542936509497,
+ 45.500386643579034
+ ],
+ [
+ -73.55518786475,
+ 45.50026784403607
+ ],
+ [
+ -73.55517116523893,
+ 45.50028464427121
+ ],
+ [
+ -73.55467116556369,
+ 45.50003874354348
+ ],
+ [
+ -73.55460126485833,
+ 45.50008364399527
+ ],
+ [
+ -73.55460116503359,
+ 45.50008364399527
+ ],
+ [
+ -73.55463616484897,
+ 45.500019043894056
+ ],
+ [
+ -73.5545247361495,
+ 45.499979428757925
+ ],
+ [
+ -73.5542911687243,
+ 45.50028761113464
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55429748646168,
+ 45.50032459305582
+ ],
+ [
+ -73.55442061803893,
+ 45.50037053762051
+ ],
+ [
+ -73.5544677649972,
+ 45.50032374409581
+ ],
+ [
+ -73.5543549648316,
+ 45.5002675436625
+ ],
+ [
+ -73.55429748646168,
+ 45.50032459305582
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":90,
+ "ID_UEV":"01036478",
+ "CIVIQUE_DE":" 138",
+ "CIVIQUE_FI":" 146",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1874,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Couvent",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-50-0348-4-000-0000",
+ "SUPERFICIE":4284,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00520445542686,
+ "OBJECTID":82904,
+ "Join_Count":2,
+ "TARGET_FID":82904,
+ "feature_id":"086c2eb8-4069-4267-906c-d9e51135f357",
+ "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":22.09,
+ "elevmin":13.25,
+ "elevmax":14.1,
+ "bldgarea":3804.42,
+ "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_2":82904,
+ "Shape_Le_1":0.00520445542686,
+ "Shape_Ar_1":2.06189076637e-07,
+ "OBJECTID_3":82904,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82903,
+ "g_objectid":"945782",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"5686712",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004040235660000000",
+ "g_sup_tota":"11565",
+ "g_geometry":"0.0104518",
+ "g_geomet_1":"1.33165e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00520445542686,
+ "Shape_Area":2.06189076637e-07,
+ "Shape_Le_3":0.00520445795054,
+ "Shape_Ar_2":2.06189076637e-07,
+ "building_height":10.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":91,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55748764346183,
+ 45.51600936489057
+ ],
+ [
+ -73.557644988847,
+ 45.51608073958476
+ ],
+ [
+ -73.557689208512,
+ 45.51603246127936
+ ],
+ [
+ -73.55769896705553,
+ 45.5160211469087
+ ],
+ [
+ -73.55769940142808,
+ 45.51602133126972
+ ],
+ [
+ -73.55781460278354,
+ 45.515895550289706
+ ],
+ [
+ -73.55778495663229,
+ 45.51588199930512
+ ],
+ [
+ -73.55777636720742,
+ 45.51589094666016
+ ],
+ [
+ -73.55765634368716,
+ 45.51583352494751
+ ],
+ [
+ -73.55762001197581,
+ 45.515870802745646
+ ],
+ [
+ -73.55762455085419,
+ 45.51587282711957
+ ],
+ [
+ -73.55761879339444,
+ 45.51587920960813
+ ],
+ [
+ -73.55761425271743,
+ 45.51587718523421
+ ],
+ [
+ -73.55761109969434,
+ 45.515880680899
+ ],
+ [
+ -73.55761218067944,
+ 45.515881162935614
+ ],
+ [
+ -73.5575695384253,
+ 45.51592842680575
+ ],
+ [
+ -73.55756402468184,
+ 45.5159259689586
+ ],
+ [
+ -73.55748764346183,
+ 45.51600936489057
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":91,
+ "ID_UEV":"01003674",
+ "CIVIQUE_DE":" 1276",
+ "CIVIQUE_FI":" 1282",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-27-9684-9-000-0000",
+ "SUPERFICIE":381,
+ "SUPERFIC_1":1038,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000861537600296,
+ "OBJECTID":82905,
+ "Join_Count":1,
+ "TARGET_FID":82905,
+ "feature_id":"d469b45b-ef06-4b3e-9916-c66ce8797863",
+ "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":42.06,
+ "elevmin":21.32,
+ "elevmax":23.94,
+ "bldgarea":2619.31,
+ "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_2":82905,
+ "Shape_Le_1":0.000861537600296,
+ "Shape_Ar_1":3.91220972371e-08,
+ "OBJECTID_3":82905,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82904,
+ "g_objectid":"945655",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"2162102",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004137065570000000",
+ "g_sup_tota":"2204",
+ "g_geometry":"0.00339098",
+ "g_geomet_1":"2.54458e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000861537600296,
+ "Shape_Area":3.91220972371e-08,
+ "Shape_Le_3":0.000861535471938,
+ "Shape_Ar_2":3.91220972371e-08,
+ "building_height":20.775000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":92,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55933217815934,
+ 45.52153885458477
+ ],
+ [
+ -73.5595120443672,
+ 45.521622419589285
+ ],
+ [
+ -73.55960682301831,
+ 45.521530018745665
+ ],
+ [
+ -73.55954905506668,
+ 45.52150318027784
+ ],
+ [
+ -73.55954356830289,
+ 45.52150884780538
+ ],
+ [
+ -73.5594352683448,
+ 45.52145714757959
+ ],
+ [
+ -73.55933217815934,
+ 45.52153885458477
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":92,
+ "ID_UEV":"01035516",
+ "CIVIQUE_DE":" 1312",
+ "CIVIQUE_FI":" 1320",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-14-5503-1-000-0000",
+ "SUPERFICIE":308,
+ "SUPERFIC_1":536,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000653834789385,
+ "OBJECTID":82907,
+ "Join_Count":1,
+ "TARGET_FID":82907,
+ "feature_id":"6321dad7-56e1-4b77-bfac-f0933b8f799b",
+ "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.51,
+ "heightmax":12.65,
+ "elevmin":25.18,
+ "elevmax":26.57,
+ "bldgarea":1019.36,
+ "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_2":82907,
+ "Shape_Le_1":0.000653834789385,
+ "Shape_Ar_1":2.27833757914e-08,
+ "OBJECTID_3":82907,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82906,
+ "g_objectid":"941965",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566987",
+ "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":"66023004213439550000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000551449",
+ "g_geomet_1":"1.80333e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000653834789385,
+ "Shape_Area":2.27833757914e-08,
+ "Shape_Le_3":0.000653834057031,
+ "Shape_Ar_2":2.27833757914e-08,
+ "building_height":5.07
+ }
+ },
+ {
+ "type":"Feature",
+ "id":93,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55879850606804,
+ 45.51753876545196
+ ],
+ [
+ -73.558889288132,
+ 45.51758041305591
+ ],
+ [
+ -73.55895391071626,
+ 45.51750912199868
+ ],
+ [
+ -73.55886318081299,
+ 45.51747005814696
+ ],
+ [
+ -73.55879850606804,
+ 45.51753876545196
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":93,
+ "ID_UEV":"01040678",
+ "CIVIQUE_DE":" 950",
+ "CIVIQUE_FI":" 954",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-29-0057-3-000-0000",
+ "SUPERFICIE":76,
+ "SUPERFIC_1":229,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000389241806241,
+ "OBJECTID":82908,
+ "Join_Count":1,
+ "TARGET_FID":82908,
+ "feature_id":"c42ee2e8-8c36-4bfa-af83-3c636f09436b",
+ "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":66.24,
+ "elevmin":23.23,
+ "elevmax":27.73,
+ "bldgarea":6512.52,
+ "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_2":82908,
+ "Shape_Le_1":0.000389241806241,
+ "Shape_Ar_1":8.96181734179e-09,
+ "OBJECTID_3":82908,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82907,
+ "g_objectid":"943430",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162066",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004129005730000000",
+ "g_sup_tota":"75.7",
+ "g_geometry":"0.000389241",
+ "g_geomet_1":"8.96175e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000389241806241,
+ "Shape_Area":8.96181734179e-09,
+ "Shape_Le_3":0.000389241051054,
+ "Shape_Ar_2":8.96181734179e-09,
+ "building_height":32.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":94,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55549176275649,
+ 45.51795464703962
+ ],
+ [
+ -73.55551576746055,
+ 45.517965446998076
+ ],
+ [
+ -73.55559474232534,
+ 45.518000981910085
+ ],
+ [
+ -73.55569921746675,
+ 45.51788790924991
+ ],
+ [
+ -73.555696967363,
+ 45.51788694697532
+ ],
+ [
+ -73.55572396680947,
+ 45.517855746795576
+ ],
+ [
+ -73.55572386698472,
+ 45.517855746795576
+ ],
+ [
+ -73.55563966705883,
+ 45.517817547192344
+ ],
+ [
+ -73.55563956723408,
+ 45.51781744646828
+ ],
+ [
+ -73.55562176695283,
+ 45.51783674681871
+ ],
+ [
+ -73.5556062563455,
+ 45.51782965476505
+ ],
+ [
+ -73.55549176275649,
+ 45.51795464703962
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":94,
+ "ID_UEV":"01040253",
+ "CIVIQUE_DE":" 1300",
+ "CIVIQUE_FI":" 1310",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-49-5497-4-000-0000",
+ "SUPERFICIE":256,
+ "SUPERFIC_1":442,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0006160966536,
+ "OBJECTID":82909,
+ "Join_Count":1,
+ "TARGET_FID":82909,
+ "feature_id":"fdb27ff0-8fa1-428c-81b4-03299480618c",
+ "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,
+ "heightmax":36.12,
+ "elevmin":20.03,
+ "elevmax":22.32,
+ "bldgarea":1845.67,
+ "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_2":82909,
+ "Shape_Le_1":0.0006160966536,
+ "Shape_Ar_1":2.04907793851e-08,
+ "OBJECTID_3":82909,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82908,
+ "g_objectid":"941807",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566578",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004240450370000000",
+ "g_sup_tota":"303.7",
+ "g_geometry":"0.000812989",
+ "g_geomet_1":"3.48821e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0006160966536,
+ "Shape_Area":2.04907793851e-08,
+ "Shape_Le_3":0.000616097639212,
+ "Shape_Ar_2":2.04907793851e-08,
+ "building_height":18.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":95,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57525752673531,
+ 45.501714604095994
+ ],
+ [
+ -73.57517337177553,
+ 45.50167634423819
+ ],
+ [
+ -73.5751670720246,
+ 45.50167354374934
+ ],
+ [
+ -73.57494157241747,
+ 45.50192014414963
+ ],
+ [
+ -73.5749503722837,
+ 45.50192414343476
+ ],
+ [
+ -73.57502284774807,
+ 45.50195482560501
+ ],
+ [
+ -73.5750520118627,
+ 45.50192497350901
+ ],
+ [
+ -73.57516547213068,
+ 45.501801644080906
+ ],
+ [
+ -73.5751703311677,
+ 45.501803860010426
+ ],
+ [
+ -73.57525752673531,
+ 45.501714604095994
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":95,
+ "ID_UEV":"01037669",
+ "CIVIQUE_DE":" 2044",
+ "CIVIQUE_FI":" 2044",
+ "NOM_RUE":"rue Metcalfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-92-3213-3-000-0000",
+ "SUPERFICIE":302,
+ "SUPERFIC_1":550,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000861299974033,
+ "OBJECTID":82917,
+ "Join_Count":1,
+ "TARGET_FID":82917,
+ "feature_id":"d5e7bf65-11b3-4bd2-bd83-81e2623a8bbc",
+ "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.54,
+ "heightmax":55.92,
+ "elevmin":41.09,
+ "elevmax":43.49,
+ "bldgarea":259.22,
+ "comment":" ",
+ "OBJECTID_2":82917,
+ "Shape_Le_1":0.000861299974033,
+ "Shape_Ar_1":2.92017465802e-08,
+ "OBJECTID_3":82917,
+ "Join_Cou_1":2,
+ "TARGET_F_1":82916,
+ "g_objectid":"945012",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1339677",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"105",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984082963860000000",
+ "g_sup_tota":"2809.3",
+ "g_geometry":"0.00259109",
+ "g_geomet_1":"3.23481e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000861299974033,
+ "Shape_Area":2.92017465802e-08,
+ "Shape_Le_3":0.000861298585713,
+ "Shape_Ar_2":2.92017465802e-08,
+ "building_height":27.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":96,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56262334611237,
+ 45.51750398057454
+ ],
+ [
+ -73.56262511238087,
+ 45.517504782769805
+ ],
+ [
+ -73.5626925687289,
+ 45.51743454661733
+ ],
+ [
+ -73.56272416910696,
+ 45.517449546409736
+ ],
+ [
+ -73.56265715432606,
+ 45.51751933020322
+ ],
+ [
+ -73.562687860778,
+ 45.517533271493576
+ ],
+ [
+ -73.56284240207704,
+ 45.517365042513
+ ],
+ [
+ -73.56277800432329,
+ 45.517335623890226
+ ],
+ [
+ -73.56262334611237,
+ 45.51750398057454
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":96,
+ "ID_UEV":"01003367",
+ "CIVIQUE_DE":" 1711",
+ "CIVIQUE_FI":" 1713",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-9746-8-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":301,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000792625921397,
+ "OBJECTID":82921,
+ "Join_Count":1,
+ "TARGET_FID":82921,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":82921,
+ "Shape_Le_1":0.000792625921397,
+ "Shape_Ar_1":1.21647518748e-08,
+ "OBJECTID_3":82921,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82920,
+ "g_objectid":"943275",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161649",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189974680000000",
+ "g_sup_tota":"155.6",
+ "g_geometry":"0.00067356",
+ "g_geomet_1":"1.79041e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000792625921397,
+ "Shape_Area":1.21647518748e-08,
+ "Shape_Le_3":0.000792625503231,
+ "Shape_Ar_2":1.21647518748e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":97,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56253499041932,
+ 45.51740062778704
+ ],
+ [
+ -73.56259860036695,
+ 45.517430239764046
+ ],
+ [
+ -73.56271287811867,
+ 45.517305840142704
+ ],
+ [
+ -73.56265386910262,
+ 45.51727884699149
+ ],
+ [
+ -73.56264893272392,
+ 45.51727659329044
+ ],
+ [
+ -73.56253499041932,
+ 45.51740062778704
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":97,
+ "ID_UEV":"01003370",
+ "CIVIQUE_DE":" 1701",
+ "CIVIQUE_FI":" 1701",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1988,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Auberge ou g\u00c3\u00aete touristique (H\u00c3\u00b4tel \u00c3\u00a0 caract\u00c3\u00a8re familial, d'au plus 3 \u00c3\u00a9tages en hauteur de b\u00c3\u00a2timent)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-0840-7-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":370,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477830530062,
+ "OBJECTID":82922,
+ "Join_Count":1,
+ "TARGET_FID":82922,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":82922,
+ "Shape_Le_1":0.000477830530062,
+ "Shape_Ar_1":1.12806121471e-08,
+ "OBJECTID_3":82922,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82921,
+ "g_objectid":"943276",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161650",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994199024340000000",
+ "g_sup_tota":"155.6",
+ "g_geometry":"0.000675207",
+ "g_geomet_1":"1.81123e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477830530062,
+ "Shape_Area":1.12806121471e-08,
+ "Shape_Le_3":0.000477829482742,
+ "Shape_Ar_2":1.12806121471e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":98,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57273685024728,
+ 45.50036439165365
+ ],
+ [
+ -73.57305891905571,
+ 45.50052228742392
+ ],
+ [
+ -73.57328115951974,
+ 45.50029744342257
+ ],
+ [
+ -73.57295517146584,
+ 45.50013944243162
+ ],
+ [
+ -73.57295507074177,
+ 45.50013934260687
+ ],
+ [
+ -73.57288867109713,
+ 45.5002078430678
+ ],
+ [
+ -73.57283697087135,
+ 45.5002611431875
+ ],
+ [
+ -73.57273685024728,
+ 45.50036439165365
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":98,
+ "ID_UEV":"01039247",
+ "CIVIQUE_DE":" 1023",
+ "CIVIQUE_FI":" 1045",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1989,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-00-9547-9-000-0000",
+ "SUPERFICIE":967,
+ "SUPERFIC_1":6856,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00135071106861,
+ "OBJECTID":82923,
+ "Join_Count":1,
+ "TARGET_FID":82923,
+ "feature_id":"1a3d212c-89d1-4b27-b9af-59e4618c303d",
+ "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":32.05,
+ "elevmin":36.15,
+ "elevmax":37.93,
+ "bldgarea":2404.56,
+ "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_2":82923,
+ "Shape_Le_1":0.00135071106861,
+ "Shape_Ar_1":1.07686333153e-07,
+ "OBJECTID_3":82923,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82922,
+ "g_objectid":"945020",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340207",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"19",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994000954790000000",
+ "g_sup_tota":"966.6",
+ "g_geometry":"0.00137771",
+ "g_geomet_1":"1.1194e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00135071106861,
+ "Shape_Area":1.07686333153e-07,
+ "Shape_Le_3":0.00135071123843,
+ "Shape_Ar_2":1.07686333153e-07,
+ "building_height":15.764999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":99,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57709764486226,
+ 45.50270800691928
+ ],
+ [
+ -73.57710733595664,
+ 45.502712744547814
+ ],
+ [
+ -73.57712637280571,
+ 45.50269294417433
+ ],
+ [
+ -73.57715307277793,
+ 45.50270554367619
+ ],
+ [
+ -73.57718877316519,
+ 45.50266794392077
+ ],
+ [
+ -73.57723661080279,
+ 45.50269035772413
+ ],
+ [
+ -73.57744010939538,
+ 45.50247721120463
+ ],
+ [
+ -73.57735651741119,
+ 45.50243686042307
+ ],
+ [
+ -73.57709764486226,
+ 45.50270800691928
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":99,
+ "ID_UEV":"01037624",
+ "CIVIQUE_DE":" 3429",
+ "CIVIQUE_FI":" 3429",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres activit\u00c3\u00a9s religieuses",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-72-6198-5-000-0000",
+ "SUPERFICIE":314,
+ "SUPERFIC_1":309,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000934848146723,
+ "OBJECTID":82924,
+ "Join_Count":1,
+ "TARGET_FID":82924,
+ "feature_id":"9286f9eb-d756-4a9c-859e-9fe6c4dbc2a0",
+ "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":70.16,
+ "elevmin":45.59,
+ "elevmax":51.45,
+ "bldgarea":2190.75,
+ "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_2":82924,
+ "Shape_Le_1":0.000934848146723,
+ "Shape_Ar_1":2.83473961211e-08,
+ "OBJECTID_3":82924,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82923,
+ "g_objectid":"939759",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1339448",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984072679330000000",
+ "g_sup_tota":"314",
+ "g_geometry":"0.00100401",
+ "g_geomet_1":"3.61544e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000934848146723,
+ "Shape_Area":2.83473961211e-08,
+ "Shape_Le_3":0.000934848077178,
+ "Shape_Ar_2":2.83473961211e-08,
+ "building_height":34.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":100,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55454816079083,
+ 45.53370989964245
+ ],
+ [
+ -73.55462165878437,
+ 45.53374107284253
+ ],
+ [
+ -73.5546963393864,
+ 45.53365400767661
+ ],
+ [
+ -73.55463766671679,
+ 45.53363094995867
+ ],
+ [
+ -73.5547202109908,
+ 45.53352697304167
+ ],
+ [
+ -73.55470910256487,
+ 45.53352226599008
+ ],
+ [
+ -73.55454816079083,
+ 45.53370989964245
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":100,
+ "ID_UEV":"01023660",
+ "CIVIQUE_DE":" 2122",
+ "CIVIQUE_FI":" 2124",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-3047-8-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":116,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000649606180485,
+ "OBJECTID":82926,
+ "Join_Count":1,
+ "TARGET_FID":82926,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":82926,
+ "Shape_Le_1":0.000649606180485,
+ "Shape_Ar_1":1.05273893579e-08,
+ "OBJECTID_3":82926,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82925,
+ "g_objectid":"941192",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425128",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357304780000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654119",
+ "g_geomet_1":"1.88091e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000649606180485,
+ "Shape_Area":1.05273893579e-08,
+ "Shape_Le_3":0.000649607127546,
+ "Shape_Ar_2":1.05273893579e-08,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":101,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55805937756007,
+ 45.52296669470749
+ ],
+ [
+ -73.55797037615378,
+ 45.52307650372796
+ ],
+ [
+ -73.55807809514981,
+ 45.52312631897474
+ ],
+ [
+ -73.55817708352743,
+ 45.523021128872294
+ ],
+ [
+ -73.55805937756007,
+ 45.52296669470749
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55776517334591,
+ 45.52298160546702
+ ],
+ [
+ -73.5578918221717,
+ 45.52304017471459
+ ],
+ [
+ -73.5579641681337,
+ 45.5229700482794
+ ],
+ [
+ -73.5579011679264,
+ 45.52293794787829
+ ],
+ [
+ -73.55784386852156,
+ 45.52290864796603
+ ],
+ [
+ -73.55786826802799,
+ 45.522884948132145
+ ],
+ [
+ -73.55793326832752,
+ 45.52291804768005
+ ],
+ [
+ -73.55793696813842,
+ 45.52291984812279
+ ],
+ [
+ -73.55794361502765,
+ 45.52291315986473
+ ],
+ [
+ -73.55786416172353,
+ 45.52287641716322
+ ],
+ [
+ -73.55776517334591,
+ 45.52298160546702
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":101,
+ "ID_UEV":"01035509",
+ "CIVIQUE_DE":" 1500",
+ "CIVIQUE_FI":" 1508",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-6965-7-000-0000",
+ "SUPERFICIE":401,
+ "SUPERFIC_1":689,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0012619898879,
+ "OBJECTID":82928,
+ "Join_Count":2,
+ "TARGET_FID":82928,
+ "feature_id":"434cfa69-ab8e-4254-9cb1-121ba5d505f8",
+ "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.48,
+ "heightmax":38.1,
+ "elevmin":25,
+ "elevmax":27.04,
+ "bldgarea":1158.9,
+ "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_2":82928,
+ "Shape_Le_1":0.0012619898879,
+ "Shape_Ar_1":3.16689726486e-08,
+ "OBJECTID_3":82928,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82927,
+ "g_objectid":"942082",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567321",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225625460000000",
+ "g_sup_tota":"401.3",
+ "g_geometry":"0.000972228",
+ "g_geomet_1":"4.62299e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0012619898879,
+ "Shape_Area":3.16689726486e-08,
+ "Shape_Le_3":0.00126198889258,
+ "Shape_Ar_2":3.16689726486e-08,
+ "building_height":17.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":102,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55805937756007,
+ 45.52296669470749
+ ],
+ [
+ -73.55817708352743,
+ 45.523021128872294
+ ],
+ [
+ -73.55827395400162,
+ 45.52291819067226
+ ],
+ [
+ -73.55814646970566,
+ 45.52285923471621
+ ],
+ [
+ -73.55811616794864,
+ 45.522896647412644
+ ],
+ [
+ -73.5580711676721,
+ 45.522952148173395
+ ],
+ [
+ -73.55805937756007,
+ 45.52296669470749
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55786416172353,
+ 45.52287641716322
+ ],
+ [
+ -73.55794361502765,
+ 45.52291315986473
+ ],
+ [
+ -73.55803586838246,
+ 45.52282034803093
+ ],
+ [
+ -73.5579587677048,
+ 45.522782447901946
+ ],
+ [
+ -73.5578970679172,
+ 45.52284454788787
+ ],
+ [
+ -73.55789507232157,
+ 45.52284357122413
+ ],
+ [
+ -73.55786416172353,
+ 45.52287641716322
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":102,
+ "ID_UEV":"01035510",
+ "CIVIQUE_DE":" 1486",
+ "CIVIQUE_FI":" 1496",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-6254-6-000-0000",
+ "SUPERFICIE":401,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000988988810886,
+ "OBJECTID":82929,
+ "Join_Count":2,
+ "TARGET_FID":82929,
+ "feature_id":"434cfa69-ab8e-4254-9cb1-121ba5d505f8",
+ "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.48,
+ "heightmax":38.1,
+ "elevmin":25,
+ "elevmax":27.04,
+ "bldgarea":1158.9,
+ "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_2":82929,
+ "Shape_Le_1":0.000988988810886,
+ "Shape_Ar_1":2.89173371425e-08,
+ "OBJECTID_3":82929,
+ "Join_Cou_1":5,
+ "TARGET_F_1":82928,
+ "g_objectid":"942082",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567321",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225625460000000",
+ "g_sup_tota":"401.3",
+ "g_geometry":"0.000972228",
+ "g_geomet_1":"4.62299e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000988988810886,
+ "Shape_Area":2.89173371425e-08,
+ "Shape_Le_3":0.000988988984092,
+ "Shape_Ar_2":2.89173371425e-08,
+ "building_height":17.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":103,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55814646970566,
+ 45.52285923471621
+ ],
+ [
+ -73.55827395400162,
+ 45.52291819067226
+ ],
+ [
+ -73.5583736834206,
+ 45.52281221456235
+ ],
+ [
+ -73.55826577556694,
+ 45.52276231208133
+ ],
+ [
+ -73.55825976809567,
+ 45.5227685479804
+ ],
+ [
+ -73.55818786819741,
+ 45.52273434766231
+ ],
+ [
+ -73.55818366836345,
+ 45.52273864822033
+ ],
+ [
+ -73.55815846846039,
+ 45.52275864824332
+ ],
+ [
+ -73.55819196820661,
+ 45.522779647413095
+ ],
+ [
+ -73.55820986831262,
+ 45.52276814778209
+ ],
+ [
+ -73.55823816817876,
+ 45.522789548049495
+ ],
+ [
+ -73.55816386798996,
+ 45.522837847938625
+ ],
+ [
+ -73.55816346779164,
+ 45.522838248136935
+ ],
+ [
+ -73.55814646970566,
+ 45.52285923471621
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":103,
+ "ID_UEV":"01035511",
+ "CIVIQUE_DE":" 1472",
+ "CIVIQUE_FI":" 1482",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-5542-5-000-0000",
+ "SUPERFICIE":410,
+ "SUPERFIC_1":366,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000743814228184,
+ "OBJECTID":82930,
+ "Join_Count":1,
+ "TARGET_FID":82930,
+ "feature_id":"434cfa69-ab8e-4254-9cb1-121ba5d505f8",
+ "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.48,
+ "heightmax":38.1,
+ "elevmin":25,
+ "elevmax":27.04,
+ "bldgarea":1158.9,
+ "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_2":82930,
+ "Shape_Le_1":0.000743814228184,
+ "Shape_Ar_1":2.04849598934e-08,
+ "OBJECTID_3":82930,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82929,
+ "g_objectid":"942082",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567321",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225625460000000",
+ "g_sup_tota":"401.3",
+ "g_geometry":"0.000972228",
+ "g_geomet_1":"4.62299e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000743814228184,
+ "Shape_Area":2.04849598934e-08,
+ "Shape_Le_3":0.000743814409293,
+ "Shape_Ar_2":2.04849598934e-08,
+ "building_height":17.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":104,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55826577556694,
+ 45.52276231208133
+ ],
+ [
+ -73.5583736834206,
+ 45.52281221456235
+ ],
+ [
+ -73.55856337921843,
+ 45.52261063422369
+ ],
+ [
+ -73.55832186808159,
+ 45.52249934761709
+ ],
+ [
+ -73.55832736833523,
+ 45.52249344806447
+ ],
+ [
+ -73.55825557006035,
+ 45.52246049060945
+ ],
+ [
+ -73.558155498899,
+ 45.52256683004546
+ ],
+ [
+ -73.55818646795298,
+ 45.5225808477782
+ ],
+ [
+ -73.55819206803136,
+ 45.52258324806874
+ ],
+ [
+ -73.55820736819733,
+ 45.52256394771831
+ ],
+ [
+ -73.55824526832632,
+ 45.52257874786122
+ ],
+ [
+ -73.55822916776373,
+ 45.52259924790726
+ ],
+ [
+ -73.55822936831254,
+ 45.522599347732005
+ ],
+ [
+ -73.55826086796652,
+ 45.52261434752442
+ ],
+ [
+ -73.55829766822465,
+ 45.522576147921185
+ ],
+ [
+ -73.55839876821042,
+ 45.52262424816082
+ ],
+ [
+ -73.55826577556694,
+ 45.52276231208133
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":104,
+ "ID_UEV":"01035512",
+ "CIVIQUE_DE":" 1454",
+ "CIVIQUE_FI":" 1464",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":18,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-4425-4-000-0000",
+ "SUPERFICIE":803,
+ "SUPERFIC_1":1255,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00141797881083,
+ "OBJECTID":82931,
+ "Join_Count":1,
+ "TARGET_FID":82931,
+ "feature_id":"434cfa69-ab8e-4254-9cb1-121ba5d505f8",
+ "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.48,
+ "heightmax":38.1,
+ "elevmin":25,
+ "elevmax":27.04,
+ "bldgarea":1158.9,
+ "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_2":82931,
+ "Shape_Le_1":0.00141797881083,
+ "Shape_Ar_1":5.45494816009e-08,
+ "OBJECTID_3":82931,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82930,
+ "g_objectid":"942081",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567320",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225554250000000",
+ "g_sup_tota":"410.3",
+ "g_geometry":"0.000980569",
+ "g_geomet_1":"4.75941e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00141797881083,
+ "Shape_Area":5.45494816009e-08,
+ "Shape_Le_3":0.00141797968072,
+ "Shape_Ar_2":5.45494816009e-08,
+ "building_height":17.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":105,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55854416790088,
+ 45.52238104809719
+ ],
+ [
+ -73.5587077159102,
+ 45.52245626379583
+ ],
+ [
+ -73.55911567806794,
+ 45.52202004314077
+ ],
+ [
+ -73.55895826793156,
+ 45.521947547891315
+ ],
+ [
+ -73.55890536801017,
+ 45.52200234808019
+ ],
+ [
+ -73.5589559683651,
+ 45.52202634828764
+ ],
+ [
+ -73.55887886768744,
+ 45.52210644820432
+ ],
+ [
+ -73.55869116838456,
+ 45.52230194822663
+ ],
+ [
+ -73.55867806796032,
+ 45.52229574740112
+ ],
+ [
+ -73.55867156855989,
+ 45.522293547659395
+ ],
+ [
+ -73.55864706832938,
+ 45.52233354770536
+ ],
+ [
+ -73.55859156846796,
+ 45.52231664764547
+ ],
+ [
+ -73.55858736773467,
+ 45.52231514757629
+ ],
+ [
+ -73.55854416790088,
+ 45.52238104809719
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":105,
+ "ID_UEV":"01035513",
+ "CIVIQUE_DE":" 1350",
+ "CIVIQUE_FI":" 1384",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":24,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-0774-2-000-0000",
+ "SUPERFICIE":1542,
+ "SUPERFIC_1":2020,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00167448128704,
+ "OBJECTID":82932,
+ "Join_Count":1,
+ "TARGET_FID":82932,
+ "feature_id":"14ae4d55-37d6-455a-bed4-a3ef571b13e2",
+ "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.14,
+ "heightmax":36.53,
+ "elevmin":25.29,
+ "elevmax":26.3,
+ "bldgarea":719.84,
+ "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_2":82932,
+ "Shape_Le_1":0.00167448128704,
+ "Shape_Ar_1":7.88630981885e-08,
+ "OBJECTID_3":82932,
+ "Join_Cou_1":2,
+ "TARGET_F_1":82931,
+ "g_objectid":"941976",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567025",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"24",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224077420000000",
+ "g_sup_tota":"1542.3",
+ "g_geometry":"0.00186229",
+ "g_geomet_1":"1.77622e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00167448128704,
+ "Shape_Area":7.88630981885e-08,
+ "Shape_Le_3":0.00167448287646,
+ "Shape_Ar_2":7.88630981885e-08,
+ "building_height":17.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":106,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55118916956637,
+ 45.53640436202198
+ ],
+ [
+ -73.55118955987214,
+ 45.53640450051758
+ ],
+ [
+ -73.55121680753149,
+ 45.5363652298218
+ ],
+ [
+ -73.55118916956637,
+ 45.53640436202198
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55124509480713,
+ 45.536325178514474
+ ],
+ [
+ -73.55133046744896,
+ 45.536355750068104
+ ],
+ [
+ -73.55132186723223,
+ 45.53636764989742
+ ],
+ [
+ -73.55132357504479,
+ 45.536368264134374
+ ],
+ [
+ -73.55140067212517,
+ 45.53625910712239
+ ],
+ [
+ -73.55131386686331,
+ 45.53623124972269
+ ],
+ [
+ -73.5513276669601,
+ 45.53621014982885
+ ],
+ [
+ -73.55132658507569,
+ 45.536209800891896
+ ],
+ [
+ -73.55124509480713,
+ 45.536325178514474
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":106,
+ "ID_UEV":"01025041",
+ "CIVIQUE_DE":" 2033",
+ "CIVIQUE_FI":" 2035",
+ "NOM_RUE":"rue Montgomery (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-9346-9-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":152,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000595705091307,
+ "OBJECTID":82936,
+ "Join_Count":2,
+ "TARGET_FID":82936,
+ "feature_id":"f42187dd-3c9c-48c4-8c70-dfe5d4e041a5",
+ "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.54,
+ "heightmax":24.26,
+ "elevmin":20.45,
+ "elevmax":20.95,
+ "bldgarea":21.9,
+ "comment":" ",
+ "OBJECTID_2":82936,
+ "Shape_Le_1":0.000595705091307,
+ "Shape_Ar_1":1.05157547055e-08,
+ "OBJECTID_3":82936,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82935,
+ "g_objectid":"943739",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360891",
+ "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":"66023004470865050000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000668906",
+ "g_geomet_1":"2.15323e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000595705091307,
+ "Shape_Area":1.05157547055e-08,
+ "Shape_Le_3":0.000595705329894,
+ "Shape_Ar_2":1.05157547055e-08,
+ "building_height":11.860000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":107,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55973370386918,
+ 45.52692199850173
+ ],
+ [
+ -73.55981541177368,
+ 45.52695945796291
+ ],
+ [
+ -73.55991534983536,
+ 45.52685265627536
+ ],
+ [
+ -73.55984106943166,
+ 45.526815947748084
+ ],
+ [
+ -73.55989376880423,
+ 45.526763348200255
+ ],
+ [
+ -73.55989746951445,
+ 45.526759547665286
+ ],
+ [
+ -73.55988921283874,
+ 45.52675581008286
+ ],
+ [
+ -73.55973370386918,
+ 45.52692199850173
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":107,
+ "ID_UEV":"01034295",
+ "CIVIQUE_DE":" 2056",
+ "CIVIQUE_FI":" 2060",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-19-2494-5-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":260,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000635434410453,
+ "OBJECTID":82940,
+ "Join_Count":1,
+ "TARGET_FID":82940,
+ "feature_id":"7bcf993c-aca4-4e2b-b813-05741135755d",
+ "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.48,
+ "heightmax":40.09,
+ "elevmin":25.43,
+ "elevmax":27.59,
+ "bldgarea":1494.32,
+ "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_2":82940,
+ "Shape_Le_1":0.000635434410453,
+ "Shape_Ar_1":1.31609913734e-08,
+ "OBJECTID_3":82940,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82939,
+ "g_objectid":"941947",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566936",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004219179800000000",
+ "g_sup_tota":"187.1",
+ "g_geometry":"0.000684827",
+ "g_geomet_1":"2.1544e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000635434410453,
+ "Shape_Area":1.31609913734e-08,
+ "Shape_Le_3":0.000635434142247,
+ "Shape_Ar_2":1.31609913734e-08,
+ "building_height":18.805000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":108,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5555151334385,
+ 45.528406405981144
+ ],
+ [
+ -73.55555666682855,
+ 45.5284239490563
+ ],
+ [
+ -73.55553266752044,
+ 45.52845204927295
+ ],
+ [
+ -73.5555732422332,
+ 45.52846911300945
+ ],
+ [
+ -73.55569169014123,
+ 45.52834351459182
+ ],
+ [
+ -73.5556090298547,
+ 45.528307027297764
+ ],
+ [
+ -73.5555151334385,
+ 45.528406405981144
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":108,
+ "ID_UEV":"01018327",
+ "CIVIQUE_DE":" 1911",
+ "CIVIQUE_FI":" 1915",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-41-5866-3-000-0000",
+ "SUPERFICIE":205,
+ "SUPERFIC_1":292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000525775732579,
+ "OBJECTID":82953,
+ "Join_Count":1,
+ "TARGET_FID":82953,
+ "feature_id":"3797a97f-7ec7-42ee-9e37-547756dd2f29",
+ "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.57,
+ "heightmax":35.35,
+ "elevmin":21.71,
+ "elevmax":23.41,
+ "bldgarea":1414.89,
+ "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_2":82953,
+ "Shape_Le_1":0.000525775732579,
+ "Shape_Ar_1":1.31656509703e-08,
+ "OBJECTID_3":82953,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82952,
+ "g_objectid":"940917",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424647",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341516920000000",
+ "g_sup_tota":"177.1",
+ "g_geometry":"0.000658391",
+ "g_geomet_1":"2.03972e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000525775732579,
+ "Shape_Area":1.31656509703e-08,
+ "Shape_Le_3":0.000525774135139,
+ "Shape_Ar_2":1.31656509703e-08,
+ "building_height":16.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":109,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55697759656067,
+ 45.51862013815914
+ ],
+ [
+ -73.5569829169499,
+ 45.51862257891918
+ ],
+ [
+ -73.55698906741337,
+ 45.518618047235385
+ ],
+ [
+ -73.55702312024265,
+ 45.51864102041706
+ ],
+ [
+ -73.55709137878594,
+ 45.518672334810695
+ ],
+ [
+ -73.55709926673961,
+ 45.51866654677401
+ ],
+ [
+ -73.55711972721548,
+ 45.51868036755521
+ ],
+ [
+ -73.5572098105062,
+ 45.518584550187136
+ ],
+ [
+ -73.5571904669883,
+ 45.51857464685276
+ ],
+ [
+ -73.55726296673437,
+ 45.518504546497915
+ ],
+ [
+ -73.5571999674264,
+ 45.51847234717138
+ ],
+ [
+ -73.5572023578244,
+ 45.51847002871914
+ ],
+ [
+ -73.55719591867854,
+ 45.5184670528625
+ ],
+ [
+ -73.55714422834531,
+ 45.51844315877505
+ ],
+ [
+ -73.55697759656067,
+ 45.51862013815914
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":109,
+ "ID_UEV":"01040260",
+ "CIVIQUE_DE":" 1438",
+ "CIVIQUE_FI":" 1446",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-30-3673-0-000-0000",
+ "SUPERFICIE":311,
+ "SUPERFIC_1":667,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000799439676783,
+ "OBJECTID":82957,
+ "Join_Count":1,
+ "TARGET_FID":82957,
+ "feature_id":"83b52556-e2c2-40cf-b67a-88dc09ce856f",
+ "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.5,
+ "heightmax":13.7,
+ "elevmin":23.39,
+ "elevmax":26.36,
+ "bldgarea":1285.24,
+ "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_2":82957,
+ "Shape_Le_1":0.000799439676783,
+ "Shape_Ar_1":3.25487592125e-08,
+ "OBJECTID_3":82957,
+ "Join_Cou_1":6,
+ "TARGET_F_1":82956,
+ "g_objectid":"944635",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004230314910010001",
+ "g_sup_tota":"232.8",
+ "g_geometry":"0.000815841",
+ "g_geomet_1":"2.65419e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000799439676783,
+ "Shape_Area":3.25487592125e-08,
+ "Shape_Le_3":0.000799437624947,
+ "Shape_Ar_2":3.25487592125e-08,
+ "building_height":5.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":110,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55972192454902,
+ 45.52901247709444
+ ],
+ [
+ -73.55975976892005,
+ 45.52903074862045
+ ],
+ [
+ -73.5597631692567,
+ 45.529032449238436
+ ],
+ [
+ -73.55979974198635,
+ 45.529049090293576
+ ],
+ [
+ -73.55996247341126,
+ 45.52887797179126
+ ],
+ [
+ -73.55991706933912,
+ 45.528858148934724
+ ],
+ [
+ -73.55986906892424,
+ 45.52891244910054
+ ],
+ [
+ -73.55983235230306,
+ 45.528896358430494
+ ],
+ [
+ -73.55972192454902,
+ 45.52901247709444
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":110,
+ "ID_UEV":"01035230",
+ "CIVIQUE_DE":" 2150",
+ "CIVIQUE_FI":" 2154",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-12-2527-5-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":377,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000644495912853,
+ "OBJECTID":82958,
+ "Join_Count":1,
+ "TARGET_FID":82958,
+ "feature_id":"bf7bffe9-01f4-4ce2-932b-92a9e3470026",
+ "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.89,
+ "heightmax":39.58,
+ "elevmin":26.07,
+ "elevmax":28.18,
+ "bldgarea":1382.27,
+ "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_2":82958,
+ "Shape_Le_1":0.000644495912853,
+ "Shape_Ar_1":1.65215631578e-08,
+ "OBJECTID_3":82958,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82957,
+ "g_objectid":"943011",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885687",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004312193280000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000700953",
+ "g_geomet_1":"2.15871e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000644495912853,
+ "Shape_Area":1.65215631578e-08,
+ "Shape_Le_3":0.0006444967927,
+ "Shape_Ar_2":1.65215631578e-08,
+ "building_height":18.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":111,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56912462342447,
+ 45.50843756519178
+ ],
+ [
+ -73.56914827019835,
+ 45.50844814481633
+ ],
+ [
+ -73.56916867041964,
+ 45.50845754453035
+ ],
+ [
+ -73.56920631244321,
+ 45.50847501565974
+ ],
+ [
+ -73.56931656842674,
+ 45.50835578174423
+ ],
+ [
+ -73.56925057077906,
+ 45.50832254460005
+ ],
+ [
+ -73.56924327098201,
+ 45.50832974457235
+ ],
+ [
+ -73.56923035401947,
+ 45.50832322358819
+ ],
+ [
+ -73.56912462342447,
+ 45.50843756519178
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":111,
+ "ID_UEV":"01000550",
+ "CIVIQUE_DE":" 2032",
+ "CIVIQUE_FI":" 2034",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-8635-1-000-0000",
+ "SUPERFICIE":319,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000506614691083,
+ "OBJECTID":82975,
+ "Join_Count":1,
+ "TARGET_FID":82975,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":82975,
+ "Shape_Le_1":0.000506614691083,
+ "Shape_Ar_1":1.38608697364e-08,
+ "OBJECTID_3":82975,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82974,
+ "g_objectid":"939785",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340586",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039793980000000",
+ "g_sup_tota":"319.5",
+ "g_geometry":"0.00104127",
+ "g_geomet_1":"3.68081e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000506614691083,
+ "Shape_Area":1.38608697364e-08,
+ "Shape_Le_3":0.000506615022215,
+ "Shape_Ar_2":1.38608697364e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":112,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56920631244321,
+ 45.50847501565974
+ ],
+ [
+ -73.56928770108838,
+ 45.508512790782966
+ ],
+ [
+ -73.5693823655256,
+ 45.508410419155815
+ ],
+ [
+ -73.56935097109229,
+ 45.50839524489493
+ ],
+ [
+ -73.56938347079239,
+ 45.508362044622956
+ ],
+ [
+ -73.56937757123977,
+ 45.508359245033425
+ ],
+ [
+ -73.56933817104161,
+ 45.50833944465994
+ ],
+ [
+ -73.56931987073729,
+ 45.50835744459069
+ ],
+ [
+ -73.56931656842674,
+ 45.50835578174423
+ ],
+ [
+ -73.56920631244321,
+ 45.50847501565974
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":112,
+ "ID_UEV":"01000551",
+ "CIVIQUE_DE":" 2038",
+ "CIVIQUE_FI":" 2042",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-7939-8-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":247,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000552879441176,
+ "OBJECTID":82976,
+ "Join_Count":1,
+ "TARGET_FID":82976,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":82976,
+ "Shape_Le_1":0.000552879441176,
+ "Shape_Ar_1":1.43084738364e-08,
+ "OBJECTID_3":82976,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82975,
+ "g_objectid":"939785",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340586",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039793980000000",
+ "g_sup_tota":"319.5",
+ "g_geometry":"0.00104127",
+ "g_geomet_1":"3.68081e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000552879441176,
+ "Shape_Area":1.43084738364e-08,
+ "Shape_Le_3":0.000552878857411,
+ "Shape_Ar_2":1.43084738364e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":113,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56928770108838,
+ 45.508512790782966
+ ],
+ [
+ -73.56933177146593,
+ 45.50853324496358
+ ],
+ [
+ -73.56936906725049,
+ 45.50855059108721
+ ],
+ [
+ -73.56947888526419,
+ 45.50843183021509
+ ],
+ [
+ -73.56940987129038,
+ 45.50839844468277
+ ],
+ [
+ -73.56939297123049,
+ 45.50841554529148
+ ],
+ [
+ -73.5693823655256,
+ 45.508410419155815
+ ],
+ [
+ -73.56928770108838,
+ 45.508512790782966
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":113,
+ "ID_UEV":"01000552",
+ "CIVIQUE_DE":" 2044",
+ "CIVIQUE_FI":" 2046",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-7343-3-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":211,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000503389800917,
+ "OBJECTID":82977,
+ "Join_Count":1,
+ "TARGET_FID":82977,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":82977,
+ "Shape_Le_1":0.000503389800917,
+ "Shape_Ar_1":1.3598553945e-08,
+ "OBJECTID_3":82977,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82976,
+ "g_objectid":"939785",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340586",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039793980000000",
+ "g_sup_tota":"319.5",
+ "g_geometry":"0.00104127",
+ "g_geomet_1":"3.68081e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000503389800917,
+ "Shape_Area":1.3598553945e-08,
+ "Shape_Le_3":0.000503390491252,
+ "Shape_Ar_2":1.3598553945e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":114,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56936906725049,
+ 45.50855059108721
+ ],
+ [
+ -73.56944057144706,
+ 45.50858384441918
+ ],
+ [
+ -73.56945040283567,
+ 45.5085884219684
+ ],
+ [
+ -73.56952964120183,
+ 45.508502731865875
+ ],
+ [
+ -73.56952107156205,
+ 45.50849924519431
+ ],
+ [
+ -73.56957107116985,
+ 45.508438544553485
+ ],
+ [
+ -73.56953037145132,
+ 45.508418844904064
+ ],
+ [
+ -73.56950517154827,
+ 45.508444544830176
+ ],
+ [
+ -73.56947888526419,
+ 45.50843183021509
+ ],
+ [
+ -73.56936906725049,
+ 45.50855059108721
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":114,
+ "ID_UEV":"01000553",
+ "CIVIQUE_DE":" 2048",
+ "CIVIQUE_FI":" 2052",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-6747-6-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":323,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000566471916584,
+ "OBJECTID":82978,
+ "Join_Count":1,
+ "TARGET_FID":82978,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":82978,
+ "Shape_Le_1":0.000566471916584,
+ "Shape_Ar_1":1.49143775103e-08,
+ "OBJECTID_3":82978,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82977,
+ "g_objectid":"939782",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340583",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039605210000000",
+ "g_sup_tota":"319.9",
+ "g_geometry":"0.001042",
+ "g_geomet_1":"3.68415e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000566471916584,
+ "Shape_Area":1.49143775103e-08,
+ "Shape_Le_3":0.000566471079089,
+ "Shape_Ar_2":1.49143775103e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":115,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56945040283567,
+ 45.5085884219684
+ ],
+ [
+ -73.56953172223304,
+ 45.50862627353399
+ ],
+ [
+ -73.56962159778035,
+ 45.50852907840454
+ ],
+ [
+ -73.56958147092999,
+ 45.50851254526805
+ ],
+ [
+ -73.56958067143269,
+ 45.50851214506974
+ ],
+ [
+ -73.56957367110988,
+ 45.508520644562395
+ ],
+ [
+ -73.56952964120183,
+ 45.508502731865875
+ ],
+ [
+ -73.56945040283567,
+ 45.5085884219684
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":115,
+ "ID_UEV":"01000554",
+ "CIVIQUE_DE":" 2054",
+ "CIVIQUE_FI":" 2056",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-6052-1-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":278,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000441628328195,
+ "OBJECTID":82979,
+ "Join_Count":1,
+ "TARGET_FID":82979,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":82979,
+ "Shape_Le_1":0.000441628328195,
+ "Shape_Ar_1":1.06248460199e-08,
+ "OBJECTID_3":82979,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82978,
+ "g_objectid":"939782",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340583",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039605210000000",
+ "g_sup_tota":"319.9",
+ "g_geometry":"0.001042",
+ "g_geomet_1":"3.68415e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000441628328195,
+ "Shape_Area":1.06248460199e-08,
+ "Shape_Le_3":0.000441627402737,
+ "Shape_Ar_2":1.06248460199e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":116,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57541328751505,
+ 45.50073839451159
+ ],
+ [
+ -73.57545323270237,
+ 45.50069780361104
+ ],
+ [
+ -73.57558763548283,
+ 45.50076366096448
+ ],
+ [
+ -73.57583067186985,
+ 45.50051854264692
+ ],
+ [
+ -73.57581677194831,
+ 45.50051174287293
+ ],
+ [
+ -73.57582757190676,
+ 45.50050084308973
+ ],
+ [
+ -73.57582327224806,
+ 45.50049894282225
+ ],
+ [
+ -73.5755817719031,
+ 45.50039524289644
+ ],
+ [
+ -73.57551087205096,
+ 45.500364743288564
+ ],
+ [
+ -73.57551067240145,
+ 45.500364743288564
+ ],
+ [
+ -73.5754928721202,
+ 45.50038274321932
+ ],
+ [
+ -73.57531777231918,
+ 45.500560343135625
+ ],
+ [
+ -73.57524777178908,
+ 45.50063134281252
+ ],
+ [
+ -73.57506977167446,
+ 45.50081184304242
+ ],
+ [
+ -73.57506077215875,
+ 45.5008209432822
+ ],
+ [
+ -73.5749696717348,
+ 45.50091034308816
+ ],
+ [
+ -73.5750320720943,
+ 45.5009417429174
+ ],
+ [
+ -73.57509621444059,
+ 45.500974109517834
+ ],
+ [
+ -73.5751537773468,
+ 45.50100221513042
+ ],
+ [
+ -73.57541328751505,
+ 45.50073839451159
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":116,
+ "ID_UEV":"01039092",
+ "CIVIQUE_DE":" 2000",
+ "CIVIQUE_FI":" 2000",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":10,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-90-0778-2-000-0000",
+ "SUPERFICIE":1881,
+ "SUPERFIC_1":16120,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00227170999499,
+ "OBJECTID":82983,
+ "Join_Count":1,
+ "TARGET_FID":82983,
+ "feature_id":"f6f6fa9f-2142-4d06-8c15-8dd026b253b7",
+ "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":84.93,
+ "elevmin":42.29,
+ "elevmax":44.88,
+ "bldgarea":4615.33,
+ "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_2":82983,
+ "Shape_Le_1":0.00227170999499,
+ "Shape_Ar_1":2.00262014158e-07,
+ "OBJECTID_3":82983,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82982,
+ "g_objectid":"945000",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338883",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"60",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984090077820000000",
+ "g_sup_tota":"1880.5",
+ "g_geometry":"0.00232896",
+ "g_geomet_1":"2.17551e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00227170999499,
+ "Shape_Area":2.00262014158e-07,
+ "Shape_Le_3":0.00227171054288,
+ "Shape_Ar_2":2.00262014158e-07,
+ "building_height":42.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":117,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56143299625762,
+ 45.52834589689592
+ ],
+ [
+ -73.56143514293935,
+ 45.52834689784136
+ ],
+ [
+ -73.56144036889975,
+ 45.52834114847552
+ ],
+ [
+ -73.56162054807169,
+ 45.52842221426407
+ ],
+ [
+ -73.56170990111289,
+ 45.52832661992786
+ ],
+ [
+ -73.56166336929091,
+ 45.52830534916283
+ ],
+ [
+ -73.56165186876058,
+ 45.52831804848944
+ ],
+ [
+ -73.56160316867314,
+ 45.52829464902913
+ ],
+ [
+ -73.56161916941099,
+ 45.528278048443475
+ ],
+ [
+ -73.56161756951707,
+ 45.52827754842042
+ ],
+ [
+ -73.56154826955884,
+ 45.52826384904769
+ ],
+ [
+ -73.56151655676553,
+ 45.52825760865201
+ ],
+ [
+ -73.56143299625762,
+ 45.52834589689592
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":117,
+ "ID_UEV":"01034685",
+ "CIVIQUE_DE":" 2252",
+ "CIVIQUE_FI":" 2252",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-8755-2-000-0000",
+ "SUPERFICIE":388,
+ "SUPERFIC_1":522,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000710146352888,
+ "OBJECTID":82988,
+ "Join_Count":1,
+ "TARGET_FID":82988,
+ "feature_id":"a33a95b4-7393-4b8b-be81-13122e912340",
+ "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.93,
+ "heightmax":40.79,
+ "elevmin":29.13,
+ "elevmax":38.3,
+ "bldgarea":2129.79,
+ "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_2":82988,
+ "Shape_Le_1":0.000710146352888,
+ "Shape_Ar_1":2.34553742969e-08,
+ "OBJECTID_3":82988,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82987,
+ "g_objectid":"942851",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884690",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391875520000000",
+ "g_sup_tota":"388.3",
+ "g_geometry":"0.000872252",
+ "g_geomet_1":"4.47863e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000710146352888,
+ "Shape_Area":2.34553742969e-08,
+ "Shape_Le_3":0.000710147852213,
+ "Shape_Ar_2":2.34553742969e-08,
+ "building_height":19.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":118,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56162054807169,
+ 45.52842221426407
+ ],
+ [
+ -73.56162706905583,
+ 45.52842514875191
+ ],
+ [
+ -73.56161990685506,
+ 45.52843304390015
+ ],
+ [
+ -73.56168646837766,
+ 45.52846407860464
+ ],
+ [
+ -73.56170176944295,
+ 45.52844794926374
+ ],
+ [
+ -73.5617032722101,
+ 45.528448651634264
+ ],
+ [
+ -73.56180249081415,
+ 45.52834352268572
+ ],
+ [
+ -73.56173236887557,
+ 45.528311449264265
+ ],
+ [
+ -73.561715869014,
+ 45.52832934847095
+ ],
+ [
+ -73.56170990111289,
+ 45.52832661992786
+ ],
+ [
+ -73.56162054807169,
+ 45.52842221426407
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":118,
+ "ID_UEV":"01034687",
+ "CIVIQUE_DE":" 2254",
+ "CIVIQUE_FI":" 2260",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-7762-9-000-0000",
+ "SUPERFICIE":160,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000498567572304,
+ "OBJECTID":82989,
+ "Join_Count":1,
+ "TARGET_FID":82989,
+ "feature_id":"a33a95b4-7393-4b8b-be81-13122e912340",
+ "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.93,
+ "heightmax":40.79,
+ "elevmin":29.13,
+ "elevmax":38.3,
+ "bldgarea":2129.79,
+ "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_2":82989,
+ "Shape_Le_1":0.000498567572304,
+ "Shape_Ar_1":1.28337609742e-08,
+ "OBJECTID_3":82989,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82988,
+ "g_objectid":"942851",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884690",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391875520000000",
+ "g_sup_tota":"388.3",
+ "g_geometry":"0.000872252",
+ "g_geomet_1":"4.47863e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000498567572304,
+ "Shape_Area":1.28337609742e-08,
+ "Shape_Le_3":0.000498565741331,
+ "Shape_Ar_2":1.28337609742e-08,
+ "building_height":19.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":119,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57431437173271,
+ 45.50217464419477
+ ],
+ [
+ -73.57444033887239,
+ 45.502236156024075
+ ],
+ [
+ -73.57452097208704,
+ 45.502151144010384
+ ],
+ [
+ -73.57452117173654,
+ 45.502150943461565
+ ],
+ [
+ -73.5744967722301,
+ 45.50214084407499
+ ],
+ [
+ -73.57457337198538,
+ 45.50204954400155
+ ],
+ [
+ -73.57459857188843,
+ 45.502059943761694
+ ],
+ [
+ -73.57460897254789,
+ 45.50204774355881
+ ],
+ [
+ -73.57461897210972,
+ 45.50205244341583
+ ],
+ [
+ -73.57465817175907,
+ 45.502012643918675
+ ],
+ [
+ -73.57451957184261,
+ 45.50194524422793
+ ],
+ [
+ -73.57406077190895,
+ 45.501722144012035
+ ],
+ [
+ -73.57405647225023,
+ 45.50172654349548
+ ],
+ [
+ -73.57384240122768,
+ 45.50194417043741
+ ],
+ [
+ -73.57431437173271,
+ 45.50217464419477
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":119,
+ "ID_UEV":"01039095",
+ "CIVIQUE_DE":" 999",
+ "CIVIQUE_FI":" 999",
+ "NOM_RUE":"boulevard De Maisonneuve Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1990,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-92-9731-8-000-0000",
+ "SUPERFICIE":1813,
+ "SUPERFIC_1":25302,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00201437002148,
+ "OBJECTID":82992,
+ "Join_Count":1,
+ "TARGET_FID":82992,
+ "feature_id":"d7821f1f-427e-4f90-9ec4-c580be36e42f",
+ "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,
+ "heightmax":122.06,
+ "elevmin":39.97,
+ "elevmax":42.06,
+ "bldgarea":1724.76,
+ "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_2":82992,
+ "Shape_Le_1":0.00201437002148,
+ "Shape_Ar_1":1.92655326041e-07,
+ "OBJECTID_3":82992,
+ "Join_Cou_1":2,
+ "TARGET_F_1":82991,
+ "g_objectid":"945013",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1339828",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"44",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984092973180000000",
+ "g_sup_tota":"1813.4",
+ "g_geometry":"0.00201883",
+ "g_geomet_1":"2.08804e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00201437002148,
+ "Shape_Area":1.92655326041e-07,
+ "Shape_Le_3":0.00201436799675,
+ "Shape_Ar_2":1.92655326041e-07,
+ "building_height":61.03
+ }
+ },
+ {
+ "type":"Feature",
+ "id":120,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57459975449692,
+ 45.501388178072254
+ ],
+ [
+ -73.57461087191605,
+ 45.50137714249143
+ ],
+ [
+ -73.57457147171789,
+ 45.50135744284201
+ ],
+ [
+ -73.57458387246959,
+ 45.50134504298964
+ ],
+ [
+ -73.57462197224807,
+ 45.5013636427682
+ ],
+ [
+ -73.57463647201742,
+ 45.50134894245003
+ ],
+ [
+ -73.57472843039459,
+ 45.50139351285063
+ ],
+ [
+ -73.57473348728246,
+ 45.50138838671497
+ ],
+ [
+ -73.57496635773306,
+ 45.50115233086567
+ ],
+ [
+ -73.57473327234449,
+ 45.501041243009254
+ ],
+ [
+ -73.57461377222965,
+ 45.501165242432286
+ ],
+ [
+ -73.57446407198118,
+ 45.50132054275914
+ ],
+ [
+ -73.57446313938422,
+ 45.5013215122283
+ ],
+ [
+ -73.57459975449692,
+ 45.501388178072254
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":120,
+ "ID_UEV":"01037655",
+ "CIVIQUE_DE":" 2005",
+ "CIVIQUE_FI":" 2015",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":13,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1964,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-91-6046-6-000-0000",
+ "SUPERFICIE":932,
+ "SUPERFIC_1":8955,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00138075355753,
+ "OBJECTID":82993,
+ "Join_Count":1,
+ "TARGET_FID":82993,
+ "feature_id":"93b771af-bb8f-4c6b-95d3-9e989721d642",
+ "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,
+ "heightmax":113.01,
+ "elevmin":40.15,
+ "elevmax":43.73,
+ "bldgarea":4897.45,
+ "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_2":82993,
+ "Shape_Le_1":0.00138075355753,
+ "Shape_Ar_1":8.87977102429e-08,
+ "OBJECTID_3":82993,
+ "Join_Cou_1":4,
+ "TARGET_F_1":82992,
+ "g_objectid":"945006",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338927",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"32",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984091738570000000",
+ "g_sup_tota":"1365.6",
+ "g_geometry":"0.00162794",
+ "g_geomet_1":"1.5723e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00138075355753,
+ "Shape_Area":8.87977102429e-08,
+ "Shape_Le_3":0.00138075335896,
+ "Shape_Ar_2":8.87977102429e-08,
+ "building_height":56.505
+ }
+ },
+ {
+ "type":"Feature",
+ "id":121,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56304833783237,
+ 45.529497604681005
+ ],
+ [
+ -73.5631916277133,
+ 45.529521255951494
+ ],
+ [
+ -73.56321022929049,
+ 45.52945698140486
+ ],
+ [
+ -73.56297642174631,
+ 45.529417747581284
+ ],
+ [
+ -73.5629488701161,
+ 45.52946714913992
+ ],
+ [
+ -73.56304987027714,
+ 45.529494849158255
+ ],
+ [
+ -73.56304833783237,
+ 45.529497604681005
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":121,
+ "ID_UEV":"01035368",
+ "CIVIQUE_DE":" 1962",
+ "CIVIQUE_FI":" 1966",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+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\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-82-7385-8-000-0000",
+ "SUPERFICIE":225,
+ "SUPERFIC_1":355,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000613663751057,
+ "OBJECTID":82998,
+ "Join_Count":1,
+ "TARGET_FID":82998,
+ "feature_id":"9accd3d3-589e-4b45-bf5e-d69658c2daf7",
+ "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":15.72,
+ "elevmin":38.48,
+ "elevmax":42.97,
+ "bldgarea":1167.39,
+ "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_2":82998,
+ "Shape_Le_1":0.000613663751057,
+ "Shape_Ar_1":1.54657384705e-08,
+ "OBJECTID_3":82998,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82997,
+ "g_objectid":"942807",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884550",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994382738580000000",
+ "g_sup_tota":"225",
+ "g_geometry":"0.000904856",
+ "g_geomet_1":"2.57273e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000613663751057,
+ "Shape_Area":1.54657384705e-08,
+ "Shape_Le_3":0.000613665137535,
+ "Shape_Ar_2":1.54657384705e-08,
+ "building_height":7.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":122,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56297642174631,
+ 45.529417747581284
+ ],
+ [
+ -73.56321022929049,
+ 45.52945698140486
+ ],
+ [
+ -73.56322956021788,
+ 45.529390186957855
+ ],
+ [
+ -73.5630120825634,
+ 45.52935377340821
+ ],
+ [
+ -73.56298026994534,
+ 45.52941084888187
+ ],
+ [
+ -73.56297642174631,
+ 45.529417747581284
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":122,
+ "ID_UEV":"01035369",
+ "CIVIQUE_DE":" 1956",
+ "CIVIQUE_FI":" 1960",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+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\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-82-7277-7-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":344,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000600358748171,
+ "OBJECTID":82999,
+ "Join_Count":1,
+ "TARGET_FID":82999,
+ "feature_id":"9accd3d3-589e-4b45-bf5e-d69658c2daf7",
+ "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":15.72,
+ "elevmin":38.48,
+ "elevmax":42.97,
+ "bldgarea":1167.39,
+ "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_2":82999,
+ "Shape_Le_1":0.000600358748171,
+ "Shape_Ar_1":1.57934212803e-08,
+ "OBJECTID_3":82999,
+ "Join_Cou_1":3,
+ "TARGET_F_1":82998,
+ "g_objectid":"942807",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884550",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994382738580000000",
+ "g_sup_tota":"225",
+ "g_geometry":"0.000904856",
+ "g_geomet_1":"2.57273e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000600358748171,
+ "Shape_Area":1.57934212803e-08,
+ "Shape_Le_3":0.000600359003402,
+ "Shape_Ar_2":1.57934212803e-08,
+ "building_height":7.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":123,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55680998721299,
+ 45.5157214541321
+ ],
+ [
+ -73.55688828668693,
+ 45.51575430546712
+ ],
+ [
+ -73.55703362972008,
+ 45.51560146118878
+ ],
+ [
+ -73.55695060251014,
+ 45.515564658232684
+ ],
+ [
+ -73.55680998721299,
+ 45.5157214541321
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":123,
+ "ID_UEV":"01003665",
+ "CIVIQUE_DE":" 1224",
+ "CIVIQUE_FI":" 1228",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-37-5350-0-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":347,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000597261500363,
+ "OBJECTID":83011,
+ "Join_Count":1,
+ "TARGET_FID":83011,
+ "feature_id":"a7012c4c-509f-4c89-856d-cbbe5d83dc80",
+ "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":50.19,
+ "elevmin":21.72,
+ "elevmax":24.6,
+ "bldgarea":4043.34,
+ "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_2":83011,
+ "Shape_Le_1":0.000597261500363,
+ "Shape_Ar_1":1.74680419352e-08,
+ "OBJECTID_3":83011,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83010,
+ "g_objectid":"943462",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162254",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004137535000000000",
+ "g_sup_tota":"159.3",
+ "g_geometry":"0.000618289",
+ "g_geomet_1":"1.83447e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000597261500363,
+ "Shape_Area":1.74680419352e-08,
+ "Shape_Le_3":0.000597259641266,
+ "Shape_Ar_2":1.74680419352e-08,
+ "building_height":24.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":124,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56325251271514,
+ 45.51769585453036
+ ],
+ [
+ -73.56329886916932,
+ 45.51771584645944
+ ],
+ [
+ -73.56325756870368,
+ 45.51776334685127
+ ],
+ [
+ -73.56328806021764,
+ 45.5177767485484
+ ],
+ [
+ -73.56342273279473,
+ 45.517630146464384
+ ],
+ [
+ -73.5633453479313,
+ 45.517594795913396
+ ],
+ [
+ -73.56325251271514,
+ 45.51769585453036
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":124,
+ "ID_UEV":"01003353",
+ "CIVIQUE_DE":" 1757",
+ "CIVIQUE_FI":" 1761",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-5375-0-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":429,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000568108061337,
+ "OBJECTID":83012,
+ "Join_Count":1,
+ "TARGET_FID":83012,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83012,
+ "Shape_Le_1":0.000568108061337,
+ "Shape_Ar_1":1.3085159111e-08,
+ "OBJECTID_3":83012,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83011,
+ "g_objectid":"943260",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161620",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189467960000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702141",
+ "g_geomet_1":"2.15148e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000568108061337,
+ "Shape_Area":1.3085159111e-08,
+ "Shape_Le_3":0.000568108729298,
+ "Shape_Ar_2":1.3085159111e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":125,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56316907631367,
+ 45.528861608626634
+ ],
+ [
+ -73.56338972138039,
+ 45.52889860673561
+ ],
+ [
+ -73.56341787016042,
+ 45.528788348953434
+ ],
+ [
+ -73.56327217009641,
+ 45.528734548810675
+ ],
+ [
+ -73.56328156981044,
+ 45.528722049133556
+ ],
+ [
+ -73.56324387023027,
+ 45.528708149212015
+ ],
+ [
+ -73.56324117046549,
+ 45.5287120486724
+ ],
+ [
+ -73.56320106969545,
+ 45.528773048787464
+ ],
+ [
+ -73.5631764777341,
+ 45.52876501874092
+ ],
+ [
+ -73.56316581717057,
+ 45.52879888900782
+ ],
+ [
+ -73.56317670076598,
+ 45.5288088498988
+ ],
+ [
+ -73.56318267855961,
+ 45.528809914696104
+ ],
+ [
+ -73.56316907631367,
+ 45.528861608626634
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56320302302294,
+ 45.52867161245525
+ ],
+ [
+ -73.56318846749562,
+ 45.52873785651716
+ ],
+ [
+ -73.56322575968291,
+ 45.528681040048255
+ ],
+ [
+ -73.5632113228661,
+ 45.528674305025454
+ ],
+ [
+ -73.56320302302294,
+ 45.52867161245525
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":125,
+ "ID_UEV":"01035375",
+ "CIVIQUE_DE":" 1870",
+ "CIVIQUE_FI":" 1876",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-82-5312-4-000-0000",
+ "SUPERFICIE":382,
+ "SUPERFIC_1":600,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000922500191145,
+ "OBJECTID":83016,
+ "Join_Count":1,
+ "TARGET_FID":83016,
+ "feature_id":"aa954180-2d9b-47ee-a839-6eb6f933f30e",
+ "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,
+ "heightmax":16.02,
+ "elevmin":38.34,
+ "elevmax":42.97,
+ "bldgarea":1037.27,
+ "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_2":83016,
+ "Shape_Le_1":0.000922500191145,
+ "Shape_Ar_1":3.09853557415e-08,
+ "OBJECTID_3":83016,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83015,
+ "g_objectid":"942999",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885624",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994382531240000000",
+ "g_sup_tota":"381.6",
+ "g_geometry":"0.000899945",
+ "g_geomet_1":"4.41854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000922500191145,
+ "Shape_Area":3.09853557415e-08,
+ "Shape_Le_3":0.000922498619355,
+ "Shape_Ar_2":3.09853557415e-08,
+ "building_height":7.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":126,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.57735207026367,
+ 45.49952692317925
+ ],
+ [
+ -73.57735367285557,
+ 45.49952764263689
+ ],
+ [
+ -73.57735377268031,
+ 45.49952764263689
+ ],
+ [
+ -73.57740147272163,
+ 45.49948134283999
+ ],
+ [
+ -73.5773984447043,
+ 45.49947979510675
+ ],
+ [
+ -73.57735207026367,
+ 45.49952692317925
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.57748254840273,
+ 45.499394326237464
+ ],
+ [
+ -73.5775097726797,
+ 45.49940814252206
+ ],
+ [
+ -73.57746467347775,
+ 45.49945214275248
+ ],
+ [
+ -73.57752588583281,
+ 45.49948315317528
+ ],
+ [
+ -73.57753017469965,
+ 45.49947879146335
+ ],
+ [
+ -73.57753175390916,
+ 45.49947955858506
+ ],
+ [
+ -73.57755255342944,
+ 45.499458623267145
+ ],
+ [
+ -73.57755087349587,
+ 45.49945774283086
+ ],
+ [
+ -73.57759073594555,
+ 45.49942019073951
+ ],
+ [
+ -73.5776867232855,
+ 45.49932357477345
+ ],
+ [
+ -73.5776361732926,
+ 45.49929594310359
+ ],
+ [
+ -73.57759931547787,
+ 45.499275661592804
+ ],
+ [
+ -73.57748254840273,
+ 45.499394326237464
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":126,
+ "ID_UEV":"01036964",
+ "CIVIQUE_DE":" 2135",
+ "CIVIQUE_FI":" 2135",
+ "NOM_RUE":"rue de la Montagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1939,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-79-4045-7-000-0000",
+ "SUPERFICIE":339,
+ "SUPERFIC_1":438,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000796405764646,
+ "OBJECTID":83017,
+ "Join_Count":1,
+ "TARGET_FID":83017,
+ "feature_id":"272637a8-4def-44c7-8063-74b6907c7c73",
+ "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.01,
+ "heightmax":81.55,
+ "elevmin":43.91,
+ "elevmax":46.97,
+ "bldgarea":3374.75,
+ "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_2":83017,
+ "Shape_Le_1":0.000796405764646,
+ "Shape_Ar_1":2.00063655573e-08,
+ "OBJECTID_3":83017,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83016,
+ "g_objectid":"939729",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1338825",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983979315140000000",
+ "g_sup_tota":"545.3",
+ "g_geometry":"0.00115281",
+ "g_geomet_1":"6.27855e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000796405764646,
+ "Shape_Area":2.00063655573e-08,
+ "Shape_Le_3":0.000796403664788,
+ "Shape_Ar_2":2.00063655573e-08,
+ "building_height":39.769999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":127,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56159848770189,
+ 45.52094739475676
+ ],
+ [
+ -73.5617400679716,
+ 45.52100852887081
+ ],
+ [
+ -73.56181250656377,
+ 45.52092875271006
+ ],
+ [
+ -73.56167101622626,
+ 45.52086751967059
+ ],
+ [
+ -73.56159848770189,
+ 45.52094739475676
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":127,
+ "ID_UEV":"01040310",
+ "CIVIQUE_DE":" 1905",
+ "CIVIQUE_FI":" 1913",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-93-8039-9-000-0000",
+ "SUPERFICIE":227,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000524033540397,
+ "OBJECTID":83022,
+ "Join_Count":1,
+ "TARGET_FID":83022,
+ "feature_id":"75c17f32-0eac-4613-9711-c164c40b070e",
+ "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.57,
+ "heightmax":11.71,
+ "elevmin":25.16,
+ "elevmax":26.42,
+ "bldgarea":399.34,
+ "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_2":83022,
+ "Shape_Le_1":0.000524033540397,
+ "Shape_Ar_1":1.57328657676e-08,
+ "OBJECTID_3":83022,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83021,
+ "g_objectid":"941611",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565554",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994293684690000000",
+ "g_sup_tota":"230.6",
+ "g_geometry":"0.000669891",
+ "g_geomet_1":"2.65979e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000524033540397,
+ "Shape_Area":1.57328657676e-08,
+ "Shape_Le_3":0.000524035092033,
+ "Shape_Ar_2":1.57328657676e-08,
+ "building_height":4.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":128,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57537849993966,
+ 45.50158718814851
+ ],
+ [
+ -73.57538397231431,
+ 45.501589743122445
+ ],
+ [
+ -73.57531397178421,
+ 45.501663842762426
+ ],
+ [
+ -73.57530897694957,
+ 45.50166916405097
+ ],
+ [
+ -73.5756628799598,
+ 45.501841826689244
+ ],
+ [
+ -73.57589425933445,
+ 45.50160495785282
+ ],
+ [
+ -73.5756980722301,
+ 45.501507442564716
+ ],
+ [
+ -73.57571767205476,
+ 45.50148794256479
+ ],
+ [
+ -73.57571747240527,
+ 45.50148784274005
+ ],
+ [
+ -73.57557217253958,
+ 45.50142224259272
+ ],
+ [
+ -73.57554958606639,
+ 45.50141204248207
+ ],
+ [
+ -73.57537849993966,
+ 45.50158718814851
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":128,
+ "ID_UEV":"01037645",
+ "CIVIQUE_DE":" 2055",
+ "CIVIQUE_FI":" 2055",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":12,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-81-9191-8-000-0000",
+ "SUPERFICIE":1223,
+ "SUPERFIC_1":14700,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00151617402128,
+ "OBJECTID":83031,
+ "Join_Count":1,
+ "TARGET_FID":83031,
+ "feature_id":"93b771af-bb8f-4c6b-95d3-9e989721d642",
+ "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,
+ "heightmax":113.01,
+ "elevmin":40.15,
+ "elevmax":43.73,
+ "bldgarea":4897.45,
+ "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_2":83031,
+ "Shape_Le_1":0.00151617402128,
+ "Shape_Ar_1":1.30286685014e-07,
+ "OBJECTID_3":83031,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83030,
+ "g_objectid":"945002",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338888",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"38",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984081919180000000",
+ "g_sup_tota":"1223.4",
+ "g_geometry":"0.00154233",
+ "g_geomet_1":"1.40909e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00151617402128,
+ "Shape_Area":1.30286685014e-07,
+ "Shape_Le_3":0.00151617523038,
+ "Shape_Ar_2":1.30286685014e-07,
+ "building_height":56.505
+ }
+ },
+ {
+ "type":"Feature",
+ "id":129,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58176129247151,
+ 45.49918399369665
+ ],
+ [
+ -73.58188898810816,
+ 45.499244284246615
+ ],
+ [
+ -73.58193892116613,
+ 45.49919214155438
+ ],
+ [
+ -73.58181125970371,
+ 45.49913186899086
+ ],
+ [
+ -73.58176129247151,
+ 45.49918399369665
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":129,
+ "ID_UEV":"01003535",
+ "CIVIQUE_DE":" 31",
+ "CIVIQUE_FI":" 31",
+ "NOM_RUE":"place Redpath (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-0420-9-000-0000",
+ "SUPERFICIE":102,
+ "SUPERFIC_1":171,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00042678897108,
+ "OBJECTID":83034,
+ "Join_Count":1,
+ "TARGET_FID":83034,
+ "feature_id":"66527640-51e2-4cd3-87cf-3c385b13a430",
+ "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.51,
+ "heightmax":77.55,
+ "elevmin":64.76,
+ "elevmax":67.3,
+ "bldgarea":668.67,
+ "comment":" ",
+ "OBJECTID_2":83034,
+ "Shape_Le_1":0.00042678897108,
+ "Shape_Ar_1":9.66741814688e-09,
+ "OBJECTID_3":83034,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83033,
+ "g_objectid":"945601",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948279210000000",
+ "g_sup_tota":"1837.1",
+ "g_geometry":"0.007557",
+ "g_geomet_1":"2.09091e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00042678897108,
+ "Shape_Area":9.66741814688e-09,
+ "Shape_Le_3":0.000426788905459,
+ "Shape_Ar_2":9.66741814688e-09,
+ "building_height":37.519999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":130,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56658513671653,
+ 45.51688031872202
+ ],
+ [
+ -73.56666715308849,
+ 45.51691766217067
+ ],
+ [
+ -73.56682807148016,
+ 45.51674623070428
+ ],
+ [
+ -73.56674472501089,
+ 45.51670988999972
+ ],
+ [
+ -73.56658513671653,
+ 45.51688031872202
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":130,
+ "ID_UEV":"01002938",
+ "CIVIQUE_DE":" 2099",
+ "CIVIQUE_FI":" 2103",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-58-8778-7-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":345,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000649648465547,
+ "OBJECTID":83035,
+ "Join_Count":1,
+ "TARGET_FID":83035,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":83035,
+ "Shape_Le_1":0.000649648465547,
+ "Shape_Ar_1":2.00367043533e-08,
+ "OBJECTID_3":83035,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83034,
+ "g_objectid":"943111",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161287",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994158877870000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.00068283",
+ "g_geomet_1":"2.14787e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000649648465547,
+ "Shape_Area":2.00367043533e-08,
+ "Shape_Le_3":0.000649649908708,
+ "Shape_Ar_2":2.00367043533e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":131,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57716722091236,
+ 45.499009857968865
+ ],
+ [
+ -73.57694217186558,
+ 45.49889574299444
+ ],
+ [
+ -73.57693917172723,
+ 45.49889864240872
+ ],
+ [
+ -73.57672927176033,
+ 45.49910794252782
+ ],
+ [
+ -73.57672557194942,
+ 45.49911164323804
+ ],
+ [
+ -73.57674227235982,
+ 45.49911984325646
+ ],
+ [
+ -73.57667567216639,
+ 45.49918684274889
+ ],
+ [
+ -73.5766805716729,
+ 45.49918934286418
+ ],
+ [
+ -73.57688953274759,
+ 45.49929205353574
+ ],
+ [
+ -73.57716722091236,
+ 45.499009857968865
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":131,
+ "ID_UEV":"01036956",
+ "CIVIQUE_DE":" 2011",
+ "CIVIQUE_FI":" 2025",
+ "NOM_RUE":"rue de la Montagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":8,
+ "NOMBRE_LOG":41,
+ "ANNEE_CONS":1946,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-79-8910-8-000-0000",
+ "SUPERFICIE":898,
+ "SUPERFIC_1":5715,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00130547782865,
+ "OBJECTID":83036,
+ "Join_Count":1,
+ "TARGET_FID":83036,
+ "feature_id":"272637a8-4def-44c7-8063-74b6907c7c73",
+ "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.01,
+ "heightmax":81.55,
+ "elevmin":43.91,
+ "elevmax":46.97,
+ "bldgarea":3374.75,
+ "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_2":83036,
+ "Shape_Le_1":0.00130547782865,
+ "Shape_Ar_1":9.4690375467e-08,
+ "OBJECTID_3":83036,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83035,
+ "g_objectid":"939713",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1338844",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"41",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983979891080000000",
+ "g_sup_tota":"898",
+ "g_geometry":"0.00136021",
+ "g_geomet_1":"1.03342e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00130547782865,
+ "Shape_Area":9.4690375467e-08,
+ "Shape_Le_3":0.00130547747521,
+ "Shape_Ar_2":9.4690375467e-08,
+ "building_height":39.769999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":132,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57688953274759,
+ 45.49929205353574
+ ],
+ [
+ -73.57719322211136,
+ 45.49944132660623
+ ],
+ [
+ -73.57746781301101,
+ 45.49916227686788
+ ],
+ [
+ -73.57741607321505,
+ 45.499136042744475
+ ],
+ [
+ -73.57716722091236,
+ 45.499009857968865
+ ],
+ [
+ -73.57688953274759,
+ 45.49929205353574
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":132,
+ "ID_UEV":"01036958",
+ "CIVIQUE_DE":" 2051",
+ "CIVIQUE_FI":" 2085",
+ "NOM_RUE":"rue de la Montagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":32,
+ "ANNEE_CONS":1943,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-79-6925-8-000-0000",
+ "SUPERFICIE":1214,
+ "SUPERFIC_1":3856,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00146282589532,
+ "OBJECTID":83037,
+ "Join_Count":1,
+ "TARGET_FID":83037,
+ "feature_id":"272637a8-4def-44c7-8063-74b6907c7c73",
+ "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.01,
+ "heightmax":81.55,
+ "elevmin":43.91,
+ "elevmax":46.97,
+ "bldgarea":3374.75,
+ "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_2":83037,
+ "Shape_Le_1":0.00146282589532,
+ "Shape_Ar_1":1.2644189826e-07,
+ "OBJECTID_3":83037,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83036,
+ "g_objectid":"938087",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338850",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983979533690000000",
+ "g_sup_tota":"329.7",
+ "g_geometry":"0.00102593",
+ "g_geomet_1":"3.82901e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00146282589532,
+ "Shape_Area":1.2644189826e-07,
+ "Shape_Le_3":0.00146282584526,
+ "Shape_Ar_2":1.2644189826e-07,
+ "building_height":39.769999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":133,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5572375375042,
+ 45.51913175077997
+ ],
+ [
+ -73.55742264136366,
+ 45.51921467816516
+ ],
+ [
+ -73.55747480743825,
+ 45.51915985369459
+ ],
+ [
+ -73.55728889239032,
+ 45.51907670327753
+ ],
+ [
+ -73.5572375375042,
+ 45.51913175077997
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":133,
+ "ID_UEV":"01040672",
+ "CIVIQUE_DE":" 1212",
+ "CIVIQUE_FI":" 1216",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-1937-9-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":296,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000557453846184,
+ "OBJECTID":83043,
+ "Join_Count":1,
+ "TARGET_FID":83043,
+ "feature_id":"436fd987-b39d-4f24-a78c-6652f18bc34a",
+ "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.47,
+ "heightmax":16.7,
+ "elevmin":21.78,
+ "elevmax":26.69,
+ "bldgarea":4869.88,
+ "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_2":83043,
+ "Shape_Le_1":0.000557453846184,
+ "Shape_Ar_1":1.44892900472e-08,
+ "OBJECTID_3":83043,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83042,
+ "g_objectid":"945104",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1566477",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004231122750000000",
+ "g_sup_tota":"275.5",
+ "g_geometry":"0.000733708",
+ "g_geomet_1":"3.14191e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000557453846184,
+ "Shape_Area":1.44892900472e-08,
+ "Shape_Le_3":0.000557453632068,
+ "Shape_Ar_2":1.44892900472e-08,
+ "building_height":7.114999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":134,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56332935978398,
+ 45.52833628224393
+ ],
+ [
+ -73.56352804880225,
+ 45.52842831616415
+ ],
+ [
+ -73.56355428112701,
+ 45.52835178116007
+ ],
+ [
+ -73.56336708184719,
+ 45.528265068528384
+ ],
+ [
+ -73.5633462697364,
+ 45.52829104904298
+ ],
+ [
+ -73.56331539151395,
+ 45.5283298116218
+ ],
+ [
+ -73.56332935978398,
+ 45.52833628224393
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":134,
+ "ID_UEV":"01035378",
+ "CIVIQUE_DE":" 1846",
+ "CIVIQUE_FI":" 1850",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-81-4856-3-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":365,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000604423274144,
+ "OBJECTID":83044,
+ "Join_Count":1,
+ "TARGET_FID":83044,
+ "feature_id":"c9885a36-f2ad-4a7c-94e6-44fee694c7f1",
+ "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":13.59,
+ "elevmin":40.02,
+ "elevmax":42.8,
+ "bldgarea":1129.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_2":83044,
+ "Shape_Le_1":0.000604423274144,
+ "Shape_Ar_1":1.7733092913e-08,
+ "OBJECTID_3":83044,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83043,
+ "g_objectid":"941596",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565526",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994381485630000000",
+ "g_sup_tota":"319.8",
+ "g_geometry":"0.00108629",
+ "g_geomet_1":"3.70969e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000604423274144,
+ "Shape_Area":1.7733092913e-08,
+ "Shape_Le_3":0.000604423141891,
+ "Shape_Ar_2":1.7733092913e-08,
+ "building_height":6.29
+ }
+ },
+ {
+ "type":"Feature",
+ "id":135,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5633981579205,
+ 45.52818781496598
+ ],
+ [
+ -73.56358145324332,
+ 45.52827250412306
+ ],
+ [
+ -73.56358867030274,
+ 45.52825144919532
+ ],
+ [
+ -73.5635969701459,
+ 45.52822754881262
+ ],
+ [
+ -73.56359647012285,
+ 45.52822734916313
+ ],
+ [
+ -73.56358126978162,
+ 45.52822314842985
+ ],
+ [
+ -73.56359894685576,
+ 45.528191968035195
+ ],
+ [
+ -73.56337764438463,
+ 45.528089716917194
+ ],
+ [
+ -73.56332887055278,
+ 45.52814284886368
+ ],
+ [
+ -73.5633347701054,
+ 45.52814544880371
+ ],
+ [
+ -73.56340657017891,
+ 45.52817884872518
+ ],
+ [
+ -73.5633981579205,
+ 45.52818781496598
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":135,
+ "ID_UEV":"01035380",
+ "CIVIQUE_DE":" 1826",
+ "CIVIQUE_FI":" 1834",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-81-4142-8-000-0000",
+ "SUPERFICIE":253,
+ "SUPERFIC_1":518,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000715460808333,
+ "OBJECTID":83045,
+ "Join_Count":1,
+ "TARGET_FID":83045,
+ "feature_id":"c9885a36-f2ad-4a7c-94e6-44fee694c7f1",
+ "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":13.59,
+ "elevmin":40.02,
+ "elevmax":42.8,
+ "bldgarea":1129.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_2":83045,
+ "Shape_Le_1":0.000715460808333,
+ "Shape_Ar_1":2.030724765e-08,
+ "OBJECTID_3":83045,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83044,
+ "g_objectid":"941593",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565523",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994381383410000000",
+ "g_sup_tota":"231.5",
+ "g_geometry":"0.000827161",
+ "g_geomet_1":"2.66676e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000715460808333,
+ "Shape_Area":2.030724765e-08,
+ "Shape_Le_3":0.000715460722448,
+ "Shape_Ar_2":2.030724765e-08,
+ "building_height":6.29
+ }
+ },
+ {
+ "type":"Feature",
+ "id":136,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56337764438463,
+ 45.528089716917194
+ ],
+ [
+ -73.56359894685576,
+ 45.528191968035195
+ ],
+ [
+ -73.56361897026112,
+ 45.528156648960476
+ ],
+ [
+ -73.56362066997978,
+ 45.52815354899738
+ ],
+ [
+ -73.56360746973078,
+ 45.528150248485474
+ ],
+ [
+ -73.56362543638663,
+ 45.52811558501653
+ ],
+ [
+ -73.56343476752235,
+ 45.52802748922754
+ ],
+ [
+ -73.56337764438463,
+ 45.528089716917194
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":136,
+ "ID_UEV":"01035381",
+ "CIVIQUE_DE":" 1816",
+ "CIVIQUE_FI":" 1816",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-81-3834-1-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":425,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000635076285113,
+ "OBJECTID":83046,
+ "Join_Count":1,
+ "TARGET_FID":83046,
+ "feature_id":"c9885a36-f2ad-4a7c-94e6-44fee694c7f1",
+ "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":13.59,
+ "elevmin":40.02,
+ "elevmax":42.8,
+ "bldgarea":1129.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_2":83046,
+ "Shape_Le_1":0.000635076285113,
+ "Shape_Ar_1":1.83181677668e-08,
+ "OBJECTID_3":83046,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83045,
+ "g_objectid":"941593",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565523",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994381383410000000",
+ "g_sup_tota":"231.5",
+ "g_geometry":"0.000827161",
+ "g_geomet_1":"2.66676e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000635076285113,
+ "Shape_Area":1.83181677668e-08,
+ "Shape_Le_3":0.000635075800662,
+ "Shape_Ar_2":1.83181677668e-08,
+ "building_height":6.29
+ }
+ },
+ {
+ "type":"Feature",
+ "id":137,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56469280395159,
+ 45.519611461749854
+ ],
+ [
+ -73.56471957047364,
+ 45.51962444706088
+ ],
+ [
+ -73.5647951701828,
+ 45.51966104677019
+ ],
+ [
+ -73.56492147007162,
+ 45.519722146709995
+ ],
+ [
+ -73.56495274849239,
+ 45.51973728949461
+ ],
+ [
+ -73.56502731488052,
+ 45.51965500962129
+ ],
+ [
+ -73.5648764697951,
+ 45.51958554688578
+ ],
+ [
+ -73.56476387017831,
+ 45.5195336470105
+ ],
+ [
+ -73.56478267050568,
+ 45.519513446438694
+ ],
+ [
+ -73.56478246995687,
+ 45.519513446438694
+ ],
+ [
+ -73.56478153646059,
+ 45.519513022858014
+ ],
+ [
+ -73.56469280395159,
+ 45.519611461749854
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":137,
+ "ID_UEV":"01003810",
+ "CIVIQUE_DE":" 2079",
+ "CIVIQUE_FI":" 2099",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-3799-9-000-0000",
+ "SUPERFICIE":815,
+ "SUPERFIC_1":705,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000851242378173,
+ "OBJECTID":83055,
+ "Join_Count":1,
+ "TARGET_FID":83055,
+ "feature_id":"e6e21b8e-9d7f-4e54-b58d-caaed1284e8d",
+ "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.7,
+ "heightmax":22.47,
+ "elevmin":25.92,
+ "elevmax":31.42,
+ "bldgarea":1973.2,
+ "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_2":83055,
+ "Shape_Le_1":0.000851242378173,
+ "Shape_Ar_1":3.00096954048e-08,
+ "OBJECTID_3":83055,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83054,
+ "g_objectid":"943227",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161552",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271379990000000",
+ "g_sup_tota":"815.4",
+ "g_geometry":"0.00124854",
+ "g_geomet_1":"9.51768e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000851242378173,
+ "Shape_Area":3.00096954048e-08,
+ "Shape_Le_3":0.000851242634576,
+ "Shape_Ar_2":3.00096954048e-08,
+ "building_height":10.385
+ }
+ },
+ {
+ "type":"Feature",
+ "id":138,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56002813830978,
+ 45.51716861169237
+ ],
+ [
+ -73.56009996176567,
+ 45.51720161681146
+ ],
+ [
+ -73.56016897573949,
+ 45.51712552787111
+ ],
+ [
+ -73.56009660639512,
+ 45.51709303716423
+ ],
+ [
+ -73.56002813830978,
+ 45.51716861169237
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":138,
+ "ID_UEV":"01003677",
+ "CIVIQUE_DE":" 1576",
+ "CIVIQUE_FI":" 1578",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-19-0211-7-000-0000",
+ "SUPERFICIE":145,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000363076235804,
+ "OBJECTID":83059,
+ "Join_Count":1,
+ "TARGET_FID":83059,
+ "feature_id":"b1ff6390-35ed-470e-b971-30b44ef50fd5",
+ "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":40.83,
+ "elevmin":25.14,
+ "elevmax":28.12,
+ "bldgarea":1941.5,
+ "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_2":83059,
+ "Shape_Le_1":0.000363076235804,
+ "Shape_Ar_1":7.71838997354e-09,
+ "OBJECTID_3":83059,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83058,
+ "g_objectid":"943398",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161972",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109961510000000",
+ "g_sup_tota":"143.8",
+ "g_geometry":"0.000597588",
+ "g_geomet_1":"1.65594e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000363076235804,
+ "Shape_Area":7.71838997354e-09,
+ "Shape_Le_3":0.000363074718755,
+ "Shape_Ar_2":7.71838997354e-09,
+ "building_height":20.16
+ }
+ },
+ {
+ "type":"Feature",
+ "id":139,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55877845208575,
+ 45.51742702109045
+ ],
+ [
+ -73.55872106814462,
+ 45.517401246520606
+ ],
+ [
+ -73.55865573869323,
+ 45.51747326243141
+ ],
+ [
+ -73.55871168102111,
+ 45.517498929981926
+ ],
+ [
+ -73.55877845208575,
+ 45.51742702109045
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":139,
+ "ID_UEV":"01040676",
+ "CIVIQUE_DE":" 1472",
+ "CIVIQUE_FI":" 1478",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-29-1248-7-000-0000",
+ "SUPERFICIE":76,
+ "SUPERFIC_1":176,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000319817112293,
+ "OBJECTID":83071,
+ "Join_Count":1,
+ "TARGET_FID":83071,
+ "feature_id":"c42ee2e8-8c36-4bfa-af83-3c636f09436b",
+ "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":66.24,
+ "elevmin":23.23,
+ "elevmax":27.73,
+ "bldgarea":6512.52,
+ "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_2":83071,
+ "Shape_Le_1":0.000319817112293,
+ "Shape_Ar_1":5.77645016154e-09,
+ "OBJECTID_3":83071,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83070,
+ "g_objectid":"943432",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162068",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004129124870000000",
+ "g_sup_tota":"75.8",
+ "g_geometry":"0.000401731",
+ "g_geomet_1":"8.72585e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000319817112293,
+ "Shape_Area":5.77645016154e-09,
+ "Shape_Le_3":0.000319818021416,
+ "Shape_Ar_2":5.77645016154e-09,
+ "building_height":32.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":140,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5749732042718,
+ 45.497338653206576
+ ],
+ [
+ -73.57526196668826,
+ 45.49747567571216
+ ],
+ [
+ -73.5753554413224,
+ 45.49738006159087
+ ],
+ [
+ -73.57535986149026,
+ 45.49737545886063
+ ],
+ [
+ -73.57507163686839,
+ 45.49723760268351
+ ],
+ [
+ -73.5749732042718,
+ 45.497338653206576
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":140,
+ "ID_UEV":"01002592",
+ "CIVIQUE_DE":" 1334",
+ "CIVIQUE_FI":" 1340",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-97-2417-2-000-0000",
+ "SUPERFICIE":369,
+ "SUPERFIC_1":991,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000920282687829,
+ "OBJECTID":83076,
+ "Join_Count":1,
+ "TARGET_FID":83076,
+ "feature_id":"c8772280-0cbc-4d00-bf77-6f44631016cd",
+ "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.71,
+ "heightmax":59.8,
+ "elevmin":38.13,
+ "elevmax":40.98,
+ "bldgarea":5766.47,
+ "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_2":83076,
+ "Shape_Le_1":0.000920282687829,
+ "Shape_Ar_1":4.25274764695e-08,
+ "OBJECTID_3":83076,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83075,
+ "g_objectid":"938233",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1341104",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983996259240000000",
+ "g_sup_tota":"1426.1",
+ "g_geometry":"0.00177569",
+ "g_geomet_1":"1.63942e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000920282687829,
+ "Shape_Area":4.25274764695e-08,
+ "Shape_Le_3":0.00092028313085,
+ "Shape_Ar_2":4.25274764695e-08,
+ "building_height":29.044999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":141,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56198950033702,
+ 45.51486021207942
+ ],
+ [
+ -73.56200196943719,
+ 45.514866446179845
+ ],
+ [
+ -73.56206781240147,
+ 45.51489945129893
+ ],
+ [
+ -73.56209633889677,
+ 45.51486644168323
+ ],
+ [
+ -73.56209848647781,
+ 45.51486742014562
+ ],
+ [
+ -73.56213314455083,
+ 45.5148299184163
+ ],
+ [
+ -73.56213400340337,
+ 45.51483031052071
+ ],
+ [
+ -73.56218260726335,
+ 45.51477771816745
+ ],
+ [
+ -73.56227062211336,
+ 45.514682477264806
+ ],
+ [
+ -73.56223046918265,
+ 45.51466434603304
+ ],
+ [
+ -73.5621947687954,
+ 45.51464824547045
+ ],
+ [
+ -73.56210416929382,
+ 45.51474734626331
+ ],
+ [
+ -73.56209685780559,
+ 45.51474404305344
+ ],
+ [
+ -73.56198950033702,
+ 45.51486021207942
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":141,
+ "ID_UEV":"01002863",
+ "CIVIQUE_DE":" 1567",
+ "CIVIQUE_FI":" 1567",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1887,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-96-4653-6-000-0000",
+ "SUPERFICIE":292,
+ "SUPERFIC_1":344,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000770577188915,
+ "OBJECTID":83084,
+ "Join_Count":1,
+ "TARGET_FID":83084,
+ "feature_id":"c8f2a3f1-9997-466b-9b02-4a713e354e52",
+ "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":20.81,
+ "elevmin":26.07,
+ "elevmax":28.29,
+ "bldgarea":3514.43,
+ "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_2":83084,
+ "Shape_Le_1":0.000770577188915,
+ "Shape_Ar_1":2.41578981937e-08,
+ "OBJECTID_3":83084,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83083,
+ "g_objectid":"938530",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"2162521",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6821",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994196594550000000",
+ "g_sup_tota":"871",
+ "g_geometry":"0.00132548",
+ "g_geomet_1":"1.00752e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000770577188915,
+ "Shape_Area":2.41578981937e-08,
+ "Shape_Le_3":0.000770579007332,
+ "Shape_Ar_2":2.41578981937e-08,
+ "building_height":10.149999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":142,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56206781240147,
+ 45.51489945129893
+ ],
+ [
+ -73.5620817689803,
+ 45.51490644622581
+ ],
+ [
+ -73.56218956891531,
+ 45.514800246184706
+ ],
+ [
+ -73.56225044402461,
+ 45.514830770973596
+ ],
+ [
+ -73.56235308095177,
+ 45.51471971009684
+ ],
+ [
+ -73.56227062211336,
+ 45.514682477264806
+ ],
+ [
+ -73.56218260726335,
+ 45.51477771816745
+ ],
+ [
+ -73.56213400340337,
+ 45.51483031052071
+ ],
+ [
+ -73.56213314455083,
+ 45.5148299184163
+ ],
+ [
+ -73.56209848647781,
+ 45.51486742014562
+ ],
+ [
+ -73.56209633889677,
+ 45.51486644168323
+ ],
+ [
+ -73.56206781240147,
+ 45.51489945129893
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":142,
+ "ID_UEV":"01002864",
+ "CIVIQUE_DE":" 1575",
+ "CIVIQUE_FI":" 1577",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-96-4057-0-000-0000",
+ "SUPERFICIE":288,
+ "SUPERFIC_1":394,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000776026225011,
+ "OBJECTID":83085,
+ "Join_Count":1,
+ "TARGET_FID":83085,
+ "feature_id":"c8f2a3f1-9997-466b-9b02-4a713e354e52",
+ "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":20.81,
+ "elevmin":26.07,
+ "elevmax":28.29,
+ "bldgarea":3514.43,
+ "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_2":83085,
+ "Shape_Le_1":0.000776026225011,
+ "Shape_Ar_1":1.54808970347e-08,
+ "OBJECTID_3":83085,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83084,
+ "g_objectid":"943325",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161756",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994196336170000000",
+ "g_sup_tota":"290.3",
+ "g_geometry":"0.000967295",
+ "g_geomet_1":"3.37575e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000776026225011,
+ "Shape_Area":1.54808970347e-08,
+ "Shape_Le_3":0.000776026052337,
+ "Shape_Ar_2":1.54808970347e-08,
+ "building_height":10.149999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":143,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57758668000312,
+ 45.499639042558066
+ ],
+ [
+ -73.57766669448421,
+ 45.499677541635535
+ ],
+ [
+ -73.57767557349077,
+ 45.499668842493385
+ ],
+ [
+ -73.57769162818794,
+ 45.499676993948405
+ ],
+ [
+ -73.5779388437245,
+ 45.499425874454836
+ ],
+ [
+ -73.57790337356369,
+ 45.49940794287256
+ ],
+ [
+ -73.5778734729043,
+ 45.499392742531334
+ ],
+ [
+ -73.57784427281678,
+ 45.49937794328775
+ ],
+ [
+ -73.57784657328257,
+ 45.49937564282195
+ ],
+ [
+ -73.57784619017139,
+ 45.499375440474495
+ ],
+ [
+ -73.57758668000312,
+ 45.499639042558066
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":143,
+ "ID_UEV":"01036967",
+ "CIVIQUE_DE":" 2175",
+ "CIVIQUE_FI":" 2179",
+ "NOM_RUE":"rue de la Montagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-79-2257-0-000-0000",
+ "SUPERFICIE":363,
+ "SUPERFIC_1":1096,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00095123425736,
+ "OBJECTID":83086,
+ "Join_Count":1,
+ "TARGET_FID":83086,
+ "feature_id":"272637a8-4def-44c7-8063-74b6907c7c73",
+ "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.01,
+ "heightmax":81.55,
+ "elevmin":43.91,
+ "elevmax":46.97,
+ "bldgarea":3374.75,
+ "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_2":83086,
+ "Shape_Le_1":0.00095123425736,
+ "Shape_Ar_1":3.68549996245e-08,
+ "OBJECTID_3":83086,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83085,
+ "g_objectid":"939729",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1338825",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983979315140000000",
+ "g_sup_tota":"545.3",
+ "g_geometry":"0.00115281",
+ "g_geomet_1":"6.27855e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00095123425736,
+ "Shape_Area":3.68549996245e-08,
+ "Shape_Le_3":0.000951235429212,
+ "Shape_Ar_2":3.68549996245e-08,
+ "building_height":39.769999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":144,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5628105004261,
+ 45.530166933207695
+ ],
+ [
+ -73.56280677003825,
+ 45.53018064876822
+ ],
+ [
+ -73.56278557031966,
+ 45.53025824856961
+ ],
+ [
+ -73.56262137030184,
+ 45.5302360488049
+ ],
+ [
+ -73.56258637048646,
+ 45.53032904859701
+ ],
+ [
+ -73.5625675054079,
+ 45.53037909676819
+ ],
+ [
+ -73.56262295310864,
+ 45.53040460513871
+ ],
+ [
+ -73.56265637011724,
+ 45.53041084913168
+ ],
+ [
+ -73.56269456972046,
+ 45.53041794927923
+ ],
+ [
+ -73.56269027006176,
+ 45.53042984910854
+ ],
+ [
+ -73.56273977054582,
+ 45.53043844842595
+ ],
+ [
+ -73.56276297035664,
+ 45.53044234878566
+ ],
+ [
+ -73.5627648697248,
+ 45.53043674870728
+ ],
+ [
+ -73.56285737039317,
+ 45.530452148698
+ ],
+ [
+ -73.56284167002889,
+ 45.530498848693206
+ ],
+ [
+ -73.56291557001938,
+ 45.530510148674715
+ ],
+ [
+ -73.56293137020842,
+ 45.5304587488225
+ ],
+ [
+ -73.56296677022212,
+ 45.530343448541615
+ ],
+ [
+ -73.5629842701298,
+ 45.53028674898457
+ ],
+ [
+ -73.56300727029114,
+ 45.53021164929847
+ ],
+ [
+ -73.56300737011588,
+ 45.530211448749654
+ ],
+ [
+ -73.5629747696917,
+ 45.530206748892645
+ ],
+ [
+ -73.56297843442906,
+ 45.530194193457554
+ ],
+ [
+ -73.5628105004261,
+ 45.530166933207695
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56265362898364,
+ 45.530141468004636
+ ],
+ [
+ -73.56265346980364,
+ 45.53014204896668
+ ],
+ [
+ -73.56267554995851,
+ 45.53014502662197
+ ],
+ [
+ -73.56265362898364,
+ 45.530141468004636
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":144,
+ "ID_UEV":"01035355",
+ "CIVIQUE_DE":" 2022",
+ "CIVIQUE_FI":" 2022",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1906,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Amphith\u00c3\u00a9\u00c3\u00a2tre et auditorium",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-83-9580-0-000-0000",
+ "SUPERFICIE":989,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0014309527556,
+ "OBJECTID":83098,
+ "Join_Count":1,
+ "TARGET_FID":83098,
+ "feature_id":"1da5624f-2b06-4146-9a85-edaab86a8d20",
+ "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":19.06,
+ "elevmin":38.73,
+ "elevmax":42.24,
+ "bldgarea":1400.73,
+ "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_2":83098,
+ "Shape_Le_1":0.0014309527556,
+ "Shape_Ar_1":8.71018295884e-08,
+ "OBJECTID_3":83098,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83097,
+ "g_objectid":"943525",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316915",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994383905530000000",
+ "g_sup_tota":"445.9",
+ "g_geometry":"0.00104343",
+ "g_geomet_1":"5.21048e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0014309527556,
+ "Shape_Area":8.71018295884e-08,
+ "Shape_Le_3":0.00143095302899,
+ "Shape_Ar_2":8.71018295884e-08,
+ "building_height":9.024999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":145,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56276124905425,
+ 45.528949199895955
+ ],
+ [
+ -73.56282124732455,
+ 45.52897455178443
+ ],
+ [
+ -73.56291754403128,
+ 45.528868883242666
+ ],
+ [
+ -73.56292617032834,
+ 45.52884784899933
+ ],
+ [
+ -73.56292467025916,
+ 45.52884744880102
+ ],
+ [
+ -73.56287233780999,
+ 45.528830728605534
+ ],
+ [
+ -73.56276124905425,
+ 45.528949199895955
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":145,
+ "ID_UEV":"01034708",
+ "CIVIQUE_DE":" 2368",
+ "CIVIQUE_FI":" 2372",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-82-8920-1-000-0000",
+ "SUPERFICIE":125,
+ "SUPERFIC_1":229,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000449731480414,
+ "OBJECTID":83103,
+ "Join_Count":1,
+ "TARGET_FID":83103,
+ "feature_id":"a33a95b4-7393-4b8b-be81-13122e912340",
+ "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.93,
+ "heightmax":40.79,
+ "elevmin":29.13,
+ "elevmax":38.3,
+ "bldgarea":2129.79,
+ "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_2":83103,
+ "Shape_Le_1":0.000449731480414,
+ "Shape_Ar_1":9.82558607489e-09,
+ "OBJECTID_3":83103,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83102,
+ "g_objectid":"944402",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"5254927",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994382951740000000",
+ "g_sup_tota":"192.5",
+ "g_geometry":"0.000673711",
+ "g_geomet_1":"2.25302e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000449731480414,
+ "Shape_Area":9.82558607489e-09,
+ "Shape_Le_3":0.000449732137598,
+ "Shape_Ar_2":9.82558607489e-09,
+ "building_height":19.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":146,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56282124732455,
+ 45.52897455178443
+ ],
+ [
+ -73.56282336972458,
+ 45.52897544840851
+ ],
+ [
+ -73.56285196996429,
+ 45.528987548786645
+ ],
+ [
+ -73.56284527001505,
+ 45.52899534860675
+ ],
+ [
+ -73.56284677008422,
+ 45.52899574880506
+ ],
+ [
+ -73.562927870047,
+ 45.5290191491647
+ ],
+ [
+ -73.56292817042058,
+ 45.52901924898944
+ ],
+ [
+ -73.56296380695598,
+ 45.528932031838096
+ ],
+ [
+ -73.56297652696699,
+ 45.528888073875805
+ ],
+ [
+ -73.56291477052208,
+ 45.528875648842416
+ ],
+ [
+ -73.56291754403128,
+ 45.528868883242666
+ ],
+ [
+ -73.56282124732455,
+ 45.52897455178443
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":146,
+ "ID_UEV":"01034710",
+ "CIVIQUE_DE":" 2374",
+ "CIVIQUE_FI":" 2378",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-82-8628-0-000-0000",
+ "SUPERFICIE":160,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000483168984392,
+ "OBJECTID":83105,
+ "Join_Count":1,
+ "TARGET_FID":83105,
+ "feature_id":"a33a95b4-7393-4b8b-be81-13122e912340",
+ "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.93,
+ "heightmax":40.79,
+ "elevmin":29.13,
+ "elevmax":38.3,
+ "bldgarea":2129.79,
+ "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_2":83105,
+ "Shape_Le_1":0.000483168984392,
+ "Shape_Ar_1":1.25459760514e-08,
+ "OBJECTID_3":83105,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83104,
+ "g_objectid":"942838",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884674",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994382862800000000",
+ "g_sup_tota":"159.7",
+ "g_geometry":"0.000626109",
+ "g_geomet_1":"1.83991e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000483168984392,
+ "Shape_Area":1.25459760514e-08,
+ "Shape_Le_3":0.000483167265805,
+ "Shape_Ar_2":1.25459760514e-08,
+ "building_height":19.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":147,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57268045915771,
+ 45.50042254361579
+ ],
+ [
+ -73.57281889539755,
+ 45.50048996578958
+ ],
+ [
+ -73.57281998717451,
+ 45.5004888569255
+ ],
+ [
+ -73.57300315839089,
+ 45.50057870099655
+ ],
+ [
+ -73.57305891905571,
+ 45.50052228742392
+ ],
+ [
+ -73.57273685024728,
+ 45.50036439165365
+ ],
+ [
+ -73.57268045915771,
+ 45.50042254361579
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":147,
+ "ID_UEV":"01039249",
+ "CIVIQUE_DE":" 1021",
+ "CIVIQUE_FI":" 1021",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-10-0663-2-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":716,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000878571786079,
+ "OBJECTID":83107,
+ "Join_Count":1,
+ "TARGET_FID":83107,
+ "feature_id":"1a3d212c-89d1-4b27-b9af-59e4618c303d",
+ "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":32.05,
+ "elevmin":36.15,
+ "elevmax":37.93,
+ "bldgarea":2404.56,
+ "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_2":83107,
+ "Shape_Le_1":0.000878571786079,
+ "Shape_Ar_1":2.71913871088e-08,
+ "OBJECTID_3":83107,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83106,
+ "g_objectid":"945020",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340207",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"19",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994000954790000000",
+ "g_sup_tota":"966.6",
+ "g_geometry":"0.00137771",
+ "g_geomet_1":"1.1194e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000878571786079,
+ "Shape_Area":2.71913871088e-08,
+ "Shape_Le_3":0.000878571983715,
+ "Shape_Ar_2":2.71913871088e-08,
+ "building_height":15.764999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":148,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57262539007154,
+ 45.500479333105034
+ ],
+ [
+ -73.57279149485345,
+ 45.500560766716305
+ ],
+ [
+ -73.57294601007216,
+ 45.500636517511566
+ ],
+ [
+ -73.57300315839089,
+ 45.50057870099655
+ ],
+ [
+ -73.57281998717451,
+ 45.5004888569255
+ ],
+ [
+ -73.57281889539755,
+ 45.50048996578958
+ ],
+ [
+ -73.57268045915771,
+ 45.50042254361579
+ ],
+ [
+ -73.57262539007154,
+ 45.500479333105034
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":148,
+ "ID_UEV":"01039252",
+ "CIVIQUE_DE":" 1015",
+ "CIVIQUE_FI":" 1017",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-10-1069-1-000-0000",
+ "SUPERFICIE":244,
+ "SUPERFIC_1":726,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000877032515667,
+ "OBJECTID":83108,
+ "Join_Count":1,
+ "TARGET_FID":83108,
+ "feature_id":"1a3d212c-89d1-4b27-b9af-59e4618c303d",
+ "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":32.05,
+ "elevmin":36.15,
+ "elevmax":37.93,
+ "bldgarea":2404.56,
+ "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_2":83108,
+ "Shape_Le_1":0.000877032515667,
+ "Shape_Ar_1":2.73036988468e-08,
+ "OBJECTID_3":83108,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83107,
+ "g_objectid":"938127",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340210",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994010147680000000",
+ "g_sup_tota":"230.7",
+ "g_geometry":"0.000885859",
+ "g_geomet_1":"2.65583e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000877032515667,
+ "Shape_Area":2.73036988468e-08,
+ "Shape_Le_3":0.000877032809424,
+ "Shape_Ar_2":2.73036988468e-08,
+ "building_height":15.764999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":149,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56110178584059,
+ 45.52858548078561
+ ],
+ [
+ -73.56116799392962,
+ 45.52861688151417
+ ],
+ [
+ -73.56118786894685,
+ 45.52859394880199
+ ],
+ [
+ -73.56120516920504,
+ 45.528575148474616
+ ],
+ [
+ -73.56113636926987,
+ 45.528545549088115
+ ],
+ [
+ -73.56110178584059,
+ 45.52858548078561
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56133769420107,
+ 45.52845540554283
+ ],
+ [
+ -73.56128106928776,
+ 45.52842934858587
+ ],
+ [
+ -73.56125496916334,
+ 45.528417348931804
+ ],
+ [
+ -73.56115336915451,
+ 45.528526648935994
+ ],
+ [
+ -73.56123464178714,
+ 45.5285645130921
+ ],
+ [
+ -73.56133769420107,
+ 45.52845540554283
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":149,
+ "ID_UEV":"01034906",
+ "CIVIQUE_DE":" 2221",
+ "CIVIQUE_FI":" 2231",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-1778-8-000-0000",
+ "SUPERFICIE":208,
+ "SUPERFIC_1":324,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000736923288683,
+ "OBJECTID":83112,
+ "Join_Count":2,
+ "TARGET_FID":83112,
+ "feature_id":"bbf6c021-941f-4914-a315-29f80f675e18",
+ "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":41.31,
+ "elevmin":28.77,
+ "elevmax":38.65,
+ "bldgarea":2241.19,
+ "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_2":83112,
+ "Shape_Le_1":0.000736923288683,
+ "Shape_Ar_1":1.66783568401e-08,
+ "OBJECTID_3":83112,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83111,
+ "g_objectid":"942824",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884571",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301177880000000",
+ "g_sup_tota":"208",
+ "g_geometry":"0.000712271",
+ "g_geomet_1":"2.42083e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000736923288683,
+ "Shape_Area":1.66783568401e-08,
+ "Shape_Le_3":0.00073692350993,
+ "Shape_Ar_2":1.66783568401e-08,
+ "building_height":20.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":150,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56009660639512,
+ 45.51709303716423
+ ],
+ [
+ -73.56003336786748,
+ 45.51706464646656
+ ],
+ [
+ -73.56003026790438,
+ 45.51706804680321
+ ],
+ [
+ -73.55996406790925,
+ 45.517139147204176
+ ],
+ [
+ -73.55996836846728,
+ 45.51714114729641
+ ],
+ [
+ -73.56002813830978,
+ 45.51716861169237
+ ],
+ [
+ -73.56009660639512,
+ 45.51709303716423
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":150,
+ "ID_UEV":"01003675",
+ "CIVIQUE_DE":" 1566",
+ "CIVIQUE_FI":" 1572",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-19-0607-6-000-0000",
+ "SUPERFICIE":148,
+ "SUPERFIC_1":189,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000343565328967,
+ "OBJECTID":83114,
+ "Join_Count":1,
+ "TARGET_FID":83114,
+ "feature_id":"b1ff6390-35ed-470e-b971-30b44ef50fd5",
+ "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":40.83,
+ "elevmin":25.14,
+ "elevmax":28.12,
+ "bldgarea":1941.5,
+ "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_2":83114,
+ "Shape_Le_1":0.000343565328967,
+ "Shape_Ar_1":6.76746418433e-09,
+ "OBJECTID_3":83114,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83113,
+ "g_objectid":"943399",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161973",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004119021170000000",
+ "g_sup_tota":"145.2",
+ "g_geometry":"0.000599606",
+ "g_geomet_1":"1.66505e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000343565328967,
+ "Shape_Area":6.76746418433e-09,
+ "Shape_Le_3":0.000343566467252,
+ "Shape_Ar_2":6.76746418433e-09,
+ "building_height":20.16
+ }
+ },
+ {
+ "type":"Feature",
+ "id":151,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56194823584426,
+ 45.51671200520517
+ ],
+ [
+ -73.56230196888261,
+ 45.5168748472467
+ ],
+ [
+ -73.5623036695006,
+ 45.516873046803966
+ ],
+ [
+ -73.56240806909895,
+ 45.51676264692891
+ ],
+ [
+ -73.56240336924195,
+ 45.51676044718718
+ ],
+ [
+ -73.56234116943126,
+ 45.516731747122726
+ ],
+ [
+ -73.56253316929218,
+ 45.51652594716502
+ ],
+ [
+ -73.5623902688177,
+ 45.516460046644134
+ ],
+ [
+ -73.56238416871626,
+ 45.5164572470546
+ ],
+ [
+ -73.56219626886457,
+ 45.516662346440434
+ ],
+ [
+ -73.56206886910488,
+ 45.51660464683728
+ ],
+ [
+ -73.56226116933934,
+ 45.51639494651986
+ ],
+ [
+ -73.56226346890581,
+ 45.51639234657983
+ ],
+ [
+ -73.56225310152126,
+ 45.51638784007705
+ ],
+ [
+ -73.56194823584426,
+ 45.51671200520517
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":151,
+ "ID_UEV":"01003024",
+ "CIVIQUE_DE":" 1640",
+ "CIVIQUE_FI":" 1640",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1979,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Couvent",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-98-3459-5-000-0000",
+ "SUPERFICIE":1554,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00222537687595,
+ "OBJECTID":83118,
+ "Join_Count":1,
+ "TARGET_FID":83118,
+ "feature_id":"32690f96-1f27-4535-b687-9ac7c59a9e46",
+ "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.53,
+ "heightmax":49.54,
+ "elevmin":22.62,
+ "elevmax":28.17,
+ "bldgarea":3499.06,
+ "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_2":83118,
+ "Shape_Le_1":0.00222537687595,
+ "Shape_Ar_1":1.04461362373e-07,
+ "OBJECTID_3":83118,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83117,
+ "g_objectid":"943331",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161766",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"13",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994198534620000000",
+ "g_sup_tota":"572.4",
+ "g_geometry":"0.00126292",
+ "g_geomet_1":"6.62457e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00222537687595,
+ "Shape_Area":1.04461362373e-07,
+ "Shape_Le_3":0.00222537628701,
+ "Shape_Ar_2":1.04461362373e-07,
+ "building_height":24.505
+ }
+ },
+ {
+ "type":"Feature",
+ "id":152,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55748641228995,
+ 45.517756020074565
+ ],
+ [
+ -73.55742286709349,
+ 45.51772764646401
+ ],
+ [
+ -73.55742086700126,
+ 45.51772984710505
+ ],
+ [
+ -73.5572834335055,
+ 45.51787561371889
+ ],
+ [
+ -73.55735008585962,
+ 45.51790598382439
+ ],
+ [
+ -73.55748641228995,
+ 45.517756020074565
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":152,
+ "ID_UEV":"01040126",
+ "CIVIQUE_DE":" 1417",
+ "CIVIQUE_FI":" 1419",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-39-1689-1-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000548817902512,
+ "OBJECTID":83120,
+ "Join_Count":1,
+ "TARGET_FID":83120,
+ "feature_id":"e0e8c76b-c461-4c41-aedb-18835943c43b",
+ "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,
+ "heightmax":39.88,
+ "elevmin":23.88,
+ "elevmax":26.77,
+ "bldgarea":1829.03,
+ "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_2":83120,
+ "Shape_Le_1":0.000548817902512,
+ "Shape_Ar_1":1.37418371025e-08,
+ "OBJECTID_3":83120,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83119,
+ "g_objectid":"941731",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566414",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004139119340000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000563379",
+ "g_geomet_1":"1.48297e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000548817902512,
+ "Shape_Area":1.37418371025e-08,
+ "Shape_Le_3":0.000548817800742,
+ "Shape_Ar_2":1.37418371025e-08,
+ "building_height":19.94
+ }
+ },
+ {
+ "type":"Feature",
+ "id":153,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56242233324593,
+ 45.51489769492298
+ ],
+ [
+ -73.56247276902492,
+ 45.51492014559854
+ ],
+ [
+ -73.56238956914514,
+ 45.51501244571809
+ ],
+ [
+ -73.56242744589176,
+ 45.51502936196578
+ ],
+ [
+ -73.56260620953078,
+ 45.5148359231896
+ ],
+ [
+ -73.56258066878468,
+ 45.51482404584333
+ ],
+ [
+ -73.56251751299467,
+ 45.514794702763616
+ ],
+ [
+ -73.56242233324593,
+ 45.51489769492298
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":153,
+ "ID_UEV":"01002870",
+ "CIVIQUE_DE":" 1593",
+ "CIVIQUE_FI":" 1597",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-96-2070-5-000-0000",
+ "SUPERFICIE":314,
+ "SUPERFIC_1":490,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000722388877286,
+ "OBJECTID":83122,
+ "Join_Count":1,
+ "TARGET_FID":83122,
+ "feature_id":"c8f2a3f1-9997-466b-9b02-4a713e354e52",
+ "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":20.81,
+ "elevmin":26.07,
+ "elevmax":28.29,
+ "bldgarea":3514.43,
+ "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_2":83122,
+ "Shape_Le_1":0.000722388877286,
+ "Shape_Ar_1":1.79813583022e-08,
+ "OBJECTID_3":83122,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83121,
+ "g_objectid":"938337",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161608",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994196207050000000",
+ "g_sup_tota":"313.5",
+ "g_geometry":"0.000983257",
+ "g_geomet_1":"3.66527e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000722388877286,
+ "Shape_Area":1.79813583022e-08,
+ "Shape_Le_3":0.000722389302962,
+ "Shape_Ar_2":1.79813583022e-08,
+ "building_height":10.149999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":154,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57251446139512,
+ 45.5005937268693
+ ],
+ [
+ -73.57283435024691,
+ 45.500749484951065
+ ],
+ [
+ -73.57289249501447,
+ 45.50069065849739
+ ],
+ [
+ -73.57273797170188,
+ 45.50061523145806
+ ],
+ [
+ -73.57257211423352,
+ 45.50053427268883
+ ],
+ [
+ -73.57251446139512,
+ 45.5005937268693
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":154,
+ "ID_UEV":"01039255",
+ "CIVIQUE_DE":" 1007",
+ "CIVIQUE_FI":" 1009",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-10-1982-5-000-0000",
+ "SUPERFICIE":250,
+ "SUPERFIC_1":627,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0008778352182,
+ "OBJECTID":83123,
+ "Join_Count":1,
+ "TARGET_FID":83123,
+ "feature_id":"1a3d212c-89d1-4b27-b9af-59e4618c303d",
+ "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":32.05,
+ "elevmin":36.15,
+ "elevmax":37.93,
+ "bldgarea":2404.56,
+ "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_2":83123,
+ "Shape_Le_1":0.0008778352182,
+ "Shape_Ar_1":2.79692685397e-08,
+ "OBJECTID_3":83123,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83122,
+ "g_objectid":"938127",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340210",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994010147680000000",
+ "g_sup_tota":"230.7",
+ "g_geometry":"0.000885859",
+ "g_geomet_1":"2.65583e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0008778352182,
+ "Shape_Area":2.79692685397e-08,
+ "Shape_Le_3":0.000877835016254,
+ "Shape_Ar_2":2.79692685397e-08,
+ "building_height":15.764999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":155,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5607014454372,
+ 45.517477999160626
+ ],
+ [
+ -73.56072786841824,
+ 45.51749014720283
+ ],
+ [
+ -73.56077594617481,
+ 45.51751226422991
+ ],
+ [
+ -73.56086856825166,
+ 45.5174128396811
+ ],
+ [
+ -73.56080636844099,
+ 45.517378747281654
+ ],
+ [
+ -73.56079885370598,
+ 45.51737461309821
+ ],
+ [
+ -73.5607014454372,
+ 45.517477999160626
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":155,
+ "ID_UEV":"01003694",
+ "CIVIQUE_DE":" 1628",
+ "CIVIQUE_FI":" 1630",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1934,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-4946-5-000-0000",
+ "SUPERFICIE":145,
+ "SUPERFIC_1":260,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000439438455748,
+ "OBJECTID":83124,
+ "Join_Count":1,
+ "TARGET_FID":83124,
+ "feature_id":"b1ff6390-35ed-470e-b971-30b44ef50fd5",
+ "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":40.83,
+ "elevmin":25.14,
+ "elevmax":28.12,
+ "bldgarea":1941.5,
+ "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_2":83124,
+ "Shape_Le_1":0.000439438455748,
+ "Shape_Ar_1":1.07553398799e-08,
+ "OBJECTID_3":83124,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83123,
+ "g_objectid":"943403",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161981",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109494650000000",
+ "g_sup_tota":"145",
+ "g_geometry":"0.000592149",
+ "g_geomet_1":"1.65672e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000439438455748,
+ "Shape_Area":1.07553398799e-08,
+ "Shape_Le_3":0.000439438521906,
+ "Shape_Ar_2":1.07553398799e-08,
+ "building_height":20.16
+ }
+ },
+ {
+ "type":"Feature",
+ "id":156,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56042046755238,
+ 45.50659724471736
+ ],
+ [
+ -73.5604162668191,
+ 45.50660224494794
+ ],
+ [
+ -73.56044806684665,
+ 45.50661564484643
+ ],
+ [
+ -73.5604623669665,
+ 45.50662164512312
+ ],
+ [
+ -73.56051286749668,
+ 45.50664254446815
+ ],
+ [
+ -73.56065176688737,
+ 45.50647654490692
+ ],
+ [
+ -73.5605603669892,
+ 45.506438744602676
+ ],
+ [
+ -73.56055536675862,
+ 45.5064366446857
+ ],
+ [
+ -73.56042046755238,
+ 45.50659724471736
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":156,
+ "ID_UEV":"01001049",
+ "CIVIQUE_DE":" 1002",
+ "CIVIQUE_FI":" 1006",
+ "NOM_RUE":"rue Saint-Urbain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-07-6937-8-000-0000",
+ "SUPERFICIE":225,
+ "SUPERFIC_1":427,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000641716377702,
+ "OBJECTID":83130,
+ "Join_Count":1,
+ "TARGET_FID":83130,
+ "feature_id":"dbe0804e-f902-496e-aa00-2ae37f209092",
+ "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":12.51,
+ "elevmin":16.44,
+ "elevmax":17.3,
+ "bldgarea":187.36,
+ "comment":" ",
+ "OBJECTID_2":83130,
+ "Shape_Le_1":0.000641716377702,
+ "Shape_Ar_1":2.15806349964e-08,
+ "OBJECTID_3":83130,
+ "Join_Cou_1":1,
+ "TARGET_F_1":83129,
+ "g_objectid":"939508",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180580",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004007693780000000",
+ "g_sup_tota":"225",
+ "g_geometry":"0.000691117",
+ "g_geomet_1":"2.59122e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000641716377702,
+ "Shape_Area":2.15806349964e-08,
+ "Shape_Le_3":0.000641716457771,
+ "Shape_Ar_2":2.15806349964e-08,
+ "building_height":5.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":157,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56239664411169,
+ 45.51761030292344
+ ],
+ [
+ -73.5624531638043,
+ 45.51763646869837
+ ],
+ [
+ -73.56253241386166,
+ 45.517550319941606
+ ],
+ [
+ -73.56250736954132,
+ 45.517538947115014
+ ],
+ [
+ -73.56250706916775,
+ 45.517538746566196
+ ],
+ [
+ -73.56249186882653,
+ 45.51755554680134
+ ],
+ [
+ -73.56246015243593,
+ 45.517541264667926
+ ],
+ [
+ -73.56239664411169,
+ 45.51761030292344
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":157,
+ "ID_UEV":"01003500",
+ "CIVIQUE_DE":" 1728",
+ "CIVIQUE_FI":" 1728",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-1963-6-000-0000",
+ "SUPERFICIE":83,
+ "SUPERFIC_1":92,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000358451938933,
+ "OBJECTID":83134,
+ "Join_Count":1,
+ "TARGET_FID":83134,
+ "feature_id":"1fc8bf14-b05a-4a94-8da1-1b75ca65b960",
+ "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.6,
+ "heightmax":9.62,
+ "elevmin":24.34,
+ "elevmax":25.38,
+ "bldgarea":377.21,
+ "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_2":83134,
+ "Shape_Le_1":0.000358451938933,
+ "Shape_Ar_1":6.18097296662e-09,
+ "OBJECTID_3":83134,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83133,
+ "g_objectid":"943282",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161659",
+ "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":"66023994199196360000000",
+ "g_sup_tota":"82.8",
+ "g_geometry":"0.000437731",
+ "g_geomet_1":"9.27894e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000358451938933,
+ "Shape_Area":6.18097296662e-09,
+ "Shape_Le_3":0.000358451660065,
+ "Shape_Ar_2":6.18097296662e-09,
+ "building_height":4.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":158,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5624531638043,
+ 45.51763646869837
+ ],
+ [
+ -73.56251341748208,
+ 45.51766436297027
+ ],
+ [
+ -73.56257561009818,
+ 45.51759675463681
+ ],
+ [
+ -73.5625520694443,
+ 45.51758604640921
+ ],
+ [
+ -73.56256946952725,
+ 45.51756714715641
+ ],
+ [
+ -73.56253241386166,
+ 45.517550319941606
+ ],
+ [
+ -73.5624531638043,
+ 45.51763646869837
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":158,
+ "ID_UEV":"01003502",
+ "CIVIQUE_DE":" 1732",
+ "CIVIQUE_FI":" 1732",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-1466-0-000-0000",
+ "SUPERFICIE":84,
+ "SUPERFIC_1":92,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000367564498092,
+ "OBJECTID":83135,
+ "Join_Count":1,
+ "TARGET_FID":83135,
+ "feature_id":"1fc8bf14-b05a-4a94-8da1-1b75ca65b960",
+ "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.6,
+ "heightmax":9.62,
+ "elevmin":24.34,
+ "elevmax":25.38,
+ "bldgarea":377.21,
+ "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_2":83135,
+ "Shape_Le_1":0.000367564498092,
+ "Shape_Ar_1":6.78610402362e-09,
+ "OBJECTID_3":83135,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83134,
+ "g_objectid":"943282",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161659",
+ "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":"66023994199196360000000",
+ "g_sup_tota":"82.8",
+ "g_geometry":"0.000437731",
+ "g_geomet_1":"9.27894e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000367564498092,
+ "Shape_Area":6.78610402362e-09,
+ "Shape_Le_3":0.000367565053159,
+ "Shape_Ar_2":6.78610402362e-09,
+ "building_height":4.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":159,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56079926919277,
+ 45.52436724760069
+ ],
+ [
+ -73.5607863558275,
+ 45.52438103690562
+ ],
+ [
+ -73.56083667199665,
+ 45.52440429517238
+ ],
+ [
+ -73.56087976930775,
+ 45.52435824808498
+ ],
+ [
+ -73.56086636940927,
+ 45.524352147983535
+ ],
+ [
+ -73.56096316883702,
+ 45.524248448057726
+ ],
+ [
+ -73.56098436945493,
+ 45.52422574826996
+ ],
+ [
+ -73.56098096911828,
+ 45.52422404765197
+ ],
+ [
+ -73.56091086876343,
+ 45.52419044808101
+ ],
+ [
+ -73.56104646944085,
+ 45.52405054774488
+ ],
+ [
+ -73.56126026886815,
+ 45.524153047975076
+ ],
+ [
+ -73.56119066943569,
+ 45.524224748223844
+ ],
+ [
+ -73.56117236913137,
+ 45.524216048182375
+ ],
+ [
+ -73.56117216948188,
+ 45.52421614800712
+ ],
+ [
+ -73.56112796870264,
+ 45.5242608479101
+ ],
+ [
+ -73.56112436871649,
+ 45.524264547720996
+ ],
+ [
+ -73.56115476939894,
+ 45.5242787480161
+ ],
+ [
+ -73.56113676946818,
+ 45.52429784781772
+ ],
+ [
+ -73.56113246891016,
+ 45.52430234802524
+ ],
+ [
+ -73.56121846927878,
+ 45.52434244789595
+ ],
+ [
+ -73.56125476951385,
+ 45.52430394791916
+ ],
+ [
+ -73.56128816943531,
+ 45.524319547559365
+ ],
+ [
+ -73.56131386936143,
+ 45.524292347564085
+ ],
+ [
+ -73.56144616952695,
+ 45.524353947526954
+ ],
+ [
+ -73.561507568941,
+ 45.52428884740268
+ ],
+ [
+ -73.56153246936981,
+ 45.52430044775775
+ ],
+ [
+ -73.56153606935597,
+ 45.52429664812211
+ ],
+ [
+ -73.5615534694389,
+ 45.524277048297435
+ ],
+ [
+ -73.56154316950351,
+ 45.52427254808992
+ ],
+ [
+ -73.56159376895911,
+ 45.524214847587444
+ ],
+ [
+ -73.56162866894975,
+ 45.52423004792866
+ ],
+ [
+ -73.56162876877451,
+ 45.524229948103915
+ ],
+ [
+ -73.56175096955344,
+ 45.52410284781847
+ ],
+ [
+ -73.56109216938995,
+ 45.523789747948804
+ ],
+ [
+ -73.5610920695652,
+ 45.52378964812406
+ ],
+ [
+ -73.56105436908571,
+ 45.52383054749207
+ ],
+ [
+ -73.5610035690813,
+ 45.523807447505995
+ ],
+ [
+ -73.56100146916431,
+ 45.52380964814704
+ ],
+ [
+ -73.56098436945493,
+ 45.523833447805664
+ ],
+ [
+ -73.56097646891075,
+ 45.523829947644266
+ ],
+ [
+ -73.5608971693907,
+ 45.523919547999036
+ ],
+ [
+ -73.56094686952426,
+ 45.52394124774069
+ ],
+ [
+ -73.56090166869889,
+ 45.52399254776816
+ ],
+ [
+ -73.56095586903997,
+ 45.524016147777296
+ ],
+ [
+ -73.56093766945972,
+ 45.52403664782334
+ ],
+ [
+ -73.56096066872173,
+ 45.52404684793398
+ ],
+ [
+ -73.56087136874052,
+ 45.52414674822415
+ ],
+ [
+ -73.56081946886525,
+ 45.52412374806282
+ ],
+ [
+ -73.56081366913736,
+ 45.52412114812278
+ ],
+ [
+ -73.56064036887976,
+ 45.52431034749483
+ ],
+ [
+ -73.56073356922069,
+ 45.524352548181845
+ ],
+ [
+ -73.560733969419,
+ 45.524352747831344
+ ],
+ [
+ -73.56074406880558,
+ 45.524341848048145
+ ],
+ [
+ -73.56079926919277,
+ 45.52436724760069
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":159,
+ "ID_UEV":"01035418",
+ "CIVIQUE_DE":" 1471",
+ "CIVIQUE_FI":" 1495",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1888,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-06-2591-5-000-0000",
+ "SUPERFICIE":4654,
+ "SUPERFIC_1":3623,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0037798880226,
+ "OBJECTID":83145,
+ "Join_Count":1,
+ "TARGET_FID":83145,
+ "feature_id":"1e8874a9-80ec-4297-91fb-c33f169d3032",
+ "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.46,
+ "heightmax":57.01,
+ "elevmin":26.88,
+ "elevmax":28.43,
+ "bldgarea":2550.99,
+ "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_2":83145,
+ "Shape_Le_1":0.0037798880226,
+ "Shape_Ar_1":2.93385499173e-07,
+ "OBJECTID_3":83145,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83144,
+ "g_objectid":"1948049",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"PC-13320",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":" ",
+ "g_sup_tota":"4653.9",
+ "g_geometry":"0.00314671",
+ "g_geomet_1":"5.36089e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0037798880226,
+ "Shape_Area":2.93385499173e-07,
+ "Shape_Le_3":0.00377989174367,
+ "Shape_Ar_2":2.93385499173e-07,
+ "building_height":27.275
+ }
+ },
+ {
+ "type":"Feature",
+ "id":160,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5604176904459,
+ 45.52455695598902
+ ],
+ [
+ -73.56068901141059,
+ 45.52468096350596
+ ],
+ [
+ -73.56077246939579,
+ 45.524591847885766
+ ],
+ [
+ -73.56048856871432,
+ 45.524460447941614
+ ],
+ [
+ -73.5604176904459,
+ 45.52455695598902
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":160,
+ "ID_UEV":"01035419",
+ "CIVIQUE_DE":" 1551",
+ "CIVIQUE_FI":" 1551",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1946,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-07-6541-4-000-0000",
+ "SUPERFICIE":474,
+ "SUPERFIC_1":471,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000852984797174,
+ "OBJECTID":83146,
+ "Join_Count":1,
+ "TARGET_FID":83146,
+ "feature_id":"74ffd6e9-49f5-438d-b14d-6b90b8d1cad1",
+ "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.4,
+ "heightmax":41.57,
+ "elevmin":26.58,
+ "elevmax":27.65,
+ "bldgarea":1703.84,
+ "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_2":83146,
+ "Shape_Le_1":0.000852984797174,
+ "Shape_Ar_1":3.56203118415e-08,
+ "OBJECTID_3":83146,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83145,
+ "g_objectid":"938280",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1566883",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004207654140000000",
+ "g_sup_tota":"474.4",
+ "g_geometry":"0.00108888",
+ "g_geomet_1":"5.4648e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000852984797174,
+ "Shape_Area":3.56203118415e-08,
+ "Shape_Le_3":0.00085298447711,
+ "Shape_Ar_2":3.56203118415e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":161,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57392380516133,
+ 45.499149995726015
+ ],
+ [
+ -73.5739175710609,
+ 45.49915634314102
+ ],
+ [
+ -73.57391350342729,
+ 45.49915434484743
+ ],
+ [
+ -73.57375236200375,
+ 45.499317494457095
+ ],
+ [
+ -73.57422102210433,
+ 45.499544924908655
+ ],
+ [
+ -73.5743888589805,
+ 45.49937502498771
+ ],
+ [
+ -73.57392380516133,
+ 45.499149995726015
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":161,
+ "ID_UEV":"01039237",
+ "CIVIQUE_DE":" 1171",
+ "CIVIQUE_FI":" 1179",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":10,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-09-1138-8-000-0000",
+ "SUPERFICIE":1022,
+ "SUPERFIC_1":9431,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00151912708488,
+ "OBJECTID":83155,
+ "Join_Count":1,
+ "TARGET_FID":83155,
+ "feature_id":"cf6d3373-3147-4be6-8e3e-4035c41ec429",
+ "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.2,
+ "heightmax":84.01,
+ "elevmin":37.95,
+ "elevmax":41.15,
+ "bldgarea":3317.6,
+ "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_2":83155,
+ "Shape_Le_1":0.00151912708488,
+ "Shape_Ar_1":1.17606961842e-07,
+ "OBJECTID_3":83155,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83154,
+ "g_objectid":"938103",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338912",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993909022470000000",
+ "g_sup_tota":"461.2",
+ "g_geometry":"0.00125887",
+ "g_geomet_1":"5.32594e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00151912708488,
+ "Shape_Area":1.17606961842e-07,
+ "Shape_Le_3":0.00151912736742,
+ "Shape_Ar_2":1.17606961842e-07,
+ "building_height":41.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":162,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56150083211955,
+ 45.522807159473125
+ ],
+ [
+ -73.56143121470065,
+ 45.52292470985777
+ ],
+ [
+ -73.56163871887362,
+ 45.52302135280348
+ ],
+ [
+ -73.56173937729227,
+ 45.52291313378439
+ ],
+ [
+ -73.56163396325864,
+ 45.52286649764105
+ ],
+ [
+ -73.56150083211955,
+ 45.522807159473125
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":162,
+ "ID_UEV":"01035412",
+ "CIVIQUE_DE":" 1343",
+ "CIVIQUE_FI":" 1349",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-95-8957-7-000-0000",
+ "SUPERFICIE":295,
+ "SUPERFIC_1":795,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000774344419708,
+ "OBJECTID":83156,
+ "Join_Count":1,
+ "TARGET_FID":83156,
+ "feature_id":"ebe94d82-3efd-4a6c-a255-28b22365bae9",
+ "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.14,
+ "heightmax":12.79,
+ "elevmin":26.56,
+ "elevmax":27.84,
+ "bldgarea":2155.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_2":83156,
+ "Shape_Le_1":0.000774344419708,
+ "Shape_Ar_1":3.37779822789e-08,
+ "OBJECTID_3":83156,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83155,
+ "g_objectid":"941642",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565619",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994295756340000000",
+ "g_sup_tota":"218.8",
+ "g_geometry":"0.000660185",
+ "g_geomet_1":"2.465e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000774344419708,
+ "Shape_Area":3.37779822789e-08,
+ "Shape_Le_3":0.000774345681308,
+ "Shape_Ar_2":3.37779822789e-08,
+ "building_height":5.324999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":163,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56576644698579,
+ 45.51650762167969
+ ],
+ [
+ -73.56582048634822,
+ 45.51653222083562
+ ],
+ [
+ -73.56586047020637,
+ 45.516488445435705
+ ],
+ [
+ -73.56588847239694,
+ 45.51650102964909
+ ],
+ [
+ -73.56600315484357,
+ 45.51637577027587
+ ],
+ [
+ -73.56592164119263,
+ 45.51633768668519
+ ],
+ [
+ -73.56576644698579,
+ 45.51650762167969
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":163,
+ "ID_UEV":"01002920",
+ "CIVIQUE_DE":" 2039",
+ "CIVIQUE_FI":" 2043",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-5237-6-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000639299838129,
+ "OBJECTID":83157,
+ "Join_Count":1,
+ "TARGET_FID":83157,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":83157,
+ "Shape_Le_1":0.000639299838129,
+ "Shape_Ar_1":1.79600838539e-08,
+ "OBJECTID_3":83157,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83156,
+ "g_objectid":"938323",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161377",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168583240000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000679946",
+ "g_geomet_1":"2.14049e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000639299838129,
+ "Shape_Area":1.79600838539e-08,
+ "Shape_Le_3":0.000639299926731,
+ "Shape_Ar_2":1.79600838539e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":164,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56588847239694,
+ 45.51650102964909
+ ],
+ [
+ -73.56592367006317,
+ 45.516516846025915
+ ],
+ [
+ -73.56588347576364,
+ 45.51656089392041
+ ],
+ [
+ -73.56593018475208,
+ 45.51658215659155
+ ],
+ [
+ -73.5660846684945,
+ 45.51641385116859
+ ],
+ [
+ -73.56600315484357,
+ 45.51637577027587
+ ],
+ [
+ -73.56588847239694,
+ 45.51650102964909
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":164,
+ "ID_UEV":"01002922",
+ "CIVIQUE_DE":" 2045",
+ "CIVIQUE_FI":" 2049",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-4541-2-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":287,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000637794731724,
+ "OBJECTID":83158,
+ "Join_Count":1,
+ "TARGET_FID":83158,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":83158,
+ "Shape_Le_1":0.000637794731724,
+ "Shape_Ar_1":1.74235799677e-08,
+ "OBJECTID_3":83158,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83157,
+ "g_objectid":"938322",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161376",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168523760000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000680438",
+ "g_geomet_1":"2.14397e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000637794731724,
+ "Shape_Area":1.74235799677e-08,
+ "Shape_Le_3":0.000637794344187,
+ "Shape_Ar_2":1.74235799677e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":165,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56609392791428,
+ 45.51665670409391
+ ],
+ [
+ -73.56615064905506,
+ 45.51668252452918
+ ],
+ [
+ -73.56618546990536,
+ 45.51664234551813
+ ],
+ [
+ -73.56621274904099,
+ 45.51665401242303
+ ],
+ [
+ -73.56633765587996,
+ 45.51651893874832
+ ],
+ [
+ -73.56627626995574,
+ 45.51649024587844
+ ],
+ [
+ -73.566267669739,
+ 45.51649934611822
+ ],
+ [
+ -73.56624768770247,
+ 45.51649001115538
+ ],
+ [
+ -73.56609392791428,
+ 45.51665670409391
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":165,
+ "ID_UEV":"01002927",
+ "CIVIQUE_DE":" 2063",
+ "CIVIQUE_FI":" 2067",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-2653-7-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":288,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000658249498632,
+ "OBJECTID":83159,
+ "Join_Count":1,
+ "TARGET_FID":83159,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":83159,
+ "Shape_Le_1":0.000658249498632,
+ "Shape_Ar_1":1.871024112e-08,
+ "OBJECTID_3":83159,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83158,
+ "g_objectid":"943115",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161300",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168265370000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000681253",
+ "g_geomet_1":"2.14398e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000658249498632,
+ "Shape_Area":1.871024112e-08,
+ "Shape_Le_3":0.000658249070112,
+ "Shape_Ar_2":1.871024112e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":166,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55539926208812,
+ 45.50268065943518
+ ],
+ [
+ -73.55555994126013,
+ 45.502756170111454
+ ],
+ [
+ -73.55558659356828,
+ 45.50272675328733
+ ],
+ [
+ -73.5556095973269,
+ 45.502695301297415
+ ],
+ [
+ -73.55558852621137,
+ 45.50268370274098
+ ],
+ [
+ -73.55560031902135,
+ 45.502670711134705
+ ],
+ [
+ -73.5555627633327,
+ 45.50265385154431
+ ],
+ [
+ -73.55554581920603,
+ 45.50267535883104
+ ],
+ [
+ -73.55549370619143,
+ 45.50265306104023
+ ],
+ [
+ -73.55550233788443,
+ 45.50263852889529
+ ],
+ [
+ -73.55542280723861,
+ 45.50261382901529
+ ],
+ [
+ -73.55541695445073,
+ 45.50262449497476
+ ],
+ [
+ -73.55544066507647,
+ 45.50263514384711
+ ],
+ [
+ -73.55539926208812,
+ 45.50268065943518
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":166,
+ "ID_UEV":"01000274",
+ "CIVIQUE_DE":" 205",
+ "CIVIQUE_FI":" 205",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1901,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-43-6206-3-000-0000",
+ "SUPERFICIE":128,
+ "SUPERFIC_1":378,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000622895888053,
+ "OBJECTID":83163,
+ "Join_Count":1,
+ "TARGET_FID":83163,
+ "feature_id":"d042b9f1-73bb-41b9-ab0f-67691e54d022",
+ "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":22.69,
+ "elevmin":13.51,
+ "elevmax":15.77,
+ "bldgarea":891.79,
+ "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_2":83163,
+ "Shape_Le_1":0.000622895888053,
+ "Shape_Ar_1":1.41066498265e-08,
+ "OBJECTID_3":83163,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83162,
+ "g_objectid":"939564",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181001",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004043651570000000",
+ "g_sup_tota":"114.8",
+ "g_geometry":"0.000509101",
+ "g_geomet_1":"1.32165e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000622895888053,
+ "Shape_Area":1.41066498265e-08,
+ "Shape_Le_3":0.000622895150209,
+ "Shape_Ar_2":1.41066498265e-08,
+ "building_height":10.84
+ }
+ },
+ {
+ "type":"Feature",
+ "id":167,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55678875691744,
+ 45.52584844450041
+ ],
+ [
+ -73.55679556838263,
+ 45.52585164788554
+ ],
+ [
+ -73.55679566820737,
+ 45.52585164788554
+ ],
+ [
+ -73.5568235678752,
+ 45.52582284799633
+ ],
+ [
+ -73.55693146853429,
+ 45.52587454822212
+ ],
+ [
+ -73.55691296768116,
+ 45.52589364802373
+ ],
+ [
+ -73.55695906692924,
+ 45.52591572817861
+ ],
+ [
+ -73.55705425387256,
+ 45.52581528919453
+ ],
+ [
+ -73.55688774529506,
+ 45.52574369956238
+ ],
+ [
+ -73.55678875691744,
+ 45.52584844450041
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":167,
+ "ID_UEV":"01034574",
+ "CIVIQUE_DE":" 1851",
+ "CIVIQUE_FI":" 1861",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-38-5583-2-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":475,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000708818880665,
+ "OBJECTID":83164,
+ "Join_Count":1,
+ "TARGET_FID":83164,
+ "feature_id":"3ac42144-13c1-4117-8417-4511176dd6ec",
+ "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.43,
+ "heightmax":35.81,
+ "elevmin":23.32,
+ "elevmax":24.25,
+ "bldgarea":795.04,
+ "comment":" ",
+ "OBJECTID_2":83164,
+ "Shape_Le_1":0.000708818880665,
+ "Shape_Ar_1":1.99486472828e-08,
+ "OBJECTID_3":83164,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83163,
+ "g_objectid":"942379",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729270",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004238429130000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000838865",
+ "g_geomet_1":"4.08438e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000708818880665,
+ "Shape_Area":1.99486472828e-08,
+ "Shape_Le_3":0.000708820438502,
+ "Shape_Ar_2":1.99486472828e-08,
+ "building_height":16.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":168,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56621274904099,
+ 45.51665401242303
+ ],
+ [
+ -73.5662172699329,
+ 45.51665594596543
+ ],
+ [
+ -73.56618185642938,
+ 45.516696732018865
+ ],
+ [
+ -73.56625766298261,
+ 45.51673124350238
+ ],
+ [
+ -73.56641916413496,
+ 45.51655703762748
+ ],
+ [
+ -73.56633765587996,
+ 45.51651893874832
+ ],
+ [
+ -73.56621274904099,
+ 45.51665401242303
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":168,
+ "ID_UEV":"01002929",
+ "CIVIQUE_DE":" 2069",
+ "CIVIQUE_FI":" 2073",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-2057-1-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":344,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000653723690133,
+ "OBJECTID":83173,
+ "Join_Count":1,
+ "TARGET_FID":83173,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":83173,
+ "Shape_Le_1":0.000653723690133,
+ "Shape_Ar_1":2.00586725383e-08,
+ "OBJECTID_3":83173,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83172,
+ "g_objectid":"943115",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161300",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168265370000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000681253",
+ "g_geomet_1":"2.14398e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000653723690133,
+ "Shape_Area":2.00586725383e-08,
+ "Shape_Le_3":0.000653722741709,
+ "Shape_Ar_2":2.00586725383e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":169,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56625766298261,
+ 45.51673124350238
+ ],
+ [
+ -73.56631385981862,
+ 45.51675682561731
+ ],
+ [
+ -73.56632196990483,
+ 45.51674844573448
+ ],
+ [
+ -73.56634702052042,
+ 45.51676045528108
+ ],
+ [
+ -73.56649506241904,
+ 45.51660116646096
+ ],
+ [
+ -73.56647796990423,
+ 45.516593746154754
+ ],
+ [
+ -73.56648377053143,
+ 45.51658724585501
+ ],
+ [
+ -73.566482370287,
+ 45.51658654618245
+ ],
+ [
+ -73.56643586994129,
+ 45.51656484554148
+ ],
+ [
+ -73.56641916413496,
+ 45.51655703762748
+ ],
+ [
+ -73.56625766298261,
+ 45.51673124350238
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":169,
+ "ID_UEV":"01002931",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2079",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1943,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-1362-6-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":299,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000654863528171,
+ "OBJECTID":83174,
+ "Join_Count":1,
+ "TARGET_FID":83174,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":83174,
+ "Shape_Le_1":0.000654863528171,
+ "Shape_Ar_1":1.98251391493e-08,
+ "OBJECTID_3":83174,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83173,
+ "g_objectid":"943113",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161297",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168076690000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000681866",
+ "g_geomet_1":"2.14393e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000654863528171,
+ "Shape_Area":1.98251391493e-08,
+ "Shape_Le_3":0.000654866019078,
+ "Shape_Ar_2":1.98251391493e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":170,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56634702052042,
+ 45.51676045528108
+ ],
+ [
+ -73.56636807005223,
+ 45.51677054567444
+ ],
+ [
+ -73.56636847025055,
+ 45.516770645499186
+ ],
+ [
+ -73.5663616228125,
+ 45.51677856762709
+ ],
+ [
+ -73.56642140254753,
+ 45.51680577841424
+ ],
+ [
+ -73.5665783513317,
+ 45.51663732909975
+ ],
+ [
+ -73.56649506241904,
+ 45.51660116646096
+ ],
+ [
+ -73.56634702052042,
+ 45.51676045528108
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":170,
+ "ID_UEV":"01002932",
+ "CIVIQUE_DE":" 2081",
+ "CIVIQUE_FI":" 2085",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-0766-9-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":287,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000638404428454,
+ "OBJECTID":83175,
+ "Join_Count":1,
+ "TARGET_FID":83175,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":83175,
+ "Shape_Le_1":0.000638404428454,
+ "Shape_Ar_1":1.93556394656e-08,
+ "OBJECTID_3":83175,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83174,
+ "g_objectid":"938316",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161289",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168007060000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000682089",
+ "g_geomet_1":"2.144e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000638404428454,
+ "Shape_Area":1.93556394656e-08,
+ "Shape_Le_3":0.000638404915297,
+ "Shape_Ar_2":1.93556394656e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":171,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56961326376296,
+ 45.508664213233146
+ ],
+ [
+ -73.56969459485151,
+ 45.50870205310756
+ ],
+ [
+ -73.56978390382595,
+ 45.5086054695171
+ ],
+ [
+ -73.56970857121543,
+ 45.50857234478818
+ ],
+ [
+ -73.56972167074036,
+ 45.508557544645264
+ ],
+ [
+ -73.56971473606806,
+ 45.508554477957084
+ ],
+ [
+ -73.56961326376296,
+ 45.508664213233146
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":171,
+ "ID_UEV":"01000559",
+ "CIVIQUE_DE":" 2066",
+ "CIVIQUE_FI":" 2068",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-4760-1-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":383,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000480351003857,
+ "OBJECTID":83181,
+ "Join_Count":1,
+ "TARGET_FID":83181,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":83181,
+ "Shape_Le_1":0.000480351003857,
+ "Shape_Ar_1":1.12958403003e-08,
+ "OBJECTID_3":83181,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83180,
+ "g_objectid":"939780",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340577",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039416460000000",
+ "g_sup_tota":"320.1",
+ "g_geometry":"0.00104247",
+ "g_geomet_1":"3.68589e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000480351003857,
+ "Shape_Area":1.12958403003e-08,
+ "Shape_Le_3":0.000480350757791,
+ "Shape_Ar_2":1.12958403003e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":172,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56969459485151,
+ 45.50870205310756
+ ],
+ [
+ -73.5697160715613,
+ 45.50871204457549
+ ],
+ [
+ -73.56974037124299,
+ 45.508723344557
+ ],
+ [
+ -73.56974127146435,
+ 45.50872244523495
+ ],
+ [
+ -73.56977257146885,
+ 45.50873754485211
+ ],
+ [
+ -73.56977640168144,
+ 45.50873937497247
+ ],
+ [
+ -73.56987287015868,
+ 45.508635050917164
+ ],
+ [
+ -73.56979937126582,
+ 45.508599744432956
+ ],
+ [
+ -73.56979867069394,
+ 45.50859944495871
+ ],
+ [
+ -73.56979067122434,
+ 45.508608444474426
+ ],
+ [
+ -73.56978390382595,
+ 45.5086054695171
+ ],
+ [
+ -73.56969459485151,
+ 45.50870205310756
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":172,
+ "ID_UEV":"01000560",
+ "CIVIQUE_DE":" 2070",
+ "CIVIQUE_FI":" 2072",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-4164-6-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":317,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000466126376105,
+ "OBJECTID":83182,
+ "Join_Count":1,
+ "TARGET_FID":83182,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":83182,
+ "Shape_Le_1":0.000466126376105,
+ "Shape_Ar_1":1.212364646e-08,
+ "OBJECTID_3":83182,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83181,
+ "g_objectid":"939779",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340576",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039366870000000",
+ "g_sup_tota":"236.8",
+ "g_geometry":"0.000996338",
+ "g_geomet_1":"2.72805e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000466126376105,
+ "Shape_Area":1.212364646e-08,
+ "Shape_Le_3":0.000466126201172,
+ "Shape_Ar_2":1.212364646e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":173,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56977640168144,
+ 45.50873937497247
+ ],
+ [
+ -73.56983611037005,
+ 45.5087678942732
+ ],
+ [
+ -73.56994218000945,
+ 45.50865318574622
+ ],
+ [
+ -73.56990817124695,
+ 45.508637444912445
+ ],
+ [
+ -73.56987517152379,
+ 45.508672645276654
+ ],
+ [
+ -73.56985457075368,
+ 45.50866314483856
+ ],
+ [
+ -73.56987837131163,
+ 45.508637644561944
+ ],
+ [
+ -73.56987827148689,
+ 45.508637644561944
+ ],
+ [
+ -73.56987287015868,
+ 45.508635050917164
+ ],
+ [
+ -73.56977640168144,
+ 45.50873937497247
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":173,
+ "ID_UEV":"01000561",
+ "CIVIQUE_DE":" 2074",
+ "CIVIQUE_FI":" 2076",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-3668-7-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":152,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000513875100727,
+ "OBJECTID":83183,
+ "Join_Count":1,
+ "TARGET_FID":83183,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":83183,
+ "Shape_Le_1":0.000513875100727,
+ "Shape_Ar_1":8.72798695639e-09,
+ "OBJECTID_3":83183,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83182,
+ "g_objectid":"939779",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340576",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039366870000000",
+ "g_sup_tota":"236.8",
+ "g_geometry":"0.000996338",
+ "g_geomet_1":"2.72805e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000513875100727,
+ "Shape_Area":8.72798695639e-09,
+ "Shape_Le_3":0.000513877581908,
+ "Shape_Ar_2":8.72798695639e-09,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":174,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56983611037005,
+ 45.5087678942732
+ ],
+ [
+ -73.56985757089203,
+ 45.508778144745875
+ ],
+ [
+ -73.56987977155606,
+ 45.50878864523009
+ ],
+ [
+ -73.56989711318307,
+ 45.508796748121725
+ ],
+ [
+ -73.56997315176139,
+ 45.50871425960569
+ ],
+ [
+ -73.56996067097003,
+ 45.5087087449629
+ ],
+ [
+ -73.5699903710806,
+ 45.508675444866185
+ ],
+ [
+ -73.56999027125586,
+ 45.508675444866185
+ ],
+ [
+ -73.56994218000945,
+ 45.50865318574622
+ ],
+ [
+ -73.56983611037005,
+ 45.5087678942732
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":174,
+ "ID_UEV":"01000562",
+ "CIVIQUE_DE":" 2078",
+ "CIVIQUE_FI":" 2078",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-3171-2-000-0000",
+ "SUPERFICIE":240,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00044726250228,
+ "OBJECTID":83184,
+ "Join_Count":1,
+ "TARGET_FID":83184,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":83184,
+ "Shape_Le_1":0.00044726250228,
+ "Shape_Ar_1":9.468691634e-09,
+ "OBJECTID_3":83184,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83183,
+ "g_objectid":"939779",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340576",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039366870000000",
+ "g_sup_tota":"236.8",
+ "g_geometry":"0.000996338",
+ "g_geomet_1":"2.72805e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00044726250228,
+ "Shape_Area":9.468691634e-09,
+ "Shape_Le_3":0.00044726241212,
+ "Shape_Ar_2":9.468691634e-09,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":175,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56989711318307,
+ 45.508796748121725
+ ],
+ [
+ -73.5699580584395,
+ 45.50882522425499
+ ],
+ [
+ -73.5702065851876,
+ 45.50855610842795
+ ],
+ [
+ -73.5701558715181,
+ 45.508533944636135
+ ],
+ [
+ -73.57015577079403,
+ 45.508533944636135
+ ],
+ [
+ -73.5701066714076,
+ 45.50859944495871
+ ],
+ [
+ -73.57009647129696,
+ 45.508613044506696
+ ],
+ [
+ -73.5700757707021,
+ 45.508639044806365
+ ],
+ [
+ -73.57005327146315,
+ 45.50863004529065
+ ],
+ [
+ -73.57001127132496,
+ 45.508683344511034
+ ],
+ [
+ -73.57001087112664,
+ 45.508683744709344
+ ],
+ [
+ -73.57002527107124,
+ 45.508690145184346
+ ],
+ [
+ -73.56999507093762,
+ 45.50872394440481
+ ],
+ [
+ -73.56997315176139,
+ 45.50871425960569
+ ],
+ [
+ -73.56989711318307,
+ 45.508796748121725
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":175,
+ "ID_UEV":"01000563",
+ "CIVIQUE_DE":" 2080",
+ "CIVIQUE_FI":" 2080",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":"B",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-2674-6-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":486,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000911020996575,
+ "OBJECTID":83185,
+ "Join_Count":1,
+ "TARGET_FID":83185,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":83185,
+ "Shape_Le_1":0.000911020996575,
+ "Shape_Ar_1":1.96109683785e-08,
+ "OBJECTID_3":83185,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83184,
+ "g_objectid":"939776",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340543",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039267460000000",
+ "g_sup_tota":"237.3",
+ "g_geometry":"0.000998234",
+ "g_geomet_1":"2.77432e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000911020996575,
+ "Shape_Area":1.96109683785e-08,
+ "Shape_Le_3":0.000911020950566,
+ "Shape_Ar_2":1.96109683785e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":176,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5699580584395,
+ 45.50882522425499
+ ],
+ [
+ -73.57001867094675,
+ 45.50885354480555
+ ],
+ [
+ -73.57001904956134,
+ 45.50885372197199
+ ],
+ [
+ -73.57010030600617,
+ 45.508765858208086
+ ],
+ [
+ -73.57008917149992,
+ 45.50876124468599
+ ],
+ [
+ -73.57011577074806,
+ 45.508729745032
+ ],
+ [
+ -73.57007917103876,
+ 45.508714345041284
+ ],
+ [
+ -73.57014017115382,
+ 45.50864234441895
+ ],
+ [
+ -73.57021147120427,
+ 45.50855824521714
+ ],
+ [
+ -73.5702065851876,
+ 45.50855610842795
+ ],
+ [
+ -73.5699580584395,
+ 45.50882522425499
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":176,
+ "ID_UEV":"01000564",
+ "CIVIQUE_DE":" 2082",
+ "CIVIQUE_FI":" 2082",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-2177-0-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":147,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000856260523092,
+ "OBJECTID":83186,
+ "Join_Count":1,
+ "TARGET_FID":83186,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":83186,
+ "Shape_Le_1":0.000856260523092,
+ "Shape_Ar_1":1.1711004675e-08,
+ "OBJECTID_3":83186,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83185,
+ "g_objectid":"939776",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340543",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039267460000000",
+ "g_sup_tota":"237.3",
+ "g_geometry":"0.000998234",
+ "g_geomet_1":"2.77432e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000856260523092,
+ "Shape_Area":1.1711004675e-08,
+ "Shape_Le_3":0.000856259427099,
+ "Shape_Ar_2":1.1711004675e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":177,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56034993012702,
+ 45.52854026197381
+ ],
+ [
+ -73.56041744672963,
+ 45.52857177152033
+ ],
+ [
+ -73.56051025406681,
+ 45.52847467711495
+ ],
+ [
+ -73.56043865724008,
+ 45.52844743305289
+ ],
+ [
+ -73.56035256693926,
+ 45.528537502853766
+ ],
+ [
+ -73.56034993012702,
+ 45.52854026197381
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5605659032157,
+ 45.52841645680434
+ ],
+ [
+ -73.5605604695119,
+ 45.528414348793454
+ ],
+ [
+ -73.56052919109113,
+ 45.52845486505028
+ ],
+ [
+ -73.5605659032157,
+ 45.52841645680434
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":177,
+ "ID_UEV":"01035010",
+ "CIVIQUE_DE":" 2166",
+ "CIVIQUE_FI":" 2168",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-7675-0-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":144,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000523985123182,
+ "OBJECTID":83193,
+ "Join_Count":1,
+ "TARGET_FID":83193,
+ "feature_id":"409e0849-60ab-45c1-a511-8085d4b1b174",
+ "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.59,
+ "heightmax":39.07,
+ "elevmin":25.76,
+ "elevmax":28.26,
+ "bldgarea":1213.6,
+ "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_2":83193,
+ "Shape_Le_1":0.000523985123182,
+ "Shape_Ar_1":9.41478683876e-09,
+ "OBJECTID_3":83193,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83192,
+ "g_objectid":"942888",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884734",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301767500000000",
+ "g_sup_tota":"154.2",
+ "g_geometry":"0.000676645",
+ "g_geomet_1":"1.86267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000523985123182,
+ "Shape_Area":9.41478683876e-09,
+ "Shape_Le_3":0.000523984707661,
+ "Shape_Ar_2":9.41478683876e-09,
+ "building_height":18.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":178,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57001904956134,
+ 45.50885372197199
+ ],
+ [
+ -73.57010023136243,
+ 45.5088917210264
+ ],
+ [
+ -73.57018485037239,
+ 45.50880022220279
+ ],
+ [
+ -73.57015657119065,
+ 45.50878734481041
+ ],
+ [
+ -73.57018957091381,
+ 45.5087515445984
+ ],
+ [
+ -73.5701523713567,
+ 45.50873454471376
+ ],
+ [
+ -73.57014917156886,
+ 45.508738044875166
+ ],
+ [
+ -73.57012007130609,
+ 45.50877404473667
+ ],
+ [
+ -73.57010030600617,
+ 45.508765858208086
+ ],
+ [
+ -73.57001904956134,
+ 45.50885372197199
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":178,
+ "ID_UEV":"01000565",
+ "CIVIQUE_DE":" 2086",
+ "CIVIQUE_FI":" 2088",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-1681-2-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":321,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000527030843623,
+ "OBJECTID":83196,
+ "Join_Count":1,
+ "TARGET_FID":83196,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":83196,
+ "Shape_Le_1":0.000527030843623,
+ "Shape_Ar_1":1.23612956499e-08,
+ "OBJECTID_3":83196,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83195,
+ "g_objectid":"939774",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340541",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039168120000000",
+ "g_sup_tota":"320.4",
+ "g_geometry":"0.0010433",
+ "g_geomet_1":"3.68935e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000527030843623,
+ "Shape_Area":1.23612956499e-08,
+ "Shape_Le_3":0.000527029989132,
+ "Shape_Ar_2":1.23612956499e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":179,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56465129754119,
+ 45.51922161643475
+ ],
+ [
+ -73.56471227607253,
+ 45.51925045679344
+ ],
+ [
+ -73.56477968745446,
+ 45.519178237635856
+ ],
+ [
+ -73.5647200704967,
+ 45.51915404677214
+ ],
+ [
+ -73.56473226980026,
+ 45.51913904697973
+ ],
+ [
+ -73.56473197032601,
+ 45.519138947154985
+ ],
+ [
+ -73.56472951967343,
+ 45.519138029846495
+ ],
+ [
+ -73.56465129754119,
+ 45.51922161643475
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":179,
+ "ID_UEV":"01003769",
+ "CIVIQUE_DE":" 2064",
+ "CIVIQUE_FI":" 2064",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-4242-9-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":98,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000367331944591,
+ "OBJECTID":83198,
+ "Join_Count":1,
+ "TARGET_FID":83198,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":83198,
+ "Shape_Le_1":0.000367331944591,
+ "Shape_Ar_1":6.27830595731e-09,
+ "OBJECTID_3":83198,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83197,
+ "g_objectid":"943228",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161553",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271374520000000",
+ "g_sup_tota":"113.5",
+ "g_geometry":"0.00055064",
+ "g_geomet_1":"1.33269e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000367331944591,
+ "Shape_Area":6.27830595731e-09,
+ "Shape_Le_3":0.000367330630767,
+ "Shape_Ar_2":6.27830595731e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":180,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56471227607253,
+ 45.51925045679344
+ ],
+ [
+ -73.56473657035828,
+ 45.519261946531905
+ ],
+ [
+ -73.56477325730182,
+ 45.51927930344739
+ ],
+ [
+ -73.56484331628786,
+ 45.5192040571718
+ ],
+ [
+ -73.56477968745446,
+ 45.519178237635856
+ ],
+ [
+ -73.56471227607253,
+ 45.51925045679344
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":180,
+ "ID_UEV":"01003771",
+ "CIVIQUE_DE":" 2068",
+ "CIVIQUE_FI":" 2068",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-3745-2-000-0000",
+ "SUPERFICIE":114,
+ "SUPERFIC_1":99,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000337731842337,
+ "OBJECTID":83199,
+ "Join_Count":1,
+ "TARGET_FID":83199,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":83199,
+ "Shape_Le_1":0.000337731842337,
+ "Shape_Ar_1":6.4725996568e-09,
+ "OBJECTID_3":83199,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83198,
+ "g_objectid":"943228",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161553",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271374520000000",
+ "g_sup_tota":"113.5",
+ "g_geometry":"0.00055064",
+ "g_geomet_1":"1.33269e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000337731842337,
+ "Shape_Area":6.4725996568e-09,
+ "Shape_Le_3":0.000337731784894,
+ "Shape_Ar_2":6.4725996568e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":181,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56047272535784,
+ 45.52859754159356
+ ],
+ [
+ -73.56050126894026,
+ 45.52861084886188
+ ],
+ [
+ -73.56050126894026,
+ 45.528610749037135
+ ],
+ [
+ -73.56053126492777,
+ 45.528619914028106
+ ],
+ [
+ -73.56068094718981,
+ 45.52846331597954
+ ],
+ [
+ -73.56064986931786,
+ 45.528448948410535
+ ],
+ [
+ -73.56057186931815,
+ 45.52853234883912
+ ],
+ [
+ -73.56054630069306,
+ 45.528520565921674
+ ],
+ [
+ -73.56047272535784,
+ 45.52859754159356
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":181,
+ "ID_UEV":"01035016",
+ "CIVIQUE_DE":" 2178",
+ "CIVIQUE_FI":" 2182",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-6780-9-000-0000",
+ "SUPERFICIE":133,
+ "SUPERFIC_1":227,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000562651233477,
+ "OBJECTID":83203,
+ "Join_Count":1,
+ "TARGET_FID":83203,
+ "feature_id":"409e0849-60ab-45c1-a511-8085d4b1b174",
+ "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.59,
+ "heightmax":39.07,
+ "elevmin":25.76,
+ "elevmax":28.26,
+ "bldgarea":1213.6,
+ "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_2":83203,
+ "Shape_Le_1":0.000562651233477,
+ "Shape_Ar_1":9.73392615758e-09,
+ "OBJECTID_3":83203,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83202,
+ "g_objectid":"942886",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884732",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301678090000000",
+ "g_sup_tota":"132.7",
+ "g_geometry":"0.000650105",
+ "g_geomet_1":"1.52607e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000562651233477,
+ "Shape_Area":9.73392615758e-09,
+ "Shape_Le_3":0.000562651266652,
+ "Shape_Ar_2":9.73392615758e-09,
+ "building_height":18.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":182,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56053126492777,
+ 45.528619914028106
+ ],
+ [
+ -73.56054806876021,
+ 45.528625049156986
+ ],
+ [
+ -73.56053936871874,
+ 45.528638548880224
+ ],
+ [
+ -73.56058117909998,
+ 45.52865127698514
+ ],
+ [
+ -73.56065611151219,
+ 45.52857288218306
+ ],
+ [
+ -73.560642368972,
+ 45.52856654915721
+ ],
+ [
+ -73.56072146884256,
+ 45.52848204885776
+ ],
+ [
+ -73.56068094718981,
+ 45.52846331597954
+ ],
+ [
+ -73.56053126492777,
+ 45.528619914028106
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":182,
+ "ID_UEV":"01035018",
+ "CIVIQUE_DE":" 2184",
+ "CIVIQUE_FI":" 2188",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-6383-2-000-0000",
+ "SUPERFICIE":133,
+ "SUPERFIC_1":229,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000577929407924,
+ "OBJECTID":83205,
+ "Join_Count":1,
+ "TARGET_FID":83205,
+ "feature_id":"409e0849-60ab-45c1-a511-8085d4b1b174",
+ "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.59,
+ "heightmax":39.07,
+ "elevmin":25.76,
+ "elevmax":28.26,
+ "bldgarea":1213.6,
+ "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_2":83205,
+ "Shape_Le_1":0.000577929407924,
+ "Shape_Ar_1":1.12106452527e-08,
+ "OBJECTID_3":83205,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83204,
+ "g_objectid":"942886",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884732",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301678090000000",
+ "g_sup_tota":"132.7",
+ "g_geometry":"0.000650105",
+ "g_geomet_1":"1.52607e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000577929407924,
+ "Shape_Area":1.12106452527e-08,
+ "Shape_Le_3":0.000577930093517,
+ "Shape_Ar_2":1.12106452527e-08,
+ "building_height":18.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":183,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57265708307976,
+ 45.504948473543514
+ ],
+ [
+ -73.57269547154063,
+ 45.50490944386603
+ ],
+ [
+ -73.57273057118076,
+ 45.50492654357542
+ ],
+ [
+ -73.57273417116691,
+ 45.504922843764525
+ ],
+ [
+ -73.57282827082987,
+ 45.504824843741844
+ ],
+ [
+ -73.57282837155395,
+ 45.504824644092345
+ ],
+ [
+ -73.5727944707101,
+ 45.50480824405551
+ ],
+ [
+ -73.57283727124492,
+ 45.504764644023396
+ ],
+ [
+ -73.57251197117237,
+ 45.504606643931766
+ ],
+ [
+ -73.57242107129724,
+ 45.504699043876066
+ ],
+ [
+ -73.57237317070711,
+ 45.504747743963506
+ ],
+ [
+ -73.57237317070711,
+ 45.50474784378826
+ ],
+ [
+ -73.57241077136186,
+ 45.50476614409257
+ ],
+ [
+ -73.5723687892101,
+ 45.50480877825281
+ ],
+ [
+ -73.57265708307976,
+ 45.504948473543514
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":183,
+ "ID_UEV":"01037853",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2077",
+ "NOM_RUE":"boulevard Robert-Bourassa (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":16,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1974,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-15-2642-3-000-0000",
+ "SUPERFICIE":963,
+ "SUPERFIC_1":12230,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00131546748035,
+ "OBJECTID":83208,
+ "Join_Count":1,
+ "TARGET_FID":83208,
+ "feature_id":"bc4da532-9b26-4a57-b060-612384613f41",
+ "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":58.16,
+ "elevmin":38.75,
+ "elevmax":41.49,
+ "bldgarea":804.21,
+ "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_2":83208,
+ "Shape_Le_1":0.00131546748035,
+ "Shape_Ar_1":9.11772176441e-08,
+ "OBJECTID_3":83208,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83207,
+ "g_objectid":"945034",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340264",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"59",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994015264230000000",
+ "g_sup_tota":"962.8",
+ "g_geometry":"0.0014084",
+ "g_geomet_1":"1.10834e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00131546748035,
+ "Shape_Area":9.11772176441e-08,
+ "Shape_Le_3":0.00131546874028,
+ "Shape_Ar_2":9.11772176441e-08,
+ "building_height":28.819999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":184,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5593291861149,
+ 45.52882719876651
+ ],
+ [
+ -73.55941146868618,
+ 45.52886704862569
+ ],
+ [
+ -73.55941256945636,
+ 45.52886584893008
+ ],
+ [
+ -73.55944185228151,
+ 45.52883722980461
+ ],
+ [
+ -73.55953196974644,
+ 45.528743075282996
+ ],
+ [
+ -73.55944960173957,
+ 45.52870138990751
+ ],
+ [
+ -73.5593291861149,
+ 45.52882719876651
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":184,
+ "ID_UEV":"01035225",
+ "CIVIQUE_DE":" 2122",
+ "CIVIQUE_FI":" 2122",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1963,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-12-5607-2-000-0000",
+ "SUPERFICIE":203,
+ "SUPERFIC_1":362,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00053079482577,
+ "OBJECTID":83209,
+ "Join_Count":1,
+ "TARGET_FID":83209,
+ "feature_id":"2b11867f-eeef-499d-b5ab-ed48a9024a42",
+ "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.46,
+ "heightmax":40.27,
+ "elevmin":24.62,
+ "elevmax":26.52,
+ "bldgarea":1384.11,
+ "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_2":83209,
+ "Shape_Le_1":0.00053079482577,
+ "Shape_Ar_1":1.52774590974e-08,
+ "OBJECTID_3":83209,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83208,
+ "g_objectid":"943517",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316894",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004312501170000000",
+ "g_sup_tota":"180.5",
+ "g_geometry":"0.000693818",
+ "g_geomet_1":"2.07547e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00053079482577,
+ "Shape_Area":1.52774590974e-08,
+ "Shape_Le_3":0.000530793736242,
+ "Shape_Ar_2":1.52774590974e-08,
+ "building_height":18.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":185,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55802849933762,
+ 45.52626713197286
+ ],
+ [
+ -73.55789906800942,
+ 45.52621314746908
+ ],
+ [
+ -73.55789896818467,
+ 45.52621314746908
+ ],
+ [
+ -73.557848268005,
+ 45.526270248123744
+ ],
+ [
+ -73.557848268005,
+ 45.5262703479485
+ ],
+ [
+ -73.55792316804161,
+ 45.52630734785611
+ ],
+ [
+ -73.55791036799093,
+ 45.52632004808205
+ ],
+ [
+ -73.55790416806475,
+ 45.52631714776845
+ ],
+ [
+ -73.55790296836913,
+ 45.52631964788374
+ ],
+ [
+ -73.55786936789886,
+ 45.52639044791114
+ ],
+ [
+ -73.55786906842461,
+ 45.526391348132506
+ ],
+ [
+ -73.55790435872102,
+ 45.52639683489631
+ ],
+ [
+ -73.55802698218133,
+ 45.5262687165783
+ ],
+ [
+ -73.55802849933762,
+ 45.52626713197286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":185,
+ "ID_UEV":"01034564",
+ "CIVIQUE_DE":" 1927",
+ "CIVIQUE_FI":" 1933",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-7933-6-000-0000",
+ "SUPERFICIE":361,
+ "SUPERFIC_1":189,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000622557064456,
+ "OBJECTID":83213,
+ "Join_Count":1,
+ "TARGET_FID":83213,
+ "feature_id":"698cbac1-5e7b-4910-ae7a-ad9fe3e271f0",
+ "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.49,
+ "heightmax":38.59,
+ "elevmin":24.03,
+ "elevmax":25.73,
+ "bldgarea":1852.92,
+ "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_2":83213,
+ "Shape_Le_1":0.000622557064456,
+ "Shape_Ar_1":1.49784657013e-08,
+ "OBJECTID_3":83213,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83212,
+ "g_objectid":"944792",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229604680010001",
+ "g_sup_tota":"282.3",
+ "g_geometry":"0.00172966",
+ "g_geomet_1":"3.26785e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000622557064456,
+ "Shape_Area":1.49784657013e-08,
+ "Shape_Le_3":0.000622557954708,
+ "Shape_Ar_2":1.49784657013e-08,
+ "building_height":18.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":186,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56300865614641,
+ 45.51894552726457
+ ],
+ [
+ -73.56307423471002,
+ 45.518975291227
+ ],
+ [
+ -73.56312959967313,
+ 45.51891554926348
+ ],
+ [
+ -73.56322791176056,
+ 45.51880941397357
+ ],
+ [
+ -73.56316606898075,
+ 45.518782946925754
+ ],
+ [
+ -73.56316586933124,
+ 45.518782946925754
+ ],
+ [
+ -73.56315136956191,
+ 45.51879874711478
+ ],
+ [
+ -73.56314661214827,
+ 45.518796594137804
+ ],
+ [
+ -73.56300865614641,
+ 45.51894552726457
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":186,
+ "ID_UEV":"01003830",
+ "CIVIQUE_DE":" 1865",
+ "CIVIQUE_FI":" 1869",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-81-6807-6-000-0000",
+ "SUPERFICIE":142,
+ "SUPERFIC_1":435,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000595285521113,
+ "OBJECTID":83214,
+ "Join_Count":1,
+ "TARGET_FID":83214,
+ "feature_id":"9c2c8643-67b3-42a8-9304-bd9bf9656b83",
+ "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.05,
+ "heightmax":19.73,
+ "elevmin":23.37,
+ "elevmax":26.44,
+ "bldgarea":3104.74,
+ "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_2":83214,
+ "Shape_Le_1":0.000595285521113,
+ "Shape_Ar_1":1.52935188718e-08,
+ "OBJECTID_3":83214,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83213,
+ "g_objectid":"943296",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161680",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994281801470000000",
+ "g_sup_tota":"289",
+ "g_geometry":"0.00110001",
+ "g_geomet_1":"3.30647e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000595285521113,
+ "Shape_Area":1.52935188718e-08,
+ "Shape_Le_3":0.000595285239237,
+ "Shape_Ar_2":1.52935188718e-08,
+ "building_height":9.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":187,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57145507081671,
+ 45.50607784396762
+ ],
+ [
+ -73.57148037144383,
+ 45.506089343598624
+ ],
+ [
+ -73.57143103823367,
+ 45.50614335418275
+ ],
+ [
+ -73.57207299679321,
+ 45.50644814791399
+ ],
+ [
+ -73.57240217114513,
+ 45.506106243658515
+ ],
+ [
+ -73.57177877099534,
+ 45.505809543825684
+ ],
+ [
+ -73.5715211709871,
+ 45.505686843923
+ ],
+ [
+ -73.57151667077957,
+ 45.50569164360476
+ ],
+ [
+ -73.57145647106114,
+ 45.50575364376594
+ ],
+ [
+ -73.57141247083071,
+ 45.5057325438721
+ ],
+ [
+ -73.5714075713242,
+ 45.50573014358156
+ ],
+ [
+ -73.57114019928261,
+ 45.50600526687986
+ ],
+ [
+ -73.57139316598366,
+ 45.506125373137756
+ ],
+ [
+ -73.57144457123182,
+ 45.506072843737044
+ ],
+ [
+ -73.57145507081671,
+ 45.50607784396762
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":187,
+ "ID_UEV":"01038846",
+ "CIVIQUE_DE":" 500",
+ "CIVIQUE_FI":" 500",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-16-9084-9-000-0000",
+ "SUPERFICIE":4586,
+ "SUPERFIC_1":48284,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00315797521927,
+ "OBJECTID":83215,
+ "Join_Count":1,
+ "TARGET_FID":83215,
+ "feature_id":"fedda6cc-7231-4da3-b7f3-8ffd984c4a75",
+ "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":86.28,
+ "elevmin":36.32,
+ "elevmax":43.03,
+ "bldgarea":4050.04,
+ "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_2":83215,
+ "Shape_Le_1":0.00315797521927,
+ "Shape_Ar_1":4.57091866845e-07,
+ "OBJECTID_3":83215,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83214,
+ "g_objectid":"945039",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340355",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"69",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994016908490000000",
+ "g_sup_tota":"4585.6",
+ "g_geometry":"0.00324511",
+ "g_geomet_1":"5.29292e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00315797521927,
+ "Shape_Area":4.57091866845e-07,
+ "Shape_Le_3":0.00315797609793,
+ "Shape_Ar_2":4.57091866845e-07,
+ "building_height":42.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":188,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56018048975965,
+ 45.523885058099246
+ ],
+ [
+ -73.56037929119317,
+ 45.52397783845677
+ ],
+ [
+ -73.56038141539184,
+ 45.52397559015166
+ ],
+ [
+ -73.56047589996466,
+ 45.52401889250818
+ ],
+ [
+ -73.56048105667728,
+ 45.52401185081656
+ ],
+ [
+ -73.56051668691741,
+ 45.52395647506157
+ ],
+ [
+ -73.56024570229917,
+ 45.52382990897342
+ ],
+ [
+ -73.56018048975965,
+ 45.523885058099246
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":188,
+ "ID_UEV":"01035465",
+ "CIVIQUE_DE":" 1484",
+ "CIVIQUE_FI":" 1486",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-06-8668-5-000-0000",
+ "SUPERFICIE":236,
+ "SUPERFIC_1":528,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000785481340164,
+ "OBJECTID":83224,
+ "Join_Count":1,
+ "TARGET_FID":83224,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":83224,
+ "Shape_Le_1":0.000785481340164,
+ "Shape_Ar_1":2.38139509587e-08,
+ "OBJECTID_3":83224,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83223,
+ "g_objectid":"941936",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566876",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206917680000000",
+ "g_sup_tota":"394",
+ "g_geometry":"0.000990364",
+ "g_geomet_1":"4.46833e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000785481340164,
+ "Shape_Area":2.38139509587e-08,
+ "Shape_Le_3":0.000785480126014,
+ "Shape_Ar_2":2.38139509587e-08,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":189,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56453638396879,
+ 45.524734014513456
+ ],
+ [
+ -73.56469568537942,
+ 45.52475638514935
+ ],
+ [
+ -73.56471517009088,
+ 45.524693947917655
+ ],
+ [
+ -73.56475657038126,
+ 45.52470034749334
+ ],
+ [
+ -73.56475667020601,
+ 45.524700147843845
+ ],
+ [
+ -73.56475785551247,
+ 45.52469494256784
+ ],
+ [
+ -73.56441351049696,
+ 45.524646587820065
+ ],
+ [
+ -73.56438867032273,
+ 45.52470524789916
+ ],
+ [
+ -73.56445256985207,
+ 45.524718647797656
+ ],
+ [
+ -73.56445287022562,
+ 45.524718647797656
+ ],
+ [
+ -73.56445857012875,
+ 45.52470244741031
+ ],
+ [
+ -73.56454236985633,
+ 45.524716848254236
+ ],
+ [
+ -73.56453638396879,
+ 45.524734014513456
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":189,
+ "ID_UEV":"01035396",
+ "CIVIQUE_DE":" 1356",
+ "CIVIQUE_FI":" 1360",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1916,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-77-5555-0-000-0000",
+ "SUPERFICIE":238,
+ "SUPERFIC_1":428,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00087112284696,
+ "OBJECTID":83226,
+ "Join_Count":1,
+ "TARGET_FID":83226,
+ "feature_id":"6913e3dd-b994-4e61-ba4f-7c4d911f069d",
+ "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.06,
+ "heightmax":19.09,
+ "elevmin":38.19,
+ "elevmax":42.72,
+ "bldgarea":1275.04,
+ "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_2":83226,
+ "Shape_Le_1":0.00087112284696,
+ "Shape_Ar_1":1.97202332897e-08,
+ "OBJECTID_3":83226,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83225,
+ "g_objectid":"943510",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316654",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994277555500000000",
+ "g_sup_tota":"238.3",
+ "g_geometry":"0.000928462",
+ "g_geomet_1":"2.7369e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00087112284696,
+ "Shape_Area":1.97202332897e-08,
+ "Shape_Le_3":0.000871123128904,
+ "Shape_Ar_2":1.97202332897e-08,
+ "building_height":9.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":190,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56449213282751,
+ 45.52428809556945
+ ],
+ [
+ -73.56447508348016,
+ 45.52434228961527
+ ],
+ [
+ -73.56455859182739,
+ 45.52438117989783
+ ],
+ [
+ -73.56455897044198,
+ 45.52438124824631
+ ],
+ [
+ -73.56455917009147,
+ 45.52438124824631
+ ],
+ [
+ -73.56457056989773,
+ 45.52436004762839
+ ],
+ [
+ -73.56463056996668,
+ 45.52437604746691
+ ],
+ [
+ -73.5646138416773,
+ 45.524406909501565
+ ],
+ [
+ -73.56463481206876,
+ 45.52441667613899
+ ],
+ [
+ -73.5647784697724,
+ 45.52445504751273
+ ],
+ [
+ -73.56478007056565,
+ 45.52445534788629
+ ],
+ [
+ -73.56479977021507,
+ 45.5243958478404
+ ],
+ [
+ -73.56481862630041,
+ 45.52433884880912
+ ],
+ [
+ -73.56449213282751,
+ 45.52428809556945
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":190,
+ "ID_UEV":"01035398",
+ "CIVIQUE_DE":" 1340",
+ "CIVIQUE_FI":" 1344",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-77-4717-7-000-0000",
+ "SUPERFICIE":360,
+ "SUPERFIC_1":641,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000897371235472,
+ "OBJECTID":83232,
+ "Join_Count":1,
+ "TARGET_FID":83232,
+ "feature_id":"ae0f1d94-89f3-417e-ad23-ee861aae1b0f",
+ "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.51,
+ "heightmax":17.41,
+ "elevmin":37.43,
+ "elevmax":42.25,
+ "bldgarea":1070.55,
+ "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_2":83232,
+ "Shape_Le_1":0.000897371235472,
+ "Shape_Ar_1":2.97571486213e-08,
+ "OBJECTID_3":83232,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83231,
+ "g_objectid":"943484",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316443",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994277471770000000",
+ "g_sup_tota":"360",
+ "g_geometry":"0.000991661",
+ "g_geomet_1":"4.22495e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000897371235472,
+ "Shape_Area":2.97571486213e-08,
+ "Shape_Le_3":0.000897373091421,
+ "Shape_Ar_2":2.97571486213e-08,
+ "building_height":7.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":191,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55478714123542,
+ 45.51796161318819
+ ],
+ [
+ -73.55479106587683,
+ 45.5179633470811
+ ],
+ [
+ -73.55479996646713,
+ 45.51795334661995
+ ],
+ [
+ -73.55493366507842,
+ 45.518011953639046
+ ],
+ [
+ -73.55503958543036,
+ 45.51789739889614
+ ],
+ [
+ -73.55490816570114,
+ 45.51784034680485
+ ],
+ [
+ -73.55490356656819,
+ 45.51783834671262
+ ],
+ [
+ -73.55490182817867,
+ 45.51783757599363
+ ],
+ [
+ -73.55478714123542,
+ 45.51796161318819
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":191,
+ "ID_UEV":"01040345",
+ "CIVIQUE_DE":" 1237",
+ "CIVIQUE_FI":" 1249",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-1003-0-000-0000",
+ "SUPERFICIE":316,
+ "SUPERFIC_1":560,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000638795605837,
+ "OBJECTID":83233,
+ "Join_Count":1,
+ "TARGET_FID":83233,
+ "feature_id":"4d55fe75-78bb-4bda-b363-2617ccefec9e",
+ "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,
+ "heightmax":33.5,
+ "elevmin":19.7,
+ "elevmax":21.64,
+ "bldgarea":1454.25,
+ "comment":" ",
+ "OBJECTID_2":83233,
+ "Shape_Le_1":0.000638795605837,
+ "Shape_Ar_1":2.2130157882e-08,
+ "OBJECTID_3":83233,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83232,
+ "g_objectid":"941813",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566599",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004159179880000000",
+ "g_sup_tota":"112.6",
+ "g_geometry":"0.000631721",
+ "g_geomet_1":"1.34315e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000638795605837,
+ "Shape_Area":2.2130157882e-08,
+ "Shape_Le_3":0.000638795966669,
+ "Shape_Ar_2":2.2130157882e-08,
+ "building_height":16.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":192,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55477651214817,
+ 45.517897793698516
+ ],
+ [
+ -73.55479026637954,
+ 45.51790434705826
+ ],
+ [
+ -73.55475086618138,
+ 45.51794544697509
+ ],
+ [
+ -73.55475076635663,
+ 45.51794554679984
+ ],
+ [
+ -73.55478714123542,
+ 45.51796161318819
+ ],
+ [
+ -73.55490182817867,
+ 45.51783757599363
+ ],
+ [
+ -73.55485179349732,
+ 45.517815388819436
+ ],
+ [
+ -73.55477651214817,
+ 45.517897793698516
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":192,
+ "ID_UEV":"01040346",
+ "CIVIQUE_DE":" 1231",
+ "CIVIQUE_FI":" 1235",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-59-1798-8-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00044735746075,
+ "OBJECTID":83234,
+ "Join_Count":1,
+ "TARGET_FID":83234,
+ "feature_id":"4d55fe75-78bb-4bda-b363-2617ccefec9e",
+ "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,
+ "heightmax":33.5,
+ "elevmin":19.7,
+ "elevmax":21.64,
+ "bldgarea":1454.25,
+ "comment":" ",
+ "OBJECTID_2":83234,
+ "Shape_Le_1":0.00044735746075,
+ "Shape_Ar_1":7.87798247817e-09,
+ "OBJECTID_3":83234,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83233,
+ "g_objectid":"941813",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566599",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004159179880000000",
+ "g_sup_tota":"112.6",
+ "g_geometry":"0.000631721",
+ "g_geomet_1":"1.34315e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00044735746075,
+ "Shape_Area":7.87798247817e-09,
+ "Shape_Le_3":0.000447357729508,
+ "Shape_Ar_2":7.87798247817e-09,
+ "building_height":16.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":193,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56456755447091,
+ 45.51877551672701
+ ],
+ [
+ -73.56446837004108,
+ 45.51873284659389
+ ],
+ [
+ -73.56437647011984,
+ 45.51883864643668
+ ],
+ [
+ -73.56440617023041,
+ 45.51885044644125
+ ],
+ [
+ -73.5644726696998,
+ 45.51887704658873
+ ],
+ [
+ -73.5645358704559,
+ 45.51879874711478
+ ],
+ [
+ -73.56454334652007,
+ 45.5188017256694
+ ],
+ [
+ -73.56456755447091,
+ 45.51877551672701
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56439328114685,
+ 45.51876140906207
+ ],
+ [
+ -73.56440467016124,
+ 45.51876564666755
+ ],
+ [
+ -73.5644709933635,
+ 45.518677861144674
+ ],
+ [
+ -73.56441291514577,
+ 45.51874030107433
+ ],
+ [
+ -73.56439328114685,
+ 45.51876140906207
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":193,
+ "ID_UEV":"01003576",
+ "CIVIQUE_DE":" 2031",
+ "CIVIQUE_FI":" 2033",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-6498-7-000-0000",
+ "SUPERFICIE":283,
+ "SUPERFIC_1":224,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000732321741628,
+ "OBJECTID":83240,
+ "Join_Count":2,
+ "TARGET_FID":83240,
+ "feature_id":"283011ce-5798-4d0d-b764-55f3f9958704",
+ "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.4,
+ "heightmax":14.36,
+ "elevmin":26.4,
+ "elevmax":32.46,
+ "bldgarea":1423.12,
+ "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_2":83240,
+ "Shape_Le_1":0.000732321741628,
+ "Shape_Ar_1":1.41783099039e-08,
+ "OBJECTID_3":83240,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83239,
+ "g_objectid":"944614",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270739210020001",
+ "g_sup_tota":"206.3",
+ "g_geometry":"0.000755333",
+ "g_geomet_1":"2.37805e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000732321741628,
+ "Shape_Area":1.41783099039e-08,
+ "Shape_Le_3":0.000732321274248,
+ "Shape_Ar_2":1.41783099039e-08,
+ "building_height":6.4799999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":194,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5622445040025,
+ 45.52903475510016
+ ],
+ [
+ -73.5623240823124,
+ 45.529064539747004
+ ],
+ [
+ -73.56241213673258,
+ 45.528971309728455
+ ],
+ [
+ -73.5623944704503,
+ 45.52896574922025
+ ],
+ [
+ -73.56240206972159,
+ 45.528953748666865
+ ],
+ [
+ -73.56240156969852,
+ 45.528953549017366
+ ],
+ [
+ -73.56234528293031,
+ 45.5289280505394
+ ],
+ [
+ -73.5622445040025,
+ 45.52903475510016
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":194,
+ "ID_UEV":"01034884",
+ "CIVIQUE_DE":" 2341",
+ "CIVIQUE_FI":" 2345",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-3236-6-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":232,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000455039229389,
+ "OBJECTID":83246,
+ "Join_Count":1,
+ "TARGET_FID":83246,
+ "feature_id":"bbf6c021-941f-4914-a315-29f80f675e18",
+ "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":41.31,
+ "elevmin":28.77,
+ "elevmax":38.65,
+ "bldgarea":2241.19,
+ "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_2":83246,
+ "Shape_Le_1":0.000455039229389,
+ "Shape_Ar_1":1.10088693153e-08,
+ "OBJECTID_3":83246,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83245,
+ "g_objectid":"942817",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884561",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392373240000000",
+ "g_sup_tota":"181.3",
+ "g_geometry":"0.000692422",
+ "g_geomet_1":"2.06552e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000455039229389,
+ "Shape_Area":1.10088693153e-08,
+ "Shape_Le_3":0.000455038492011,
+ "Shape_Ar_2":1.10088693153e-08,
+ "building_height":20.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":195,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56184591817643,
+ 45.51736657405844
+ ],
+ [
+ -73.56192346401849,
+ 45.51740183018061
+ ],
+ [
+ -73.56198825387666,
+ 45.51733139977458
+ ],
+ [
+ -73.56191101650205,
+ 45.51729580820528
+ ],
+ [
+ -73.56184591817643,
+ 45.51736657405844
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":195,
+ "ID_UEV":"01003486",
+ "CIVIQUE_DE":" 1684",
+ "CIVIQUE_FI":" 1690",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-6136-4-000-0000",
+ "SUPERFICIE":110,
+ "SUPERFIC_1":203,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000362080450783,
+ "OBJECTID":83247,
+ "Join_Count":1,
+ "TARGET_FID":83247,
+ "feature_id":"c4395447-5328-4e84-8568-10b7521bb0c9",
+ "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":40.19,
+ "elevmin":24.97,
+ "elevmax":27.58,
+ "bldgarea":1295.44,
+ "comment":" ",
+ "OBJECTID_2":83247,
+ "Shape_Le_1":0.000362080450783,
+ "Shape_Ar_1":7.7642966735e-09,
+ "OBJECTID_3":83247,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83246,
+ "g_objectid":"943342",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161799",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994199553900000000",
+ "g_sup_tota":"109.9",
+ "g_geometry":"0.000480906",
+ "g_geomet_1":"1.24876e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000362080450783,
+ "Shape_Area":7.7642966735e-09,
+ "Shape_Le_3":0.00036207992448,
+ "Shape_Ar_2":7.7642966735e-09,
+ "building_height":19.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":196,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56192346401849,
+ 45.51740183018061
+ ],
+ [
+ -73.56199993607004,
+ 45.517436597970914
+ ],
+ [
+ -73.56206440846752,
+ 45.517366513803864
+ ],
+ [
+ -73.56199616880998,
+ 45.517335046525474
+ ],
+ [
+ -73.56198825387666,
+ 45.51733139977458
+ ],
+ [
+ -73.56192346401849,
+ 45.51740183018061
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":196,
+ "ID_UEV":"01003488",
+ "CIVIQUE_DE":" 1692",
+ "CIVIQUE_FI":" 1694",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-5539-0-000-0000",
+ "SUPERFICIE":110,
+ "SUPERFIC_1":205,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000358790491859,
+ "OBJECTID":83248,
+ "Join_Count":1,
+ "TARGET_FID":83248,
+ "feature_id":"c4395447-5328-4e84-8568-10b7521bb0c9",
+ "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":40.19,
+ "elevmin":24.97,
+ "elevmax":27.58,
+ "bldgarea":1295.44,
+ "comment":" ",
+ "OBJECTID_2":83248,
+ "Shape_Le_1":0.000358790491859,
+ "Shape_Ar_1":7.61989104842e-09,
+ "OBJECTID_3":83248,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83247,
+ "g_objectid":"943342",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161799",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994199553900000000",
+ "g_sup_tota":"109.9",
+ "g_geometry":"0.000480906",
+ "g_geomet_1":"1.24876e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000358790491859,
+ "Shape_Area":7.61989104842e-09,
+ "Shape_Le_3":0.000358791595789,
+ "Shape_Ar_2":7.61989104842e-09,
+ "building_height":19.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":197,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55513455024115,
+ 45.52511968697427
+ ],
+ [
+ -73.55521455393037,
+ 45.5251593551704
+ ],
+ [
+ -73.55531667374734,
+ 45.525050727859096
+ ],
+ [
+ -73.55523476439471,
+ 45.52501265416095
+ ],
+ [
+ -73.55513455024115,
+ 45.52511968697427
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":197,
+ "ID_UEV":"01034593",
+ "CIVIQUE_DE":" 1699",
+ "CIVIQUE_FI":" 1703",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-47-8698-6-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":271,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00047534153735,
+ "OBJECTID":83254,
+ "Join_Count":1,
+ "TARGET_FID":83254,
+ "feature_id":"c4b2e5df-abbf-4c78-b176-bdbca391f41d",
+ "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.55,
+ "heightmax":38.15,
+ "elevmin":24.15,
+ "elevmax":26.2,
+ "bldgarea":1190.97,
+ "comment":" ",
+ "OBJECTID_2":83254,
+ "Shape_Le_1":0.00047534153735,
+ "Shape_Ar_1":1.2662055766e-08,
+ "OBJECTID_3":83254,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83253,
+ "g_objectid":"942398",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729298",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004247869860000000",
+ "g_sup_tota":"149.6",
+ "g_geometry":"0.000585048",
+ "g_geomet_1":"1.73263e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00047534153735,
+ "Shape_Area":1.2662055766e-08,
+ "Shape_Le_3":0.000475340701858,
+ "Shape_Ar_2":1.2662055766e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":198,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.57752588583281,
+ 45.49948315317528
+ ],
+ [
+ -73.57753297338985,
+ 45.49948674326888
+ ],
+ [
+ -73.57744436408798,
+ 45.49957305929954
+ ],
+ [
+ -73.5775850189553,
+ 45.49964073598147
+ ],
+ [
+ -73.57758668000312,
+ 45.499639042558066
+ ],
+ [
+ -73.57784619017139,
+ 45.499375440474495
+ ],
+ [
+ -73.57782397331955,
+ 45.49936374299264
+ ],
+ [
+ -73.57784987289516,
+ 45.49933944241163
+ ],
+ [
+ -73.57778757325974,
+ 45.499306542513224
+ ],
+ [
+ -73.5776499733894,
+ 45.499435543066156
+ ],
+ [
+ -73.57759937303449,
+ 45.49948314328273
+ ],
+ [
+ -73.57755255342944,
+ 45.499458623267145
+ ],
+ [
+ -73.57753175390916,
+ 45.49947955858506
+ ],
+ [
+ -73.57753017469965,
+ 45.49947879146335
+ ],
+ [
+ -73.57752588583281,
+ 45.49948315317528
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5776867232855,
+ 45.49932357477345
+ ],
+ [
+ -73.57759073594555,
+ 45.49942019073951
+ ],
+ [
+ -73.57768887356451,
+ 45.49932774313113
+ ],
+ [
+ -73.57769087275742,
+ 45.499325842863655
+ ],
+ [
+ -73.5776867232855,
+ 45.49932357477345
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":198,
+ "ID_UEV":"01036965",
+ "CIVIQUE_DE":" 2151",
+ "CIVIQUE_FI":" 2155",
+ "NOM_RUE":"rue de la Montagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1935,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-79-3151-4-000-0000",
+ "SUPERFICIE":545,
+ "SUPERFIC_1":932,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0014179133552,
+ "OBJECTID":83257,
+ "Join_Count":1,
+ "TARGET_FID":83257,
+ "feature_id":"272637a8-4def-44c7-8063-74b6907c7c73",
+ "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.01,
+ "heightmax":81.55,
+ "elevmin":43.91,
+ "elevmax":46.97,
+ "bldgarea":3374.75,
+ "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_2":83257,
+ "Shape_Le_1":0.0014179133552,
+ "Shape_Ar_1":4.67047559126e-08,
+ "OBJECTID_3":83257,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83256,
+ "g_objectid":"939729",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1338825",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983979315140000000",
+ "g_sup_tota":"545.3",
+ "g_geometry":"0.00115281",
+ "g_geomet_1":"6.27855e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0014179133552,
+ "Shape_Area":4.67047559126e-08,
+ "Shape_Le_3":0.00141791419674,
+ "Shape_Ar_2":4.67047559126e-08,
+ "building_height":39.769999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":199,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55720966301737,
+ 45.50342100922249
+ ],
+ [
+ -73.5572876477286,
+ 45.5034618636244
+ ],
+ [
+ -73.55728651638147,
+ 45.50346293741492
+ ],
+ [
+ -73.55738684205096,
+ 45.50351015991624
+ ],
+ [
+ -73.55755574732173,
+ 45.503575562212724
+ ],
+ [
+ -73.55756299675674,
+ 45.503567072612604
+ ],
+ [
+ -73.55766247076825,
+ 45.503433030460286
+ ],
+ [
+ -73.55752574503894,
+ 45.5033751500934
+ ],
+ [
+ -73.55752760933355,
+ 45.50337328849676
+ ],
+ [
+ -73.55738604075502,
+ 45.50330270070936
+ ],
+ [
+ -73.55738186610209,
+ 45.5033077441074
+ ],
+ [
+ -73.55734236607918,
+ 45.50329154372006
+ ],
+ [
+ -73.5572655666744,
+ 45.5033664860248
+ ],
+ [
+ -73.55726906054056,
+ 45.50336794022856
+ ],
+ [
+ -73.55721442492761,
+ 45.50341636512345
+ ],
+ [
+ -73.55720966301737,
+ 45.50342100922249
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":199,
+ "ID_UEV":"01036587",
+ "CIVIQUE_DE":" 214",
+ "CIVIQUE_FI":" 222",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-33-1191-3-000-0000",
+ "SUPERFICIE":579,
+ "SUPERFIC_1":1432,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00110897563304,
+ "OBJECTID":83258,
+ "Join_Count":1,
+ "TARGET_FID":83258,
+ "feature_id":"45c9a329-c525-4e17-b254-202d281bab20",
+ "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.96,
+ "heightmax":23.25,
+ "elevmin":19.64,
+ "elevmax":21.09,
+ "bldgarea":1787.28,
+ "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_2":83258,
+ "Shape_Le_1":0.00110897563304,
+ "Shape_Ar_1":6.53756262599e-08,
+ "OBJECTID_3":83258,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83257,
+ "g_objectid":"938020",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180793",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004033119130000000",
+ "g_sup_tota":"579",
+ "g_geometry":"0.00113158",
+ "g_geomet_1":"6.67456e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00110897563304,
+ "Shape_Area":6.53756262599e-08,
+ "Shape_Le_3":0.00110897755932,
+ "Shape_Ar_2":6.53756262599e-08,
+ "building_height":11.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":200,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5586981902911,
+ 45.5023227562405
+ ],
+ [
+ -73.55913229933799,
+ 45.50252685647954
+ ],
+ [
+ -73.55926462018792,
+ 45.50257849195413
+ ],
+ [
+ -73.55928404374546,
+ 45.50255195026259
+ ],
+ [
+ -73.55924226753847,
+ 45.50250194346022
+ ],
+ [
+ -73.55928526682345,
+ 45.50244404420757
+ ],
+ [
+ -73.55945186713181,
+ 45.502219543747245
+ ],
+ [
+ -73.55951134739261,
+ 45.50224135590415
+ ],
+ [
+ -73.5595741434538,
+ 45.50215554888977
+ ],
+ [
+ -73.55936366612214,
+ 45.50207347765916
+ ],
+ [
+ -73.55898471969091,
+ 45.501943694696045
+ ],
+ [
+ -73.55890703715188,
+ 45.50204217945331
+ ],
+ [
+ -73.5586981902911,
+ 45.5023227562405
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":200,
+ "ID_UEV":"01036696",
+ "CIVIQUE_DE":" 360",
+ "CIVIQUE_FI":" 360",
+ "NOM_RUE":"rue Saint-Jacques (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":23,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-12-7961-7-000-0000",
+ "SUPERFICIE":2680,
+ "SUPERFIC_1":35556,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00234282603496,
+ "OBJECTID":83264,
+ "Join_Count":1,
+ "TARGET_FID":83264,
+ "feature_id":"9d9123bf-a60c-44f6-b738-29c82b613454",
+ "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.98,
+ "heightmax":119.45,
+ "elevmin":17.97,
+ "elevmax":19.21,
+ "bldgarea":2586.26,
+ "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_2":83264,
+ "Shape_Le_1":0.00234282603496,
+ "Shape_Ar_1":2.83376630921e-07,
+ "OBJECTID_3":83264,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83263,
+ "g_objectid":"944940",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180628",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"87",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004012796170000000",
+ "g_sup_tota":"2680.2",
+ "g_geometry":"0.00227023",
+ "g_geomet_1":"3.08196e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00234282603496,
+ "Shape_Area":2.83376630921e-07,
+ "Shape_Le_3":0.00234282611824,
+ "Shape_Ar_2":2.83376630921e-07,
+ "building_height":59.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":201,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56328521206473,
+ 45.5180205997212
+ ],
+ [
+ -73.56331526920616,
+ 45.51803424693325
+ ],
+ [
+ -73.56336279118172,
+ 45.51805582256845
+ ],
+ [
+ -73.56342666193275,
+ 45.51798638951056
+ ],
+ [
+ -73.56338646943186,
+ 45.51796924663372
+ ],
+ [
+ -73.56340506921042,
+ 45.51794764671682
+ ],
+ [
+ -73.56336717537668,
+ 45.5179315002888
+ ],
+ [
+ -73.56328521206473,
+ 45.5180205997212
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":201,
+ "ID_UEV":"01003524",
+ "CIVIQUE_DE":" 1796",
+ "CIVIQUE_FI":" 1796",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-80-4808-8-000-0000",
+ "SUPERFICIE":110,
+ "SUPERFIC_1":126,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000413999666481,
+ "OBJECTID":83265,
+ "Join_Count":1,
+ "TARGET_FID":83265,
+ "feature_id":"c35bc821-e0be-4b5f-9de4-7ecfec6c5aba",
+ "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":14.42,
+ "elevmin":23.6,
+ "elevmax":24.49,
+ "bldgarea":561.78,
+ "comment":" ",
+ "OBJECTID_2":83265,
+ "Shape_Le_1":0.000413999666481,
+ "Shape_Ar_1":8.68398554327e-09,
+ "OBJECTID_3":83265,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83264,
+ "g_objectid":"943264",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161623",
+ "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":"66023994280540450000000",
+ "g_sup_tota":"109.9",
+ "g_geometry":"0.00048324",
+ "g_geomet_1":"1.2662e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000413999666481,
+ "Shape_Area":8.68398554327e-09,
+ "Shape_Le_3":0.000413998285405,
+ "Shape_Ar_2":8.68398554327e-09,
+ "building_height":6.96
+ }
+ },
+ {
+ "type":"Feature",
+ "id":202,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56217270662695,
+ 45.51954127685873
+ ],
+ [
+ -73.56211986875878,
+ 45.51952024711201
+ ],
+ [
+ -73.56211596929839,
+ 45.51952514661852
+ ],
+ [
+ -73.56209476868048,
+ 45.5195523466138
+ ],
+ [
+ -73.56206356940005,
+ 45.51954034695974
+ ],
+ [
+ -73.56206356940005,
+ 45.51954044678449
+ ],
+ [
+ -73.56199223067875,
+ 45.51962482567546
+ ],
+ [
+ -73.56206576014856,
+ 45.5196586770566
+ ],
+ [
+ -73.56217270662695,
+ 45.51954127685873
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56190255208296,
+ 45.519583535102356
+ ],
+ [
+ -73.56190298645551,
+ 45.519583734751855
+ ],
+ [
+ -73.56196306926208,
+ 45.519525246443266
+ ],
+ [
+ -73.56195784150303,
+ 45.51952259074526
+ ],
+ [
+ -73.56190255208296,
+ 45.519583535102356
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":202,
+ "ID_UEV":"01040043",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-5180-8-000-0000",
+ "SUPERFICIE":351,
+ "SUPERFIC_1":273,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000653884682859,
+ "OBJECTID":83266,
+ "Join_Count":2,
+ "TARGET_FID":83266,
+ "feature_id":"f9ba30f6-f871-4e40-9e9e-0adac450169d",
+ "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.09,
+ "heightmax":21.42,
+ "elevmin":24.65,
+ "elevmax":26.5,
+ "bldgarea":1817.82,
+ "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_2":83266,
+ "Shape_Le_1":0.000653884682859,
+ "Shape_Ar_1":1.14905989312e-08,
+ "OBJECTID_3":83266,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83265,
+ "g_objectid":"941479",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565255",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994291637200000000",
+ "g_sup_tota":"357.7",
+ "g_geometry":"0.000841764",
+ "g_geomet_1":"4.13167e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000653884682859,
+ "Shape_Area":1.14905989312e-08,
+ "Shape_Le_3":0.000653884783519,
+ "Shape_Ar_2":1.14905989312e-08,
+ "building_height":9.665000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":203,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56343476752235,
+ 45.52802748922754
+ ],
+ [
+ -73.56362543638663,
+ 45.52811558501653
+ ],
+ [
+ -73.5636329700074,
+ 45.5281010492743
+ ],
+ [
+ -73.56363926975834,
+ 45.52808884907142
+ ],
+ [
+ -73.56364596970758,
+ 45.528076549043796
+ ],
+ [
+ -73.56364746977675,
+ 45.52807424857801
+ ],
+ [
+ -73.5636228697215,
+ 45.52806474903923
+ ],
+ [
+ -73.56364517200893,
+ 45.52803608314901
+ ],
+ [
+ -73.56345512817347,
+ 45.5279482760424
+ ],
+ [
+ -73.56345077005884,
+ 45.527953147669926
+ ],
+ [
+ -73.56345417039549,
+ 45.527954647739094
+ ],
+ [
+ -73.56348757031697,
+ 45.52796984808032
+ ],
+ [
+ -73.56343966972682,
+ 45.52802214905323
+ ],
+ [
+ -73.56343476752235,
+ 45.52802748922754
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":203,
+ "ID_UEV":"01035382",
+ "CIVIQUE_DE":" 1806",
+ "CIVIQUE_FI":" 1814",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-81-3526-3-000-0000",
+ "SUPERFICIE":210,
+ "SUPERFIC_1":371,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000654050790721,
+ "OBJECTID":83267,
+ "Join_Count":1,
+ "TARGET_FID":83267,
+ "feature_id":"c9885a36-f2ad-4a7c-94e6-44fee694c7f1",
+ "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":13.59,
+ "elevmin":40.02,
+ "elevmax":42.8,
+ "bldgarea":1129.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_2":83267,
+ "Shape_Le_1":0.000654050790721,
+ "Shape_Ar_1":1.54893681649e-08,
+ "OBJECTID_3":83267,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83266,
+ "g_objectid":"941593",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565523",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994381383410000000",
+ "g_sup_tota":"231.5",
+ "g_geometry":"0.000827161",
+ "g_geomet_1":"2.66676e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000654050790721,
+ "Shape_Area":1.54893681649e-08,
+ "Shape_Le_3":0.00065405071362,
+ "Shape_Ar_2":1.54893681649e-08,
+ "building_height":6.29
+ }
+ },
+ {
+ "type":"Feature",
+ "id":204,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56083289394475,
+ 45.522992430606486
+ ],
+ [
+ -73.56106693621199,
+ 45.52309810364486
+ ],
+ [
+ -73.5610988900236,
+ 45.52304836573978
+ ],
+ [
+ -73.56087263948257,
+ 45.522945280050926
+ ],
+ [
+ -73.56083289394475,
+ 45.522992430606486
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":204,
+ "ID_UEV":"01035473",
+ "CIVIQUE_DE":" 1360",
+ "CIVIQUE_FI":" 1362",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-05-3868-8-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":245,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000626206734294,
+ "OBJECTID":83270,
+ "Join_Count":1,
+ "TARGET_FID":83270,
+ "feature_id":"7b10471e-b708-4d1c-9acf-2aa97e5801f4",
+ "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.76,
+ "heightmax":39.36,
+ "elevmin":25.79,
+ "elevmax":26.79,
+ "bldgarea":1326.9,
+ "comment":" ",
+ "OBJECTID_2":83270,
+ "Shape_Le_1":0.000626206734294,
+ "Shape_Ar_1":1.48912850003e-08,
+ "OBJECTID_3":83270,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83269,
+ "g_objectid":"941916",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566851",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004205386880000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.000704907",
+ "g_geomet_1":"1.7194e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000626206734294,
+ "Shape_Area":1.48912850003e-08,
+ "Shape_Le_3":0.000626206272065,
+ "Shape_Ar_2":1.48912850003e-08,
+ "building_height":18.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":205,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56087263948257,
+ 45.522945280050926
+ ],
+ [
+ -73.5610988900236,
+ 45.52304836573978
+ ],
+ [
+ -73.56113180970709,
+ 45.52299712416824
+ ],
+ [
+ -73.560913213296,
+ 45.52289714473773
+ ],
+ [
+ -73.56087263948257,
+ 45.522945280050926
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":205,
+ "ID_UEV":"01035474",
+ "CIVIQUE_DE":" 1354",
+ "CIVIQUE_FI":" 1358",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-05-3562-7-000-0000",
+ "SUPERFICIE":147,
+ "SUPERFIC_1":336,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000612863938503,
+ "OBJECTID":83271,
+ "Join_Count":1,
+ "TARGET_FID":83271,
+ "feature_id":"7b10471e-b708-4d1c-9acf-2aa97e5801f4",
+ "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.76,
+ "heightmax":39.36,
+ "elevmin":25.79,
+ "elevmax":26.79,
+ "bldgarea":1326.9,
+ "comment":" ",
+ "OBJECTID_2":83271,
+ "Shape_Le_1":0.000612863938503,
+ "Shape_Ar_1":1.47829297017e-08,
+ "OBJECTID_3":83271,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83270,
+ "g_objectid":"941916",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566851",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004205386880000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.000704907",
+ "g_geomet_1":"1.7194e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000612863938503,
+ "Shape_Area":1.47829297017e-08,
+ "Shape_Le_3":0.000612862623108,
+ "Shape_Ar_2":1.47829297017e-08,
+ "building_height":18.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":206,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.560913213296,
+ 45.52289714473773
+ ],
+ [
+ -73.56113180970709,
+ 45.52299712416824
+ ],
+ [
+ -73.56116761981166,
+ 45.52294138148986
+ ],
+ [
+ -73.56109849701987,
+ 45.52290932875282
+ ],
+ [
+ -73.56094616895238,
+ 45.52285814743585
+ ],
+ [
+ -73.56094616895238,
+ 45.5228580476111
+ ],
+ [
+ -73.560913213296,
+ 45.52289714473773
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":206,
+ "ID_UEV":"01035475",
+ "CIVIQUE_DE":" 1350",
+ "CIVIQUE_FI":" 1352",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-05-3257-4-000-0000",
+ "SUPERFICIE":153,
+ "SUPERFIC_1":423,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000594752433021,
+ "OBJECTID":83272,
+ "Join_Count":1,
+ "TARGET_FID":83272,
+ "feature_id":"7b10471e-b708-4d1c-9acf-2aa97e5801f4",
+ "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.76,
+ "heightmax":39.36,
+ "elevmin":25.79,
+ "elevmax":26.79,
+ "bldgarea":1326.9,
+ "comment":" ",
+ "OBJECTID_2":83272,
+ "Shape_Le_1":0.000594752433021,
+ "Shape_Ar_1":1.42461735143e-08,
+ "OBJECTID_3":83272,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83271,
+ "g_objectid":"941914",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566849",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004205325740000000",
+ "g_sup_tota":"153.3",
+ "g_geometry":"0.000671064",
+ "g_geomet_1":"1.77091e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000594752433021,
+ "Shape_Area":1.42461735143e-08,
+ "Shape_Le_3":0.000594752269372,
+ "Shape_Ar_2":1.42461735143e-08,
+ "building_height":18.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":207,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56117661483076,
+ 45.522677572562216
+ ],
+ [
+ -73.56129450156185,
+ 45.52272630052864
+ ],
+ [
+ -73.56130139576464,
+ 45.52271572630002
+ ],
+ [
+ -73.56135686504913,
+ 45.52262206820418
+ ],
+ [
+ -73.56125562656776,
+ 45.52258406375383
+ ],
+ [
+ -73.56117661483076,
+ 45.522677572562216
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":207,
+ "ID_UEV":"01035477",
+ "CIVIQUE_DE":" 1332",
+ "CIVIQUE_FI":" 1336",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1916,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-05-1327-7-000-0000",
+ "SUPERFICIE":128,
+ "SUPERFIC_1":215,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000479584341347,
+ "OBJECTID":83273,
+ "Join_Count":1,
+ "TARGET_FID":83273,
+ "feature_id":"afbb0ef3-6e57-4e2e-969a-9efe28629f66",
+ "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.39,
+ "heightmax":38.52,
+ "elevmin":25.97,
+ "elevmax":27.17,
+ "bldgarea":430.38,
+ "comment":" ",
+ "OBJECTID_2":83273,
+ "Shape_Le_1":0.000479584341347,
+ "Shape_Ar_1":1.39270549018e-08,
+ "OBJECTID_3":83273,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83272,
+ "g_objectid":"945344",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565602",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004205251640000000",
+ "g_sup_tota":"830.3",
+ "g_geometry":"0.00148947",
+ "g_geomet_1":"9.50505e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000479584341347,
+ "Shape_Area":1.39270549018e-08,
+ "Shape_Le_3":0.00047958358731,
+ "Shape_Ar_2":1.39270549018e-08,
+ "building_height":17.065
+ }
+ },
+ {
+ "type":"Feature",
+ "id":208,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57295467144277,
+ 45.50337614384426
+ ],
+ [
+ -73.57299057147954,
+ 45.50333534340167
+ ],
+ [
+ -73.57292297123998,
+ 45.50330584383992
+ ],
+ [
+ -73.57296577087547,
+ 45.503257243577224
+ ],
+ [
+ -73.57296097119371,
+ 45.50325514366025
+ ],
+ [
+ -73.57290267084343,
+ 45.50322874406159
+ ],
+ [
+ -73.57294607122606,
+ 45.503181343494504
+ ],
+ [
+ -73.57288167077434,
+ 45.503152143406986
+ ],
+ [
+ -73.5729257708295,
+ 45.50310394424193
+ ],
+ [
+ -73.57286147110186,
+ 45.503074843979164
+ ],
+ [
+ -73.57290507113397,
+ 45.50302724376259
+ ],
+ [
+ -73.57282417082067,
+ 45.50299054422853
+ ],
+ [
+ -73.57257397133355,
+ 45.503263843701724
+ ],
+ [
+ -73.57256297082628,
+ 45.503258843471144
+ ],
+ [
+ -73.57255917119065,
+ 45.50326274383086
+ ],
+ [
+ -73.57233697119611,
+ 45.503491143751575
+ ],
+ [
+ -73.57266197089508,
+ 45.50364744412454
+ ],
+ [
+ -73.57269337072432,
+ 45.5036625437417
+ ],
+ [
+ -73.57297826155937,
+ 45.50380045477746
+ ],
+ [
+ -73.57300945184657,
+ 45.50376870691059
+ ],
+ [
+ -73.57346753591989,
+ 45.503302444402586
+ ],
+ [
+ -73.57339247220668,
+ 45.50326534377089
+ ],
+ [
+ -73.57335277253426,
+ 45.50330514416736
+ ],
+ [
+ -73.57332807175496,
+ 45.50329294396449
+ ],
+ [
+ -73.57334687208233,
+ 45.50327394398762
+ ],
+ [
+ -73.57334657170877,
+ 45.50327354378931
+ ],
+ [
+ -73.57325907127097,
+ 45.50330354427344
+ ],
+ [
+ -73.5732425714094,
+ 45.50327904404294
+ ],
+ [
+ -73.57308877115172,
+ 45.503330844093476
+ ],
+ [
+ -73.57297087093079,
+ 45.503370743415374
+ ],
+ [
+ -73.57295467144277,
+ 45.50337614384426
+ ],
+ [
+ -73.57294337146126,
+ 45.50338894389494
+ ],
+ [
+ -73.5729432707372,
+ 45.50338894389494
+ ],
+ [
+ -73.57290957134148,
+ 45.50339134418548
+ ],
+ [
+ -73.57290487148448,
+ 45.5033929440794
+ ],
+ [
+ -73.5729039712631,
+ 45.50339174348447
+ ],
+ [
+ -73.57290957134148,
+ 45.50339134418548
+ ],
+ [
+ -73.57295467144277,
+ 45.50337614384426
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":208,
+ "ID_UEV":"01037714",
+ "CIVIQUE_DE":" 1981",
+ "CIVIQUE_FI":" 1981",
+ "NOM_RUE":"avenue McGill College (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1982,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-13-0692-5-000-0000",
+ "SUPERFICIE":4905,
+ "SUPERFIC_1":62938,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00353444363668,
+ "OBJECTID":83274,
+ "Join_Count":1,
+ "TARGET_FID":83274,
+ "feature_id":"4e1a5bf4-7048-4862-9fc3-9e71a80b2dfc",
+ "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.53,
+ "heightmax":86.47,
+ "elevmin":37.16,
+ "elevmax":42.18,
+ "bldgarea":3415.99,
+ "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_2":83274,
+ "Shape_Le_1":0.00353444363668,
+ "Shape_Ar_1":3.92384169213e-07,
+ "OBJECTID_3":83274,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83273,
+ "g_objectid":"945031",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340258",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"77",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994013069250000000",
+ "g_sup_tota":"4904.9",
+ "g_geometry":"0.00309193",
+ "g_geomet_1":"5.64179e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00353444363668,
+ "Shape_Area":3.92384169213e-07,
+ "Shape_Le_3":0.00353444592013,
+ "Shape_Ar_2":3.92384169213e-07,
+ "building_height":42.97
+ }
+ },
+ {
+ "type":"Feature",
+ "id":209,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56125562656776,
+ 45.52258406375383
+ ],
+ [
+ -73.56135686504913,
+ 45.52262206820418
+ ],
+ [
+ -73.56141362576007,
+ 45.52252622925237
+ ],
+ [
+ -73.56132856878027,
+ 45.52249874776929
+ ],
+ [
+ -73.56132796893246,
+ 45.522498448295046
+ ],
+ [
+ -73.56125562656776,
+ 45.52258406375383
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":209,
+ "ID_UEV":"01035478",
+ "CIVIQUE_DE":" 1324",
+ "CIVIQUE_FI":" 1330",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-05-0817-8-000-0000",
+ "SUPERFICIE":103,
+ "SUPERFIC_1":293,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000421668068016,
+ "OBJECTID":83275,
+ "Join_Count":1,
+ "TARGET_FID":83275,
+ "feature_id":"afbb0ef3-6e57-4e2e-969a-9efe28629f66",
+ "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.39,
+ "heightmax":38.52,
+ "elevmin":25.97,
+ "elevmax":27.17,
+ "bldgarea":430.38,
+ "comment":" ",
+ "OBJECTID_2":83275,
+ "Shape_Le_1":0.000421668068016,
+ "Shape_Ar_1":1.05970658288e-08,
+ "OBJECTID_3":83275,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83274,
+ "g_objectid":"941633",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565597",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004205081780000000",
+ "g_sup_tota":"102.7",
+ "g_geometry":"0.000449978",
+ "g_geomet_1":"1.18635e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000421668068016,
+ "Shape_Area":1.05970658288e-08,
+ "Shape_Le_3":0.000421666486733,
+ "Shape_Ar_2":1.05970658288e-08,
+ "building_height":17.065
+ }
+ },
+ {
+ "type":"Feature",
+ "id":210,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5631163328743,
+ 45.51772450693075
+ ],
+ [
+ -73.56312506888867,
+ 45.51772884705894
+ ],
+ [
+ -73.56312516871341,
+ 45.51772884705894
+ ],
+ [
+ -73.56318076929891,
+ 45.51766504645502
+ ],
+ [
+ -73.5632406695431,
+ 45.517690747280454
+ ],
+ [
+ -73.56325251271514,
+ 45.51769585453036
+ ],
+ [
+ -73.5633453479313,
+ 45.517594795913396
+ ],
+ [
+ -73.56326796306789,
+ 45.51755944626173
+ ],
+ [
+ -73.5631163328743,
+ 45.51772450693075
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":210,
+ "ID_UEV":"01003355",
+ "CIVIQUE_DE":" 1753",
+ "CIVIQUE_FI":" 1755",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-5971-6-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":340,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00061900059826,
+ "OBJECTID":83281,
+ "Join_Count":1,
+ "TARGET_FID":83281,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83281,
+ "Shape_Le_1":0.00061900059826,
+ "Shape_Ar_1":1.18942630279e-08,
+ "OBJECTID_3":83281,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83280,
+ "g_objectid":"943262",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161622",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189537500000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702138",
+ "g_geomet_1":"2.15145e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00061900059826,
+ "Shape_Area":1.18942630279e-08,
+ "Shape_Le_3":0.000619000307703,
+ "Shape_Ar_2":1.18942630279e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":211,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56302222691609,
+ 45.51758776861093
+ ],
+ [
+ -73.56303326879217,
+ 45.517593247280836
+ ],
+ [
+ -73.56309246936381,
+ 45.51762254719309
+ ],
+ [
+ -73.56309775018286,
+ 45.51762514713313
+ ],
+ [
+ -73.56319057910379,
+ 45.51752409481142
+ ],
+ [
+ -73.56311319424037,
+ 45.51748874515976
+ ],
+ [
+ -73.56302222691609,
+ 45.51758776861093
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":211,
+ "ID_UEV":"01003358",
+ "CIVIQUE_DE":" 1741",
+ "CIVIQUE_FI":" 1743",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-7163-8-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":254,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000441025774139,
+ "OBJECTID":83282,
+ "Join_Count":1,
+ "TARGET_FID":83282,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83282,
+ "Shape_Le_1":0.000441025774139,
+ "Shape_Ar_1":1.09909843317e-08,
+ "OBJECTID_3":83282,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83281,
+ "g_objectid":"943267",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161638",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189716380000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702136",
+ "g_geomet_1":"2.15144e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000441025774139,
+ "Shape_Area":1.09909843317e-08,
+ "Shape_Le_3":0.000441025975158,
+ "Shape_Ar_2":1.09909843317e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":212,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56294654806659,
+ 45.517550230908725
+ ],
+ [
+ -73.56302222691609,
+ 45.51758776861093
+ ],
+ [
+ -73.56311319424037,
+ 45.51748874515976
+ ],
+ [
+ -73.5630355953383,
+ 45.517453295683346
+ ],
+ [
+ -73.56294654806659,
+ 45.517550230908725
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":212,
+ "ID_UEV":"01003360",
+ "CIVIQUE_DE":" 1733",
+ "CIVIQUE_FI":" 1735",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1906,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-7759-3-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":283,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000435881903082,
+ "OBJECTID":83283,
+ "Join_Count":1,
+ "TARGET_FID":83283,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83283,
+ "Shape_Le_1":0.000435881903082,
+ "Shape_Ar_1":1.0793721357e-08,
+ "OBJECTID_3":83283,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83282,
+ "g_objectid":"943270",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161642",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189825690000000",
+ "g_sup_tota":"155.6",
+ "g_geometry":"0.000673559",
+ "g_geomet_1":"1.79039e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000435881903082,
+ "Shape_Area":1.0793721357e-08,
+ "Shape_Le_3":0.000435881909715,
+ "Shape_Ar_2":1.0793721357e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":213,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5628837439115,
+ 45.51751907749372
+ ],
+ [
+ -73.56294654806659,
+ 45.517550230908725
+ ],
+ [
+ -73.5630355953383,
+ 45.517453295683346
+ ],
+ [
+ -73.56297119668523,
+ 45.51742387795989
+ ],
+ [
+ -73.5628837439115,
+ 45.51751907749372
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":213,
+ "ID_UEV":"01003362",
+ "CIVIQUE_DE":" 1727",
+ "CIVIQUE_FI":" 1729",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-8256-9-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000401803819776,
+ "OBJECTID":83284,
+ "Join_Count":1,
+ "TARGET_FID":83284,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83284,
+ "Shape_Le_1":0.000401803819776,
+ "Shape_Ar_1":8.78268444043e-09,
+ "OBJECTID_3":83284,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83283,
+ "g_objectid":"943270",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161642",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189825690000000",
+ "g_sup_tota":"155.6",
+ "g_geometry":"0.000673559",
+ "g_geomet_1":"1.79039e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000401803819776,
+ "Shape_Area":8.78268444043e-09,
+ "Shape_Le_3":0.000401804475649,
+ "Shape_Ar_2":8.78268444043e-09,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":214,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54915652007918,
+ 45.531242166243274
+ ],
+ [
+ -73.54908876515623,
+ 45.5312132494422
+ ],
+ [
+ -73.54908536481958,
+ 45.531217249626664
+ ],
+ [
+ -73.54898786481995,
+ 45.5313287502719
+ ],
+ [
+ -73.54899266540103,
+ 45.53133085018888
+ ],
+ [
+ -73.54905655503784,
+ 45.53135889464757
+ ],
+ [
+ -73.54915652007918,
+ 45.531242166243274
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":214,
+ "ID_UEV":"01019016",
+ "CIVIQUE_DE":" 1666",
+ "CIVIQUE_FI":" 1670",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-6684-8-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000455730818631,
+ "OBJECTID":83288,
+ "Join_Count":1,
+ "TARGET_FID":83288,
+ "feature_id":"c0bc0a9c-7781-41c1-8680-c7dc788e2f77",
+ "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.51,
+ "heightmax":34.59,
+ "elevmin":22.99,
+ "elevmax":24.19,
+ "bldgarea":945.04,
+ "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_2":83288,
+ "Shape_Le_1":0.000455730818631,
+ "Shape_Ar_1":1.08817699149e-08,
+ "OBJECTID_3":83288,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83287,
+ "g_objectid":"941242",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425200",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394668480000000",
+ "g_sup_tota":"168.3",
+ "g_geometry":"0.000659298",
+ "g_geomet_1":"1.93898e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000455730818631,
+ "Shape_Area":1.08817699149e-08,
+ "Shape_Le_3":0.000455731429629,
+ "Shape_Ar_2":1.08817699149e-08,
+ "building_height":16.040000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":215,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55738873332523,
+ 45.52644997403737
+ ],
+ [
+ -73.5575522543549,
+ 45.526525499102796
+ ],
+ [
+ -73.55766114786553,
+ 45.5264098966497
+ ],
+ [
+ -73.55762856812576,
+ 45.52638684792499
+ ],
+ [
+ -73.55762786845321,
+ 45.526387347948045
+ ],
+ [
+ -73.55761646774764,
+ 45.526403047413005
+ ],
+ [
+ -73.55753116795088,
+ 45.52637254780513
+ ],
+ [
+ -73.55754646811685,
+ 45.52635144791129
+ ],
+ [
+ -73.55750346793255,
+ 45.52633604792057
+ ],
+ [
+ -73.55750326828306,
+ 45.52633594809582
+ ],
+ [
+ -73.5574794677251,
+ 45.526357548012726
+ ],
+ [
+ -73.55747705214608,
+ 45.52635623140525
+ ],
+ [
+ -73.55738873332523,
+ 45.52644997403737
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":215,
+ "ID_UEV":"01034635",
+ "CIVIQUE_DE":" 1912",
+ "CIVIQUE_FI":" 1922",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-39-0444-0-000-0000",
+ "SUPERFICIE":354,
+ "SUPERFIC_1":557,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00072534014487,
+ "OBJECTID":83296,
+ "Join_Count":1,
+ "TARGET_FID":83296,
+ "feature_id":"b77fdb8e-0161-44d5-9bf1-8f01e78bd0fa",
+ "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.5,
+ "heightmax":36.6,
+ "elevmin":23.67,
+ "elevmax":24.87,
+ "bldgarea":821.05,
+ "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_2":83296,
+ "Shape_Le_1":0.00072534014487,
+ "Shape_Ar_1":2.58239982787e-08,
+ "OBJECTID_3":83296,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83295,
+ "g_objectid":"942366",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729252",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229955140000000",
+ "g_sup_tota":"177.2",
+ "g_geometry":"0.000657745",
+ "g_geomet_1":"2.04171e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00072534014487,
+ "Shape_Area":2.58239982787e-08,
+ "Shape_Le_3":0.000725339632906,
+ "Shape_Ar_2":2.58239982787e-08,
+ "building_height":17.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":216,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57251446139512,
+ 45.5005937268693
+ ],
+ [
+ -73.57240569109162,
+ 45.50070589481149
+ ],
+ [
+ -73.57272338739625,
+ 45.50086174552343
+ ],
+ [
+ -73.57283435024691,
+ 45.500749484951065
+ ],
+ [
+ -73.57251446139512,
+ 45.5005937268693
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":216,
+ "ID_UEV":"01039257",
+ "CIVIQUE_DE":" 1001",
+ "CIVIQUE_FI":" 1001",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":6,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1950,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-10-2591-3-000-0000",
+ "SUPERFICIE":476,
+ "SUPERFIC_1":2509,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00102375010641,
+ "OBJECTID":83300,
+ "Join_Count":1,
+ "TARGET_FID":83300,
+ "feature_id":"1a3d212c-89d1-4b27-b9af-59e4618c303d",
+ "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":32.05,
+ "elevmin":36.15,
+ "elevmax":37.93,
+ "bldgarea":2404.56,
+ "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_2":83300,
+ "Shape_Le_1":0.00102375010641,
+ "Shape_Ar_1":5.28908360851e-08,
+ "OBJECTID_3":83300,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83299,
+ "g_objectid":"938129",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340212",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994010259130000000",
+ "g_sup_tota":"476",
+ "g_geometry":"0.00104653",
+ "g_geomet_1":"5.45575e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00102375010641,
+ "Shape_Area":5.28908360851e-08,
+ "Shape_Le_3":0.00102374991628,
+ "Shape_Ar_2":5.28908360851e-08,
+ "building_height":15.764999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":217,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55907511324773,
+ 45.52686860665117
+ ],
+ [
+ -73.55908946822622,
+ 45.52687784808452
+ ],
+ [
+ -73.55907476790806,
+ 45.52688904824128
+ ],
+ [
+ -73.55907876809252,
+ 45.526891047434184
+ ],
+ [
+ -73.55922319291787,
+ 45.52696052545818
+ ],
+ [
+ -73.55923563503838,
+ 45.52694724876681
+ ],
+ [
+ -73.55930727323391,
+ 45.52687080459425
+ ],
+ [
+ -73.55927636893112,
+ 45.52685594779405
+ ],
+ [
+ -73.55928046894033,
+ 45.526851747960094
+ ],
+ [
+ -73.55914998810331,
+ 45.526789295439926
+ ],
+ [
+ -73.55907511324773,
+ 45.52686860665117
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":217,
+ "ID_UEV":"01034558",
+ "CIVIQUE_DE":" 2013",
+ "CIVIQUE_FI":" 2019",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-19-7799-2-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000617140216909,
+ "OBJECTID":83302,
+ "Join_Count":1,
+ "TARGET_FID":83302,
+ "feature_id":"af1a0fb5-9d4b-4d52-81b5-e23ba26ce7ff",
+ "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,
+ "heightmax":39.35,
+ "elevmin":25.29,
+ "elevmax":26.23,
+ "bldgarea":1399.84,
+ "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_2":83302,
+ "Shape_Le_1":0.000617140216909,
+ "Shape_Ar_1":2.14933339336e-08,
+ "OBJECTID_3":83302,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83301,
+ "g_objectid":"943541",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2317257",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"15",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004219928350000000",
+ "g_sup_tota":"261.7",
+ "g_geometry":"0.000910918",
+ "g_geomet_1":"2.97395e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000617140216909,
+ "Shape_Area":2.14933339336e-08,
+ "Shape_Le_3":0.000617140761469,
+ "Shape_Ar_2":2.14933339336e-08,
+ "building_height":19.675
+ }
+ },
+ {
+ "type":"Feature",
+ "id":218,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57266247001883,
+ 45.498795615175794
+ ],
+ [
+ -73.57286841926398,
+ 45.498893882297125
+ ],
+ [
+ -73.57311932112162,
+ 45.49863450702717
+ ],
+ [
+ -73.57290907221775,
+ 45.49853373979055
+ ],
+ [
+ -73.57268212919875,
+ 45.498768613930686
+ ],
+ [
+ -73.57268659703067,
+ 45.49877124354835
+ ],
+ [
+ -73.57266247001883,
+ 45.498795615175794
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":218,
+ "ID_UEV":"01037441",
+ "CIVIQUE_DE":" 1240",
+ "CIVIQUE_FI":" 1246",
+ "NOM_RUE":"rue Stanley (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-18-0368-3-000-0000",
+ "SUPERFICIE":698,
+ "SUPERFIC_1":1989,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00118829137944,
+ "OBJECTID":83308,
+ "Join_Count":1,
+ "TARGET_FID":83308,
+ "feature_id":"293eee32-33f4-4b9e-89f2-5f49dd274e8c",
+ "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.79,
+ "heightmax":18.4,
+ "elevmin":34.25,
+ "elevmax":37.15,
+ "bldgarea":3059.88,
+ "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_2":83308,
+ "Shape_Le_1":0.00118829137944,
+ "Shape_Ar_1":7.96598328416e-08,
+ "OBJECTID_3":83308,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83307,
+ "g_objectid":"938400",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993908877860000000",
+ "g_sup_tota":"683",
+ "g_geometry":"0.00118406",
+ "g_geomet_1":"7.87892e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00118829137944,
+ "Shape_Area":7.96598328416e-08,
+ "Shape_Le_3":0.00118829199308,
+ "Shape_Ar_2":7.96598328416e-08,
+ "building_height":8.805
+ }
+ },
+ {
+ "type":"Feature",
+ "id":219,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56340883647047,
+ 45.51776486670553
+ ],
+ [
+ -73.56341206953323,
+ 45.51776644681436
+ ],
+ [
+ -73.56336426876783,
+ 45.51781474670349
+ ],
+ [
+ -73.56343922186444,
+ 45.51785137968772
+ ],
+ [
+ -73.56357750342089,
+ 45.51770084756636
+ ],
+ [
+ -73.56350011855747,
+ 45.51766549791469
+ ],
+ [
+ -73.56340883647047,
+ 45.51776486670553
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":219,
+ "ID_UEV":"01003095",
+ "CIVIQUE_DE":" 1771",
+ "CIVIQUE_FI":" 1771",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":14,
+ "ANNEE_CONS":1972,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-4083-1-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":394,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000579392411257,
+ "OBJECTID":83310,
+ "Join_Count":1,
+ "TARGET_FID":83310,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83310,
+ "Shape_Le_1":0.000579392411257,
+ "Shape_Ar_1":1.62966294646e-08,
+ "OBJECTID_3":83310,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83309,
+ "g_objectid":"943260",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161620",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189467960000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702141",
+ "g_geomet_1":"2.15148e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000579392411257,
+ "Shape_Area":1.62966294646e-08,
+ "Shape_Le_3":0.000579393156361,
+ "Shape_Ar_2":1.62966294646e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":220,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5556314013899,
+ 45.50136805754012
+ ],
+ [
+ -73.55593686421676,
+ 45.50149319820283
+ ],
+ [
+ -73.55596694384123,
+ 45.501459897206786
+ ],
+ [
+ -73.55577430995828,
+ 45.50140717265319
+ ],
+ [
+ -73.5556314013899,
+ 45.50136805754012
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":220,
+ "ID_UEV":"01000177",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-41-4472-7-000-0000",
+ "SUPERFICIE":429,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000722861805609,
+ "OBJECTID":83315,
+ "Join_Count":1,
+ "TARGET_FID":83315,
+ "feature_id":"e2cf4925-58d2-41f8-82c8-b4292dfd50c7",
+ "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":18.6,
+ "elevmin":12.78,
+ "elevmax":13.46,
+ "bldgarea":1287.25,
+ "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_2":83315,
+ "Shape_Le_1":0.000722861805609,
+ "Shape_Ar_1":6.96814487432e-09,
+ "OBJECTID_3":83315,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83314,
+ "g_objectid":"945672",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1180063",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004041447270000000",
+ "g_sup_tota":"429.2",
+ "g_geometry":"0.00108167",
+ "g_geomet_1":"5.05677e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000722861805609,
+ "Shape_Area":6.96814487432e-09,
+ "Shape_Le_3":0.000722861288782,
+ "Shape_Ar_2":6.96814487432e-09,
+ "building_height":8.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":221,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55591837145752,
+ 45.50090797157592
+ ],
+ [
+ -73.55585027389287,
+ 45.500983272710165
+ ],
+ [
+ -73.5562348213018,
+ 45.501163102045815
+ ],
+ [
+ -73.5563014889444,
+ 45.50108728829801
+ ],
+ [
+ -73.55622457892302,
+ 45.501057713193205
+ ],
+ [
+ -73.5559909692297,
+ 45.50094944021479
+ ],
+ [
+ -73.55591837145752,
+ 45.50090797157592
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":221,
+ "ID_UEV":"01000185",
+ "CIVIQUE_DE":" 350",
+ "CIVIQUE_FI":" 350",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-41-1725-1-000-0000",
+ "SUPERFICIE":341,
+ "SUPERFIC_1":1426,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00105048855793,
+ "OBJECTID":83316,
+ "Join_Count":1,
+ "TARGET_FID":83316,
+ "feature_id":"3ddb7eca-0912-4598-99f2-ec3f7a3cc368",
+ "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":20.99,
+ "elevmin":12.79,
+ "elevmax":13.64,
+ "bldgarea":2252.77,
+ "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_2":83316,
+ "Shape_Le_1":0.00105048855793,
+ "Shape_Ar_1":3.89577606255e-08,
+ "OBJECTID_3":83316,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83315,
+ "g_objectid":"939495",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179934",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004041172510000000",
+ "g_sup_tota":"340.8",
+ "g_geometry":"0.00105049",
+ "g_geomet_1":"3.89579e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00105048855793,
+ "Shape_Area":3.89577606255e-08,
+ "Shape_Le_3":0.00105048901275,
+ "Shape_Ar_2":3.89577606255e-08,
+ "building_height":9.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":222,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56121517056552,
+ 45.52935679602961
+ ],
+ [
+ -73.56122226891442,
+ 45.529359548854394
+ ],
+ [
+ -73.56124756954155,
+ 45.529327348628534
+ ],
+ [
+ -73.56132333652461,
+ 45.52935674386893
+ ],
+ [
+ -73.56141034593256,
+ 45.52926572528329
+ ],
+ [
+ -73.56133551784173,
+ 45.5292309008357
+ ],
+ [
+ -73.56121517056552,
+ 45.52935679602961
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":222,
+ "ID_UEV":"01035165",
+ "CIVIQUE_DE":" 2297",
+ "CIVIQUE_FI":" 2301",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-1068-2-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":204,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000512449962648,
+ "OBJECTID":83324,
+ "Join_Count":1,
+ "TARGET_FID":83324,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83324,
+ "Shape_Le_1":0.000512449962648,
+ "Shape_Ar_1":1.0283432842e-08,
+ "OBJECTID_3":83324,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83323,
+ "g_objectid":"942828",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884577",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302106820000000",
+ "g_sup_tota":"175.2",
+ "g_geometry":"0.000681208",
+ "g_geomet_1":"2.01811e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000512449962648,
+ "Shape_Area":1.0283432842e-08,
+ "Shape_Le_3":0.000512449131056,
+ "Shape_Ar_2":1.0283432842e-08,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":223,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56558621745182,
+ 45.52003531852542
+ ],
+ [
+ -73.56558801429726,
+ 45.520033085508786
+ ],
+ [
+ -73.565813146981,
+ 45.520082816219286
+ ],
+ [
+ -73.56584266992512,
+ 45.520011747294596
+ ],
+ [
+ -73.56574116974103,
+ 45.51997294694424
+ ],
+ [
+ -73.56574106991629,
+ 45.51997294694424
+ ],
+ [
+ -73.56569396972277,
+ 45.52003114657045
+ ],
+ [
+ -73.5655776702951,
+ 45.519984547299316
+ ],
+ [
+ -73.56562651877067,
+ 45.51992432869511
+ ],
+ [
+ -73.56554004535865,
+ 45.52001939153199
+ ],
+ [
+ -73.56558621745182,
+ 45.52003531852542
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56547340739368,
+ 45.52003003680705
+ ],
+ [
+ -73.56546612378443,
+ 45.52003004220298
+ ],
+ [
+ -73.56547164112519,
+ 45.52003255940539
+ ],
+ [
+ -73.56547340739368,
+ 45.52003003680705
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":223,
+ "ID_UEV":"01040569",
+ "CIVIQUE_DE":" 902",
+ "CIVIQUE_FI":" 902",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-62-6633-6-000-0000",
+ "SUPERFICIE":359,
+ "SUPERFIC_1":284,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000890624716661,
+ "OBJECTID":83334,
+ "Join_Count":1,
+ "TARGET_FID":83334,
+ "feature_id":"20d2f7df-fd7e-4a32-9531-573481579f20",
+ "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.34,
+ "heightmax":16.07,
+ "elevmin":31.09,
+ "elevmax":36.86,
+ "bldgarea":1598.6,
+ "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_2":83334,
+ "Shape_Le_1":0.000890624716661,
+ "Shape_Ar_1":1.57544193244e-08,
+ "OBJECTID_3":83334,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83333,
+ "g_objectid":"944708",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994262873160000000",
+ "g_sup_tota":"466",
+ "g_geometry":"0.00114654",
+ "g_geomet_1":"5.32238e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000890624716661,
+ "Shape_Area":1.57544193244e-08,
+ "Shape_Le_3":0.000890623658578,
+ "Shape_Ar_2":1.57544193244e-08,
+ "building_height":6.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":224,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5611258013365,
+ 45.52865691843233
+ ],
+ [
+ -73.56105796907185,
+ 45.528625448455976
+ ],
+ [
+ -73.56105586915488,
+ 45.52862774892177
+ ],
+ [
+ -73.56088489184613,
+ 45.528815332212105
+ ],
+ [
+ -73.56094654037238,
+ 45.52884444506538
+ ],
+ [
+ -73.5611258013365,
+ 45.52865691843233
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":224,
+ "ID_UEV":"01035024",
+ "CIVIQUE_DE":" 2230",
+ "CIVIQUE_FI":" 2230",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-3402-1-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":545,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000659303028406,
+ "OBJECTID":83340,
+ "Join_Count":1,
+ "TARGET_FID":83340,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":83340,
+ "Shape_Le_1":0.000659303028406,
+ "Shape_Ar_1":1.75534911945e-08,
+ "OBJECTID_3":83340,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83339,
+ "g_objectid":"942804",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884547",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302340210000000",
+ "g_sup_tota":"181.6",
+ "g_geometry":"0.00070061",
+ "g_geomet_1":"2.10287e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000659303028406,
+ "Shape_Area":1.75534911945e-08,
+ "Shape_Le_3":0.000659304815079,
+ "Shape_Ar_2":1.75534911945e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":225,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55759674201788,
+ 45.51439800461451
+ ],
+ [
+ -73.55759886711587,
+ 45.5143989462047
+ ],
+ [
+ -73.55766926694496,
+ 45.51432054600669
+ ],
+ [
+ -73.55766885595479,
+ 45.51432036344431
+ ],
+ [
+ -73.55759674201788,
+ 45.51439800461451
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":225,
+ "ID_UEV":"01002969",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Labelle (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-26-9611-4-000-0000",
+ "SUPERFICIE":169,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000214107838231,
+ "OBJECTID":83349,
+ "Join_Count":1,
+ "TARGET_FID":83349,
+ "feature_id":"0591afc8-69a4-42ca-8e62-0e54191ab04d",
+ "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":60.45,
+ "elevmin":22.35,
+ "elevmax":24.48,
+ "bldgarea":1843.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_2":83349,
+ "Shape_Le_1":0.000214107838231,
+ "Shape_Ar_1":1.38940797782e-10,
+ "OBJECTID_3":83349,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83348,
+ "g_objectid":"2322309",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2162071",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004126961140000000",
+ "g_sup_tota":"169.2",
+ "g_geometry":"0.000621366",
+ "g_geomet_1":"1.92052e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000214107838231,
+ "Shape_Area":1.38940797782e-10,
+ "Shape_Le_3":0.000214108500874,
+ "Shape_Ar_2":1.38940797782e-10,
+ "building_height":29.970000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":226,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5610409682879,
+ 45.52885876047371
+ ],
+ [
+ -73.5611164798635,
+ 45.52889286996027
+ ],
+ [
+ -73.5612097359624,
+ 45.52879531510201
+ ],
+ [
+ -73.56117756901145,
+ 45.52877994928553
+ ],
+ [
+ -73.56123786945396,
+ 45.52871754892604
+ ],
+ [
+ -73.56123976882212,
+ 45.52871554883381
+ ],
+ [
+ -73.56120116902058,
+ 45.528697548903054
+ ],
+ [
+ -73.56113616872105,
+ 45.528766749036535
+ ],
+ [
+ -73.56113114690675,
+ 45.52876442608769
+ ],
+ [
+ -73.5610409682879,
+ 45.52885876047371
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":226,
+ "ID_UEV":"01035028",
+ "CIVIQUE_DE":" 2238",
+ "CIVIQUE_FI":" 2242",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-2210-9-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":286,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000616566491533,
+ "OBJECTID":83357,
+ "Join_Count":1,
+ "TARGET_FID":83357,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":83357,
+ "Shape_Le_1":0.000616566491533,
+ "Shape_Ar_1":1.41305724068e-08,
+ "OBJECTID_3":83357,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83356,
+ "g_objectid":"942968",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885462",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302171410000000",
+ "g_sup_tota":"181.6",
+ "g_geometry":"0.000699588",
+ "g_geomet_1":"2.09e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000616566491533,
+ "Shape_Area":1.41305724068e-08,
+ "Shape_Le_3":0.00061656554136,
+ "Shape_Ar_2":1.41305724068e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":227,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5611164798635,
+ 45.52889286996027
+ ],
+ [
+ -73.56115096886397,
+ 45.52890844891608
+ ],
+ [
+ -73.56114306921911,
+ 45.52891704913281
+ ],
+ [
+ -73.56114376889167,
+ 45.5289174484318
+ ],
+ [
+ -73.56118316549254,
+ 45.52893621008832
+ ],
+ [
+ -73.56130416837452,
+ 45.52880963051034
+ ],
+ [
+ -73.5612764692555,
+ 45.52879644914711
+ ],
+ [
+ -73.5612560690342,
+ 45.528817449216206
+ ],
+ [
+ -73.5612097359624,
+ 45.52879531510201
+ ],
+ [
+ -73.5611164798635,
+ 45.52889286996027
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":227,
+ "ID_UEV":"01035030",
+ "CIVIQUE_DE":" 2244",
+ "CIVIQUE_FI":" 2248",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-1714-1-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000515334166483,
+ "OBJECTID":83359,
+ "Join_Count":1,
+ "TARGET_FID":83359,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":83359,
+ "Shape_Le_1":0.000515334166483,
+ "Shape_Ar_1":1.18496249954e-08,
+ "OBJECTID_3":83359,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83358,
+ "g_objectid":"942969",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885463",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302111930000000",
+ "g_sup_tota":"163.9",
+ "g_geometry":"0.000683342",
+ "g_geomet_1":"1.8851e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000515334166483,
+ "Shape_Area":1.18496249954e-08,
+ "Shape_Le_3":0.000515334714614,
+ "Shape_Ar_2":1.18496249954e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":228,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55972013040154,
+ 45.527810337127654
+ ],
+ [
+ -73.55975196909993,
+ 45.52782394926614
+ ],
+ [
+ -73.5597265695474,
+ 45.52785334900315
+ ],
+ [
+ -73.55977931118811,
+ 45.527871641213565
+ ],
+ [
+ -73.55987515193856,
+ 45.527770157217276
+ ],
+ [
+ -73.55979350788593,
+ 45.527732637501515
+ ],
+ [
+ -73.55972013040154,
+ 45.527810337127654
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":228,
+ "ID_UEV":"01034922",
+ "CIVIQUE_DE":" 2095",
+ "CIVIQUE_FI":" 2099",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-3102-8-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":261,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000465613561968,
+ "OBJECTID":83362,
+ "Join_Count":1,
+ "TARGET_FID":83362,
+ "feature_id":"4f271120-04d5-422e-86e4-132f0b57d285",
+ "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.47,
+ "heightmax":38.14,
+ "elevmin":24.71,
+ "elevmax":26.72,
+ "bldgarea":1453.06,
+ "comment":" ",
+ "OBJECTID_2":83362,
+ "Shape_Le_1":0.000465613561968,
+ "Shape_Ar_1":1.09235164615e-08,
+ "OBJECTID_3":83362,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83361,
+ "g_objectid":"942956",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885247",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310379850000000",
+ "g_sup_tota":"187.6",
+ "g_geometry":"0.000688997",
+ "g_geomet_1":"2.16927e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000465613561968,
+ "Shape_Area":1.09235164615e-08,
+ "Shape_Le_3":0.000465612850937,
+ "Shape_Ar_2":1.09235164615e-08,
+ "building_height":17.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":229,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5594526621325,
+ 45.52772387540682
+ ],
+ [
+ -73.55952816921149,
+ 45.527753048514676
+ ],
+ [
+ -73.55952836886098,
+ 45.52775314923874
+ ],
+ [
+ -73.55954576894392,
+ 45.52773244864388
+ ],
+ [
+ -73.55955716425358,
+ 45.52773718986971
+ ],
+ [
+ -73.55963169017221,
+ 45.52765827615881
+ ],
+ [
+ -73.55955004611958,
+ 45.52762075554373
+ ],
+ [
+ -73.5594526621325,
+ 45.52772387540682
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":229,
+ "ID_UEV":"01034926",
+ "CIVIQUE_DE":" 2077",
+ "CIVIQUE_FI":" 2081",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-5089-7-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000460785065837,
+ "OBJECTID":83363,
+ "Join_Count":1,
+ "TARGET_FID":83363,
+ "feature_id":"4f271120-04d5-422e-86e4-132f0b57d285",
+ "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.47,
+ "heightmax":38.14,
+ "elevmin":24.71,
+ "elevmax":26.72,
+ "bldgarea":1453.06,
+ "comment":" ",
+ "OBJECTID_2":83363,
+ "Shape_Le_1":0.000460785065837,
+ "Shape_Ar_1":1.15214625003e-08,
+ "OBJECTID_3":83363,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83362,
+ "g_objectid":"942994",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885498",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310508970000000",
+ "g_sup_tota":"187.9",
+ "g_geometry":"0.00068818",
+ "g_geomet_1":"2.16579e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000460785065837,
+ "Shape_Area":1.15214625003e-08,
+ "Shape_Le_3":0.000460786001793,
+ "Shape_Ar_2":1.15214625003e-08,
+ "building_height":17.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":230,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56167787985211,
+ 45.529173511498655
+ ],
+ [
+ -73.56173837005159,
+ 45.529198948822724
+ ],
+ [
+ -73.56177952752502,
+ 45.529216226597875
+ ],
+ [
+ -73.56188635349426,
+ 45.52910447684043
+ ],
+ [
+ -73.56188316989422,
+ 45.52910284906753
+ ],
+ [
+ -73.561905470383,
+ 45.52908134897537
+ ],
+ [
+ -73.56181188872952,
+ 45.52903332517811
+ ],
+ [
+ -73.56167787985211,
+ 45.529173511498655
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":230,
+ "ID_UEV":"01035042",
+ "CIVIQUE_DE":" 2304",
+ "CIVIQUE_FI":" 2312",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-7145-5-000-0000",
+ "SUPERFICIE":239,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000598523981682,
+ "OBJECTID":83364,
+ "Join_Count":1,
+ "TARGET_FID":83364,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":83364,
+ "Shape_Le_1":0.000598523981682,
+ "Shape_Ar_1":1.94377298199e-08,
+ "OBJECTID_3":83364,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83363,
+ "g_objectid":"942907",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884759",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392645000000000",
+ "g_sup_tota":"181.6",
+ "g_geometry":"0.00069833",
+ "g_geomet_1":"2.08508e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000598523981682,
+ "Shape_Area":1.94377298199e-08,
+ "Shape_Le_3":0.000598525203677,
+ "Shape_Ar_2":1.94377298199e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":231,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56177952752502,
+ 45.529216226597875
+ ],
+ [
+ -73.56178077038808,
+ 45.52921674910398
+ ],
+ [
+ -73.56180787055862,
+ 45.52922814891024
+ ],
+ [
+ -73.56180487042027,
+ 45.52923184872114
+ ],
+ [
+ -73.56185377015721,
+ 45.52925074887326
+ ],
+ [
+ -73.56185440507858,
+ 45.52925099618682
+ ],
+ [
+ -73.56195897285016,
+ 45.529141608049066
+ ],
+ [
+ -73.56195377027213,
+ 45.529138948753776
+ ],
+ [
+ -73.56188635349426,
+ 45.52910447684043
+ ],
+ [
+ -73.56177952752502,
+ 45.529216226597875
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":231,
+ "ID_UEV":"01035044",
+ "CIVIQUE_DE":" 2316",
+ "CIVIQUE_FI":" 2322",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-6450-0-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":256,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000476104459827,
+ "OBJECTID":83365,
+ "Join_Count":1,
+ "TARGET_FID":83365,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":83365,
+ "Shape_Le_1":0.000476104459827,
+ "Shape_Ar_1":1.20280410461e-08,
+ "OBJECTID_3":83365,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83364,
+ "g_objectid":"942907",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884759",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392645000000000",
+ "g_sup_tota":"181.6",
+ "g_geometry":"0.00069833",
+ "g_geomet_1":"2.08508e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000476104459827,
+ "Shape_Area":1.20280410461e-08,
+ "Shape_Le_3":0.000476103668426,
+ "Shape_Ar_2":1.20280410461e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":232,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58084487431334,
+ 45.498738942598415
+ ],
+ [
+ -73.58087297453,
+ 45.498710142709214
+ ],
+ [
+ -73.5809239741839,
+ 45.49873484258921
+ ],
+ [
+ -73.58094707416998,
+ 45.49871124258008
+ ],
+ [
+ -73.58097217424829,
+ 45.4987235426077
+ ],
+ [
+ -73.58121617380922,
+ 45.49847534321282
+ ],
+ [
+ -73.58116557435362,
+ 45.49845074315757
+ ],
+ [
+ -73.58093227402706,
+ 45.498337343144165
+ ],
+ [
+ -73.58087227395812,
+ 45.498308143056654
+ ],
+ [
+ -73.58079517417978,
+ 45.49838654325466
+ ],
+ [
+ -73.58077077377403,
+ 45.49841104258584
+ ],
+ [
+ -73.58087937410568,
+ 45.49846464307911
+ ],
+ [
+ -73.58096197413764,
+ 45.49850534279763
+ ],
+ [
+ -73.58091847393027,
+ 45.49854904265449
+ ],
+ [
+ -73.58059017371939,
+ 45.498387242927215
+ ],
+ [
+ -73.58068107449384,
+ 45.49829614250327
+ ],
+ [
+ -73.58060017418055,
+ 45.49825624318137
+ ],
+ [
+ -73.58054007428684,
+ 45.49831664254931
+ ],
+ [
+ -73.58045997437017,
+ 45.498277142526405
+ ],
+ [
+ -73.5804553743379,
+ 45.498274942784676
+ ],
+ [
+ -73.58039357382621,
+ 45.49833914268758
+ ],
+ [
+ -73.58037597409377,
+ 45.49833074301967
+ ],
+ [
+ -73.58037237410763,
+ 45.498334542655314
+ ],
+ [
+ -73.58028787290885,
+ 45.49842424283484
+ ],
+ [
+ -73.58028767325936,
+ 45.49842434265958
+ ],
+ [
+ -73.58030887387727,
+ 45.498434742419725
+ ],
+ [
+ -73.5802805731118,
+ 45.498463543208246
+ ],
+ [
+ -73.58059397425436,
+ 45.49861604304625
+ ],
+ [
+ -73.58056457451734,
+ 45.49864594280631
+ ],
+ [
+ -73.5805609745312,
+ 45.49864944296771
+ ],
+ [
+ -73.58070467450297,
+ 45.498722042538525
+ ],
+ [
+ -73.58071277379732,
+ 45.49872614254774
+ ],
+ [
+ -73.58072097381573,
+ 45.49871794252932
+ ],
+ [
+ -73.58073267399556,
+ 45.4987235426077
+ ],
+ [
+ -73.58075847374641,
+ 45.49869714300904
+ ],
+ [
+ -73.58084487431334,
+ 45.498738942598415
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":232,
+ "ID_UEV":"01003041",
+ "CIVIQUE_DE":" 3415",
+ "CIVIQUE_FI":" 3421",
+ "NOM_RUE":"rue Redpath (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1932,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-48-9542-3-000-0000",
+ "SUPERFICIE":4005,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00309655092045,
+ "OBJECTID":83372,
+ "Join_Count":1,
+ "TARGET_FID":83372,
+ "feature_id":"1c77d1ce-530d-4689-befb-7d2ad12591d5",
+ "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.66,
+ "heightmax":95.93,
+ "elevmin":52.93,
+ "elevmax":58.77,
+ "bldgarea":1997.4,
+ "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_2":83372,
+ "Shape_Le_1":0.00309655092045,
+ "Shape_Ar_1":2.29978165796e-07,
+ "OBJECTID_3":83372,
+ "Join_Cou_1":1,
+ "TARGET_F_1":83371,
+ "g_objectid":"2322129",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1340923",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948954230000000",
+ "g_sup_tota":"4004.8",
+ "g_geometry":"0.00287558",
+ "g_geomet_1":"4.61106e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00309655092045,
+ "Shape_Area":2.29978165796e-07,
+ "Shape_Le_3":0.00309654889624,
+ "Shape_Ar_2":2.29978165796e-07,
+ "building_height":47.135000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":233,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55736936912294,
+ 45.51596283846452
+ ],
+ [
+ -73.55739226676155,
+ 45.51597324721788
+ ],
+ [
+ -73.55745566716715,
+ 45.51600204710709
+ ],
+ [
+ -73.55746026719942,
+ 45.51599694705176
+ ],
+ [
+ -73.55748764346183,
+ 45.51600936489057
+ ],
+ [
+ -73.55756402468184,
+ 45.5159259689586
+ ],
+ [
+ -73.5575695384253,
+ 45.51592842680575
+ ],
+ [
+ -73.55761218067944,
+ 45.515881162935614
+ ],
+ [
+ -73.55761109969434,
+ 45.515880680899
+ ],
+ [
+ -73.55761425271743,
+ 45.51587718523421
+ ],
+ [
+ -73.55761879339444,
+ 45.51587920960813
+ ],
+ [
+ -73.55762455085419,
+ 45.51587282711957
+ ],
+ [
+ -73.55762001197581,
+ 45.515870802745646
+ ],
+ [
+ -73.55765634368716,
+ 45.51583352494751
+ ],
+ [
+ -73.55754204974764,
+ 45.51577884346914
+ ],
+ [
+ -73.55736936912294,
+ 45.51596283846452
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":233,
+ "ID_UEV":"01003672",
+ "CIVIQUE_DE":" 1268",
+ "CIVIQUE_FI":" 1272",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-37-0677-1-000-0000",
+ "SUPERFICIE":286,
+ "SUPERFIC_1":667,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000770017811149,
+ "OBJECTID":83379,
+ "Join_Count":1,
+ "TARGET_FID":83379,
+ "feature_id":"d469b45b-ef06-4b3e-9916-c66ce8797863",
+ "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":42.06,
+ "elevmin":21.32,
+ "elevmax":23.94,
+ "bldgarea":2619.31,
+ "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_2":83379,
+ "Shape_Le_1":0.000770017811149,
+ "Shape_Ar_1":2.97842619214e-08,
+ "OBJECTID_3":83379,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83378,
+ "g_objectid":"943448",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162109",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004137067710000000",
+ "g_sup_tota":"286.4",
+ "g_geometry":"0.000824655",
+ "g_geomet_1":"3.31694e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000770017811149,
+ "Shape_Area":2.97842619214e-08,
+ "Shape_Le_3":0.000770016772798,
+ "Shape_Ar_2":2.97842619214e-08,
+ "building_height":20.775000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":234,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56061819699404,
+ 45.529432099861815
+ ],
+ [
+ -73.560692670752,
+ 45.52946728763551
+ ],
+ [
+ -73.56079094147061,
+ 45.52936383772123
+ ],
+ [
+ -73.56076086904072,
+ 45.52934974894205
+ ],
+ [
+ -73.5608228692019,
+ 45.52928444916829
+ ],
+ [
+ -73.56077830509655,
+ 45.52926355072258
+ ],
+ [
+ -73.56061819699404,
+ 45.529432099861815
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":234,
+ "ID_UEV":"01035239",
+ "CIVIQUE_DE":" 2218",
+ "CIVIQUE_FI":" 2222",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-5674-3-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":332,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000629999778835,
+ "OBJECTID":83383,
+ "Join_Count":1,
+ "TARGET_FID":83383,
+ "feature_id":"041d2b3e-9eb2-4064-9591-74b3aa75da5e",
+ "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":45.09,
+ "elevmin":28.29,
+ "elevmax":35.94,
+ "bldgarea":2580.82,
+ "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_2":83383,
+ "Shape_Le_1":0.000629999778835,
+ "Shape_Ar_1":1.53583496778e-08,
+ "OBJECTID_3":83383,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83382,
+ "g_objectid":"943534",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2317243",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302567430000000",
+ "g_sup_tota":"181.6",
+ "g_geometry":"0.000702357",
+ "g_geomet_1":"2.1026e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000629999778835,
+ "Shape_Area":1.53583496778e-08,
+ "Shape_Le_3":0.000630000594881,
+ "Shape_Ar_2":1.53583496778e-08,
+ "building_height":22.040000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":235,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56106551168585,
+ 45.52964345762976
+ ],
+ [
+ -73.56114160782079,
+ 45.529679417021775
+ ],
+ [
+ -73.56126142179902,
+ 45.52955341390922
+ ],
+ [
+ -73.56122276893748,
+ 45.529534048807605
+ ],
+ [
+ -73.56121646918655,
+ 45.529540348558534
+ ],
+ [
+ -73.56117776956026,
+ 45.52958004913026
+ ],
+ [
+ -73.56114210424656,
+ 45.52956291075002
+ ],
+ [
+ -73.56106551168585,
+ 45.52964345762976
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":235,
+ "ID_UEV":"01035245",
+ "CIVIQUE_DE":" 2254",
+ "CIVIQUE_FI":" 2258",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1921,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-2097-0-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":290,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000516340412895,
+ "OBJECTID":83385,
+ "Join_Count":1,
+ "TARGET_FID":83385,
+ "feature_id":"041d2b3e-9eb2-4064-9591-74b3aa75da5e",
+ "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":45.09,
+ "elevmin":28.29,
+ "elevmax":35.94,
+ "bldgarea":2580.82,
+ "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_2":83385,
+ "Shape_Le_1":0.000516340412895,
+ "Shape_Ar_1":1.15261046268e-08,
+ "OBJECTID_3":83385,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83384,
+ "g_objectid":"942963",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885456",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303140130000000",
+ "g_sup_tota":"185.6",
+ "g_geometry":"0.000707575",
+ "g_geomet_1":"2.15453e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000516340412895,
+ "Shape_Area":1.15261046268e-08,
+ "Shape_Le_3":0.000516341233428,
+ "Shape_Ar_2":1.15261046268e-08,
+ "building_height":22.040000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":236,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56114160782079,
+ 45.529679417021775
+ ],
+ [
+ -73.56121770125775,
+ 45.529715374615144
+ ],
+ [
+ -73.56129456091709,
+ 45.52963454624761
+ ],
+ [
+ -73.56127856917247,
+ 45.52962674912547
+ ],
+ [
+ -73.5612885687343,
+ 45.52961644919007
+ ],
+ [
+ -73.5613219695551,
+ 45.52958374894116
+ ],
+ [
+ -73.56126142179902,
+ 45.52955341390922
+ ],
+ [
+ -73.56114160782079,
+ 45.529679417021775
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":236,
+ "ID_UEV":"01035246",
+ "CIVIQUE_DE":" 2260",
+ "CIVIQUE_FI":" 2264",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1921,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-1401-3-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":295,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000516184352027,
+ "OBJECTID":83386,
+ "Join_Count":1,
+ "TARGET_FID":83386,
+ "feature_id":"041d2b3e-9eb2-4064-9591-74b3aa75da5e",
+ "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":45.09,
+ "elevmin":28.29,
+ "elevmax":35.94,
+ "bldgarea":2580.82,
+ "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_2":83386,
+ "Shape_Le_1":0.000516184352027,
+ "Shape_Ar_1":1.28372888399e-08,
+ "OBJECTID_3":83386,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83385,
+ "g_objectid":"942963",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885456",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303140130000000",
+ "g_sup_tota":"185.6",
+ "g_geometry":"0.000707575",
+ "g_geomet_1":"2.15453e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000516184352027,
+ "Shape_Area":1.28372888399e-08,
+ "Shape_Le_3":0.00051618487036,
+ "Shape_Ar_2":1.28372888399e-08,
+ "building_height":22.040000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":237,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55810041902096,
+ 45.52355777052499
+ ],
+ [
+ -73.55810396774577,
+ 45.523554447530024
+ ],
+ [
+ -73.55816616845576,
+ 45.52358714777894
+ ],
+ [
+ -73.55821076853398,
+ 45.52354524746549
+ ],
+ [
+ -73.55826616857067,
+ 45.52357444755301
+ ],
+ [
+ -73.55827066787886,
+ 45.52357024771905
+ ],
+ [
+ -73.55827611327385,
+ 45.523564381441346
+ ],
+ [
+ -73.55805619396003,
+ 45.52346120671961
+ ],
+ [
+ -73.55800714583496,
+ 45.52351401221219
+ ],
+ [
+ -73.55810041902096,
+ 45.52355777052499
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":237,
+ "ID_UEV":"01035493",
+ "CIVIQUE_DE":" 1561",
+ "CIVIQUE_FI":" 1563",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-5427-7-000-0000",
+ "SUPERFICIE":199,
+ "SUPERFIC_1":166,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000631127812466,
+ "OBJECTID":83387,
+ "Join_Count":1,
+ "TARGET_FID":83387,
+ "feature_id":"0f8a05a8-b724-4498-95ec-5873fedeff47",
+ "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.57,
+ "heightmax":35.24,
+ "elevmin":24.3,
+ "elevmax":24.89,
+ "bldgarea":704.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_2":83387,
+ "Shape_Le_1":0.000631127812466,
+ "Shape_Ar_1":1.27045578704e-08,
+ "OBJECTID_3":83387,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83386,
+ "g_objectid":"942080",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567319",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226481960000000",
+ "g_sup_tota":"397.2",
+ "g_geometry":"0.00097389",
+ "g_geomet_1":"4.66457e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000631127812466,
+ "Shape_Area":1.27045578704e-08,
+ "Shape_Le_3":0.000631129038998,
+ "Shape_Ar_2":1.27045578704e-08,
+ "building_height":16.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":238,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55795914811803,
+ 45.523565687256955
+ ],
+ [
+ -73.55810057640232,
+ 45.52363203923752
+ ],
+ [
+ -73.55813756821604,
+ 45.52359754753908
+ ],
+ [
+ -73.55808666838688,
+ 45.52357064791736
+ ],
+ [
+ -73.55810041902096,
+ 45.52355777052499
+ ],
+ [
+ -73.55800714583496,
+ 45.52351401221219
+ ],
+ [
+ -73.55795914811803,
+ 45.523565687256955
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":238,
+ "ID_UEV":"01035494",
+ "CIVIQUE_DE":" 1567",
+ "CIVIQUE_FI":" 1569",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-5833-6-000-0000",
+ "SUPERFICIE":199,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00045676138708,
+ "OBJECTID":83388,
+ "Join_Count":1,
+ "TARGET_FID":83388,
+ "feature_id":"0f8a05a8-b724-4498-95ec-5873fedeff47",
+ "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.57,
+ "heightmax":35.24,
+ "elevmin":24.3,
+ "elevmax":24.89,
+ "bldgarea":704.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_2":83388,
+ "Shape_Le_1":0.00045676138708,
+ "Shape_Ar_1":9.57038996868e-09,
+ "OBJECTID_3":83388,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83387,
+ "g_objectid":"942095",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567342",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226583360000000",
+ "g_sup_tota":"198.6",
+ "g_geometry":"0.000828664",
+ "g_geomet_1":"2.30891e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00045676138708,
+ "Shape_Area":9.57038996868e-09,
+ "Shape_Le_3":0.000456761366287,
+ "Shape_Ar_2":9.57038996868e-09,
+ "building_height":16.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":239,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56247129683473,
+ 45.52913608621171
+ ],
+ [
+ -73.5624730702978,
+ 45.529136948661545
+ ],
+ [
+ -73.56254507991335,
+ 45.52917200783219
+ ],
+ [
+ -73.56263790793494,
+ 45.52907372272442
+ ],
+ [
+ -73.56260227050022,
+ 45.52905764914149
+ ],
+ [
+ -73.56256657011296,
+ 45.52904164840365
+ ],
+ [
+ -73.56258187027893,
+ 45.52902474924308
+ ],
+ [
+ -73.56258156990538,
+ 45.52902464851901
+ ],
+ [
+ -73.56257769832396,
+ 45.52902342993764
+ ],
+ [
+ -73.56247129683473,
+ 45.52913608621171
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":239,
+ "ID_UEV":"01034878",
+ "CIVIQUE_DE":" 2359",
+ "CIVIQUE_FI":" 2363",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-1447-1-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":232,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477604373752,
+ "OBJECTID":83394,
+ "Join_Count":1,
+ "TARGET_FID":83394,
+ "feature_id":"bbf6c021-941f-4914-a315-29f80f675e18",
+ "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":41.31,
+ "elevmin":28.77,
+ "elevmax":38.65,
+ "bldgarea":2241.19,
+ "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_2":83394,
+ "Shape_Le_1":0.000477604373752,
+ "Shape_Ar_1":1.05791370756e-08,
+ "OBJECTID_3":83394,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83393,
+ "g_objectid":"942813",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884557",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392144710000000",
+ "g_sup_tota":"183.5",
+ "g_geometry":"0.000696273",
+ "g_geomet_1":"2.08097e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477604373752,
+ "Shape_Area":1.05791370756e-08,
+ "Shape_Le_3":0.000477604423191,
+ "Shape_Ar_2":1.05791370756e-08,
+ "building_height":20.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":240,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55750261807322,
+ 45.51838090320641
+ ],
+ [
+ -73.55750076726844,
+ 45.51838004705183
+ ],
+ [
+ -73.55745546751766,
+ 45.51835924663222
+ ],
+ [
+ -73.55739826703824,
+ 45.51842094641984
+ ],
+ [
+ -73.55739816721349,
+ 45.5184210471439
+ ],
+ [
+ -73.55742146684906,
+ 45.51843314662271
+ ],
+ [
+ -73.55739476687684,
+ 45.51845874672408
+ ],
+ [
+ -73.55739126671543,
+ 45.518462047235985
+ ],
+ [
+ -73.55741413287778,
+ 45.51847398843412
+ ],
+ [
+ -73.55750261807322,
+ 45.51838090320641
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55734491475785,
+ 45.518425126468706
+ ],
+ [
+ -73.55734496691854,
+ 45.51842514715312
+ ],
+ [
+ -73.55734646698771,
+ 45.518425846825664
+ ],
+ [
+ -73.55742076717651,
+ 45.518348747047334
+ ],
+ [
+ -73.55741749184561,
+ 45.51834718492494
+ ],
+ [
+ -73.55734491475785,
+ 45.518425126468706
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":240,
+ "ID_UEV":"01040230",
+ "CIVIQUE_DE":" 1461",
+ "CIVIQUE_FI":" 1461",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-30-1559-3-000-0000",
+ "SUPERFICIE":163,
+ "SUPERFIC_1":99,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000577360028898,
+ "OBJECTID":83396,
+ "Join_Count":2,
+ "TARGET_FID":83396,
+ "feature_id":"58c41496-fd90-4b2a-a8e2-ef0c469a7cf9",
+ "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.45,
+ "heightmax":15.11,
+ "elevmin":24.77,
+ "elevmax":26.66,
+ "bldgarea":1283.72,
+ "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_2":83396,
+ "Shape_Le_1":0.000577360028898,
+ "Shape_Ar_1":5.42341523243e-09,
+ "OBJECTID_3":83396,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83395,
+ "g_objectid":"941741",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566436",
+ "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":"66023004230106360000000",
+ "g_sup_tota":"159.3",
+ "g_geometry":"0.00062056",
+ "g_geomet_1":"1.85226e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000577360028898,
+ "Shape_Area":5.42341523243e-09,
+ "Shape_Le_3":0.000577360099208,
+ "Shape_Ar_2":5.42341523243e-09,
+ "building_height":6.33
+ }
+ },
+ {
+ "type":"Feature",
+ "id":241,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56249505152725,
+ 45.505434076871445
+ ],
+ [
+ -73.56255855805286,
+ 45.50546385882032
+ ],
+ [
+ -73.5626358907556,
+ 45.505387289642
+ ],
+ [
+ -73.56257056670013,
+ 45.5053570418443
+ ],
+ [
+ -73.56249505152725,
+ 45.505434076871445
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":241,
+ "ID_UEV":"01000525",
+ "CIVIQUE_DE":" 1078",
+ "CIVIQUE_FI":" 1080",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-96-0808-2-000-0000",
+ "SUPERFICIE":117,
+ "SUPERFIC_1":190,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000358832420102,
+ "OBJECTID":83400,
+ "Join_Count":1,
+ "TARGET_FID":83400,
+ "feature_id":"24842e85-d082-4395-8441-bcc94726f0fa",
+ "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.63,
+ "heightmax":25.42,
+ "elevmin":17.8,
+ "elevmax":22.98,
+ "bldgarea":2050.27,
+ "comment":" ",
+ "OBJECTID_2":83400,
+ "Shape_Le_1":0.000358832420102,
+ "Shape_Ar_1":7.24112059426e-09,
+ "OBJECTID_3":83400,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83399,
+ "g_objectid":"939457",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179487",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994096080820000000",
+ "g_sup_tota":"116.6",
+ "g_geometry":"0.000542588",
+ "g_geomet_1":"1.34772e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000358832420102,
+ "Shape_Area":7.24112059426e-09,
+ "Shape_Le_3":0.000358831288963,
+ "Shape_Ar_2":7.24112059426e-09,
+ "building_height":12.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":242,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56009058003808,
+ 45.523977993140164
+ ],
+ [
+ -73.56040206922196,
+ 45.524119684925815
+ ],
+ [
+ -73.56041206878379,
+ 45.52410604760631
+ ],
+ [
+ -73.56047589996466,
+ 45.52401889250818
+ ],
+ [
+ -73.56038141539184,
+ 45.52397559015166
+ ],
+ [
+ -73.56037929119317,
+ 45.52397783845677
+ ],
+ [
+ -73.56018048975965,
+ 45.523885058099246
+ ],
+ [
+ -73.56016926891847,
+ 45.52389454774548
+ ],
+ [
+ -73.56017296872936,
+ 45.523896647662454
+ ],
+ [
+ -73.56021536906587,
+ 45.523918347404106
+ ],
+ [
+ -73.56017506954566,
+ 45.523957247579204
+ ],
+ [
+ -73.56016666897844,
+ 45.523952947920506
+ ],
+ [
+ -73.56016586948114,
+ 45.52395384814187
+ ],
+ [
+ -73.5601321691861,
+ 45.523994848233954
+ ],
+ [
+ -73.56009058003808,
+ 45.523977993140164
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5600644853096,
+ 45.52396612298848
+ ],
+ [
+ -73.56007203421885,
+ 45.52396955660005
+ ],
+ [
+ -73.56007996893726,
+ 45.523959847519244
+ ],
+ [
+ -73.56007287778293,
+ 45.523956949903614
+ ],
+ [
+ -73.5600644853096,
+ 45.52396612298848
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":242,
+ "ID_UEV":"01035464",
+ "CIVIQUE_DE":" 1488",
+ "CIVIQUE_FI":" 1494",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1939,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-06-9176-8-000-0000",
+ "SUPERFICIE":394,
+ "SUPERFIC_1":686,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00106566289823,
+ "OBJECTID":83401,
+ "Join_Count":1,
+ "TARGET_FID":83401,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":83401,
+ "Shape_Le_1":0.00106566289823,
+ "Shape_Ar_1":3.56407656918e-08,
+ "OBJECTID_3":83401,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83400,
+ "g_objectid":"941936",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566876",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206917680000000",
+ "g_sup_tota":"394",
+ "g_geometry":"0.000990364",
+ "g_geomet_1":"4.46833e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00106566289823,
+ "Shape_Area":3.56407656918e-08,
+ "Shape_Le_3":0.00106566161793,
+ "Shape_Ar_2":3.56407656918e-08,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":243,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56194268253061,
+ 45.52780108849973
+ ],
+ [
+ -73.5618014691843,
+ 45.52772734858856
+ ],
+ [
+ -73.56169036873737,
+ 45.52783234893405
+ ],
+ [
+ -73.56183486910577,
+ 45.52790044919667
+ ],
+ [
+ -73.56184465732692,
+ 45.52790505642351
+ ],
+ [
+ -73.56194268253061,
+ 45.52780108849973
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":243,
+ "ID_UEV":"01034318",
+ "CIVIQUE_DE":" 2238",
+ "CIVIQUE_FI":" 2256",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-90-6897-6-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":811,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000625627545866,
+ "OBJECTID":83407,
+ "Join_Count":1,
+ "TARGET_FID":83407,
+ "feature_id":"ed9f5caf-13dd-4b77-9fec-a2be053005f9",
+ "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.08,
+ "heightmax":12.62,
+ "elevmin":29.54,
+ "elevmax":36.07,
+ "bldgarea":1051.06,
+ "comment":" ",
+ "OBJECTID_2":83407,
+ "Shape_Le_1":0.000625627545866,
+ "Shape_Ar_1":2.30944011437e-08,
+ "OBJECTID_3":83407,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83406,
+ "g_objectid":"944725",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994390689760000000",
+ "g_sup_tota":"372.4",
+ "g_geometry":"0.000865981",
+ "g_geomet_1":"4.29192e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000625627545866,
+ "Shape_Area":2.30944011437e-08,
+ "Shape_Le_3":0.000625628774131,
+ "Shape_Ar_2":2.30944011437e-08,
+ "building_height":5.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":244,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57693113988205,
+ 45.50262659579106
+ ],
+ [
+ -73.57701439192249,
+ 45.50266730180483
+ ],
+ [
+ -73.57727290833989,
+ 45.502396528527264
+ ],
+ [
+ -73.57718921293367,
+ 45.502356289261634
+ ],
+ [
+ -73.57693113988205,
+ 45.50262659579106
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":244,
+ "ID_UEV":"01037627",
+ "CIVIQUE_DE":" 3421",
+ "CIVIQUE_FI":" 3421",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres immeubles r\u00c3\u00a9sidentiels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-72-7489-7-000-0000",
+ "SUPERFICIE":314,
+ "SUPERFIC_1":398,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000933622269428,
+ "OBJECTID":83410,
+ "Join_Count":1,
+ "TARGET_FID":83410,
+ "feature_id":"9286f9eb-d756-4a9c-859e-9fe6c4dbc2a0",
+ "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":70.16,
+ "elevmin":45.59,
+ "elevmax":51.45,
+ "bldgarea":2190.75,
+ "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_2":83410,
+ "Shape_Le_1":0.000933622269428,
+ "Shape_Ar_1":3.30368740022e-08,
+ "OBJECTID_3":83410,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83409,
+ "g_objectid":"939759",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1339448",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984072679330000000",
+ "g_sup_tota":"314",
+ "g_geometry":"0.00100401",
+ "g_geomet_1":"3.61544e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000933622269428,
+ "Shape_Area":3.30368740022e-08,
+ "Shape_Le_3":0.000933622543971,
+ "Shape_Ar_2":3.30368740022e-08,
+ "building_height":34.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":245,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55344567469997,
+ 45.53324229084934
+ ],
+ [
+ -73.55351917269351,
+ 45.53327346494874
+ ],
+ [
+ -73.5535941905413,
+ 45.53318600857773
+ ],
+ [
+ -73.55359186669314,
+ 45.53318495007568
+ ],
+ [
+ -73.55360936750016,
+ 45.53316595009881
+ ],
+ [
+ -73.55360926677609,
+ 45.53316585027407
+ ],
+ [
+ -73.55353782193478,
+ 45.53313486323365
+ ],
+ [
+ -73.55344567469997,
+ 45.53324229084934
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":245,
+ "ID_UEV":"01023632",
+ "CIVIQUE_DE":" 2036",
+ "CIVIQUE_FI":" 2038",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-66-1695-7-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":187,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000442992821816,
+ "OBJECTID":83414,
+ "Join_Count":1,
+ "TARGET_FID":83414,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":83414,
+ "Shape_Le_1":0.000442992821816,
+ "Shape_Ar_1":1.06915889334e-08,
+ "OBJECTID_3":83414,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83413,
+ "g_objectid":"941205",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425142",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004366169570000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.00065315",
+ "g_geomet_1":"1.87723e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000442992821816,
+ "Shape_Area":1.06915889334e-08,
+ "Shape_Le_3":0.000442994904466,
+ "Shape_Ar_2":1.06915889334e-08,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":246,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56517333870046,
+ 45.52067857840397
+ ],
+ [
+ -73.56548327115789,
+ 45.52082105259979
+ ],
+ [
+ -73.56549946974657,
+ 45.52080294654904
+ ],
+ [
+ -73.5655290700324,
+ 45.520770247199444
+ ],
+ [
+ -73.56524927025946,
+ 45.52064524683097
+ ],
+ [
+ -73.56521787132954,
+ 45.520631212910445
+ ],
+ [
+ -73.56517333870046,
+ 45.52067857840397
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":246,
+ "ID_UEV":"01040581",
+ "CIVIQUE_DE":" 1000",
+ "CIVIQUE_FI":" 1004",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-63-9314-8-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":557,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000815370490245,
+ "OBJECTID":83415,
+ "Join_Count":1,
+ "TARGET_FID":83415,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":83415,
+ "Shape_Le_1":0.000815370490245,
+ "Shape_Ar_1":2.1597608678e-08,
+ "OBJECTID_3":83415,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83414,
+ "g_objectid":"941495",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565291",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994263931480000000",
+ "g_sup_tota":"241.5",
+ "g_geometry":"0.000900147",
+ "g_geomet_1":"2.78099e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000815370490245,
+ "Shape_Area":2.1597608678e-08,
+ "Shape_Le_3":0.000815370369273,
+ "Shape_Ar_2":2.1597608678e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":247,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5652963182923,
+ 45.52081703802618
+ ],
+ [
+ -73.56546539173628,
+ 45.52089476013537
+ ],
+ [
+ -73.56549486971431,
+ 45.5208388465858
+ ],
+ [
+ -73.56549526991262,
+ 45.520838246737995
+ ],
+ [
+ -73.56547567008795,
+ 45.52082954669652
+ ],
+ [
+ -73.56548327115789,
+ 45.52082105259979
+ ],
+ [
+ -73.56517333870046,
+ 45.52067857840397
+ ],
+ [
+ -73.56514666390926,
+ 45.52070695201452
+ ],
+ [
+ -73.5651701703889,
+ 45.52069304669704
+ ],
+ [
+ -73.56518917036577,
+ 45.52070894671082
+ ],
+ [
+ -73.56520336976155,
+ 45.52071984649402
+ ],
+ [
+ -73.56517766983544,
+ 45.520736646729155
+ ],
+ [
+ -73.56517527044421,
+ 45.52073894719495
+ ],
+ [
+ -73.56530756971041,
+ 45.5208061472362
+ ],
+ [
+ -73.5652963182923,
+ 45.52081703802618
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":247,
+ "ID_UEV":"01040582",
+ "CIVIQUE_DE":" 1006",
+ "CIVIQUE_FI":" 1010",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-63-9621-6-000-0000",
+ "SUPERFICIE":257,
+ "SUPERFIC_1":469,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000930971379346,
+ "OBJECTID":83416,
+ "Join_Count":1,
+ "TARGET_FID":83416,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":83416,
+ "Shape_Le_1":0.000930971379346,
+ "Shape_Ar_1":2.21613890058e-08,
+ "OBJECTID_3":83416,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83415,
+ "g_objectid":"941495",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565291",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994263931480000000",
+ "g_sup_tota":"241.5",
+ "g_geometry":"0.000900147",
+ "g_geomet_1":"2.78099e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000930971379346,
+ "Shape_Area":2.21613890058e-08,
+ "Shape_Le_3":0.000930970857732,
+ "Shape_Ar_2":2.21613890058e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":248,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55462706640783,
+ 45.52491130506297
+ ],
+ [
+ -73.55463236701198,
+ 45.524913948170465
+ ],
+ [
+ -73.55467156756063,
+ 45.52487514782011
+ ],
+ [
+ -73.5547158672653,
+ 45.52489724776007
+ ],
+ [
+ -73.55470816726995,
+ 45.524904847930685
+ ],
+ [
+ -73.55473486724217,
+ 45.524918148004424
+ ],
+ [
+ -73.55472896679024,
+ 45.52492384790755
+ ],
+ [
+ -73.55480396755091,
+ 45.52494234786136
+ ],
+ [
+ -73.55482715117394,
+ 45.52494820874313
+ ],
+ [
+ -73.55490873587131,
+ 45.52486113368467
+ ],
+ [
+ -73.55479686740335,
+ 45.52480914747447
+ ],
+ [
+ -73.55474530837112,
+ 45.52478519223313
+ ],
+ [
+ -73.55462706640783,
+ 45.52491130506297
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":248,
+ "ID_UEV":"01034602",
+ "CIVIQUE_DE":" 1669",
+ "CIVIQUE_FI":" 1669",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-57-2175-0-000-0000",
+ "SUPERFICIE":295,
+ "SUPERFIC_1":537,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000733007308489,
+ "OBJECTID":83421,
+ "Join_Count":1,
+ "TARGET_FID":83421,
+ "feature_id":"c4b2e5df-abbf-4c78-b176-bdbca391f41d",
+ "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.55,
+ "heightmax":38.15,
+ "elevmin":24.15,
+ "elevmax":26.2,
+ "bldgarea":1190.97,
+ "comment":" ",
+ "OBJECTID_2":83421,
+ "Shape_Le_1":0.000733007308489,
+ "Shape_Ar_1":2.20067602536e-08,
+ "OBJECTID_3":83421,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83420,
+ "g_objectid":"942394",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729294",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257118270000000",
+ "g_sup_tota":"160.4",
+ "g_geometry":"0.00059844",
+ "g_geomet_1":"1.87222e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000733007308489,
+ "Shape_Area":2.20067602536e-08,
+ "Shape_Le_3":0.000733007064922,
+ "Shape_Ar_2":2.20067602536e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":249,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57357614434542,
+ 45.49951891201847
+ ],
+ [
+ -73.57394641591621,
+ 45.49969804078225
+ ],
+ [
+ -73.57402391589285,
+ 45.49961880781203
+ ],
+ [
+ -73.57365707073907,
+ 45.49944414328288
+ ],
+ [
+ -73.57365467134785,
+ 45.49944294268795
+ ],
+ [
+ -73.57357614434542,
+ 45.49951891201847
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":249,
+ "ID_UEV":"01039239",
+ "CIVIQUE_DE":" 1133",
+ "CIVIQUE_FI":" 1133",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Centre commercial r\u00c3\u00a9gional (100 \u00c3\u00a0 199 magasins)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-09-3362-2-000-0000",
+ "SUPERFICIE":402,
+ "SUPERFIC_1":1552,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00104040674292,
+ "OBJECTID":83424,
+ "Join_Count":1,
+ "TARGET_FID":83424,
+ "feature_id":"176d5f37-8650-4caf-8c43-89a543b73b2d",
+ "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":53.84,
+ "elevmin":37,
+ "elevmax":40.73,
+ "bldgarea":2919.96,
+ "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_2":83424,
+ "Shape_Le_1":0.00104040674292,
+ "Shape_Ar_1":4.2530282567e-08,
+ "OBJECTID_3":83424,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83423,
+ "g_objectid":"938121",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340074",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5002",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993909336220000000",
+ "g_sup_tota":"401.8",
+ "g_geometry":"0.00108439",
+ "g_geomet_1":"4.62387e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00104040674292,
+ "Shape_Area":4.2530282567e-08,
+ "Shape_Le_3":0.0010404061057,
+ "Shape_Ar_2":4.2530282567e-08,
+ "building_height":26.665000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":250,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5580797427078,
+ 45.52096026765253
+ ],
+ [
+ -73.55827061841615,
+ 45.52104904153034
+ ],
+ [
+ -73.55835245672235,
+ 45.52096185225797
+ ],
+ [
+ -73.55833246839055,
+ 45.520948746437796
+ ],
+ [
+ -73.5583385487069,
+ 45.52094415719739
+ ],
+ [
+ -73.5581838131543,
+ 45.5208721907493
+ ],
+ [
+ -73.55817926798068,
+ 45.520877146913094
+ ],
+ [
+ -73.55816096767636,
+ 45.520868847069934
+ ],
+ [
+ -73.55815736769021,
+ 45.52087294707914
+ ],
+ [
+ -73.5580797427078,
+ 45.52096026765253
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":250,
+ "ID_UEV":"01035519",
+ "CIVIQUE_DE":" 1317",
+ "CIVIQUE_FI":" 1321",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-23-5238-5-000-0000",
+ "SUPERFICIE":243,
+ "SUPERFIC_1":396,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000681374705864,
+ "OBJECTID":83431,
+ "Join_Count":1,
+ "TARGET_FID":83431,
+ "feature_id":"66c18ebc-3469-4d47-beb3-7e66b0221223",
+ "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.54,
+ "heightmax":14.84,
+ "elevmin":26.13,
+ "elevmax":27.19,
+ "bldgarea":1365.56,
+ "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_2":83431,
+ "Shape_Le_1":0.000681374705864,
+ "Shape_Ar_1":2.5942878912e-08,
+ "OBJECTID_3":83431,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83430,
+ "g_objectid":"942043",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567268",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004223545300000000",
+ "g_sup_tota":"394.5",
+ "g_geometry":"0.000984785",
+ "g_geomet_1":"4.47454e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000681374705864,
+ "Shape_Area":2.5942878912e-08,
+ "Shape_Le_3":0.00068137307972,
+ "Shape_Ar_2":2.5942878912e-08,
+ "building_height":6.15
+ }
+ },
+ {
+ "type":"Feature",
+ "id":251,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55947937469523,
+ 45.52743497089748
+ ],
+ [
+ -73.55964193884624,
+ 45.52751077475275
+ ],
+ [
+ -73.55972173479208,
+ 45.52742622768855
+ ],
+ [
+ -73.55956936895306,
+ 45.527354549023514
+ ],
+ [
+ -73.5595832688746,
+ 45.5273399485301
+ ],
+ [
+ -73.55958276885154,
+ 45.5273397488806
+ ],
+ [
+ -73.55957244283582,
+ 45.52733489613884
+ ],
+ [
+ -73.55947937469523,
+ 45.52743497089748
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":251,
+ "ID_UEV":"01034651",
+ "CIVIQUE_DE":" 2066",
+ "CIVIQUE_FI":" 2076",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-4053-4-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000632779346836,
+ "OBJECTID":83437,
+ "Join_Count":1,
+ "TARGET_FID":83437,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":83437,
+ "Shape_Le_1":0.000632779346836,
+ "Shape_Ar_1":2.01233913609e-08,
+ "OBJECTID_3":83437,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83436,
+ "g_objectid":"942870",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884713",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310405340000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000838297",
+ "g_geomet_1":"4.09272e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000632779346836,
+ "Shape_Area":2.01233913609e-08,
+ "Shape_Le_3":0.000632779161852,
+ "Shape_Ar_2":2.01233913609e-08,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":252,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5574386582893,
+ 45.52519104727931
+ ],
+ [
+ -73.55756423602251,
+ 45.525256463964936
+ ],
+ [
+ -73.5576398609127,
+ 45.525175972843165
+ ],
+ [
+ -73.5575104664567,
+ 45.525114617495895
+ ],
+ [
+ -73.5574386582893,
+ 45.52519104727931
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":252,
+ "ID_UEV":"01034208",
+ "CIVIQUE_DE":" 1849",
+ "CIVIQUE_FI":" 1859",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-38-0713-0-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":334,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000500114265203,
+ "OBJECTID":83438,
+ "Join_Count":1,
+ "TARGET_FID":83438,
+ "feature_id":"552998a6-5537-43d8-a355-7412df2cf298",
+ "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.57,
+ "heightmax":38.41,
+ "elevmin":24.19,
+ "elevmax":24.55,
+ "bldgarea":465.23,
+ "comment":" ",
+ "OBJECTID_2":83438,
+ "Shape_Le_1":0.000500114265203,
+ "Shape_Ar_1":1.46751848632e-08,
+ "OBJECTID_3":83438,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83437,
+ "g_objectid":"942106",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567354",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004238071300000000",
+ "g_sup_tota":"297.3",
+ "g_geometry":"0.000791703",
+ "g_geomet_1":"3.44026e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000500114265203,
+ "Shape_Area":1.46751848632e-08,
+ "Shape_Le_3":0.000500114239696,
+ "Shape_Ar_2":1.46751848632e-08,
+ "building_height":17.919999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":253,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55716542356728,
+ 45.52520812540496
+ ],
+ [
+ -73.55724225804562,
+ 45.52524396069053
+ ],
+ [
+ -73.55725286824712,
+ 45.525237347975526
+ ],
+ [
+ -73.55728346767974,
+ 45.52519984804485
+ ],
+ [
+ -73.55727876782272,
+ 45.52519424796647
+ ],
+ [
+ -73.55720336776305,
+ 45.52516344798503
+ ],
+ [
+ -73.55718156819665,
+ 45.52517434776823
+ ],
+ [
+ -73.55716516815983,
+ 45.52519324792035
+ ],
+ [
+ -73.55716139640316,
+ 45.525206247620524
+ ],
+ [
+ -73.55716542356728,
+ 45.52520812540496
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5575104664567,
+ 45.525114617495895
+ ],
+ [
+ -73.55731966809006,
+ 45.52502414749671
+ ],
+ [
+ -73.55731746834833,
+ 45.52502634813775
+ ],
+ [
+ -73.5572302682841,
+ 45.525122248243456
+ ],
+ [
+ -73.55723646821029,
+ 45.52512494800824
+ ],
+ [
+ -73.55732316825146,
+ 45.52516174826636
+ ],
+ [
+ -73.55734346774868,
+ 45.52514144786982
+ ],
+ [
+ -73.5574002680298,
+ 45.52517104815564
+ ],
+ [
+ -73.5574386582893,
+ 45.52519104727931
+ ],
+ [
+ -73.5575104664567,
+ 45.525114617495895
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":253,
+ "ID_UEV":"01034210",
+ "CIVIQUE_DE":" 1835",
+ "CIVIQUE_FI":" 1847",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-38-2005-9-000-0000",
+ "SUPERFICIE":446,
+ "SUPERFIC_1":741,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000987572234013,
+ "OBJECTID":83440,
+ "Join_Count":2,
+ "TARGET_FID":83440,
+ "feature_id":"552998a6-5537-43d8-a355-7412df2cf298",
+ "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.57,
+ "heightmax":38.41,
+ "elevmin":24.19,
+ "elevmax":24.55,
+ "bldgarea":465.23,
+ "comment":" ",
+ "OBJECTID_2":83440,
+ "Shape_Le_1":0.000987572234013,
+ "Shape_Ar_1":2.88833054126e-08,
+ "OBJECTID_3":83440,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83439,
+ "g_objectid":"945401",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1567593",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004238531590000000",
+ "g_sup_tota":"1797.3",
+ "g_geometry":"0.00220933",
+ "g_geomet_1":"2.07042e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000987572234013,
+ "Shape_Area":2.88833054126e-08,
+ "Shape_Le_3":0.000987572841586,
+ "Shape_Ar_2":2.88833054126e-08,
+ "building_height":17.919999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":254,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55540306442172,
+ 45.51727432520024
+ ],
+ [
+ -73.55555303716478,
+ 45.51734259723337
+ ],
+ [
+ -73.55559886751557,
+ 45.51729214706523
+ ],
+ [
+ -73.55559916698981,
+ 45.51729184669167
+ ],
+ [
+ -73.55558406737265,
+ 45.51728534729124
+ ],
+ [
+ -73.55562796687902,
+ 45.51723534678412
+ ],
+ [
+ -73.5556609675015,
+ 45.51719784685344
+ ],
+ [
+ -73.55570748133704,
+ 45.51714493973748
+ ],
+ [
+ -73.55569606714162,
+ 45.51713974255537
+ ],
+ [
+ -73.55582566754236,
+ 45.516996047979525
+ ],
+ [
+ -73.55565194820069,
+ 45.51692053010867
+ ],
+ [
+ -73.55552604491288,
+ 45.517061818998044
+ ],
+ [
+ -73.55557494285118,
+ 45.51708431553902
+ ],
+ [
+ -73.55555365050242,
+ 45.51710785529358
+ ],
+ [
+ -73.55540306442172,
+ 45.51727432520024
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":254,
+ "ID_UEV":"01040132",
+ "CIVIQUE_DE":" 1239",
+ "CIVIQUE_FI":" 1241",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-49-5316-6-000-0000",
+ "SUPERFICIE":911,
+ "SUPERFIC_1":1510,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00133149638594,
+ "OBJECTID":83449,
+ "Join_Count":1,
+ "TARGET_FID":83449,
+ "feature_id":"a9e84bbc-ea66-4366-97a4-5a97f95f5bad",
+ "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":51.87,
+ "elevmin":20.07,
+ "elevmax":22.12,
+ "bldgarea":2675.68,
+ "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_2":83449,
+ "Shape_Le_1":0.00133149638594,
+ "Shape_Ar_1":7.13680446458e-08,
+ "OBJECTID_3":83449,
+ "Join_Cou_1":7,
+ "TARGET_F_1":83448,
+ "g_objectid":"944632",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004149731490030001",
+ "g_sup_tota":"235.9",
+ "g_geometry":"0.0010283",
+ "g_geomet_1":"2.75667e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00133149638594,
+ "Shape_Area":7.13680446458e-08,
+ "Shape_Le_3":0.00133149666053,
+ "Shape_Ar_2":7.13680446458e-08,
+ "building_height":25.685
+ }
+ },
+ {
+ "type":"Feature",
+ "id":255,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57867707111178,
+ 45.49850091003926
+ ],
+ [
+ -73.57875263934467,
+ 45.498537018718736
+ ],
+ [
+ -73.57885402891215,
+ 45.498433574200384
+ ],
+ [
+ -73.5788512733894,
+ 45.49843244285325
+ ],
+ [
+ -73.57881647322351,
+ 45.49841814273339
+ ],
+ [
+ -73.57883147301591,
+ 45.4984000429779
+ ],
+ [
+ -73.57883597322343,
+ 45.49839444289952
+ ],
+ [
+ -73.57879658111916,
+ 45.49837897815761
+ ],
+ [
+ -73.57867707111178,
+ 45.49850091003926
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":255,
+ "ID_UEV":"01036691",
+ "CIVIQUE_DE":" 2170",
+ "CIVIQUE_FI":" 2170",
+ "NOM_RUE":"rue Crescent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-68-4340-5-000-0000",
+ "SUPERFICIE":146,
+ "SUPERFIC_1":181,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000512946501142,
+ "OBJECTID":83452,
+ "Join_Count":1,
+ "TARGET_FID":83452,
+ "feature_id":"76be71d7-4ec5-4c2b-96b2-3b10b9c64403",
+ "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.1,
+ "heightmax":80.58,
+ "elevmin":44.94,
+ "elevmax":51.96,
+ "bldgarea":8932.56,
+ "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_2":83452,
+ "Shape_Le_1":0.000512946501142,
+ "Shape_Ar_1":1.25407346855e-08,
+ "OBJECTID_3":83452,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83451,
+ "g_objectid":"938382",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"5419254",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983968434050000000",
+ "g_sup_tota":"145.7",
+ "g_geometry":"0.000590608",
+ "g_geomet_1":"1.67712e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000512946501142,
+ "Shape_Area":1.25407346855e-08,
+ "Shape_Le_3":0.000512945609489,
+ "Shape_Ar_2":1.25407346855e-08,
+ "building_height":39.74
+ }
+ },
+ {
+ "type":"Feature",
+ "id":256,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57875263934467,
+ 45.498537018718736
+ ],
+ [
+ -73.57890388193046,
+ 45.49860928643971
+ ],
+ [
+ -73.57900862596915,
+ 45.498502419101655
+ ],
+ [
+ -73.57899828286631,
+ 45.49849743415955
+ ],
+ [
+ -73.57902180823172,
+ 45.498473176746
+ ],
+ [
+ -73.57893551288545,
+ 45.49843163346341
+ ],
+ [
+ -73.5789298732369,
+ 45.49843704288551
+ ],
+ [
+ -73.57891677281266,
+ 45.49843124315764
+ ],
+ [
+ -73.57889927290496,
+ 45.49845214250267
+ ],
+ [
+ -73.57885402891215,
+ 45.498433574200384
+ ],
+ [
+ -73.57875263934467,
+ 45.498537018718736
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":256,
+ "ID_UEV":"01036693",
+ "CIVIQUE_DE":" 2176",
+ "CIVIQUE_FI":" 2190",
+ "NOM_RUE":"rue Crescent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-68-3546-8-000-0000",
+ "SUPERFICIE":288,
+ "SUPERFIC_1":815,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000701462277838,
+ "OBJECTID":83453,
+ "Join_Count":1,
+ "TARGET_FID":83453,
+ "feature_id":"76be71d7-4ec5-4c2b-96b2-3b10b9c64403",
+ "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.1,
+ "heightmax":80.58,
+ "elevmin":44.94,
+ "elevmax":51.96,
+ "bldgarea":8932.56,
+ "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_2":83453,
+ "Shape_Le_1":0.000701462277838,
+ "Shape_Ar_1":2.70059132404e-08,
+ "OBJECTID_3":83453,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83452,
+ "g_objectid":"938382",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"5419254",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983968434050000000",
+ "g_sup_tota":"145.7",
+ "g_geometry":"0.000590608",
+ "g_geomet_1":"1.67712e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000701462277838,
+ "Shape_Area":2.70059132404e-08,
+ "Shape_Le_3":0.000701461228058,
+ "Shape_Ar_2":2.70059132404e-08,
+ "building_height":39.74
+ }
+ },
+ {
+ "type":"Feature",
+ "id":257,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55922268120362,
+ 45.50197378781036
+ ],
+ [
+ -73.55922867428573,
+ 45.50197584006327
+ ],
+ [
+ -73.55930376677726,
+ 45.501886443854595
+ ],
+ [
+ -73.5593205670124,
+ 45.501893444177405
+ ],
+ [
+ -73.55934016683707,
+ 45.50190184384531
+ ],
+ [
+ -73.55932086738596,
+ 45.50192444380833
+ ],
+ [
+ -73.55926600424455,
+ 45.50198862482547
+ ],
+ [
+ -73.55961006687293,
+ 45.50210646209385
+ ],
+ [
+ -73.55968184626204,
+ 45.50200773002302
+ ],
+ [
+ -73.5593462174758,
+ 45.501862046146805
+ ],
+ [
+ -73.55932167677581,
+ 45.50185139367717
+ ],
+ [
+ -73.55929838343549,
+ 45.50188150387859
+ ],
+ [
+ -73.55929162323167,
+ 45.501879072111784
+ ],
+ [
+ -73.55922268120362,
+ 45.50197378781036
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":257,
+ "ID_UEV":"01036694",
+ "CIVIQUE_DE":" 380",
+ "CIVIQUE_FI":" 384",
+ "NOM_RUE":"rue Saint-Jacques (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1942,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-12-4834-9-000-0000",
+ "SUPERFICIE":469,
+ "SUPERFIC_1":1647,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0013175499885,
+ "OBJECTID":83454,
+ "Join_Count":1,
+ "TARGET_FID":83454,
+ "feature_id":"fe7d9d68-0c45-464b-9602-b34ce4f51b2a",
+ "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":77.22,
+ "elevmin":16.15,
+ "elevmax":18.43,
+ "bldgarea":5003.38,
+ "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_2":83454,
+ "Shape_Le_1":0.0013175499885,
+ "Shape_Ar_1":4.97022293696e-08,
+ "OBJECTID_3":83454,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83453,
+ "g_objectid":"945189",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"15",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004012471840000000",
+ "g_sup_tota":"462.4",
+ "g_geometry":"0.00107582",
+ "g_geomet_1":"5.3236e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0013175499885,
+ "Shape_Area":4.97022293696e-08,
+ "Shape_Le_3":0.00131754999681,
+ "Shape_Ar_2":4.97022293696e-08,
+ "building_height":38.115
+ }
+ },
+ {
+ "type":"Feature",
+ "id":258,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56135210403822,
+ 45.51916984516252
+ ],
+ [
+ -73.5612487953175,
+ 45.51928235484709
+ ],
+ [
+ -73.56132017900491,
+ 45.51931523855771
+ ],
+ [
+ -73.56142046870151,
+ 45.51919904704868
+ ],
+ [
+ -73.56135210403822,
+ 45.51916984516252
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":258,
+ "ID_UEV":"01040038",
+ "CIVIQUE_DE":" 1772",
+ "CIVIQUE_FI":" 1774",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-01-0545-4-000-0000",
+ "SUPERFICIE":183,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000459168275051,
+ "OBJECTID":83455,
+ "Join_Count":1,
+ "TARGET_FID":83455,
+ "feature_id":"03fb414f-37c1-4631-ab86-214827248567",
+ "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.44,
+ "heightmax":13.76,
+ "elevmin":24.75,
+ "elevmax":25.74,
+ "bldgarea":1206.12,
+ "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_2":83455,
+ "Shape_Le_1":0.000459168275051,
+ "Shape_Ar_1":1.1150297516e-08,
+ "OBJECTID_3":83455,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83454,
+ "g_objectid":"941489",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565269",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004201083670000000",
+ "g_sup_tota":"527.2",
+ "g_geometry":"0.00129781",
+ "g_geomet_1":"6.07241e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000459168275051,
+ "Shape_Area":1.1150297516e-08,
+ "Shape_Le_3":0.00045916657367,
+ "Shape_Ar_2":1.1150297516e-08,
+ "building_height":5.66
+ }
+ },
+ {
+ "type":"Feature",
+ "id":259,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56195784150303,
+ 45.51952259074526
+ ],
+ [
+ -73.56180796948405,
+ 45.51944644694626
+ ],
+ [
+ -73.56174263823401,
+ 45.5195098527478
+ ],
+ [
+ -73.56190255208296,
+ 45.519583535102356
+ ],
+ [
+ -73.56195784150303,
+ 45.51952259074526
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":259,
+ "ID_UEV":"01040042",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-6372-0-000-0000",
+ "SUPERFICIE":358,
+ "SUPERFIC_1":395,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00051750553383,
+ "OBJECTID":83456,
+ "Join_Count":1,
+ "TARGET_FID":83456,
+ "feature_id":"53d676e7-c0c5-4ce6-8be0-761e22671593",
+ "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":5.34,
+ "heightmax":10.22,
+ "elevmin":24.94,
+ "elevmax":25.36,
+ "bldgarea":135.29,
+ "comment":" ",
+ "OBJECTID_2":83456,
+ "Shape_Le_1":0.00051750553383,
+ "Shape_Ar_1":1.41484753047e-08,
+ "OBJECTID_3":83456,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83455,
+ "g_objectid":"941479",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565255",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994291637200000000",
+ "g_sup_tota":"357.7",
+ "g_geometry":"0.000841764",
+ "g_geomet_1":"4.13167e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00051750553383,
+ "Shape_Area":1.41484753047e-08,
+ "Shape_Le_3":0.00051750605885,
+ "Shape_Ar_2":1.41484753047e-08,
+ "building_height":2.4400000000000004
+ }
+ },
+ {
+ "type":"Feature",
+ "id":260,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5811246543012,
+ 45.50017890378368
+ ],
+ [
+ -73.58118296904064,
+ 45.5002049796264
+ ],
+ [
+ -73.58119467371706,
+ 45.50019194305403
+ ],
+ [
+ -73.58120631184366,
+ 45.50019720768528
+ ],
+ [
+ -73.58141847000823,
+ 45.49997118827002
+ ],
+ [
+ -73.58128947395191,
+ 45.499912442755324
+ ],
+ [
+ -73.58116277386476,
+ 45.50002644261653
+ ],
+ [
+ -73.58115977372643,
+ 45.50002924310538
+ ],
+ [
+ -73.58116797374484,
+ 45.500032743266786
+ ],
+ [
+ -73.58112647452901,
+ 45.5000806429576
+ ],
+ [
+ -73.58113217443216,
+ 45.50008304324814
+ ],
+ [
+ -73.5811861742244,
+ 45.50010554248709
+ ],
+ [
+ -73.5811246543012,
+ 45.50017890378368
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58114357783569,
+ 45.499992364606236
+ ],
+ [
+ -73.58114997381408,
+ 45.49999524243678
+ ],
+ [
+ -73.58123337424267,
+ 45.4999036428891
+ ],
+ [
+ -73.58123146228401,
+ 45.49990278313723
+ ],
+ [
+ -73.58114754474524,
+ 45.49998832125432
+ ],
+ [
+ -73.58114357783569,
+ 45.499992364606236
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58127601110088,
+ 45.49985737366915
+ ],
+ [
+ -73.58127637442698,
+ 45.4998575427417
+ ],
+ [
+ -73.58127927384126,
+ 45.499854442778606
+ ],
+ [
+ -73.58129134274311,
+ 45.49984174614996
+ ],
+ [
+ -73.58128064350873,
+ 45.49985265312773
+ ],
+ [
+ -73.58127601110088,
+ 45.49985737366915
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":260,
+ "ID_UEV":"01036485",
+ "CIVIQUE_DE":" 3449",
+ "CIVIQUE_FI":" 3449",
+ "NOM_RUE":"avenue du Mus\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1940,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-40-4609-0-000-0000",
+ "SUPERFICIE":813,
+ "SUPERFIC_1":545,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00125570948652,
+ "OBJECTID":83457,
+ "Join_Count":2,
+ "TARGET_FID":83457,
+ "feature_id":"dc4ee5d2-23ed-4f64-937a-8e4dc3b17398",
+ "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.38,
+ "heightmax":80.62,
+ "elevmin":61.34,
+ "elevmax":67.3,
+ "bldgarea":906.84,
+ "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_2":83457,
+ "Shape_Le_1":0.00125570948652,
+ "Shape_Ar_1":4.01877976188e-08,
+ "OBJECTID_3":83457,
+ "Join_Cou_1":7,
+ "TARGET_F_1":83456,
+ "g_objectid":"939898",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340926",
+ "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":"66023983949468790000000",
+ "g_sup_tota":"90.8",
+ "g_geometry":"0.000427458",
+ "g_geomet_1":"1.03992e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00125570948652,
+ "Shape_Area":4.01877976188e-08,
+ "Shape_Le_3":0.00125570665005,
+ "Shape_Ar_2":4.01877976188e-08,
+ "building_height":39.120000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":261,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58112297526694,
+ 45.499779647063356
+ ],
+ [
+ -73.58120278650124,
+ 45.49981660200488
+ ],
+ [
+ -73.58128448990912,
+ 45.49973105399524
+ ],
+ [
+ -73.5812203745425,
+ 45.49970094289449
+ ],
+ [
+ -73.58120503480636,
+ 45.49969372583507
+ ],
+ [
+ -73.58112297526694,
+ 45.499779647063356
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":261,
+ "ID_UEV":"01036489",
+ "CIVIQUE_DE":" 3443",
+ "CIVIQUE_FI":" 3443",
+ "NOM_RUE":"avenue du Mus\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-5283-6-000-0000",
+ "SUPERFICIE":92,
+ "SUPERFIC_1":168,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000412846182148,
+ "OBJECTID":83458,
+ "Join_Count":1,
+ "TARGET_FID":83458,
+ "feature_id":"dc4ee5d2-23ed-4f64-937a-8e4dc3b17398",
+ "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.38,
+ "heightmax":80.62,
+ "elevmin":61.34,
+ "elevmax":67.3,
+ "bldgarea":906.84,
+ "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_2":83458,
+ "Shape_Le_1":0.000412846182148,
+ "Shape_Ar_1":9.86808947081e-09,
+ "OBJECTID_3":83458,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83457,
+ "g_objectid":"939898",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340926",
+ "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":"66023983949468790000000",
+ "g_sup_tota":"90.8",
+ "g_geometry":"0.000427458",
+ "g_geomet_1":"1.03992e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000412846182148,
+ "Shape_Area":9.86808947081e-09,
+ "Shape_Le_3":0.000412845976019,
+ "Shape_Ar_2":9.86808947081e-09,
+ "building_height":39.120000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":262,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56130967492341,
+ 45.51681126697668
+ ],
+ [
+ -73.5613183677703,
+ 45.516815347200804
+ ],
+ [
+ -73.56138839887736,
+ 45.51684814547583
+ ],
+ [
+ -73.56148120351658,
+ 45.51674712373107
+ ],
+ [
+ -73.56142796904737,
+ 45.51672354710431
+ ],
+ [
+ -73.56140116205583,
+ 45.51671167875127
+ ],
+ [
+ -73.56130967492341,
+ 45.51681126697668
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":262,
+ "ID_UEV":"01003399",
+ "CIVIQUE_DE":" 1607",
+ "CIVIQUE_FI":" 1611",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-08-0477-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":319,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000446882716864,
+ "OBJECTID":83459,
+ "Join_Count":1,
+ "TARGET_FID":83459,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83459,
+ "Shape_Le_1":0.000446882716864,
+ "Shape_Ar_1":1.12950533842e-08,
+ "OBJECTID_3":83459,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83458,
+ "g_objectid":"943335",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161782",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004108047770000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000706384",
+ "g_geomet_1":"2.20513e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000446882716864,
+ "Shape_Area":1.12950533842e-08,
+ "Shape_Le_3":0.000446883376133,
+ "Shape_Ar_2":1.12950533842e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":263,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55964193884624,
+ 45.52751077475275
+ ],
+ [
+ -73.5596506182033,
+ 45.527514821701956
+ ],
+ [
+ -73.55965706904036,
+ 45.52750784925813
+ ],
+ [
+ -73.55973019201659,
+ 45.52754129144774
+ ],
+ [
+ -73.559827683023,
+ 45.52743799621685
+ ],
+ [
+ -73.55976186883703,
+ 45.52740714857134
+ ],
+ [
+ -73.5597567687817,
+ 45.52740474918013
+ ],
+ [
+ -73.55973176942746,
+ 45.5274309491293
+ ],
+ [
+ -73.55972173479208,
+ 45.52742622768855
+ ],
+ [
+ -73.55964193884624,
+ 45.52751077475275
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":263,
+ "ID_UEV":"01034653",
+ "CIVIQUE_DE":" 2078",
+ "CIVIQUE_FI":" 2084",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-3159-0-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000483400909065,
+ "OBJECTID":83461,
+ "Join_Count":1,
+ "TARGET_FID":83461,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":83461,
+ "Shape_Le_1":0.000483400909065,
+ "Shape_Ar_1":1.18305012517e-08,
+ "OBJECTID_3":83461,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83460,
+ "g_objectid":"942870",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884713",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310405340000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000838297",
+ "g_geomet_1":"4.09272e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000483400909065,
+ "Shape_Area":1.18305012517e-08,
+ "Shape_Le_3":0.000483400301398,
+ "Shape_Ar_2":1.18305012517e-08,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":264,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55997547670873,
+ 45.52765347377909
+ ],
+ [
+ -73.55999356926965,
+ 45.52766174844123
+ ],
+ [
+ -73.560139002235,
+ 45.52772825600451
+ ],
+ [
+ -73.56023345083493,
+ 45.52762818394383
+ ],
+ [
+ -73.56007114568867,
+ 45.52755210849331
+ ],
+ [
+ -73.55997547670873,
+ 45.52765347377909
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":264,
+ "ID_UEV":"01034661",
+ "CIVIQUE_DE":" 2110",
+ "CIVIQUE_FI":" 2120",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-0278-1-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":547,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000636049338538,
+ "OBJECTID":83462,
+ "Join_Count":1,
+ "TARGET_FID":83462,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":83462,
+ "Shape_Le_1":0.000636049338538,
+ "Shape_Ar_1":2.35788189269e-08,
+ "OBJECTID_3":83462,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83461,
+ "g_objectid":"942859",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004300928580000000",
+ "g_sup_tota":"176.5",
+ "g_geometry":"0.000657017",
+ "g_geomet_1":"2.03306e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000636049338538,
+ "Shape_Area":2.35788189269e-08,
+ "Shape_Le_3":0.00063605019807,
+ "Shape_Ar_2":2.35788189269e-08,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":265,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.558011312394,
+ 45.51471290942353
+ ],
+ [
+ -73.55808092801426,
+ 45.51474460512972
+ ],
+ [
+ -73.5582329233326,
+ 45.51458095909428
+ ],
+ [
+ -73.55777736725354,
+ 45.51437034596499
+ ],
+ [
+ -73.55777376726739,
+ 45.514368646246325
+ ],
+ [
+ -73.55764926692197,
+ 45.51450134571083
+ ],
+ [
+ -73.55796396668556,
+ 45.514647245424335
+ ],
+ [
+ -73.55794974570604,
+ 45.514662406195384
+ ],
+ [
+ -73.5580259695447,
+ 45.51469712991891
+ ],
+ [
+ -73.558011312394,
+ 45.51471290942353
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":265,
+ "ID_UEV":"01002967",
+ "CIVIQUE_DE":" 1205",
+ "CIVIQUE_FI":" 1205",
+ "NOM_RUE":"rue Labelle (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":10,
+ "NOMBRE_LOG":98,
+ "ANNEE_CONS":1965,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-26-7326-1-000-0000",
+ "SUPERFICIE":942,
+ "SUPERFIC_1":5593,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00146062115377,
+ "OBJECTID":83469,
+ "Join_Count":1,
+ "TARGET_FID":83469,
+ "feature_id":"7d7541ab-6eb0-427a-828d-85be4d7ae606",
+ "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":59.18,
+ "elevmin":21.9,
+ "elevmax":24.14,
+ "bldgarea":1164.74,
+ "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_2":83469,
+ "Shape_Le_1":0.00146062115377,
+ "Shape_Ar_1":9.21983430797e-08,
+ "OBJECTID_3":83469,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83468,
+ "g_objectid":"943433",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162078",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004126695820000000",
+ "g_sup_tota":"288.6",
+ "g_geometry":"0.000768555",
+ "g_geomet_1":"3.31262e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00146062115377,
+ "Shape_Area":9.21983430797e-08,
+ "Shape_Le_3":0.00146062178417,
+ "Shape_Ar_2":9.21983430797e-08,
+ "building_height":29.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":266,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56191173416104,
+ 45.52964296480128
+ ],
+ [
+ -73.56198505049153,
+ 45.52967937025703
+ ],
+ [
+ -73.56207585593785,
+ 45.52958437756727
+ ],
+ [
+ -73.56204946982902,
+ 45.5295694488213
+ ],
+ [
+ -73.56200566385215,
+ 45.529544704874525
+ ],
+ [
+ -73.56191173416104,
+ 45.52964296480128
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":266,
+ "ID_UEV":"01035158",
+ "CIVIQUE_DE":" 2359",
+ "CIVIQUE_FI":" 2361",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-93-5803-9-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":162,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000429830590335,
+ "OBJECTID":83470,
+ "Join_Count":1,
+ "TARGET_FID":83470,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83470,
+ "Shape_Le_1":0.000429830590335,
+ "Shape_Ar_1":1.04474306518e-08,
+ "OBJECTID_3":83470,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83469,
+ "g_objectid":"942958",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885450",
+ "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":"66023994393580390000000",
+ "g_sup_tota":"175.2",
+ "g_geometry":"0.000681208",
+ "g_geomet_1":"2.01811e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000429830590335,
+ "Shape_Area":1.04474306518e-08,
+ "Shape_Le_3":0.000429830861836,
+ "Shape_Ar_2":1.04474306518e-08,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":267,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55769578255617,
+ 45.503676896921554
+ ],
+ [
+ -73.55795671904919,
+ 45.50378115622568
+ ],
+ [
+ -73.55808739953571,
+ 45.50362284676726
+ ],
+ [
+ -73.55782462213045,
+ 45.50350572086262
+ ],
+ [
+ -73.55769578255617,
+ 45.503676896921554
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":267,
+ "ID_UEV":"01036645",
+ "CIVIQUE_DE":" 221",
+ "CIVIQUE_FI":" 229",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1941,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-24-7515-6-000-0000",
+ "SUPERFICIE":511,
+ "SUPERFIC_1":1384,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000988215937163,
+ "OBJECTID":83475,
+ "Join_Count":1,
+ "TARGET_FID":83475,
+ "feature_id":"7674092f-b5fa-4784-868a-071938f89ad6",
+ "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.94,
+ "heightmax":45.4,
+ "elevmin":19.91,
+ "elevmax":21.46,
+ "bldgarea":5006.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_2":83475,
+ "Shape_Le_1":0.000988215937163,
+ "Shape_Ar_1":5.75024356288e-08,
+ "OBJECTID_3":83475,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83474,
+ "g_objectid":"944953",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180790",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"8",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004024751560000000",
+ "g_sup_tota":"510.6",
+ "g_geometry":"0.00099704",
+ "g_geomet_1":"5.84411e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000988215937163,
+ "Shape_Area":5.75024356288e-08,
+ "Shape_Le_3":0.000988216364777,
+ "Shape_Ar_2":5.75024356288e-08,
+ "building_height":22.23
+ }
+ },
+ {
+ "type":"Feature",
+ "id":268,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55841883028663,
+ 45.52306764810377
+ ],
+ [
+ -73.55854300507747,
+ 45.52312513366828
+ ],
+ [
+ -73.55856136833432,
+ 45.5231052478592
+ ],
+ [
+ -73.55858146818206,
+ 45.523114447923724
+ ],
+ [
+ -73.55860296827422,
+ 45.52309034789154
+ ],
+ [
+ -73.55865266840776,
+ 45.52303464748129
+ ],
+ [
+ -73.55866443873471,
+ 45.523021349206196
+ ],
+ [
+ -73.5585228386799,
+ 45.52295579492429
+ ],
+ [
+ -73.55841883028663,
+ 45.52306764810377
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":268,
+ "ID_UEV":"01035490",
+ "CIVIQUE_DE":" 1477",
+ "CIVIQUE_FI":" 1485",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-2075-9-000-0000",
+ "SUPERFICIE":427,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000619491453588,
+ "OBJECTID":83478,
+ "Join_Count":1,
+ "TARGET_FID":83478,
+ "feature_id":"046d47c9-72ce-43c4-98f2-f044e88b5818",
+ "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":39.35,
+ "elevmin":24.55,
+ "elevmax":25.55,
+ "bldgarea":640.17,
+ "comment":" ",
+ "OBJECTID_2":83478,
+ "Shape_Le_1":0.000619491453588,
+ "Shape_Ar_1":2.23288908153e-08,
+ "OBJECTID_3":83478,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83477,
+ "g_objectid":"941988",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567043",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225116260000000",
+ "g_sup_tota":"441.3",
+ "g_geometry":"0.000999463",
+ "g_geomet_1":"5.13323e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000619491453588,
+ "Shape_Area":2.23288908153e-08,
+ "Shape_Le_3":0.000619490381087,
+ "Shape_Ar_2":2.23288908153e-08,
+ "building_height":18.415
+ }
+ },
+ {
+ "type":"Feature",
+ "id":269,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56144598516593,
+ 45.529823250093216
+ ],
+ [
+ -73.56149126872891,
+ 45.529844648561976
+ ],
+ [
+ -73.5615220911934,
+ 45.52985919599539
+ ],
+ [
+ -73.56160049678734,
+ 45.52977673895563
+ ],
+ [
+ -73.56158506981696,
+ 45.52976814863145
+ ],
+ [
+ -73.56162437019037,
+ 45.529733148816064
+ ],
+ [
+ -73.5616082705271,
+ 45.52972434894984
+ ],
+ [
+ -73.5616471698029,
+ 45.52968914858563
+ ],
+ [
+ -73.56164957009344,
+ 45.529686648470346
+ ],
+ [
+ -73.56159777274087,
+ 45.529663620430036
+ ],
+ [
+ -73.56144598516593,
+ 45.529823250093216
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":269,
+ "ID_UEV":"01035250",
+ "CIVIQUE_DE":" 2284",
+ "CIVIQUE_FI":" 2288",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1921,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-93-9117-0-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":295,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000619470123912,
+ "OBJECTID":83480,
+ "Join_Count":1,
+ "TARGET_FID":83480,
+ "feature_id":"041d2b3e-9eb2-4064-9591-74b3aa75da5e",
+ "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":45.09,
+ "elevmin":28.29,
+ "elevmax":35.94,
+ "bldgarea":2580.82,
+ "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_2":83480,
+ "Shape_Le_1":0.000619470123912,
+ "Shape_Ar_1":1.53361759011e-08,
+ "OBJECTID_3":83480,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83479,
+ "g_objectid":"945135",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1885543",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6299",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994393852140000000",
+ "g_sup_tota":"185.6",
+ "g_geometry":"0.000708691",
+ "g_geomet_1":"2.15899e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000619470123912,
+ "Shape_Area":1.53361759011e-08,
+ "Shape_Le_3":0.000619470302012,
+ "Shape_Ar_2":1.53361759011e-08,
+ "building_height":22.040000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":270,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5615220911934,
+ 45.52985919599539
+ ],
+ [
+ -73.56159821430799,
+ 45.52989512391113
+ ],
+ [
+ -73.56175018894191,
+ 45.52973529819575
+ ],
+ [
+ -73.56171176990411,
+ 45.529719248894516
+ ],
+ [
+ -73.56171167007936,
+ 45.529719248894516
+ ],
+ [
+ -73.56162907004739,
+ 45.52979264886195
+ ],
+ [
+ -73.56160049678734,
+ 45.52977673895563
+ ],
+ [
+ -73.5615220911934,
+ 45.52985919599539
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":270,
+ "ID_UEV":"01035251",
+ "CIVIQUE_DE":" 2290",
+ "CIVIQUE_FI":" 2294",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1921,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-93-8521-4-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":295,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000603446075713,
+ "OBJECTID":83481,
+ "Join_Count":1,
+ "TARGET_FID":83481,
+ "feature_id":"041d2b3e-9eb2-4064-9591-74b3aa75da5e",
+ "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":45.09,
+ "elevmin":28.29,
+ "elevmax":35.94,
+ "bldgarea":2580.82,
+ "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_2":83481,
+ "Shape_Le_1":0.000603446075713,
+ "Shape_Ar_1":1.36546880403e-08,
+ "OBJECTID_3":83481,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83480,
+ "g_objectid":"942920",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884776",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994393802560000000",
+ "g_sup_tota":"129",
+ "g_geometry":"0.000657568",
+ "g_geomet_1":"1.50172e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000603446075713,
+ "Shape_Area":1.36546880403e-08,
+ "Shape_Le_3":0.000603445593499,
+ "Shape_Ar_2":1.36546880403e-08,
+ "building_height":22.040000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":271,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56170408879451,
+ 45.529945006607065
+ ],
+ [
+ -73.56173806967801,
+ 45.52996094888898
+ ],
+ [
+ -73.56181009817934,
+ 45.52999461590909
+ ],
+ [
+ -73.56181713177706,
+ 45.52998721898526
+ ],
+ [
+ -73.56190284795991,
+ 45.52989708263455
+ ],
+ [
+ -73.56189357055368,
+ 45.52989264897686
+ ],
+ [
+ -73.56194176971874,
+ 45.529842849018564
+ ],
+ [
+ -73.56194447038284,
+ 45.52983994870496
+ ],
+ [
+ -73.5618737701802,
+ 45.52980794902792
+ ],
+ [
+ -73.56182557011581,
+ 45.529860348926256
+ ],
+ [
+ -73.56179699145983,
+ 45.52984731415252
+ ],
+ [
+ -73.56170408879451,
+ 45.529945006607065
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":271,
+ "ID_UEV":"01035253",
+ "CIVIQUE_DE":" 2308",
+ "CIVIQUE_FI":" 2318",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-93-6931-7-000-0000",
+ "SUPERFICIE":258,
+ "SUPERFIC_1":494,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000650213097131,
+ "OBJECTID":83482,
+ "Join_Count":1,
+ "TARGET_FID":83482,
+ "feature_id":"041d2b3e-9eb2-4064-9591-74b3aa75da5e",
+ "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":45.09,
+ "elevmin":28.29,
+ "elevmax":35.94,
+ "bldgarea":2580.82,
+ "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_2":83482,
+ "Shape_Le_1":0.000650213097131,
+ "Shape_Ar_1":2.02171751855e-08,
+ "OBJECTID_3":83482,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83481,
+ "g_objectid":"942918",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884774",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994393693170000000",
+ "g_sup_tota":"257.8",
+ "g_geometry":"0.000774778",
+ "g_geomet_1":"3.00192e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000650213097131,
+ "Shape_Area":2.02171751855e-08,
+ "Shape_Le_3":0.000650212686265,
+ "Shape_Ar_2":2.02171751855e-08,
+ "building_height":22.040000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":272,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55695961281772,
+ 45.50257279744694
+ ],
+ [
+ -73.55695801112516,
+ 45.50257420218797
+ ],
+ [
+ -73.55708422018246,
+ 45.502654597082284
+ ],
+ [
+ -73.55721800872597,
+ 45.50254378261977
+ ],
+ [
+ -73.557082610396,
+ 45.50246501459904
+ ],
+ [
+ -73.55695961281772,
+ 45.50257279744694
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":272,
+ "ID_UEV":"01000428",
+ "CIVIQUE_DE":" 455",
+ "CIVIQUE_FI":" 455",
+ "NOM_RUE":"rue Saint-Jean (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-32-3893-4-000-0000",
+ "SUPERFICIE":213,
+ "SUPERFIC_1":658,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000645675835892,
+ "OBJECTID":83486,
+ "Join_Count":1,
+ "TARGET_FID":83486,
+ "feature_id":"54b2ee08-2c1a-4de1-91d9-2ae8c5be3aa2",
+ "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.03,
+ "heightmax":44.87,
+ "elevmin":15.9,
+ "elevmax":20.06,
+ "bldgarea":1811.45,
+ "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_2":83486,
+ "Shape_Le_1":0.000645675835892,
+ "Shape_Ar_1":2.46699674253e-08,
+ "OBJECTID_3":83486,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83485,
+ "g_objectid":"944533",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180874",
+ "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":"66023004032389340000000",
+ "g_sup_tota":"213.3",
+ "g_geometry":"0.000651011",
+ "g_geomet_1":"2.50843e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000645675835892,
+ "Shape_Area":2.46699674253e-08,
+ "Shape_Le_3":0.00064567579423,
+ "Shape_Ar_2":2.46699674253e-08,
+ "building_height":21.919999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":273,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56012926347657,
+ 45.51944434253268
+ ],
+ [
+ -73.56016966821745,
+ 45.51946314645734
+ ],
+ [
+ -73.5601812343983,
+ 45.51946853429572
+ ],
+ [
+ -73.56019905806193,
+ 45.51947670103922
+ ],
+ [
+ -73.56029249492454,
+ 45.519377989652796
+ ],
+ [
+ -73.56026796771438,
+ 45.51936624720484
+ ],
+ [
+ -73.5603084677834,
+ 45.51932444671614
+ ],
+ [
+ -73.560311368097,
+ 45.5193210472788
+ ],
+ [
+ -73.56026471396721,
+ 45.51930158415108
+ ],
+ [
+ -73.56012926347657,
+ 45.51944434253268
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":273,
+ "ID_UEV":"01040176",
+ "CIVIQUE_DE":" 1728",
+ "CIVIQUE_FI":" 1732",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-01-9364-1-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000550058808544,
+ "OBJECTID":83488,
+ "Join_Count":1,
+ "TARGET_FID":83488,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":83488,
+ "Shape_Le_1":0.000550058808544,
+ "Shape_Ar_1":1.28284707239e-08,
+ "OBJECTID_3":83488,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83487,
+ "g_objectid":"941678",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566342",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211015930000000",
+ "g_sup_tota":"257.5",
+ "g_geometry":"0.000719232",
+ "g_geomet_1":"2.99345e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000550058808544,
+ "Shape_Area":1.28284707239e-08,
+ "Shape_Le_3":0.000550058328717,
+ "Shape_Ar_2":1.28284707239e-08,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":274,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55688818326489,
+ 45.50117917652807
+ ],
+ [
+ -73.55709855717451,
+ 45.501275823970396
+ ],
+ [
+ -73.55715842594245,
+ 45.50121003496544
+ ],
+ [
+ -73.55694778133689,
+ 45.501113392919045
+ ],
+ [
+ -73.55694389716497,
+ 45.50111767998724
+ ],
+ [
+ -73.55688818326489,
+ 45.50117917652807
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":274,
+ "ID_UEV":"01000286",
+ "CIVIQUE_DE":" 366",
+ "CIVIQUE_FI":" 366",
+ "NOM_RUE":"rue Le Moyne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1917,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-31-4343-1-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":678,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000640986920165,
+ "OBJECTID":83489,
+ "Join_Count":1,
+ "TARGET_FID":83489,
+ "feature_id":"b1687429-bb54-469f-ba3f-2d9124402e3d",
+ "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.93,
+ "heightmax":29.6,
+ "elevmin":12.78,
+ "elevmax":15.03,
+ "bldgarea":4189.6,
+ "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_2":83489,
+ "Shape_Le_1":0.000640986920165,
+ "Shape_Ar_1":1.96216016812e-08,
+ "OBJECTID_3":83489,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83488,
+ "g_objectid":"939490",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179918",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004031475070000000",
+ "g_sup_tota":"156.9",
+ "g_geometry":"0.000627562",
+ "g_geomet_1":"1.81717e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000640986920165,
+ "Shape_Area":1.96216016812e-08,
+ "Shape_Le_3":0.000640986289614,
+ "Shape_Ar_2":1.96216016812e-08,
+ "building_height":14.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":275,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56436760640176,
+ 45.519455512112486
+ ],
+ [
+ -73.56443106886059,
+ 45.5194889992682
+ ],
+ [
+ -73.56451800452413,
+ 45.51939346698521
+ ],
+ [
+ -73.56451266974575,
+ 45.51939104690958
+ ],
+ [
+ -73.5644722704008,
+ 45.519372746605264
+ ],
+ [
+ -73.56447776975511,
+ 45.51936654667908
+ ],
+ [
+ -73.56445745227145,
+ 45.51935724768912
+ ],
+ [
+ -73.56436760640176,
+ 45.519455512112486
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":275,
+ "ID_UEV":"01003820",
+ "CIVIQUE_DE":" 2051",
+ "CIVIQUE_FI":" 2053",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-6773-1-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":183,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000414911347586,
+ "OBJECTID":83493,
+ "Join_Count":1,
+ "TARGET_FID":83493,
+ "feature_id":"e6e21b8e-9d7f-4e54-b58d-caaed1284e8d",
+ "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.7,
+ "heightmax":22.47,
+ "elevmin":25.92,
+ "elevmax":31.42,
+ "bldgarea":1973.2,
+ "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_2":83493,
+ "Shape_Le_1":0.000414911347586,
+ "Shape_Ar_1":8.97681162773e-09,
+ "OBJECTID_3":83493,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83492,
+ "g_objectid":"943234",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161561",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271627650000000",
+ "g_sup_tota":"139.4",
+ "g_geometry":"0.000611047",
+ "g_geomet_1":"1.60062e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000414911347586,
+ "Shape_Area":8.97681162773e-09,
+ "Shape_Le_3":0.000414911133549,
+ "Shape_Ar_2":8.97681162773e-09,
+ "building_height":10.385
+ }
+ },
+ {
+ "type":"Feature",
+ "id":276,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56551648851698,
+ 45.51833988242993
+ ],
+ [
+ -73.56555586982937,
+ 45.51835744708881
+ ],
+ [
+ -73.56559201448172,
+ 45.51837352157106
+ ],
+ [
+ -73.5657344742884,
+ 45.51821655569978
+ ],
+ [
+ -73.56569917050216,
+ 45.51820064669278
+ ],
+ [
+ -73.56571126998097,
+ 45.5181874464438
+ ],
+ [
+ -73.56567375116452,
+ 45.51817054368594
+ ],
+ [
+ -73.56564784079706,
+ 45.518198464937505
+ ],
+ [
+ -73.56564676880518,
+ 45.51819797390767
+ ],
+ [
+ -73.565612654822,
+ 45.51823475887731
+ ],
+ [
+ -73.56561211972539,
+ 45.51823451426172
+ ],
+ [
+ -73.56551648851698,
+ 45.51833988242993
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":276,
+ "ID_UEV":"01003056",
+ "CIVIQUE_DE":" 2074",
+ "CIVIQUE_FI":" 2076",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-60-6730-4-000-0000",
+ "SUPERFICIE":416,
+ "SUPERFIC_1":317,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000624756497303,
+ "OBJECTID":83495,
+ "Join_Count":1,
+ "TARGET_FID":83495,
+ "feature_id":"02437dd3-64c3-49ff-b65a-5082346d0b17",
+ "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":19.57,
+ "elevmin":24.38,
+ "elevmax":38.3,
+ "bldgarea":3609.32,
+ "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_2":83495,
+ "Shape_Le_1":0.000624756497303,
+ "Shape_Ar_1":1.72751947542e-08,
+ "OBJECTID_3":83495,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83494,
+ "g_objectid":"943156",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161395",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994260763470000000",
+ "g_sup_tota":"252.9",
+ "g_geometry":"0.00090178",
+ "g_geomet_1":"2.90888e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000624756497303,
+ "Shape_Area":1.72751947542e-08,
+ "Shape_Le_3":0.000624754856255,
+ "Shape_Ar_2":1.72751947542e-08,
+ "building_height":9.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":277,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55688828668693,
+ 45.51575430546712
+ ],
+ [
+ -73.55697298213926,
+ 45.515789843077094
+ ],
+ [
+ -73.55711396975575,
+ 45.51563707074452
+ ],
+ [
+ -73.55703687986995,
+ 45.515602901003376
+ ],
+ [
+ -73.55703362972008,
+ 45.51560146118878
+ ],
+ [
+ -73.55688828668693,
+ 45.51575430546712
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":277,
+ "ID_UEV":"01003666",
+ "CIVIQUE_DE":" 1230",
+ "CIVIQUE_FI":" 1234",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-37-4655-3-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":358,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000598530840244,
+ "OBJECTID":83497,
+ "Join_Count":1,
+ "TARGET_FID":83497,
+ "feature_id":"a7012c4c-509f-4c89-856d-cbbe5d83dc80",
+ "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":50.19,
+ "elevmin":21.72,
+ "elevmax":24.6,
+ "bldgarea":4043.34,
+ "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_2":83497,
+ "Shape_Le_1":0.000598530840244,
+ "Shape_Ar_1":1.77022947617e-08,
+ "OBJECTID_3":83497,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83496,
+ "g_objectid":"943459",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162251",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004137395820000000",
+ "g_sup_tota":"175.9",
+ "g_geometry":"0.000665277",
+ "g_geomet_1":"2.02538e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000598530840244,
+ "Shape_Area":1.77022947617e-08,
+ "Shape_Le_3":0.000598530830164,
+ "Shape_Ar_2":1.77022947617e-08,
+ "building_height":24.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":278,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55891488733403,
+ 45.52595372453506
+ ],
+ [
+ -73.55913495413667,
+ 45.52605602871305
+ ],
+ [
+ -73.55917962526134,
+ 45.52600829000088
+ ],
+ [
+ -73.55895918793802,
+ 45.52590581405237
+ ],
+ [
+ -73.55891488733403,
+ 45.52595372453506
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":278,
+ "ID_UEV":"01035455",
+ "CIVIQUE_DE":" 1808",
+ "CIVIQUE_FI":" 1808",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-18-8797-7-000-0000",
+ "SUPERFICIE":132,
+ "SUPERFIC_1":126,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000616409726973,
+ "OBJECTID":83498,
+ "Join_Count":1,
+ "TARGET_FID":83498,
+ "feature_id":"4f95662c-071e-4074-8729-3b9d55143853",
+ "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.67,
+ "heightmax":37,
+ "elevmin":25.08,
+ "elevmax":26.05,
+ "bldgarea":652.7,
+ "comment":" ",
+ "OBJECTID_2":83498,
+ "Shape_Le_1":0.000616409726973,
+ "Shape_Ar_1":1.50884734454e-08,
+ "OBJECTID_3":83498,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83497,
+ "g_objectid":"938282",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567206",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004218879770000000",
+ "g_sup_tota":"131.7",
+ "g_geometry":"0.000616409",
+ "g_geomet_1":"1.50884e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000616409726973,
+ "Shape_Area":1.50884734454e-08,
+ "Shape_Le_3":0.000616409120888,
+ "Shape_Ar_2":1.50884734454e-08,
+ "building_height":17.165
+ }
+ },
+ {
+ "type":"Feature",
+ "id":279,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56417068185333,
+ 45.51936355553396
+ ],
+ [
+ -73.56418587050337,
+ 45.51937024648998
+ ],
+ [
+ -73.56418657017592,
+ 45.519370447038796
+ ],
+ [
+ -73.56419427017127,
+ 45.51935884668372
+ ],
+ [
+ -73.56421906987602,
+ 45.51936694687739
+ ],
+ [
+ -73.56420936978843,
+ 45.51938164719556
+ ],
+ [
+ -73.56420976998675,
+ 45.519381747020304
+ ],
+ [
+ -73.56429017027698,
+ 45.51941444726922
+ ],
+ [
+ -73.56428996972816,
+ 45.519414547093966
+ ],
+ [
+ -73.56430416103005,
+ 45.51942203484933
+ ],
+ [
+ -73.56439140156378,
+ 45.51932707093787
+ ],
+ [
+ -73.56434886992625,
+ 45.519307646480996
+ ],
+ [
+ -73.56426586969597,
+ 45.519269847076075
+ ],
+ [
+ -73.56426567004648,
+ 45.519269847076075
+ ],
+ [
+ -73.56425057042932,
+ 45.5192866464119
+ ],
+ [
+ -73.56424432643637,
+ 45.5192838809966
+ ],
+ [
+ -73.56417068185333,
+ 45.51936355553396
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":279,
+ "ID_UEV":"01003824",
+ "CIVIQUE_DE":" 2035",
+ "CIVIQUE_FI":" 2041",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-8064-3-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":342,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000583452357174,
+ "OBJECTID":83500,
+ "Join_Count":1,
+ "TARGET_FID":83500,
+ "feature_id":"e6e21b8e-9d7f-4e54-b58d-caaed1284e8d",
+ "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.7,
+ "heightmax":22.47,
+ "elevmin":25.92,
+ "elevmax":31.42,
+ "bldgarea":1973.2,
+ "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_2":83500,
+ "Shape_Le_1":0.000583452357174,
+ "Shape_Ar_1":1.73572296273e-08,
+ "OBJECTID_3":83500,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83499,
+ "g_objectid":"943237",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161564",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271736970000000",
+ "g_sup_tota":"139.4",
+ "g_geometry":"0.000614887",
+ "g_geomet_1":"1.62627e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000583452357174,
+ "Shape_Area":1.73572296273e-08,
+ "Shape_Le_3":0.000583453976225,
+ "Shape_Ar_2":1.73572296273e-08,
+ "building_height":10.385
+ }
+ },
+ {
+ "type":"Feature",
+ "id":280,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56241651822958,
+ 45.52990889792759
+ ],
+ [
+ -73.56241807045943,
+ 45.52990954903675
+ ],
+ [
+ -73.56242666977684,
+ 45.529899448750854
+ ],
+ [
+ -73.5624974599117,
+ 45.52992928286041
+ ],
+ [
+ -73.56259448237131,
+ 45.52982623404376
+ ],
+ [
+ -73.56256757015908,
+ 45.529812049037126
+ ],
+ [
+ -73.56256156988239,
+ 45.529817848765006
+ ],
+ [
+ -73.56252168674828,
+ 45.52979708791557
+ ],
+ [
+ -73.56241651822958,
+ 45.52990889792759
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":280,
+ "ID_UEV":"01035152",
+ "CIVIQUE_DE":" 2401",
+ "CIVIQUE_FI":" 2405",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-93-1628-4-000-0000",
+ "SUPERFICIE":133,
+ "SUPERFIC_1":227,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000470532755974,
+ "OBJECTID":83503,
+ "Join_Count":1,
+ "TARGET_FID":83503,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83503,
+ "Shape_Le_1":0.000470532755974,
+ "Shape_Ar_1":1.0232543548e-08,
+ "OBJECTID_3":83503,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83502,
+ "g_objectid":"942924",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884783",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994393113680000000",
+ "g_sup_tota":"192.6",
+ "g_geometry":"0.000634633",
+ "g_geomet_1":"2.22482e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000470532755974,
+ "Shape_Area":1.0232543548e-08,
+ "Shape_Le_3":0.000470533062754,
+ "Shape_Ar_2":1.0232543548e-08,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":281,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57566433506285,
+ 45.50085866984203
+ ],
+ [
+ -73.57574370293139,
+ 45.50087449521208
+ ],
+ [
+ -73.57567677178743,
+ 45.50084614318526
+ ],
+ [
+ -73.57567657213794,
+ 45.500846042461184
+ ],
+ [
+ -73.57566433506285,
+ 45.50085866984203
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":281,
+ "ID_UEV":"01037558",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-81-8305-5-000-0000",
+ "SUPERFICIE":51,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000171425890639,
+ "OBJECTID":83504,
+ "Join_Count":1,
+ "TARGET_FID":83504,
+ "feature_id":"f6f6fa9f-2142-4d06-8c15-8dd026b253b7",
+ "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":84.93,
+ "elevmin":42.29,
+ "elevmax":44.88,
+ "bldgarea":4615.33,
+ "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_2":83504,
+ "Shape_Le_1":0.000171425890639,
+ "Shape_Ar_1":5.97403781196e-10,
+ "OBJECTID_3":83504,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83503,
+ "g_objectid":"945296",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1338881",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984081830550000000",
+ "g_sup_tota":"51",
+ "g_geometry":"0.00063346",
+ "g_geomet_1":"5.87755e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000171425890639,
+ "Shape_Area":5.97403781196e-10,
+ "Shape_Le_3":0.000171426314573,
+ "Shape_Ar_2":5.97403781196e-10,
+ "building_height":42.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":282,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58098966786073,
+ 45.49991521716384
+ ],
+ [
+ -73.58106947549774,
+ 45.49995217120603
+ ],
+ [
+ -73.58114956372323,
+ 45.499865935215034
+ ],
+ [
+ -73.58106907170215,
+ 45.499829718616915
+ ],
+ [
+ -73.58098966786073,
+ 45.49991521716384
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":282,
+ "ID_UEV":"01036527",
+ "CIVIQUE_DE":" 24",
+ "CIVIQUE_FI":" 24",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-6398-1-000-0000",
+ "SUPERFICIE":91,
+ "SUPERFIC_1":168,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000410584356566,
+ "OBJECTID":83505,
+ "Join_Count":1,
+ "TARGET_FID":83505,
+ "feature_id":"dc4ee5d2-23ed-4f64-937a-8e4dc3b17398",
+ "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.38,
+ "heightmax":80.62,
+ "elevmin":61.34,
+ "elevmax":67.3,
+ "bldgarea":906.84,
+ "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_2":83505,
+ "Shape_Le_1":0.000410584356566,
+ "Shape_Ar_1":9.7997228221e-09,
+ "OBJECTID_3":83505,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83504,
+ "g_objectid":"939902",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340932",
+ "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":"66023983949639810000000",
+ "g_sup_tota":"91.2",
+ "g_geometry":"0.000427112",
+ "g_geomet_1":"1.0504e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000410584356566,
+ "Shape_Area":9.7997228221e-09,
+ "Shape_Le_3":0.000410584976161,
+ "Shape_Ar_2":9.7997228221e-09,
+ "building_height":39.120000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":283,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56519329375735,
+ 45.518205394213865
+ ],
+ [
+ -73.56527306722012,
+ 45.51823510691495
+ ],
+ [
+ -73.56542120894348,
+ 45.518071879963586
+ ],
+ [
+ -73.56539257003293,
+ 45.51805614722371
+ ],
+ [
+ -73.56538777035117,
+ 45.51805374693317
+ ],
+ [
+ -73.56535337038358,
+ 45.518087646877696
+ ],
+ [
+ -73.56532336989945,
+ 45.518117247163524
+ ],
+ [
+ -73.5652889474488,
+ 45.51810000266329
+ ],
+ [
+ -73.56519329375735,
+ 45.518205394213865
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":283,
+ "ID_UEV":"01003048",
+ "CIVIQUE_DE":" 2052",
+ "CIVIQUE_FI":" 2056",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-60-9725-1-000-0000",
+ "SUPERFICIE":201,
+ "SUPERFIC_1":369,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000614866909524,
+ "OBJECTID":83510,
+ "Join_Count":1,
+ "TARGET_FID":83510,
+ "feature_id":"02437dd3-64c3-49ff-b65a-5082346d0b17",
+ "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":19.57,
+ "elevmin":24.38,
+ "elevmax":38.3,
+ "bldgarea":3609.32,
+ "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_2":83510,
+ "Shape_Le_1":0.000614866909524,
+ "Shape_Ar_1":1.43611941915e-08,
+ "OBJECTID_3":83510,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83509,
+ "g_objectid":"943161",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161401",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994260892820000000",
+ "g_sup_tota":"200.7",
+ "g_geometry":"0.000738736",
+ "g_geomet_1":"2.3262e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000614866909524,
+ "Shape_Area":1.43611941915e-08,
+ "Shape_Le_3":0.000614867747142,
+ "Shape_Ar_2":1.43611941915e-08,
+ "building_height":9.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":284,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57670120751656,
+ 45.498596439624286
+ ],
+ [
+ -73.57675660755324,
+ 45.49862313959651
+ ],
+ [
+ -73.57681032315973,
+ 45.49861394402859
+ ],
+ [
+ -73.57707391355211,
+ 45.49833674689365
+ ],
+ [
+ -73.57698927205911,
+ 45.498301943130464
+ ],
+ [
+ -73.57698727196687,
+ 45.4983010429091
+ ],
+ [
+ -73.57670120751656,
+ 45.498596439624286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":284,
+ "ID_UEV":"01036297",
+ "CIVIQUE_DE":" 1458",
+ "CIVIQUE_FI":" 1458",
+ "NOM_RUE":"rue de la Montagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-78-9140-3-000-0000",
+ "SUPERFICIE":321,
+ "SUPERFIC_1":847,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100343018328,
+ "OBJECTID":83520,
+ "Join_Count":1,
+ "TARGET_FID":83520,
+ "feature_id":"ee8cbb9e-bf54-4edf-aa14-0b5b4c828dc7",
+ "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":3.92,
+ "heightmax":56.3,
+ "elevmin":20.15,
+ "elevmax":45,
+ "bldgarea":424.17,
+ "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_2":83520,
+ "Shape_Le_1":0.00100343018328,
+ "Shape_Ar_1":3.6302385077e-08,
+ "OBJECTID_3":83520,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83519,
+ "g_objectid":"938224",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1341075",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983978914030000000",
+ "g_sup_tota":"333.9",
+ "g_geometry":"0.00102421",
+ "g_geomet_1":"3.81001e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100343018328,
+ "Shape_Area":3.6302385077e-08,
+ "Shape_Le_3":0.00100343006552,
+ "Shape_Ar_2":3.6302385077e-08,
+ "building_height":26.189999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":285,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56654509350311,
+ 45.51679827267244
+ ],
+ [
+ -73.56658717008368,
+ 45.51681784551745
+ ],
+ [
+ -73.56654530304515,
+ 45.516862186590934
+ ],
+ [
+ -73.56658513671653,
+ 45.51688031872202
+ ],
+ [
+ -73.56674472501089,
+ 45.51670988999972
+ ],
+ [
+ -73.56666153142638,
+ 45.51667361494567
+ ],
+ [
+ -73.56654509350311,
+ 45.51679827267244
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":285,
+ "ID_UEV":"01002936",
+ "CIVIQUE_DE":" 2093",
+ "CIVIQUE_FI":" 2097",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-58-9474-2-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":283,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000645977990395,
+ "OBJECTID":83521,
+ "Join_Count":1,
+ "TARGET_FID":83521,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":83521,
+ "Shape_Le_1":0.000645977990395,
+ "Shape_Ar_1":1.71848727698e-08,
+ "OBJECTID_3":83521,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83520,
+ "g_objectid":"938316",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161289",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168007060000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000682089",
+ "g_geomet_1":"2.144e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000645977990395,
+ "Shape_Area":1.71848727698e-08,
+ "Shape_Le_3":0.000645976766998,
+ "Shape_Ar_2":1.71848727698e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":286,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55730197123083,
+ 45.515926809824705
+ ],
+ [
+ -73.5573470668355,
+ 45.51594824696432
+ ],
+ [
+ -73.55734396687242,
+ 45.515951346927416
+ ],
+ [
+ -73.55734716755958,
+ 45.51595274717184
+ ],
+ [
+ -73.55736936912294,
+ 45.51596283846452
+ ],
+ [
+ -73.55754204974764,
+ 45.51577884346914
+ ],
+ [
+ -73.55750526747596,
+ 45.51576124643467
+ ],
+ [
+ -73.55742146684906,
+ 45.51584774682635
+ ],
+ [
+ -73.55739021810592,
+ 45.51583276322174
+ ],
+ [
+ -73.55730197123083,
+ 45.515926809824705
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":286,
+ "ID_UEV":"01003670",
+ "CIVIQUE_DE":" 1262",
+ "CIVIQUE_FI":" 1266",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-37-1472-6-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":447,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000659364969562,
+ "OBJECTID":83529,
+ "Join_Count":1,
+ "TARGET_FID":83529,
+ "feature_id":"d469b45b-ef06-4b3e-9916-c66ce8797863",
+ "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":42.06,
+ "elevmin":21.32,
+ "elevmax":23.94,
+ "bldgarea":2619.31,
+ "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_2":83529,
+ "Shape_Le_1":0.000659364969562,
+ "Shape_Ar_1":1.43865861927e-08,
+ "OBJECTID_3":83529,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83528,
+ "g_objectid":"943450",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162111",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004137196910000000",
+ "g_sup_tota":"181.8",
+ "g_geometry":"0.000717424",
+ "g_geomet_1":"2.06077e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000659364969562,
+ "Shape_Area":1.43865861927e-08,
+ "Shape_Le_3":0.000659363695175,
+ "Shape_Ar_2":1.43865861927e-08,
+ "building_height":20.775000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":287,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55576237955202,
+ 45.4995870617438
+ ],
+ [
+ -73.55586262787982,
+ 45.49962121889443
+ ],
+ [
+ -73.55602470999422,
+ 45.499405995840334
+ ],
+ [
+ -73.55591882381651,
+ 45.49936610371301
+ ],
+ [
+ -73.55576237955202,
+ 45.4995870617438
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":287,
+ "ID_UEV":"01004121",
+ "CIVIQUE_DE":" 122",
+ "CIVIQUE_FI":" 124",
+ "NOM_RUE":"rue McGill (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0039-49-3153-9-000-0000",
+ "SUPERFICIE":257,
+ "SUPERFIC_1":1394,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000759222765068,
+ "OBJECTID":83530,
+ "Join_Count":1,
+ "TARGET_FID":83530,
+ "feature_id":"c234199c-2474-441f-8fcd-00a2c44a3657",
+ "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":25.29,
+ "elevmin":12.9,
+ "elevmax":13.97,
+ "bldgarea":2902.07,
+ "comment":" ",
+ "OBJECTID_2":83530,
+ "Shape_Le_1":0.000759222765068,
+ "Shape_Ar_1":2.83746940653e-08,
+ "OBJECTID_3":83530,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83529,
+ "g_objectid":"937793",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1179881",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023003949315390000000",
+ "g_sup_tota":"257.3",
+ "g_geometry":"0.000782625",
+ "g_geomet_1":"2.96251e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000759222765068,
+ "Shape_Area":2.83746940653e-08,
+ "Shape_Le_3":0.000759222100671,
+ "Shape_Ar_2":2.83746940653e-08,
+ "building_height":12.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":288,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5555745930149,
+ 45.49952307947683
+ ],
+ [
+ -73.55566409534357,
+ 45.49955357458809
+ ],
+ [
+ -73.55581592518665,
+ 45.49932733753689
+ ],
+ [
+ -73.55572790134342,
+ 45.49929417503645
+ ],
+ [
+ -73.5555745930149,
+ 45.49952307947683
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":288,
+ "ID_UEV":"01004123",
+ "CIVIQUE_DE":" 116",
+ "CIVIQUE_FI":" 116",
+ "NOM_RUE":"rue McGill (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0039-49-4745-1-000-0000",
+ "SUPERFICIE":227,
+ "SUPERFIC_1":441,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000736581405873,
+ "OBJECTID":83531,
+ "Join_Count":1,
+ "TARGET_FID":83531,
+ "feature_id":"c234199c-2474-441f-8fcd-00a2c44a3657",
+ "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":25.29,
+ "elevmin":12.9,
+ "elevmax":13.97,
+ "bldgarea":2902.07,
+ "comment":" ",
+ "OBJECTID_2":83531,
+ "Shape_Le_1":0.000736581405873,
+ "Shape_Ar_1":2.50560033691e-08,
+ "OBJECTID_3":83531,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83530,
+ "g_objectid":"937846",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1179969",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023003949474510000000",
+ "g_sup_tota":"226.5",
+ "g_geometry":"0.000757337",
+ "g_geomet_1":"2.60014e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000736581405873,
+ "Shape_Area":2.50560033691e-08,
+ "Shape_Le_3":0.000736581102967,
+ "Shape_Ar_2":2.50560033691e-08,
+ "building_height":12.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":289,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55550474896684,
+ 45.50281691481906
+ ],
+ [
+ -73.55556936615517,
+ 45.502852154753434
+ ],
+ [
+ -73.55559977313287,
+ 45.50286584962955
+ ],
+ [
+ -73.5556813074682,
+ 45.502788567288846
+ ],
+ [
+ -73.55568588771538,
+ 45.502791019740066
+ ],
+ [
+ -73.55576864333007,
+ 45.50271461783564
+ ],
+ [
+ -73.55577381892844,
+ 45.502708928724374
+ ],
+ [
+ -73.55576829799041,
+ 45.502704703709405
+ ],
+ [
+ -73.55580062592,
+ 45.502679461538214
+ ],
+ [
+ -73.55584376639854,
+ 45.50263204388401
+ ],
+ [
+ -73.55579876612201,
+ 45.502611844211536
+ ],
+ [
+ -73.55578053326684,
+ 45.50260379617855
+ ],
+ [
+ -73.55565023589152,
+ 45.502717670134665
+ ],
+ [
+ -73.5556095973269,
+ 45.502695301297415
+ ],
+ [
+ -73.55558659356828,
+ 45.50272675328733
+ ],
+ [
+ -73.55555994126013,
+ 45.502756170111454
+ ],
+ [
+ -73.55550474896684,
+ 45.50281691481906
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":289,
+ "ID_UEV":"01000396",
+ "CIVIQUE_DE":" 408",
+ "CIVIQUE_FI":" 410",
+ "NOM_RUE":"rue Saint-Fran\u00c3\u00a7ois-Xavier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-43-4714-8-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":1289,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000906307912156,
+ "OBJECTID":83532,
+ "Join_Count":1,
+ "TARGET_FID":83532,
+ "feature_id":"d042b9f1-73bb-41b9-ab0f-67691e54d022",
+ "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":22.69,
+ "elevmin":13.51,
+ "elevmax":15.77,
+ "bldgarea":891.79,
+ "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_2":83532,
+ "Shape_Le_1":0.000906307912156,
+ "Shape_Ar_1":3.04516800384e-08,
+ "OBJECTID_3":83532,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83531,
+ "g_objectid":"939564",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181001",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004043651570000000",
+ "g_sup_tota":"114.8",
+ "g_geometry":"0.000509101",
+ "g_geomet_1":"1.32165e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000906307912156,
+ "Shape_Area":3.04516800384e-08,
+ "Shape_Le_3":0.000906306816539,
+ "Shape_Ar_2":3.04516800384e-08,
+ "building_height":10.84
+ }
+ },
+ {
+ "type":"Feature",
+ "id":290,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56190327693653,
+ 45.504327747977484
+ ],
+ [
+ -73.56196471502143,
+ 45.50435622860736
+ ],
+ [
+ -73.5620713584283,
+ 45.50424148680547
+ ],
+ [
+ -73.5621760530043,
+ 45.504128211797834
+ ],
+ [
+ -73.562095630231,
+ 45.504090165978674
+ ],
+ [
+ -73.56207340798323,
+ 45.50411314725424
+ ],
+ [
+ -73.56210756783183,
+ 45.504163043439995
+ ],
+ [
+ -73.56210756783183,
+ 45.50416314416407
+ ],
+ [
+ -73.56199986772157,
+ 45.50425004385473
+ ],
+ [
+ -73.5619489678924,
+ 45.504291043946814
+ ],
+ [
+ -73.56190327693653,
+ 45.504327747977484
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":290,
+ "ID_UEV":"01000397",
+ "CIVIQUE_DE":" 1019",
+ "CIVIQUE_FI":" 1019",
+ "NOM_RUE":"rue De Bleury (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-94-5279-6-000-0000",
+ "SUPERFICIE":234,
+ "SUPERFIC_1":347,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000822473051552,
+ "OBJECTID":83533,
+ "Join_Count":1,
+ "TARGET_FID":83533,
+ "feature_id":"693c899e-a320-4674-836d-c44d6f05b815",
+ "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":62.02,
+ "elevmin":14.54,
+ "elevmax":17.21,
+ "bldgarea":2108.35,
+ "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_2":83533,
+ "Shape_Le_1":0.000822473051552,
+ "Shape_Ar_1":1.57545701136e-08,
+ "OBJECTID_3":83533,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83532,
+ "g_objectid":"945533",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"4386572",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994095530070000000",
+ "g_sup_tota":"152.2",
+ "g_geometry":"0.000827268",
+ "g_geomet_1":"1.69245e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000822473051552,
+ "Shape_Area":1.57545701136e-08,
+ "Shape_Le_3":0.000822472678258,
+ "Shape_Ar_2":1.57545701136e-08,
+ "building_height":30.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":291,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56527118224112,
+ 45.519502464817194
+ ],
+ [
+ -73.56533234783143,
+ 45.5195302286874
+ ],
+ [
+ -73.56545112938795,
+ 45.51939999966055
+ ],
+ [
+ -73.5654084700467,
+ 45.51938384693728
+ ],
+ [
+ -73.56536396979321,
+ 45.51944164726451
+ ],
+ [
+ -73.56533627786877,
+ 45.51943109372029
+ ],
+ [
+ -73.56527118224112,
+ 45.519502464817194
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":291,
+ "ID_UEV":"01003790",
+ "CIVIQUE_DE":" 2104",
+ "CIVIQUE_FI":" 2106",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-61-9473-6-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":128,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000488228902575,
+ "OBJECTID":83543,
+ "Join_Count":1,
+ "TARGET_FID":83543,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":83543,
+ "Shape_Le_1":0.000488228902575,
+ "Shape_Ar_1":9.27388972416e-09,
+ "OBJECTID_3":83543,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83542,
+ "g_objectid":"943171",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161452",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994261997010000000",
+ "g_sup_tota":"119.3",
+ "g_geometry":"0.000555921",
+ "g_geomet_1":"1.39508e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000488228902575,
+ "Shape_Area":9.27388972416e-09,
+ "Shape_Le_3":0.00048822944957,
+ "Shape_Ar_2":9.27388972416e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":292,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5624974599117,
+ 45.52992928286041
+ ],
+ [
+ -73.56252087016387,
+ 45.52993914842325
+ ],
+ [
+ -73.56249937187036,
+ 45.52996434293038
+ ],
+ [
+ -73.56251802920553,
+ 45.52997315268914
+ ],
+ [
+ -73.56253917046818,
+ 45.52998204878282
+ ],
+ [
+ -73.56253927029293,
+ 45.52998204878282
+ ],
+ [
+ -73.56257197054185,
+ 45.52994944925797
+ ],
+ [
+ -73.56263031226095,
+ 45.52997827702616
+ ],
+ [
+ -73.56263605173424,
+ 45.52996042728219
+ ],
+ [
+ -73.56264997054156,
+ 45.52990054862172
+ ],
+ [
+ -73.56265857435557,
+ 45.52989038898056
+ ],
+ [
+ -73.56267021877741,
+ 45.529854176879056
+ ],
+ [
+ -73.56262947049551,
+ 45.52983714911544
+ ],
+ [
+ -73.56262807025108,
+ 45.52983654926763
+ ],
+ [
+ -73.56262297019576,
+ 45.529841249124644
+ ],
+ [
+ -73.56259448237131,
+ 45.52982623404376
+ ],
+ [
+ -73.5624974599117,
+ 45.52992928286041
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":292,
+ "ID_UEV":"01035151",
+ "CIVIQUE_DE":" 2407",
+ "CIVIQUE_FI":" 2411",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-93-1136-8-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":313,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00057137955908,
+ "OBJECTID":83546,
+ "Join_Count":1,
+ "TARGET_FID":83546,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83546,
+ "Shape_Le_1":0.00057137955908,
+ "Shape_Ar_1":1.56162027245e-08,
+ "OBJECTID_3":83546,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83545,
+ "g_objectid":"942924",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884783",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994393113680000000",
+ "g_sup_tota":"192.6",
+ "g_geometry":"0.000634633",
+ "g_geomet_1":"2.22482e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00057137955908,
+ "Shape_Area":1.56162027245e-08,
+ "Shape_Le_3":0.000571379352949,
+ "Shape_Ar_2":1.56162027245e-08,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":293,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55381316826495,
+ 45.53339816224569
+ ],
+ [
+ -73.55388666715781,
+ 45.53342933544577
+ ],
+ [
+ -73.55399466224571,
+ 45.533303432157965
+ ],
+ [
+ -73.55393906705615,
+ 45.5332818502275
+ ],
+ [
+ -73.55393876668258,
+ 45.533281649678685
+ ],
+ [
+ -73.55393276730521,
+ 45.533312449660116
+ ],
+ [
+ -73.55389025005684,
+ 45.53330829659091
+ ],
+ [
+ -73.55381316826495,
+ 45.53339816224569
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":293,
+ "ID_UEV":"01023642",
+ "CIVIQUE_DE":" 2066",
+ "CIVIQUE_FI":" 2068",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-8712-2-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":188,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000498203414731,
+ "OBJECTID":83558,
+ "Join_Count":1,
+ "TARGET_FID":83558,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":83558,
+ "Shape_Le_1":0.000498203414731,
+ "Shape_Ar_1":1.14177900174e-08,
+ "OBJECTID_3":83558,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83557,
+ "g_objectid":"941200",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425137",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357871220000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000653475",
+ "g_geomet_1":"1.87848e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000498203414731,
+ "Shape_Area":1.14177900174e-08,
+ "Shape_Le_3":0.00049820376554,
+ "Shape_Ar_2":1.14177900174e-08,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":294,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5686221587075,
+ 45.510742484428405
+ ],
+ [
+ -73.5686358158121,
+ 45.51074863489188
+ ],
+ [
+ -73.5687402900542,
+ 45.510635474098144
+ ],
+ [
+ -73.56865801287884,
+ 45.51059841393595
+ ],
+ [
+ -73.5685539775059,
+ 45.51071134540256
+ ],
+ [
+ -73.56858656444024,
+ 45.51072645581158
+ ],
+ [
+ -73.5686221587075,
+ 45.510742484428405
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":294,
+ "ID_UEV":"01001191",
+ "CIVIQUE_DE":" 2067",
+ "CIVIQUE_FI":" 2071",
+ "NOM_RUE":"rue Saint-Urbain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-41-3495-9-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":369,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000487735598553,
+ "OBJECTID":83560,
+ "Join_Count":1,
+ "TARGET_FID":83560,
+ "feature_id":"fd41ce0c-c716-49e1-a68d-659c83f46ff3",
+ "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":20.56,
+ "elevmin":33.3,
+ "elevmax":39.29,
+ "bldgarea":1803.22,
+ "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_2":83560,
+ "Shape_Le_1":0.000487735598553,
+ "Shape_Ar_1":1.31627219144e-08,
+ "OBJECTID_3":83560,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83559,
+ "g_objectid":"943036",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160599",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994141349590000000",
+ "g_sup_tota":"151.9",
+ "g_geometry":"0.000588756",
+ "g_geomet_1":"1.75008e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000487735598553,
+ "Shape_Area":1.31627219144e-08,
+ "Shape_Le_3":0.000487734593313,
+ "Shape_Ar_2":1.31627219144e-08,
+ "building_height":10.024999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":295,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56295195569005,
+ 45.52969358044468
+ ],
+ [
+ -73.56314037445057,
+ 45.52972550817596
+ ],
+ [
+ -73.5631462704059,
+ 45.529711648723904
+ ],
+ [
+ -73.5631575703874,
+ 45.52968494875168
+ ],
+ [
+ -73.56315626996773,
+ 45.529684848926934
+ ],
+ [
+ -73.56316081783932,
+ 45.529658820748274
+ ],
+ [
+ -73.5628637636736,
+ 45.52960864217539
+ ],
+ [
+ -73.56286136967832,
+ 45.52961614881651
+ ],
+ [
+ -73.56294596980251,
+ 45.52962944889025
+ ],
+ [
+ -73.56293637043899,
+ 45.52965974884862
+ ],
+ [
+ -73.56293647026374,
+ 45.52965974884862
+ ],
+ [
+ -73.56296856976553,
+ 45.52967184922676
+ ],
+ [
+ -73.56295195569005,
+ 45.52969358044468
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":295,
+ "ID_UEV":"01035365",
+ "CIVIQUE_DE":" 1980",
+ "CIVIQUE_FI":" 1984",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-83-7907-7-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":316,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000751209142735,
+ "OBJECTID":83571,
+ "Join_Count":1,
+ "TARGET_FID":83571,
+ "feature_id":"9accd3d3-589e-4b45-bf5e-d69658c2daf7",
+ "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":15.72,
+ "elevmin":38.48,
+ "elevmax":42.97,
+ "bldgarea":1167.39,
+ "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_2":83571,
+ "Shape_Le_1":0.000751209142735,
+ "Shape_Ar_1":1.48611989847e-08,
+ "OBJECTID_3":83571,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83570,
+ "g_objectid":"942810",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884553",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994383790770000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000908995",
+ "g_geomet_1":"2.65787e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000751209142735,
+ "Shape_Area":1.48611989847e-08,
+ "Shape_Le_3":0.000751209506839,
+ "Shape_Ar_2":1.48611989847e-08,
+ "building_height":7.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":296,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56292045153945,
+ 45.52954824820339
+ ],
+ [
+ -73.56317274015169,
+ 45.52959077084769
+ ],
+ [
+ -73.5631746700968,
+ 45.52957984858144
+ ],
+ [
+ -73.5631916277133,
+ 45.529521255951494
+ ],
+ [
+ -73.56304833783237,
+ 45.529497604681005
+ ],
+ [
+ -73.56303297021725,
+ 45.52952524894138
+ ],
+ [
+ -73.56301736967771,
+ 45.52952094928268
+ ],
+ [
+ -73.56302286993134,
+ 45.52951064844796
+ ],
+ [
+ -73.563021570411,
+ 45.529510548623215
+ ],
+ [
+ -73.56296627019906,
+ 45.52950614913976
+ ],
+ [
+ -73.56292796987175,
+ 45.5295029484526
+ ],
+ [
+ -73.56292045153945,
+ 45.52954824820339
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":296,
+ "ID_UEV":"01035367",
+ "CIVIQUE_DE":" 1968",
+ "CIVIQUE_FI":" 1972",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-82-7592-9-000-0000",
+ "SUPERFICIE":240,
+ "SUPERFIC_1":368,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000673782790821,
+ "OBJECTID":83572,
+ "Join_Count":1,
+ "TARGET_FID":83572,
+ "feature_id":"9accd3d3-589e-4b45-bf5e-d69658c2daf7",
+ "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":15.72,
+ "elevmin":38.48,
+ "elevmax":42.97,
+ "bldgarea":1167.39,
+ "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_2":83572,
+ "Shape_Le_1":0.000673782790821,
+ "Shape_Ar_1":1.59158632343e-08,
+ "OBJECTID_3":83572,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83571,
+ "g_objectid":"942807",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884550",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994382738580000000",
+ "g_sup_tota":"225",
+ "g_geometry":"0.000904856",
+ "g_geomet_1":"2.57273e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000673782790821,
+ "Shape_Area":1.59158632343e-08,
+ "Shape_Le_3":0.000673784085616,
+ "Shape_Ar_2":1.59158632343e-08,
+ "building_height":7.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":297,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55559977313287,
+ 45.50286584962955
+ ],
+ [
+ -73.555621965703,
+ 45.50287584379545
+ ],
+ [
+ -73.55576864333007,
+ 45.50271461783564
+ ],
+ [
+ -73.55568588771538,
+ 45.502791019740066
+ ],
+ [
+ -73.5556813074682,
+ 45.502788567288846
+ ],
+ [
+ -73.55559977313287,
+ 45.50286584962955
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55580062592,
+ 45.502679461538214
+ ],
+ [
+ -73.55576829799041,
+ 45.502704703709405
+ ],
+ [
+ -73.55577381892844,
+ 45.502708928724374
+ ],
+ [
+ -73.55580062592,
+ 45.502679461538214
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":297,
+ "ID_UEV":"01000398",
+ "CIVIQUE_DE":" 420",
+ "CIVIQUE_FI":" 420",
+ "NOM_RUE":"rue Saint-Fran\u00c3\u00a7ois-Xavier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-43-3421-1-000-0000",
+ "SUPERFICIE":835,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000560274137395,
+ "OBJECTID":83574,
+ "Join_Count":1,
+ "TARGET_FID":83574,
+ "feature_id":"d042b9f1-73bb-41b9-ab0f-67691e54d022",
+ "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":22.69,
+ "elevmin":13.51,
+ "elevmax":15.77,
+ "bldgarea":891.79,
+ "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_2":83574,
+ "Shape_Le_1":0.000560274137395,
+ "Shape_Ar_1":2.74358008812e-09,
+ "OBJECTID_3":83574,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83573,
+ "g_objectid":"945694",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1180992",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004043342110000000",
+ "g_sup_tota":"834.7",
+ "g_geometry":"0.00132378",
+ "g_geomet_1":"9.61106e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000560274137395,
+ "Shape_Area":2.74358008812e-09,
+ "Shape_Le_3":0.00056027360153,
+ "Shape_Ar_2":2.74358008812e-09,
+ "building_height":10.84
+ }
+ },
+ {
+ "type":"Feature",
+ "id":298,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56171595355026,
+ 45.51709200654116
+ ],
+ [
+ -73.5617937997659,
+ 45.5171273507969
+ ],
+ [
+ -73.561950008408,
+ 45.51695731058172
+ ],
+ [
+ -73.56193476939593,
+ 45.51695034713111
+ ],
+ [
+ -73.56187228899678,
+ 45.51692182603174
+ ],
+ [
+ -73.56171595355026,
+ 45.51709200654116
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":298,
+ "ID_UEV":"01003388",
+ "CIVIQUE_DE":" 1639",
+ "CIVIQUE_FI":" 1643",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-6801-3-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":373,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000632920715592,
+ "OBJECTID":83575,
+ "Join_Count":1,
+ "TARGET_FID":83575,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83575,
+ "Shape_Le_1":0.000632920715592,
+ "Shape_Ar_1":1.87662393673e-08,
+ "OBJECTID_3":83575,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83574,
+ "g_objectid":"943332",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161771",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994199680130000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702842",
+ "g_geomet_1":"2.16039e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000632920715592,
+ "Shape_Area":1.87662393673e-08,
+ "Shape_Le_3":0.000632920151347,
+ "Shape_Ar_2":1.87662393673e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":299,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5759415321978,
+ 45.49919582607681
+ ],
+ [
+ -73.57594227233984,
+ 45.49919614263817
+ ],
+ [
+ -73.57585231135693,
+ 45.49929993069754
+ ],
+ [
+ -73.57608156203631,
+ 45.49941031618344
+ ],
+ [
+ -73.57628107393425,
+ 45.49920727084917
+ ],
+ [
+ -73.57605187181828,
+ 45.49909464245408
+ ],
+ [
+ -73.5760732118311,
+ 45.49907315675108
+ ],
+ [
+ -73.57606567821033,
+ 45.49906950460425
+ ],
+ [
+ -73.5759415321978,
+ 45.49919582607681
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":299,
+ "ID_UEV":"01037395",
+ "CIVIQUE_DE":" 1444",
+ "CIVIQUE_FI":" 1456",
+ "NOM_RUE":"rue Drummond (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-89-5526-4-000-0000",
+ "SUPERFICIE":691,
+ "SUPERFIC_1":1912,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0011484068868,
+ "OBJECTID":83576,
+ "Join_Count":1,
+ "TARGET_FID":83576,
+ "feature_id":"b70850ad-2cee-4ebb-94fa-c9eeac697f6e",
+ "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.73,
+ "heightmax":91.95,
+ "elevmin":40.33,
+ "elevmax":44.55,
+ "bldgarea":6143.21,
+ "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_2":83576,
+ "Shape_Le_1":0.0011484068868,
+ "Shape_Ar_1":7.10352790166e-08,
+ "OBJECTID_3":83576,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83575,
+ "g_objectid":"945274",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1338870",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9520",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983989770030000000",
+ "g_sup_tota":"2206.4",
+ "g_geometry":"0.00206774",
+ "g_geomet_1":"2.52891e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0011484068868,
+ "Shape_Area":7.10352790166e-08,
+ "Shape_Le_3":0.00114840711248,
+ "Shape_Ar_2":7.10352790166e-08,
+ "building_height":45.11
+ }
+ },
+ {
+ "type":"Feature",
+ "id":300,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56427517767915,
+ 45.51586403174996
+ ],
+ [
+ -73.56435096894391,
+ 45.515896846212776
+ ],
+ [
+ -73.56427912390429,
+ 45.51597864944541
+ ],
+ [
+ -73.56428267802501,
+ 45.51598027811764
+ ],
+ [
+ -73.5645257863578,
+ 45.51571391871267
+ ],
+ [
+ -73.56445396919716,
+ 45.515678246204395
+ ],
+ [
+ -73.56446936918788,
+ 45.515662946038425
+ ],
+ [
+ -73.56446916953838,
+ 45.51566284621368
+ ],
+ [
+ -73.56446201183422,
+ 45.515659338857695
+ ],
+ [
+ -73.56427517767915,
+ 45.51586403174996
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":300,
+ "ID_UEV":"01002904",
+ "CIVIQUE_DE":" 1735",
+ "CIVIQUE_FI":" 1739",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-77-7068-4-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":561,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000943225467965,
+ "OBJECTID":83580,
+ "Join_Count":1,
+ "TARGET_FID":83580,
+ "feature_id":"dc48b794-f01d-40a5-baf1-47b457de8e4d",
+ "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.53,
+ "heightmax":18.23,
+ "elevmin":24.24,
+ "elevmax":26.39,
+ "bldgarea":3310.44,
+ "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_2":83580,
+ "Shape_Le_1":0.000943225467965,
+ "Shape_Ar_1":2.19381389423e-08,
+ "OBJECTID_3":83580,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83579,
+ "g_objectid":"943181",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161495",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994177766400000000",
+ "g_sup_tota":"284.5",
+ "g_geometry":"0.000961336",
+ "g_geomet_1":"3.29376e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000943225467965,
+ "Shape_Area":2.19381389423e-08,
+ "Shape_Le_3":0.000943226715166,
+ "Shape_Ar_2":2.19381389423e-08,
+ "building_height":8.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":301,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55757657202302,
+ 45.503835268433185
+ ],
+ [
+ -73.55753984730795,
+ 45.50388405575487
+ ],
+ [
+ -73.55813578575975,
+ 45.504145290822805
+ ],
+ [
+ -73.55823077215426,
+ 45.50401359320306
+ ],
+ [
+ -73.558004858859,
+ 45.503911923047106
+ ],
+ [
+ -73.5580071233519,
+ 45.50390890312367
+ ],
+ [
+ -73.55792665291455,
+ 45.503871921202496
+ ],
+ [
+ -73.55789989718436,
+ 45.503862289463385
+ ],
+ [
+ -73.55786130277875,
+ 45.503908255611805
+ ],
+ [
+ -73.55783762722656,
+ 45.5038977964964
+ ],
+ [
+ -73.55770056605013,
+ 45.503837246941686
+ ],
+ [
+ -73.55767236780737,
+ 45.50387562910729
+ ],
+ [
+ -73.55757657202302,
+ 45.503835268433185
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":301,
+ "ID_UEV":"01036777",
+ "CIVIQUE_DE":" 200",
+ "CIVIQUE_FI":" 200",
+ "NOM_RUE":"rue Saint-Jacques (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":11,
+ "NOMBRE_LOG":45,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-24-7352-4-000-0000",
+ "SUPERFICIE":738,
+ "SUPERFIC_1":6422,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00162995452992,
+ "OBJECTID":83590,
+ "Join_Count":1,
+ "TARGET_FID":83590,
+ "feature_id":"7674092f-b5fa-4784-868a-071938f89ad6",
+ "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.94,
+ "heightmax":45.4,
+ "elevmin":19.91,
+ "elevmax":21.46,
+ "bldgarea":5006.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_2":83590,
+ "Shape_Le_1":0.00162995452992,
+ "Shape_Ar_1":8.4806036446e-08,
+ "OBJECTID_3":83590,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83589,
+ "g_objectid":"938021",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180828",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004024773190000000",
+ "g_sup_tota":"249.5",
+ "g_geometry":"0.00101757",
+ "g_geomet_1":"2.8727e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00162995452992,
+ "Shape_Area":8.4806036446e-08,
+ "Shape_Le_3":0.00162995532499,
+ "Shape_Ar_2":8.4806036446e-08,
+ "building_height":22.23
+ }
+ },
+ {
+ "type":"Feature",
+ "id":302,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56170798735558,
+ 45.516980594029484
+ ],
+ [
+ -73.56175176905074,
+ 45.51699784662362
+ ],
+ [
+ -73.56168705113835,
+ 45.51707888453319
+ ],
+ [
+ -73.56171595355026,
+ 45.51709200654116
+ ],
+ [
+ -73.56187228899678,
+ 45.51692182603174
+ ],
+ [
+ -73.56179806884765,
+ 45.51688794677162
+ ],
+ [
+ -73.56179457138421,
+ 45.51688634328041
+ ],
+ [
+ -73.56170798735558,
+ 45.516980594029484
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":302,
+ "ID_UEV":"01003390",
+ "CIVIQUE_DE":" 1633",
+ "CIVIQUE_FI":" 1637",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Auberge ou g\u00c3\u00aete touristique (H\u00c3\u00b4tel \u00c3\u00a0 caract\u00c3\u00a8re familial, d'au plus 3 \u00c3\u00a9tages en hauteur de b\u00c3\u00a2timent)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-98-7497-1-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":401,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000627018557307,
+ "OBJECTID":83594,
+ "Join_Count":1,
+ "TARGET_FID":83594,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83594,
+ "Shape_Le_1":0.000627018557307,
+ "Shape_Ar_1":1.38105935314e-08,
+ "OBJECTID_3":83594,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83593,
+ "g_objectid":"945807",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"2161773",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4990",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994198809370000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.00070284",
+ "g_geomet_1":"2.16037e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000627018557307,
+ "Shape_Area":1.38105935314e-08,
+ "Shape_Le_3":0.000627017020845,
+ "Shape_Ar_2":1.38105935314e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":303,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56162699171414,
+ 45.51694867709007
+ ],
+ [
+ -73.56170798735558,
+ 45.516980594029484
+ ],
+ [
+ -73.56179457138421,
+ 45.51688634328041
+ ],
+ [
+ -73.56176556914754,
+ 45.516873046803966
+ ],
+ [
+ -73.56176026944273,
+ 45.51687874670709
+ ],
+ [
+ -73.56171896897708,
+ 45.51686004710378
+ ],
+ [
+ -73.56172396920766,
+ 45.516854546850155
+ ],
+ [
+ -73.56171816947979,
+ 45.51685204673486
+ ],
+ [
+ -73.56171645806992,
+ 45.51685128860638
+ ],
+ [
+ -73.56162699171414,
+ 45.51694867709007
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":303,
+ "ID_UEV":"01003392",
+ "CIVIQUE_DE":" 1629",
+ "CIVIQUE_FI":" 1631",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1963,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres transports, communications et services publics (infrastructure)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-98-8093-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000447930172854,
+ "OBJECTID":83595,
+ "Join_Count":1,
+ "TARGET_FID":83595,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83595,
+ "Shape_Le_1":0.000447930172854,
+ "Shape_Ar_1":1.02551037114e-08,
+ "OBJECTID_3":83595,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83594,
+ "g_objectid":"943333",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161775",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994198868920000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702842",
+ "g_geomet_1":"2.16038e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000447930172854,
+ "Shape_Area":1.02551037114e-08,
+ "Shape_Le_3":0.000447932146396,
+ "Shape_Ar_2":1.02551037114e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":304,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56154600146864,
+ 45.516916754754725
+ ],
+ [
+ -73.56155636885319,
+ 45.51692084667003
+ ],
+ [
+ -73.56162699171414,
+ 45.51694867709007
+ ],
+ [
+ -73.56171645806992,
+ 45.51685128860638
+ ],
+ [
+ -73.56167096946152,
+ 45.51683114649051
+ ],
+ [
+ -73.56163803808683,
+ 45.516816567580825
+ ],
+ [
+ -73.56154600146864,
+ 45.516916754754725
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":304,
+ "ID_UEV":"01003393",
+ "CIVIQUE_DE":" 1623",
+ "CIVIQUE_FI":" 1627",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-98-8689-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":412,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000441107057763,
+ "OBJECTID":83596,
+ "Join_Count":1,
+ "TARGET_FID":83596,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":83596,
+ "Shape_Le_1":0.000441107057763,
+ "Shape_Ar_1":1.08981631625e-08,
+ "OBJECTID_3":83596,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83595,
+ "g_objectid":"943333",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161775",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994198868920000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702842",
+ "g_geomet_1":"2.16038e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000441107057763,
+ "Shape_Area":1.08981631625e-08,
+ "Shape_Le_3":0.000441106940319,
+ "Shape_Ar_2":1.08981631625e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":305,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57132057810404,
+ 45.50068444058476
+ ],
+ [
+ -73.57132577078954,
+ 45.50068704322276
+ ],
+ [
+ -73.57130767013471,
+ 45.500704481077236
+ ],
+ [
+ -73.5713759403692,
+ 45.500737718221416
+ ],
+ [
+ -73.57159249172196,
+ 45.50051909303201
+ ],
+ [
+ -73.57151982020538,
+ 45.50048329282
+ ],
+ [
+ -73.57132057810404,
+ 45.50068444058476
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":305,
+ "ID_UEV":"01037679",
+ "CIVIQUE_DE":" 1243",
+ "CIVIQUE_FI":" 1245",
+ "NOM_RUE":"rue Metcalfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-20-1678-8-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":581,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000778726752667,
+ "OBJECTID":83597,
+ "Join_Count":1,
+ "TARGET_FID":83597,
+ "feature_id":"c24933b9-fffa-4b67-89e2-db6e4541b3af",
+ "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":21.67,
+ "elevmin":35.15,
+ "elevmax":36.29,
+ "bldgarea":1487.12,
+ "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_2":83597,
+ "Shape_Le_1":0.000778726752667,
+ "Shape_Ar_1":2.35254744338e-08,
+ "OBJECTID_3":83597,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83596,
+ "g_objectid":"939764",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340244",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994020227450000000",
+ "g_sup_tota":"211.7",
+ "g_geometry":"0.000796003",
+ "g_geomet_1":"2.41956e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000778726752667,
+ "Shape_Area":2.35254744338e-08,
+ "Shape_Le_3":0.000778725924936,
+ "Shape_Ar_2":2.35254744338e-08,
+ "building_height":10.58
+ }
+ },
+ {
+ "type":"Feature",
+ "id":306,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55780670044072,
+ 45.52601232975551
+ ],
+ [
+ -73.55783446790821,
+ 45.526024247571264
+ ],
+ [
+ -73.55792326786636,
+ 45.526062247525
+ ],
+ [
+ -73.55797486826741,
+ 45.52608434746496
+ ],
+ [
+ -73.55797576848877,
+ 45.52608474766327
+ ],
+ [
+ -73.55798416815668,
+ 45.526077348041476
+ ],
+ [
+ -73.55811576775032,
+ 45.52615134785671
+ ],
+ [
+ -73.55811686852051,
+ 45.526152047529266
+ ],
+ [
+ -73.55812286789788,
+ 45.52614614797664
+ ],
+ [
+ -73.5582088682665,
+ 45.52618904743689
+ ],
+ [
+ -73.55822640144912,
+ 45.526197814927514
+ ],
+ [
+ -73.55835224718031,
+ 45.52606583402132
+ ],
+ [
+ -73.55832066838599,
+ 45.5260513477418
+ ],
+ [
+ -73.55828946820624,
+ 45.52608494821209
+ ],
+ [
+ -73.55822276818805,
+ 45.526054447704894
+ ],
+ [
+ -73.55825566808646,
+ 45.5260188480417
+ ],
+ [
+ -73.55818286796683,
+ 45.5259842475253
+ ],
+ [
+ -73.5581800683773,
+ 45.52598724766364
+ ],
+ [
+ -73.55815416790237,
+ 45.52601674812472
+ ],
+ [
+ -73.55808646783807,
+ 45.52598744821246
+ ],
+ [
+ -73.55811716799475,
+ 45.52595244749775
+ ],
+ [
+ -73.55811126844213,
+ 45.52594984755771
+ ],
+ [
+ -73.55804436787513,
+ 45.52592154769157
+ ],
+ [
+ -73.5580151677876,
+ 45.52595554746084
+ ],
+ [
+ -73.55794706842431,
+ 45.52592664774689
+ ],
+ [
+ -73.5579952684887,
+ 45.52587044821291
+ ],
+ [
+ -73.55797056770938,
+ 45.525860047553444
+ ],
+ [
+ -73.55790951723228,
+ 45.525903478513015
+ ],
+ [
+ -73.55788542439467,
+ 45.525928771945566
+ ],
+ [
+ -73.55788445222753,
+ 45.525928314190644
+ ],
+ [
+ -73.55782537036639,
+ 45.52599028827148
+ ],
+ [
+ -73.5578269900454,
+ 45.52599105089658
+ ],
+ [
+ -73.55780670044072,
+ 45.52601232975551
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":306,
+ "ID_UEV":"01034284",
+ "CIVIQUE_DE":" 1918",
+ "CIVIQUE_FI":" 1952",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":18,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-6102-9-000-0000",
+ "SUPERFICIE":938,
+ "SUPERFIC_1":1455,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00162705718061,
+ "OBJECTID":83601,
+ "Join_Count":1,
+ "TARGET_FID":83601,
+ "feature_id":"65090e90-b10d-4179-abff-e66f48ed7326",
+ "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.5,
+ "heightmax":37.02,
+ "elevmin":23.45,
+ "elevmax":25.31,
+ "bldgarea":1077.77,
+ "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_2":83601,
+ "Shape_Le_1":0.00162705718061,
+ "Shape_Ar_1":7.12805844361e-08,
+ "OBJECTID_3":83601,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83600,
+ "g_objectid":"942117",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567384",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004228829020000000",
+ "g_sup_tota":"262.1",
+ "g_geometry":"0.000767108",
+ "g_geomet_1":"3.01913e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00162705718061,
+ "Shape_Area":7.12805844361e-08,
+ "Shape_Le_3":0.0016270567829,
+ "Shape_Ar_2":7.12805844361e-08,
+ "building_height":17.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":307,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.561411958417,
+ 45.5193575156871
+ ],
+ [
+ -73.5615549335352,
+ 45.51942337393985
+ ],
+ [
+ -73.56157776912059,
+ 45.519397846683574
+ ],
+ [
+ -73.56163496870069,
+ 45.519333447131174
+ ],
+ [
+ -73.56162576953548,
+ 45.51932974642096
+ ],
+ [
+ -73.56154596909305,
+ 45.51929754709442
+ ],
+ [
+ -73.56155276886703,
+ 45.51928924725126
+ ],
+ [
+ -73.56155186954499,
+ 45.51928904670244
+ ],
+ [
+ -73.56149518347777,
+ 45.51926688470926
+ ],
+ [
+ -73.561411958417,
+ 45.5193575156871
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56156697905469,
+ 45.5191886985499
+ ],
+ [
+ -73.56157616922667,
+ 45.51919304677199
+ ],
+ [
+ -73.56161556942483,
+ 45.519212446947165
+ ],
+ [
+ -73.56161916941099,
+ 45.51920854658745
+ ],
+ [
+ -73.56162427845953,
+ 45.51920281970466
+ ],
+ [
+ -73.56157556218429,
+ 45.5191803852169
+ ],
+ [
+ -73.56156810590521,
+ 45.51918747187462
+ ],
+ [
+ -73.56156697905469,
+ 45.5191886985499
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":307,
+ "ID_UEV":"01040040",
+ "CIVIQUE_DE":" 1790",
+ "CIVIQUE_FI":" 1790",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-8955-0-000-0000",
+ "SUPERFICIE":358,
+ "SUPERFIC_1":264,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000701982028205,
+ "OBJECTID":83608,
+ "Join_Count":2,
+ "TARGET_FID":83608,
+ "feature_id":"f57eac9c-b69c-4212-b473-1cf5e454e35e",
+ "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.54,
+ "heightmax":10.3,
+ "elevmin":22.96,
+ "elevmax":25.18,
+ "bldgarea":535.47,
+ "comment":" ",
+ "OBJECTID_2":83608,
+ "Shape_Le_1":0.000701982028205,
+ "Shape_Ar_1":1.86645908932e-08,
+ "OBJECTID_3":83608,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83607,
+ "g_objectid":"941486",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565265",
+ "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":"66023994291895500000000",
+ "g_sup_tota":"357.7",
+ "g_geometry":"0.00084112",
+ "g_geomet_1":"4.12008e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000701982028205,
+ "Shape_Area":1.86645908932e-08,
+ "Shape_Le_3":0.00070198083652,
+ "Shape_Ar_2":1.86645908932e-08,
+ "building_height":3.8800000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":308,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57289407152602,
+ 45.50494824421639
+ ],
+ [
+ -73.57291607074191,
+ 45.50495884362603
+ ],
+ [
+ -73.57283963915987,
+ 45.505036931759285
+ ],
+ [
+ -73.57307215078097,
+ 45.505149596127254
+ ],
+ [
+ -73.57313857200934,
+ 45.50508144370396
+ ],
+ [
+ -73.57315657194009,
+ 45.50506254355184
+ ],
+ [
+ -73.57324807256235,
+ 45.504965943773584
+ ],
+ [
+ -73.57299117222666,
+ 45.50484564416144
+ ],
+ [
+ -73.57289407152602,
+ 45.50494824421639
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":308,
+ "ID_UEV":"01038854",
+ "CIVIQUE_DE":" 666",
+ "CIVIQUE_FI":" 666",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":22,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1969,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-05-9664-1-000-0000",
+ "SUPERFICIE":937,
+ "SUPERFIC_1":11728,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00107131509292,
+ "OBJECTID":83610,
+ "Join_Count":1,
+ "TARGET_FID":83610,
+ "feature_id":"c7001cd0-1032-4e3b-9ded-ea4854cb7387",
+ "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":70.47,
+ "elevmin":40.34,
+ "elevmax":44,
+ "bldgarea":587.14,
+ "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_2":83610,
+ "Shape_Le_1":0.00107131509292,
+ "Shape_Ar_1":6.53049255338e-08,
+ "OBJECTID_3":83610,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83609,
+ "g_objectid":"945032",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340262",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"54",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994005966410000000",
+ "g_sup_tota":"936.5",
+ "g_geometry":"0.00138961",
+ "g_geomet_1":"1.0831e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00107131509292,
+ "Shape_Area":6.53049255338e-08,
+ "Shape_Le_3":0.00107131451808,
+ "Shape_Ar_2":6.53049255338e-08,
+ "building_height":34.975
+ }
+ },
+ {
+ "type":"Feature",
+ "id":309,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55908535652583,
+ 45.50180484566739
+ ],
+ [
+ -73.55901371383366,
+ 45.50190221976193
+ ],
+ [
+ -73.55922268120362,
+ 45.50197378781036
+ ],
+ [
+ -73.55929162323167,
+ 45.501879072111784
+ ],
+ [
+ -73.55908535652583,
+ 45.50180484566739
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":309,
+ "ID_UEV":"01036637",
+ "CIVIQUE_DE":" 381",
+ "CIVIQUE_FI":" 383",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1940,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-12-7720-7-000-0000",
+ "SUPERFICIE":219,
+ "SUPERFIC_1":895,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000678138051757,
+ "OBJECTID":83611,
+ "Join_Count":1,
+ "TARGET_FID":83611,
+ "feature_id":"fe7d9d68-0c45-464b-9602-b34ce4f51b2a",
+ "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":77.22,
+ "elevmin":16.15,
+ "elevmax":18.43,
+ "bldgarea":5003.38,
+ "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_2":83611,
+ "Shape_Le_1":0.000678138051757,
+ "Shape_Ar_1":2.50646506915e-08,
+ "OBJECTID_3":83611,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83610,
+ "g_objectid":"944909",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1179768",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"8",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004012772070000000",
+ "g_sup_tota":"218.9",
+ "g_geometry":"0.000684068",
+ "g_geomet_1":"2.53849e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000678138051757,
+ "Shape_Area":2.50646506915e-08,
+ "Shape_Le_3":0.000678138550252,
+ "Shape_Ar_2":2.50646506915e-08,
+ "building_height":38.115
+ }
+ },
+ {
+ "type":"Feature",
+ "id":310,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56161262054785,
+ 45.52950346376414
+ ],
+ [
+ -73.56164397001506,
+ 45.52951904901519
+ ],
+ [
+ -73.56162156970153,
+ 45.52954134860465
+ ],
+ [
+ -73.5616216704256,
+ 45.5295414484294
+ ],
+ [
+ -73.5617144705682,
+ 45.5295867490795
+ ],
+ [
+ -73.56171937007471,
+ 45.52958914847072
+ ],
+ [
+ -73.56174737046662,
+ 45.52956134862763
+ ],
+ [
+ -73.5617651023994,
+ 45.529570153889786
+ ],
+ [
+ -73.5618594763556,
+ 45.52947142901353
+ ],
+ [
+ -73.56182836970534,
+ 45.529452948844806
+ ],
+ [
+ -73.561818569793,
+ 45.52946114886323
+ ],
+ [
+ -73.561775969807,
+ 45.529435849135425
+ ],
+ [
+ -73.56172757009313,
+ 45.529407248895716
+ ],
+ [
+ -73.56172456995479,
+ 45.52940984883575
+ ],
+ [
+ -73.56170892804644,
+ 45.52940271811125
+ ],
+ [
+ -73.56161262054785,
+ 45.52950346376414
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":310,
+ "ID_UEV":"01035161",
+ "CIVIQUE_DE":" 2335",
+ "CIVIQUE_FI":" 2335",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-7889-8-000-0000",
+ "SUPERFICIE":350,
+ "SUPERFIC_1":500,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000686571415782,
+ "OBJECTID":83616,
+ "Join_Count":1,
+ "TARGET_FID":83616,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83616,
+ "Shape_Le_1":0.000686571415782,
+ "Shape_Ar_1":2.51409837276e-08,
+ "OBJECTID_3":83616,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83615,
+ "g_objectid":"942826",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884573",
+ "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":"66023994392709520000000",
+ "g_sup_tota":"175.2",
+ "g_geometry":"0.000681211",
+ "g_geomet_1":"2.01814e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000686571415782,
+ "Shape_Area":2.51409837276e-08,
+ "Shape_Le_3":0.000686570763697,
+ "Shape_Ar_2":2.51409837276e-08,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":311,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56138460193968,
+ 45.52940575512179
+ ],
+ [
+ -73.56146246344377,
+ 45.529435872517794
+ ],
+ [
+ -73.56155944723255,
+ 45.52933441999778
+ ],
+ [
+ -73.56153696867801,
+ 45.52932414884069
+ ],
+ [
+ -73.56154086903771,
+ 45.529319949006734
+ ],
+ [
+ -73.56149336954522,
+ 45.52929884911289
+ ],
+ [
+ -73.56149326882114,
+ 45.52929894893764
+ ],
+ [
+ -73.56148881627769,
+ 45.52929673750473
+ ],
+ [
+ -73.56138460193968,
+ 45.52940575512179
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":311,
+ "ID_UEV":"01035163",
+ "CIVIQUE_DE":" 2309",
+ "CIVIQUE_FI":" 2313",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-9976-1-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":234,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000462183779797,
+ "OBJECTID":83617,
+ "Join_Count":1,
+ "TARGET_FID":83617,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83617,
+ "Shape_Le_1":0.000462183779797,
+ "Shape_Ar_1":1.13149388651e-08,
+ "OBJECTID_3":83617,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83616,
+ "g_objectid":"942827",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884575",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392997610000000",
+ "g_sup_tota":"175.2",
+ "g_geometry":"0.000678978",
+ "g_geomet_1":"1.99077e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000462183779797,
+ "Shape_Area":1.13149388651e-08,
+ "Shape_Le_3":0.0004621845777,
+ "Shape_Ar_2":1.13149388651e-08,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":312,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56132333652461,
+ 45.52935674386893
+ ],
+ [
+ -73.56135066872022,
+ 45.5293673486745
+ ],
+ [
+ -73.56133736954581,
+ 45.529384348559134
+ ],
+ [
+ -73.56133546927833,
+ 45.529386748849674
+ ],
+ [
+ -73.56138460193968,
+ 45.52940575512179
+ ],
+ [
+ -73.56148881627769,
+ 45.52929673750473
+ ],
+ [
+ -73.56145196925482,
+ 45.529278448891596
+ ],
+ [
+ -73.56144756887205,
+ 45.529283048923865
+ ],
+ [
+ -73.56141034593256,
+ 45.52926572528329
+ ],
+ [
+ -73.56132333652461,
+ 45.52935674386893
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":312,
+ "ID_UEV":"01035164",
+ "CIVIQUE_DE":" 2303",
+ "CIVIQUE_FI":" 2307",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-0572-4-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":245,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000471936148693,
+ "OBJECTID":83618,
+ "Join_Count":1,
+ "TARGET_FID":83618,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83618,
+ "Shape_Le_1":0.000471936148693,
+ "Shape_Ar_1":1.1112060005e-08,
+ "OBJECTID_3":83618,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83617,
+ "g_objectid":"942827",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884575",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392997610000000",
+ "g_sup_tota":"175.2",
+ "g_geometry":"0.000678978",
+ "g_geomet_1":"1.99077e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000471936148693,
+ "Shape_Area":1.1112060005e-08,
+ "Shape_Le_3":0.000471934806029,
+ "Shape_Ar_2":1.1112060005e-08,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":313,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56508237587279,
+ 45.51979940656766
+ ],
+ [
+ -73.5650923700387,
+ 45.51980394724467
+ ],
+ [
+ -73.56523366971993,
+ 45.51986814714757
+ ],
+ [
+ -73.5653086704806,
+ 45.51990224674159
+ ],
+ [
+ -73.56530906977959,
+ 45.519902447290406
+ ],
+ [
+ -73.56532086978416,
+ 45.51989164643263
+ ],
+ [
+ -73.56534696990857,
+ 45.51990574690299
+ ],
+ [
+ -73.56535216978865,
+ 45.51990814719353
+ ],
+ [
+ -73.56539340370446,
+ 45.51986385828073
+ ],
+ [
+ -73.56541891207497,
+ 45.51983529761119
+ ],
+ [
+ -73.56525237022255,
+ 45.51975864659456
+ ],
+ [
+ -73.56515849269213,
+ 45.51971541708313
+ ],
+ [
+ -73.56508237587279,
+ 45.51979940656766
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":313,
+ "ID_UEV":"01003806",
+ "CIVIQUE_DE":" 2115",
+ "CIVIQUE_FI":" 2135",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-0618-2-000-0000",
+ "SUPERFICIE":742,
+ "SUPERFIC_1":1069,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000799243534062,
+ "OBJECTID":83619,
+ "Join_Count":1,
+ "TARGET_FID":83619,
+ "feature_id":"e6e21b8e-9d7f-4e54-b58d-caaed1284e8d",
+ "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.7,
+ "heightmax":22.47,
+ "elevmin":25.92,
+ "elevmax":31.42,
+ "bldgarea":1973.2,
+ "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_2":83619,
+ "Shape_Le_1":0.000799243534062,
+ "Shape_Ar_1":3.02861718917e-08,
+ "OBJECTID_3":83619,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83618,
+ "g_objectid":"943173",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161454",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272061820000000",
+ "g_sup_tota":"742",
+ "g_geometry":"0.00125047",
+ "g_geomet_1":"8.59859e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000799243534062,
+ "Shape_Area":3.02861718917e-08,
+ "Shape_Le_3":0.000799244978865,
+ "Shape_Ar_2":3.02861718917e-08,
+ "building_height":10.385
+ }
+ },
+ {
+ "type":"Feature",
+ "id":314,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56018576608209,
+ 45.52742983486928
+ ],
+ [
+ -73.56019346877541,
+ 45.52743374871882
+ ],
+ [
+ -73.56026378856484,
+ 45.52746948507897
+ ],
+ [
+ -73.56035768048442,
+ 45.527370055134234
+ ],
+ [
+ -73.56027638177144,
+ 45.52733244908355
+ ],
+ [
+ -73.56018576608209,
+ 45.52742983486928
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":314,
+ "ID_UEV":"01034544",
+ "CIVIQUE_DE":" 2105",
+ "CIVIQUE_FI":" 2115",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-00-9257-7-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":283,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000446872328498,
+ "OBJECTID":83627,
+ "Join_Count":1,
+ "TARGET_FID":83627,
+ "feature_id":"a685446f-e91c-4b34-848e-2d7c6bc5bd47",
+ "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.56,
+ "heightmax":40.5,
+ "elevmin":26.49,
+ "elevmax":27.51,
+ "bldgarea":947.78,
+ "comment":" ",
+ "OBJECTID_2":83627,
+ "Shape_Le_1":0.000446872328498,
+ "Shape_Ar_1":1.14027458734e-08,
+ "OBJECTID_3":83627,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83626,
+ "g_objectid":"942855",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884695",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"14",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004300796570000000",
+ "g_sup_tota":"529.5",
+ "g_geometry":"0.00101924",
+ "g_geomet_1":"6.1488e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000446872328498,
+ "Shape_Area":1.14027458734e-08,
+ "Shape_Le_3":0.000446873058347,
+ "Shape_Ar_2":1.14027458734e-08,
+ "building_height":18.97
+ }
+ },
+ {
+ "type":"Feature",
+ "id":315,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56010556723999,
+ 45.527389082990084
+ ],
+ [
+ -73.56018576608209,
+ 45.52742983486928
+ ],
+ [
+ -73.56027638177144,
+ 45.52733244908355
+ ],
+ [
+ -73.56019471793373,
+ 45.52729467306101
+ ],
+ [
+ -73.56010556723999,
+ 45.527389082990084
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":315,
+ "ID_UEV":"01034546",
+ "CIVIQUE_DE":" 2095",
+ "CIVIQUE_FI":" 2103",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-00-9853-3-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":253,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000442811018392,
+ "OBJECTID":83629,
+ "Join_Count":1,
+ "TARGET_FID":83629,
+ "feature_id":"a685446f-e91c-4b34-848e-2d7c6bc5bd47",
+ "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.56,
+ "heightmax":40.5,
+ "elevmin":26.49,
+ "elevmax":27.51,
+ "bldgarea":947.78,
+ "comment":" ",
+ "OBJECTID_2":83629,
+ "Shape_Le_1":0.000442811018392,
+ "Shape_Ar_1":1.1290354739e-08,
+ "OBJECTID_3":83629,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83628,
+ "g_objectid":"942864",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884706",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310054870000000",
+ "g_sup_tota":"176.5",
+ "g_geometry":"0.000656645",
+ "g_geomet_1":"2.02061e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000442811018392,
+ "Shape_Area":1.1290354739e-08,
+ "Shape_Le_3":0.000442810054705,
+ "Shape_Ar_2":1.1290354739e-08,
+ "building_height":18.97
+ }
+ },
+ {
+ "type":"Feature",
+ "id":316,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5600274988918,
+ 45.52734941389463
+ ],
+ [
+ -73.56010556723999,
+ 45.527389082990084
+ ],
+ [
+ -73.56019471793373,
+ 45.52729467306101
+ ],
+ [
+ -73.56011342551602,
+ 45.52725706880897
+ ],
+ [
+ -73.5600274988918,
+ 45.52734941389463
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":316,
+ "ID_UEV":"01034548",
+ "CIVIQUE_DE":" 2083",
+ "CIVIQUE_FI":" 2093",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-0548-7-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":286,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000433126348137,
+ "OBJECTID":83631,
+ "Join_Count":1,
+ "TARGET_FID":83631,
+ "feature_id":"a685446f-e91c-4b34-848e-2d7c6bc5bd47",
+ "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.56,
+ "heightmax":40.5,
+ "elevmin":26.49,
+ "elevmax":27.51,
+ "bldgarea":947.78,
+ "comment":" ",
+ "OBJECTID_2":83631,
+ "Shape_Le_1":0.000433126348137,
+ "Shape_Ar_1":1.08225471457e-08,
+ "OBJECTID_3":83631,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83630,
+ "g_objectid":"942864",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884706",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310054870000000",
+ "g_sup_tota":"176.5",
+ "g_geometry":"0.000656645",
+ "g_geomet_1":"2.02061e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000433126348137,
+ "Shape_Area":1.08225471457e-08,
+ "Shape_Le_3":0.000433126505238,
+ "Shape_Ar_2":1.08225471457e-08,
+ "building_height":18.97
+ }
+ },
+ {
+ "type":"Feature",
+ "id":317,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57811006924615,
+ 45.501006761203364
+ ],
+ [
+ -73.57813067271422,
+ 45.50098624317088
+ ],
+ [
+ -73.57817267285242,
+ 45.501007042691164
+ ],
+ [
+ -73.57818537307836,
+ 45.50099424264048
+ ],
+ [
+ -73.57827164953883,
+ 45.501036910075634
+ ],
+ [
+ -73.57837849978978,
+ 45.50092924054231
+ ],
+ [
+ -73.57828844347873,
+ 45.50088559554409
+ ],
+ [
+ -73.57828317345154,
+ 45.50089074326348
+ ],
+ [
+ -73.57826397292585,
+ 45.50088084262708
+ ],
+ [
+ -73.57825487268607,
+ 45.50087614277007
+ ],
+ [
+ -73.57824007344249,
+ 45.50089104273773
+ ],
+ [
+ -73.57819237340115,
+ 45.500867542553344
+ ],
+ [
+ -73.57796107316683,
+ 45.5007538430657
+ ],
+ [
+ -73.57783988592384,
+ 45.50087581811481
+ ],
+ [
+ -73.57811006924615,
+ 45.501006761203364
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":317,
+ "ID_UEV":"01039059",
+ "CIVIQUE_DE":" 1195",
+ "CIVIQUE_FI":" 1195",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Fondations et organismes de charit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-61-9909-5-000-0000",
+ "SUPERFICIE":864,
+ "SUPERFIC_1":1289,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00128529789441,
+ "OBJECTID":83634,
+ "Join_Count":1,
+ "TARGET_FID":83634,
+ "feature_id":"c3a67c3a-b247-492f-8f0f-d645c6fea634",
+ "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":66.25,
+ "elevmin":48.01,
+ "elevmax":52.2,
+ "bldgarea":789.04,
+ "comment":" ",
+ "OBJECTID_2":83634,
+ "Shape_Le_1":0.00128529789441,
+ "Shape_Ar_1":6.9400838439e-08,
+ "OBJECTID_3":83634,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83633,
+ "g_objectid":"937899",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338828",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984060889340000000",
+ "g_sup_tota":"897.1",
+ "g_geometry":"0.00148737",
+ "g_geomet_1":"1.0452e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00128529789441,
+ "Shape_Area":6.9400838439e-08,
+ "Shape_Le_3":0.00128529899198,
+ "Shape_Ar_2":6.9400838439e-08,
+ "building_height":32.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":318,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.57794807346666,
+ 45.50131314313734
+ ],
+ [
+ -73.57806017306038,
+ 45.50119434269506
+ ],
+ [
+ -73.57809457302797,
+ 45.50121044325765
+ ],
+ [
+ -73.57809784925819,
+ 45.501212038654955
+ ],
+ [
+ -73.57814627595172,
+ 45.501163241440736
+ ],
+ [
+ -73.57815737268645,
+ 45.5011518425338
+ ],
+ [
+ -73.57816127304616,
+ 45.50114804289816
+ ],
+ [
+ -73.57812377311548,
+ 45.501130443165714
+ ],
+ [
+ -73.5781671734981,
+ 45.50108484304137
+ ],
+ [
+ -73.57802837303284,
+ 45.50101944254354
+ ],
+ [
+ -73.57802817338334,
+ 45.50101944254354
+ ],
+ [
+ -73.57801687340184,
+ 45.50103174257116
+ ],
+ [
+ -73.57791177323159,
+ 45.5009841432539
+ ],
+ [
+ -73.57790897274275,
+ 45.50098734304174
+ ],
+ [
+ -73.57789047278894,
+ 45.501006442843355
+ ],
+ [
+ -73.57776467292317,
+ 45.50094494270524
+ ],
+ [
+ -73.5775793730115,
+ 45.501133442404736
+ ],
+ [
+ -73.5777071729695,
+ 45.50119534274117
+ ],
+ [
+ -73.57768737349534,
+ 45.5012152429394
+ ],
+ [
+ -73.57783597297362,
+ 45.501279142468746
+ ],
+ [
+ -73.57784067283063,
+ 45.501281343109795
+ ],
+ [
+ -73.57785267338402,
+ 45.50126854305911
+ ],
+ [
+ -73.57794807346666,
+ 45.50131314313734
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.57783988592384,
+ 45.50087581811481
+ ],
+ [
+ -73.57783797306585,
+ 45.50087774266399
+ ],
+ [
+ -73.57810677323084,
+ 45.501009843180015
+ ],
+ [
+ -73.57810687305559,
+ 45.50100994300476
+ ],
+ [
+ -73.57811006924615,
+ 45.501006761203364
+ ],
+ [
+ -73.57783988592384,
+ 45.50087581811481
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":318,
+ "ID_UEV":"01039061",
+ "CIVIQUE_DE":" 1175",
+ "CIVIQUE_FI":" 1175",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1905,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-71-1632-0-000-0000",
+ "SUPERFICIE":1761,
+ "SUPERFIC_1":1827,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00218734411048,
+ "OBJECTID":83635,
+ "Join_Count":2,
+ "TARGET_FID":83635,
+ "feature_id":"fb467039-6313-4a90-8072-5011785b02cf",
+ "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.86,
+ "heightmax":69.28,
+ "elevmin":46.64,
+ "elevmax":51.38,
+ "bldgarea":1047.03,
+ "comment":" ",
+ "OBJECTID_2":83635,
+ "Shape_Le_1":0.00218734411048,
+ "Shape_Ar_1":1.21554254356e-07,
+ "OBJECTID_3":83635,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83634,
+ "g_objectid":"944993",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338829",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6299",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984061990950000000",
+ "g_sup_tota":"864",
+ "g_geometry":"0.0014701",
+ "g_geomet_1":"1.00436e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00218734411048,
+ "Shape_Area":1.21554254356e-07,
+ "Shape_Le_3":0.00218734389681,
+ "Shape_Ar_2":1.21554254356e-07,
+ "building_height":34.21
+ }
+ },
+ {
+ "type":"Feature",
+ "id":319,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57398954020697,
+ 45.50043338494306
+ ],
+ [
+ -73.57407650554813,
+ 45.500477540756194
+ ],
+ [
+ -73.57433530435266,
+ 45.500216966689955
+ ],
+ [
+ -73.57425572154615,
+ 45.5001781825274
+ ],
+ [
+ -73.57420807186686,
+ 45.50022234283715
+ ],
+ [
+ -73.57420274608171,
+ 45.50021950367745
+ ],
+ [
+ -73.57398954020697,
+ 45.50043338494306
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":319,
+ "ID_UEV":"01037550",
+ "CIVIQUE_DE":" 1446",
+ "CIVIQUE_FI":" 1448",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-00-0547-8-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":585,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000926315247996,
+ "OBJECTID":83636,
+ "Join_Count":1,
+ "TARGET_FID":83636,
+ "feature_id":"a90e7db8-80e3-414e-98ec-1a6c15863322",
+ "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,
+ "heightmax":98.26,
+ "elevmin":39.19,
+ "elevmax":42.71,
+ "bldgarea":2902.31,
+ "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_2":83636,
+ "Shape_Le_1":0.000926315247996,
+ "Shape_Ar_1":3.34358202026e-08,
+ "OBJECTID_3":83636,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83635,
+ "g_objectid":"938104",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338918",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994000054780000000",
+ "g_sup_tota":"296.6",
+ "g_geometry":"0.000930379",
+ "g_geomet_1":"3.39739e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000926315247996,
+ "Shape_Area":3.34358202026e-08,
+ "Shape_Le_3":0.000926315968008,
+ "Shape_Ar_2":3.34358202026e-08,
+ "building_height":49.13
+ }
+ },
+ {
+ "type":"Feature",
+ "id":320,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57407650554813,
+ 45.500477540756194
+ ],
+ [
+ -73.57407791568511,
+ 45.500478257515866
+ ],
+ [
+ -73.57463495755908,
+ 45.50074893276733
+ ],
+ [
+ -73.5748899414395,
+ 45.50048963843636
+ ],
+ [
+ -73.57477307184163,
+ 45.50043134258269
+ ],
+ [
+ -73.57468461722316,
+ 45.50038720205802
+ ],
+ [
+ -73.57458284544381,
+ 45.50033760354786
+ ],
+ [
+ -73.5745578721699,
+ 45.5003319432149
+ ],
+ [
+ -73.57456028325231,
+ 45.500326608436524
+ ],
+ [
+ -73.57433530435266,
+ 45.500216966689955
+ ],
+ [
+ -73.57407650554813,
+ 45.500477540756194
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":320,
+ "ID_UEV":"01037552",
+ "CIVIQUE_DE":" 1450",
+ "CIVIQUE_FI":" 1478",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":11,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1927,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-90-7964-1-000-0000",
+ "SUPERFICIE":1869,
+ "SUPERFIC_1":20024,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00197622813158,
+ "OBJECTID":83637,
+ "Join_Count":1,
+ "TARGET_FID":83637,
+ "feature_id":"a90e7db8-80e3-414e-98ec-1a6c15863322",
+ "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,
+ "heightmax":98.26,
+ "elevmin":39.19,
+ "elevmax":42.71,
+ "bldgarea":2902.31,
+ "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_2":83637,
+ "Shape_Le_1":0.00197622813158,
+ "Shape_Ar_1":2.14896394185e-07,
+ "OBJECTID_3":83637,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83636,
+ "g_objectid":"938104",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338918",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994000054780000000",
+ "g_sup_tota":"296.6",
+ "g_geometry":"0.000930379",
+ "g_geomet_1":"3.39739e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00197622813158,
+ "Shape_Area":2.14896394185e-07,
+ "Shape_Le_3":0.00197622881335,
+ "Shape_Ar_2":2.14896394185e-07,
+ "building_height":49.13
+ }
+ },
+ {
+ "type":"Feature",
+ "id":321,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58133573148066,
+ 45.4989070897407
+ ],
+ [
+ -73.58147093106047,
+ 45.498970923619524
+ ],
+ [
+ -73.58152103948623,
+ 45.49891860106288
+ ],
+ [
+ -73.58138745329018,
+ 45.49885552890983
+ ],
+ [
+ -73.58133573148066,
+ 45.4989070897407
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":321,
+ "ID_UEV":"01003563",
+ "CIVIQUE_DE":" 7",
+ "CIVIQUE_FI":" 7",
+ "NOM_RUE":"rue Redpath-Court (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-48-3790-4-000-0000",
+ "SUPERFICIE":103,
+ "SUPERFIC_1":175,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00044271782511,
+ "OBJECTID":83639,
+ "Join_Count":1,
+ "TARGET_FID":83639,
+ "feature_id":"faf2eaf3-431a-4086-9911-2b5786355ba2",
+ "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.51,
+ "heightmax":73.53,
+ "elevmin":61.36,
+ "elevmax":62.78,
+ "bldgarea":678.63,
+ "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_2":83639,
+ "Shape_Le_1":0.00044271782511,
+ "Shape_Ar_1":1.02113507003e-08,
+ "OBJECTID_3":83639,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83638,
+ "g_objectid":"945601",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948279210000000",
+ "g_sup_tota":"1837.1",
+ "g_geometry":"0.007557",
+ "g_geomet_1":"2.09091e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00044271782511,
+ "Shape_Area":1.02113507003e-08,
+ "Shape_Le_3":0.000442717355937,
+ "Shape_Ar_2":1.02113507003e-08,
+ "building_height":35.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":322,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58128398538946,
+ 45.498958639779694
+ ],
+ [
+ -73.5814207165147,
+ 45.49902319671345
+ ],
+ [
+ -73.58147093106047,
+ 45.498970923619524
+ ],
+ [
+ -73.58133573148066,
+ 45.4989070897407
+ ],
+ [
+ -73.58133447422844,
+ 45.49890834249631
+ ],
+ [
+ -73.58128398538946,
+ 45.498958639779694
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":322,
+ "ID_UEV":"01003565",
+ "CIVIQUE_DE":" 9",
+ "CIVIQUE_FI":" 9",
+ "NOM_RUE":"rue Redpath-Court (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-48-4196-3-000-0000",
+ "SUPERFICIE":103,
+ "SUPERFIC_1":171,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000446243008602,
+ "OBJECTID":83640,
+ "Join_Count":1,
+ "TARGET_FID":83640,
+ "feature_id":"faf2eaf3-431a-4086-9911-2b5786355ba2",
+ "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.51,
+ "heightmax":73.53,
+ "elevmin":61.36,
+ "elevmax":62.78,
+ "bldgarea":678.63,
+ "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_2":83640,
+ "Shape_Le_1":0.000446243008602,
+ "Shape_Ar_1":1.03308720471e-08,
+ "OBJECTID_3":83640,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83639,
+ "g_objectid":"945601",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948279210000000",
+ "g_sup_tota":"1837.1",
+ "g_geometry":"0.007557",
+ "g_geomet_1":"2.09091e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000446243008602,
+ "Shape_Area":1.03308720471e-08,
+ "Shape_Le_3":0.000446242507076,
+ "Shape_Ar_2":1.03308720471e-08,
+ "building_height":35.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":323,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55506117545472,
+ 45.52469654426041
+ ],
+ [
+ -73.55514375839958,
+ 45.524734800520925
+ ],
+ [
+ -73.55526039237505,
+ 45.52461059964975
+ ],
+ [
+ -73.55517623112002,
+ 45.524573125799414
+ ],
+ [
+ -73.55506117545472,
+ 45.52469654426041
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":323,
+ "ID_UEV":"01034250",
+ "CIVIQUE_DE":" 1674",
+ "CIVIQUE_FI":" 1678",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1917,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-47-9048-3-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":327,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000522251273778,
+ "OBJECTID":83641,
+ "Join_Count":1,
+ "TARGET_FID":83641,
+ "feature_id":"7a1cccbe-d7d5-44f1-a640-325177f0d7af",
+ "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.51,
+ "heightmax":37.41,
+ "elevmin":24.39,
+ "elevmax":25.96,
+ "bldgarea":876.48,
+ "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_2":83641,
+ "Shape_Le_1":0.000522251273778,
+ "Shape_Ar_1":1.4708774488e-08,
+ "OBJECTID_3":83641,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83640,
+ "g_objectid":"942403",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729308",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004247904830000000",
+ "g_sup_tota":"151.2",
+ "g_geometry":"0.00058247",
+ "g_geomet_1":"1.73495e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000522251273778,
+ "Shape_Area":1.4708774488e-08,
+ "Shape_Le_3":0.000522251083192,
+ "Shape_Ar_2":1.4708774488e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":324,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55679973404234,
+ 45.533691019275416
+ ],
+ [
+ -73.55694798728163,
+ 45.53375515802442
+ ],
+ [
+ -73.55699362337886,
+ 45.53370557570205
+ ],
+ [
+ -73.5568472928901,
+ 45.533641534979154
+ ],
+ [
+ -73.55679973404234,
+ 45.533691019275416
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55673296837364,
+ 45.533631850180036
+ ],
+ [
+ -73.55673806842896,
+ 45.53363454994482
+ ],
+ [
+ -73.55678766783845,
+ 45.5336617499401
+ ],
+ [
+ -73.5567910681751,
+ 45.533658849626505
+ ],
+ [
+ -73.5568048682719,
+ 45.53364625012464
+ ],
+ [
+ -73.55674946823521,
+ 45.53361645018932
+ ],
+ [
+ -73.55673296837364,
+ 45.533631850180036
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":324,
+ "ID_UEV":"01025845",
+ "CIVIQUE_DE":" 2484",
+ "CIVIQUE_FI":" 2486",
+ "NOM_RUE":"rue de Rouen (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-37-5853-9-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":161,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000628254260945,
+ "OBJECTID":83646,
+ "Join_Count":2,
+ "TARGET_FID":83646,
+ "feature_id":"555316d1-9145-4b05-ae9c-049b8f990894",
+ "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.95,
+ "heightmax":22.32,
+ "elevmin":19.16,
+ "elevmax":19.55,
+ "bldgarea":11.72,
+ "comment":" ",
+ "OBJECTID_2":83646,
+ "Shape_Le_1":0.000628254260945,
+ "Shape_Ar_1":1.16347286458e-08,
+ "OBJECTID_3":83646,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83645,
+ "g_objectid":"941304",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425301",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004337625980000000",
+ "g_sup_tota":"153.1",
+ "g_geometry":"0.000689243",
+ "g_geomet_1":"1.75372e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000628254260945,
+ "Shape_Area":1.16347286458e-08,
+ "Shape_Le_3":0.000628254636839,
+ "Shape_Ar_2":1.16347286458e-08,
+ "building_height":10.185
+ }
+ },
+ {
+ "type":"Feature",
+ "id":325,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55497875708582,
+ 45.524658361744294
+ ],
+ [
+ -73.55506117545472,
+ 45.52469654426041
+ ],
+ [
+ -73.55517623112002,
+ 45.524573125799414
+ ],
+ [
+ -73.55509117953615,
+ 45.524535256247376
+ ],
+ [
+ -73.55497875708582,
+ 45.524658361744294
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":325,
+ "ID_UEV":"01034248",
+ "CIVIQUE_DE":" 1668",
+ "CIVIQUE_FI":" 1672",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1916,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-47-9644-9-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":331,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000519379676115,
+ "OBJECTID":83653,
+ "Join_Count":1,
+ "TARGET_FID":83653,
+ "feature_id":"7a1cccbe-d7d5-44f1-a640-325177f0d7af",
+ "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.51,
+ "heightmax":37.41,
+ "elevmin":24.39,
+ "elevmax":25.96,
+ "bldgarea":876.48,
+ "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_2":83653,
+ "Shape_Le_1":0.000519379676115,
+ "Shape_Ar_1":1.46463827841e-08,
+ "OBJECTID_3":83653,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83652,
+ "g_objectid":"942403",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729308",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004247904830000000",
+ "g_sup_tota":"151.2",
+ "g_geometry":"0.00058247",
+ "g_geomet_1":"1.73495e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000519379676115,
+ "Shape_Area":1.46463827841e-08,
+ "Shape_Le_3":0.000519379706528,
+ "Shape_Ar_2":1.46463827841e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":326,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5705112098463,
+ 45.507886630613804
+ ],
+ [
+ -73.57071947124844,
+ 45.507979644795064
+ ],
+ [
+ -73.57076161527817,
+ 45.50792244701361
+ ],
+ [
+ -73.57083023624826,
+ 45.507813239639596
+ ],
+ [
+ -73.57062627090752,
+ 45.507738845021976
+ ],
+ [
+ -73.57062597143327,
+ 45.50773934504503
+ ],
+ [
+ -73.5705832707232,
+ 45.50772204478683
+ ],
+ [
+ -73.57054047108771,
+ 45.50777464523399
+ ],
+ [
+ -73.57050317080653,
+ 45.50775954471751
+ ],
+ [
+ -73.57054757123527,
+ 45.50770524455169
+ ],
+ [
+ -73.57050587147063,
+ 45.5076883444918
+ ],
+ [
+ -73.57046377150769,
+ 45.50773994489284
+ ],
+ [
+ -73.5704324715032,
+ 45.50772734449165
+ ],
+ [
+ -73.57047697085737,
+ 45.5076731450499
+ ],
+ [
+ -73.57043607148935,
+ 45.507656544464254
+ ],
+ [
+ -73.57039157123587,
+ 45.50771074480532
+ ],
+ [
+ -73.57033777109311,
+ 45.50768904506367
+ ],
+ [
+ -73.57028545303308,
+ 45.507746980289205
+ ],
+ [
+ -73.57027010610236,
+ 45.5077722350509
+ ],
+ [
+ -73.5705112098463,
+ 45.507886630613804
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.57040208251195,
+ 45.5075634448474
+ ],
+ [
+ -73.57039467119895,
+ 45.507575444501455
+ ],
+ [
+ -73.57049250304843,
+ 45.50760530109407
+ ],
+ [
+ -73.57040208251195,
+ 45.5075634448474
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":326,
+ "ID_UEV":"01000307",
+ "CIVIQUE_DE":" 2100",
+ "CIVIQUE_FI":" 2114",
+ "NOM_RUE":"rue De Bleury (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":24,
+ "NOMBRE_LOG":160,
+ "ANNEE_CONS":2019,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-28-8676-8-000-0000",
+ "SUPERFICIE":908,
+ "SUPERFIC_1":1266,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00184831866394,
+ "OBJECTID":83662,
+ "Join_Count":2,
+ "TARGET_FID":83662,
+ "feature_id":"fd36926f-7d18-474a-af59-0a398df6cae8",
+ "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.19,
+ "heightmax":16.42,
+ "elevmin":35.86,
+ "elevmax":38.49,
+ "bldgarea":714.58,
+ "comment":" ",
+ "OBJECTID_2":83662,
+ "Shape_Le_1":0.00184831866394,
+ "Shape_Ar_1":8.13998466117e-08,
+ "OBJECTID_3":83662,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83661,
+ "g_objectid":"944415",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"5759518",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9510",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994028867680000000",
+ "g_sup_tota":"880.3",
+ "g_geometry":"0.00141087",
+ "g_geomet_1":"1.01626e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00184831866394,
+ "Shape_Area":8.13998466117e-08,
+ "Shape_Le_3":0.00184831954288,
+ "Shape_Ar_2":8.13998466117e-08,
+ "building_height":7.615000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":327,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56262697937345,
+ 45.51929738341781
+ ],
+ [
+ -73.56278537696542,
+ 45.51937033102625
+ ],
+ [
+ -73.56288297409182,
+ 45.51927900667111
+ ],
+ [
+ -73.5628753694246,
+ 45.51927534643039
+ ],
+ [
+ -73.56284416924485,
+ 45.51926044646273
+ ],
+ [
+ -73.56281886951706,
+ 45.51928694678546
+ ],
+ [
+ -73.56269436917165,
+ 45.51922804658737
+ ],
+ [
+ -73.56272046929607,
+ 45.519200746767346
+ ],
+ [
+ -73.56272046929607,
+ 45.51920054711785
+ ],
+ [
+ -73.56271936402928,
+ 45.51920050574903
+ ],
+ [
+ -73.56262697937345,
+ 45.51929738341781
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":327,
+ "ID_UEV":"01039961",
+ "CIVIQUE_DE":" 1872",
+ "CIVIQUE_FI":" 1872",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-81-9550-9-000-0000",
+ "SUPERFICIE":312,
+ "SUPERFIC_1":425,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000698373425168,
+ "OBJECTID":83665,
+ "Join_Count":1,
+ "TARGET_FID":83665,
+ "feature_id":"327f3813-622f-4233-9ff8-a62689c9e21f",
+ "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.16,
+ "heightmax":13.52,
+ "elevmin":24.17,
+ "elevmax":26.61,
+ "bldgarea":833.43,
+ "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_2":83665,
+ "Shape_Le_1":0.000698373425168,
+ "Shape_Ar_1":1.74952486827e-08,
+ "OBJECTID_3":83665,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83664,
+ "g_objectid":"943310",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161706",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994281955090000000",
+ "g_sup_tota":"311.9",
+ "g_geometry":"0.000792656",
+ "g_geomet_1":"3.6476e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000698373425168,
+ "Shape_Area":1.74952486827e-08,
+ "Shape_Le_3":0.000698373447845,
+ "Shape_Ar_2":1.74952486827e-08,
+ "building_height":5.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":328,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56107556790498,
+ 45.51765030117076
+ ],
+ [
+ -73.56115006504531,
+ 45.5176846462797
+ ],
+ [
+ -73.56128039479623,
+ 45.51753695062007
+ ],
+ [
+ -73.56124856868834,
+ 45.51752294727649
+ ],
+ [
+ -73.56120526813046,
+ 45.51757154663986
+ ],
+ [
+ -73.5611757685687,
+ 45.51755854693968
+ ],
+ [
+ -73.56121976789981,
+ 45.51750904645562
+ ],
+ [
+ -73.56120568901318,
+ 45.51750286091859
+ ],
+ [
+ -73.56107556790498,
+ 45.51765030117076
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":328,
+ "ID_UEV":"01003714",
+ "CIVIQUE_DE":" 1658",
+ "CIVIQUE_FI":" 1660",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-2065-6-000-0000",
+ "SUPERFICIE":146,
+ "SUPERFIC_1":251,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000689362981804,
+ "OBJECTID":83669,
+ "Join_Count":1,
+ "TARGET_FID":83669,
+ "feature_id":"b1ff6390-35ed-470e-b971-30b44ef50fd5",
+ "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":40.83,
+ "elevmin":25.14,
+ "elevmax":28.12,
+ "bldgarea":1941.5,
+ "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_2":83669,
+ "Shape_Le_1":0.000689362981804,
+ "Shape_Ar_1":1.34372014493e-08,
+ "OBJECTID_3":83669,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83668,
+ "g_objectid":"943355",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161816",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109206560000000",
+ "g_sup_tota":"145.5",
+ "g_geometry":"0.000587895",
+ "g_geomet_1":"1.66423e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000689362981804,
+ "Shape_Area":1.34372014493e-08,
+ "Shape_Le_3":0.000689361915678,
+ "Shape_Ar_2":1.34372014493e-08,
+ "building_height":20.16
+ }
+ },
+ {
+ "type":"Feature",
+ "id":329,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55925120590028,
+ 45.52878943173718
+ ],
+ [
+ -73.5593291861149,
+ 45.52882719876651
+ ],
+ [
+ -73.55944960173957,
+ 45.52870138990751
+ ],
+ [
+ -73.55943726933636,
+ 45.52869514861251
+ ],
+ [
+ -73.55947906892574,
+ 45.528654249244504
+ ],
+ [
+ -73.55941846900899,
+ 45.52862354908782
+ ],
+ [
+ -73.55941496884758,
+ 45.52862694852515
+ ],
+ [
+ -73.55933536895395,
+ 45.5287048487001
+ ],
+ [
+ -73.55933347048511,
+ 45.528703890922124
+ ],
+ [
+ -73.55933019605355,
+ 45.52870729575539
+ ],
+ [
+ -73.55925120590028,
+ 45.52878943173718
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":329,
+ "ID_UEV":"01035224",
+ "CIVIQUE_DE":" 2114",
+ "CIVIQUE_FI":" 2118",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1905,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-12-6202-1-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":356,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000638090443078,
+ "OBJECTID":83676,
+ "Join_Count":1,
+ "TARGET_FID":83676,
+ "feature_id":"2b11867f-eeef-499d-b5ab-ed48a9024a42",
+ "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.46,
+ "heightmax":40.27,
+ "elevmin":24.62,
+ "elevmax":26.52,
+ "bldgarea":1384.11,
+ "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_2":83676,
+ "Shape_Le_1":0.000638090443078,
+ "Shape_Ar_1":1.79841942481e-08,
+ "OBJECTID_3":83676,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83675,
+ "g_objectid":"943013",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885689",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004312620210000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000701435",
+ "g_geomet_1":"2.16932e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000638090443078,
+ "Shape_Area":1.79841942481e-08,
+ "Shape_Le_3":0.00063808861725,
+ "Shape_Ar_2":1.79841942481e-08,
+ "building_height":18.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":330,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56285447097889,
+ 45.519402150838886
+ ],
+ [
+ -73.56295235498904,
+ 45.519447228457125
+ ],
+ [
+ -73.5630544658128,
+ 45.51934236300994
+ ],
+ [
+ -73.56302956898126,
+ 45.51933254690981
+ ],
+ [
+ -73.56301876902282,
+ 45.51934404654081
+ ],
+ [
+ -73.56294726932286,
+ 45.51930994694679
+ ],
+ [
+ -73.56294656425437,
+ 45.51930960790238
+ ],
+ [
+ -73.56285447097889,
+ 45.519402150838886
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56309515833674,
+ 45.51930057241378
+ ],
+ [
+ -73.563092268815,
+ 45.51929944646258
+ ],
+ [
+ -73.56307523655477,
+ 45.51932103288965
+ ],
+ [
+ -73.56309515833674,
+ 45.51930057241378
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":330,
+ "ID_UEV":"01039963",
+ "CIVIQUE_DE":" 1882",
+ "CIVIQUE_FI":" 1888",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-81-7960-2-000-0000",
+ "SUPERFICIE":185,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000566381054545,
+ "OBJECTID":83677,
+ "Join_Count":1,
+ "TARGET_FID":83677,
+ "feature_id":"327f3813-622f-4233-9ff8-a62689c9e21f",
+ "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.16,
+ "heightmax":13.52,
+ "elevmin":24.17,
+ "elevmax":26.61,
+ "bldgarea":833.43,
+ "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_2":83677,
+ "Shape_Le_1":0.000566381054545,
+ "Shape_Ar_1":1.34962267028e-08,
+ "OBJECTID_3":83677,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83676,
+ "g_objectid":"943307",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161702",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994281686880000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000853557",
+ "g_geomet_1":"4.39835e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000566381054545,
+ "Shape_Area":1.34962267028e-08,
+ "Shape_Le_3":0.000566380286629,
+ "Shape_Ar_2":1.34962267028e-08,
+ "building_height":5.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":331,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56364338145873,
+ 45.51971786863503
+ ],
+ [
+ -73.56365166871139,
+ 45.51972204688525
+ ],
+ [
+ -73.5636238688683,
+ 45.51974934670528
+ ],
+ [
+ -73.56362396869305,
+ 45.51974944653003
+ ],
+ [
+ -73.56370526920466,
+ 45.519787547207834
+ ],
+ [
+ -73.56372610110053,
+ 45.51979729406017
+ ],
+ [
+ -73.56382625320087,
+ 45.51969397095029
+ ],
+ [
+ -73.56371616898785,
+ 45.5196447465581
+ ],
+ [
+ -73.56371326867425,
+ 45.51964794724526
+ ],
+ [
+ -73.56368566937998,
+ 45.519683447083715
+ ],
+ [
+ -73.5636779442036,
+ 45.51968048561621
+ ],
+ [
+ -73.56364338145873,
+ 45.51971786863503
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":331,
+ "ID_UEV":"01039965",
+ "CIVIQUE_DE":" 2020",
+ "CIVIQUE_FI":" 2026",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-81-2099-4-000-0000",
+ "SUPERFICIE":220,
+ "SUPERFIC_1":398,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000534125412307,
+ "OBJECTID":83678,
+ "Join_Count":1,
+ "TARGET_FID":83678,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":83678,
+ "Shape_Le_1":0.000534125412307,
+ "Shape_Ar_1":1.5885448303e-08,
+ "OBJECTID_3":83678,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83677,
+ "g_objectid":"943240",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161575",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994282110580000000",
+ "g_sup_tota":"211.5",
+ "g_geometry":"0.00067061",
+ "g_geomet_1":"2.42853e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000534125412307,
+ "Shape_Area":1.5885448303e-08,
+ "Shape_Le_3":0.000534125800784,
+ "Shape_Ar_2":1.5885448303e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":332,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56411240668406,
+ 45.51998179807182
+ ],
+ [
+ -73.56420057082153,
+ 45.520022335013046
+ ],
+ [
+ -73.56426507019867,
+ 45.519952400133455
+ ],
+ [
+ -73.5642269704202,
+ 45.519933046723025
+ ],
+ [
+ -73.5642565698067,
+ 45.51990424683382
+ ],
+ [
+ -73.56428316995418,
+ 45.5199176467323
+ ],
+ [
+ -73.56433096982025,
+ 45.5198707470876
+ ],
+ [
+ -73.56426397032781,
+ 45.519837046792574
+ ],
+ [
+ -73.56426047016642,
+ 45.519835446898654
+ ],
+ [
+ -73.56422736971918,
+ 45.519871846958466
+ ],
+ [
+ -73.56421777934888,
+ 45.519867544601794
+ ],
+ [
+ -73.56411240668406,
+ 45.51998179807182
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":332,
+ "ID_UEV":"01039970",
+ "CIVIQUE_DE":" 2062",
+ "CIVIQUE_FI":" 2064",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-8224-1-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000666939113684,
+ "OBJECTID":83679,
+ "Join_Count":1,
+ "TARGET_FID":83679,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":83679,
+ "Shape_Le_1":0.000666939113684,
+ "Shape_Ar_1":1.61089811022e-08,
+ "OBJECTID_3":83679,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83678,
+ "g_objectid":"943239",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161571",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272921820000000",
+ "g_sup_tota":"334.8",
+ "g_geometry":"0.000813902",
+ "g_geomet_1":"3.91889e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000666939113684,
+ "Shape_Area":1.61089811022e-08,
+ "Shape_Le_3":0.00066693908877,
+ "Shape_Ar_2":1.61089811022e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":333,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56445982288436,
+ 45.52014080900143
+ ],
+ [
+ -73.56446617029937,
+ 45.52014354653774
+ ],
+ [
+ -73.56447747028088,
+ 45.520131146685365
+ ],
+ [
+ -73.56457977355954,
+ 45.52017699861989
+ ],
+ [
+ -73.56466455085018,
+ 45.520086698592564
+ ],
+ [
+ -73.56465776996195,
+ 45.520083846842354
+ ],
+ [
+ -73.56466186997116,
+ 45.52007894643653
+ ],
+ [
+ -73.56466007042775,
+ 45.52007824676397
+ ],
+ [
+ -73.56455767631755,
+ 45.52003916312717
+ ],
+ [
+ -73.56445982288436,
+ 45.52014080900143
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":333,
+ "ID_UEV":"01039973",
+ "CIVIQUE_DE":" 2096",
+ "CIVIQUE_FI":" 2100",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-5037-0-000-0000",
+ "SUPERFICIE":334,
+ "SUPERFIC_1":290,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000526036660597,
+ "OBJECTID":83680,
+ "Join_Count":1,
+ "TARGET_FID":83680,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":83680,
+ "Shape_Le_1":0.000526036660597,
+ "Shape_Ar_1":1.4192245614e-08,
+ "OBJECTID_3":83680,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83679,
+ "g_objectid":"943371",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272344810000000",
+ "g_sup_tota":"1001.4",
+ "g_geometry":"0.00138964",
+ "g_geomet_1":"1.14197e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000526036660597,
+ "Shape_Area":1.4192245614e-08,
+ "Shape_Le_3":0.00052603641239,
+ "Shape_Ar_2":1.4192245614e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":334,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56039398341744,
+ 45.523745707248885
+ ],
+ [
+ -73.56059291884996,
+ 45.52383799297929
+ ],
+ [
+ -73.56073996519908,
+ 45.523609452764326
+ ],
+ [
+ -73.5606255543477,
+ 45.523556490789716
+ ],
+ [
+ -73.56049067492656,
+ 45.52350769267617
+ ],
+ [
+ -73.56041746741404,
+ 45.523585439067055
+ ],
+ [
+ -73.56042106919882,
+ 45.52358694812945
+ ],
+ [
+ -73.56045256885281,
+ 45.52354984749776
+ ],
+ [
+ -73.5605318692722,
+ 45.52358304776973
+ ],
+ [
+ -73.56039398341744,
+ 45.523745707248885
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":334,
+ "ID_UEV":"01035468",
+ "CIVIQUE_DE":" 1450",
+ "CIVIQUE_FI":" 1450",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1997,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-06-7139-8-000-0000",
+ "SUPERFICIE":669,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0012191388605,
+ "OBJECTID":83689,
+ "Join_Count":1,
+ "TARGET_FID":83689,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":83689,
+ "Shape_Le_1":0.0012191388605,
+ "Shape_Ar_1":5.87955701845e-08,
+ "OBJECTID_3":83689,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83688,
+ "g_objectid":"941935",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566875",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206873370000000",
+ "g_sup_tota":"405.6",
+ "g_geometry":"0.000995076",
+ "g_geomet_1":"4.68355e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0012191388605,
+ "Shape_Area":5.87955701845e-08,
+ "Shape_Le_3":0.00121913968811,
+ "Shape_Ar_2":5.87955701845e-08,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":335,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55702516440167,
+ 45.525464900734875
+ ],
+ [
+ -73.55699036783305,
+ 45.52544784779024
+ ],
+ [
+ -73.55695096853421,
+ 45.52548754746264
+ ],
+ [
+ -73.55691786808698,
+ 45.52547144779937
+ ],
+ [
+ -73.55683006817495,
+ 45.52556014793278
+ ],
+ [
+ -73.55683496768145,
+ 45.52556244749925
+ ],
+ [
+ -73.5569008780949,
+ 45.52559426551324
+ ],
+ [
+ -73.55702516440167,
+ 45.525464900734875
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55702718248033,
+ 45.52540200484894
+ ],
+ [
+ -73.55702346828028,
+ 45.52540594747679
+ ],
+ [
+ -73.55706378938422,
+ 45.52542469924077
+ ],
+ [
+ -73.55706751797342,
+ 45.5254208168675
+ ],
+ [
+ -73.55702718248033,
+ 45.52540200484894
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":335,
+ "ID_UEV":"01034269",
+ "CIVIQUE_DE":" 1838",
+ "CIVIQUE_FI":" 1842",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-38-5042-9-000-0000",
+ "SUPERFICIE":173,
+ "SUPERFIC_1":272,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000614066410254,
+ "OBJECTID":83699,
+ "Join_Count":2,
+ "TARGET_FID":83699,
+ "feature_id":"13363199-665b-4f02-a188-32bfed70ce03",
+ "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.66,
+ "heightmax":36.35,
+ "elevmin":23.46,
+ "elevmax":24.51,
+ "bldgarea":310.56,
+ "comment":" ",
+ "OBJECTID_2":83699,
+ "Shape_Le_1":0.000614066410254,
+ "Shape_Ar_1":1.14516090571e-08,
+ "OBJECTID_3":83699,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83698,
+ "g_objectid":"942190",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567601",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004238504290000000",
+ "g_sup_tota":"172.9",
+ "g_geometry":"0.000665536",
+ "g_geomet_1":"2.0069e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000614066410254,
+ "Shape_Area":1.14516090571e-08,
+ "Shape_Le_3":0.000614066073913,
+ "Shape_Ar_2":1.14516090571e-08,
+ "building_height":16.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":336,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56847604045875,
+ 45.51067817121093
+ ],
+ [
+ -73.56851308892975,
+ 45.510696087504726
+ ],
+ [
+ -73.56851520233657,
+ 45.510693781643006
+ ],
+ [
+ -73.5685539775059,
+ 45.51071134540256
+ ],
+ [
+ -73.56865801287884,
+ 45.51059841393595
+ ],
+ [
+ -73.56857927003912,
+ 45.510562944674454
+ ],
+ [
+ -73.56857697047265,
+ 45.51056544478974
+ ],
+ [
+ -73.56847604045875,
+ 45.51067817121093
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":336,
+ "ID_UEV":"01001193",
+ "CIVIQUE_DE":" 2061",
+ "CIVIQUE_FI":" 2065",
+ "NOM_RUE":"rue Saint-Urbain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-41-4191-3-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":373,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000481465018859,
+ "OBJECTID":83705,
+ "Join_Count":1,
+ "TARGET_FID":83705,
+ "feature_id":"fd41ce0c-c716-49e1-a68d-659c83f46ff3",
+ "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":20.56,
+ "elevmin":33.3,
+ "elevmax":39.29,
+ "bldgarea":1803.22,
+ "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_2":83705,
+ "Shape_Le_1":0.000481465018859,
+ "Shape_Ar_1":1.251769747e-08,
+ "OBJECTID_3":83705,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83704,
+ "g_objectid":"943036",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160599",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994141349590000000",
+ "g_sup_tota":"151.9",
+ "g_geometry":"0.000588756",
+ "g_geomet_1":"1.75008e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000481465018859,
+ "Shape_Area":1.251769747e-08,
+ "Shape_Le_3":0.000481463721592,
+ "Shape_Ar_2":1.251769747e-08,
+ "building_height":10.024999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":337,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5572331605038,
+ 45.51912979115723
+ ],
+ [
+ -73.5572375375042,
+ 45.51913175077997
+ ],
+ [
+ -73.55728889239032,
+ 45.51907670327753
+ ],
+ [
+ -73.55738805073979,
+ 45.51897041600219
+ ],
+ [
+ -73.55733386748584,
+ 45.51894144704045
+ ],
+ [
+ -73.5573020674583,
+ 45.51892454698056
+ ],
+ [
+ -73.55729766707552,
+ 45.51892224651476
+ ],
+ [
+ -73.55729446908633,
+ 45.518920689788295
+ ],
+ [
+ -73.55716137392011,
+ 45.519063351942435
+ ],
+ [
+ -73.55717196703449,
+ 45.519070546518805
+ ],
+ [
+ -73.55714712326298,
+ 45.51908866605939
+ ],
+ [
+ -73.5572331605038,
+ 45.51912979115723
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":337,
+ "ID_UEV":"01040335",
+ "CIVIQUE_DE":" 1473",
+ "CIVIQUE_FI":" 1481",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-2523-6-000-0000",
+ "SUPERFICIE":213,
+ "SUPERFIC_1":368,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000665436836415,
+ "OBJECTID":83707,
+ "Join_Count":1,
+ "TARGET_FID":83707,
+ "feature_id":"436fd987-b39d-4f24-a78c-6652f18bc34a",
+ "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.47,
+ "heightmax":16.7,
+ "elevmin":21.78,
+ "elevmax":26.69,
+ "bldgarea":4869.88,
+ "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_2":83707,
+ "Shape_Le_1":0.000665436836415,
+ "Shape_Ar_1":2.25589082836e-08,
+ "OBJECTID_3":83707,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83706,
+ "g_objectid":"945104",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1566477",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004231122750000000",
+ "g_sup_tota":"275.5",
+ "g_geometry":"0.000733708",
+ "g_geomet_1":"3.14191e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000665436836415,
+ "Shape_Area":2.25589082836e-08,
+ "Shape_Le_3":0.000665436276632,
+ "Shape_Ar_2":2.25589082836e-08,
+ "building_height":7.114999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":338,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5611690209554,
+ 45.5173242456677
+ ],
+ [
+ -73.56124203781164,
+ 45.51735690544712
+ ],
+ [
+ -73.56131846489708,
+ 45.51727605909315
+ ],
+ [
+ -73.56124554157033,
+ 45.51724330218694
+ ],
+ [
+ -73.5611690209554,
+ 45.5173242456677
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":338,
+ "ID_UEV":"01003608",
+ "CIVIQUE_DE":" 1641",
+ "CIVIQUE_FI":" 1643",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-1737-1-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":204,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000382573002713,
+ "OBJECTID":83708,
+ "Join_Count":1,
+ "TARGET_FID":83708,
+ "feature_id":"94444282-f0f9-4262-b3e1-3b78e81d7b46",
+ "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":42.07,
+ "elevmin":25.45,
+ "elevmax":28.3,
+ "bldgarea":1813.53,
+ "comment":" ",
+ "OBJECTID_2":83708,
+ "Shape_Le_1":0.000382573002713,
+ "Shape_Ar_1":8.4043185561e-09,
+ "OBJECTID_3":83708,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83707,
+ "g_objectid":"943354",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161815",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109173710000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.000601641",
+ "g_geomet_1":"1.6685e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000382573002713,
+ "Shape_Area":8.4043185561e-09,
+ "Shape_Le_3":0.000382571763244,
+ "Shape_Ar_2":8.4043185561e-09,
+ "building_height":20.78
+ }
+ },
+ {
+ "type":"Feature",
+ "id":339,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56075091804227,
+ 45.51491283321098
+ ],
+ [
+ -73.56082396817344,
+ 45.51494724576907
+ ],
+ [
+ -73.5610588683939,
+ 45.51505794601769
+ ],
+ [
+ -73.56105896821866,
+ 45.51505794601769
+ ],
+ [
+ -73.56122386790902,
+ 45.51488044592613
+ ],
+ [
+ -73.56126616842079,
+ 45.51483474597704
+ ],
+ [
+ -73.56136766770554,
+ 45.51472404572842
+ ],
+ [
+ -73.5616087678522,
+ 45.514461046190625
+ ],
+ [
+ -73.56138886832346,
+ 45.51430294627425
+ ],
+ [
+ -73.56112639309042,
+ 45.5144833098072
+ ],
+ [
+ -73.56111522440992,
+ 45.514497944474854
+ ],
+ [
+ -73.56111979836184,
+ 45.514513303096756
+ ],
+ [
+ -73.56108882301261,
+ 45.51455999409875
+ ],
+ [
+ -73.56100654493794,
+ 45.51465031840776
+ ],
+ [
+ -73.56096522648586,
+ 45.51468282620176
+ ],
+ [
+ -73.56095638615014,
+ 45.51469241477342
+ ],
+ [
+ -73.5608608799475,
+ 45.51479601757245
+ ],
+ [
+ -73.56081199909633,
+ 45.51484809641281
+ ],
+ [
+ -73.56075091804227,
+ 45.51491283321098
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":339,
+ "ID_UEV":"01002861",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc pour la r\u00c3\u00a9cr\u00c3\u00a9ation en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-06-1541-3-000-0000",
+ "SUPERFICIE":3619,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00232096063398,
+ "OBJECTID":83709,
+ "Join_Count":1,
+ "TARGET_FID":83709,
+ "feature_id":"d90e6b06-d95b-4a21-acce-916615fd0593",
+ "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":109.81,
+ "elevmin":24.09,
+ "elevmax":27.4,
+ "bldgarea":6713.97,
+ "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_2":83709,
+ "Shape_Le_1":0.00232096063398,
+ "Shape_Ar_1":2.66194715202e-07,
+ "OBJECTID_3":83709,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83708,
+ "g_objectid":"938557",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"6821",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004115932540000000",
+ "g_sup_tota":"23194.5",
+ "g_geometry":"0.0109035",
+ "g_geomet_1":"2.67402e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00232096063398,
+ "Shape_Area":2.66194715202e-07,
+ "Shape_Le_3":0.00232096003586,
+ "Shape_Ar_2":2.66194715202e-07,
+ "building_height":54.655
+ }
+ },
+ {
+ "type":"Feature",
+ "id":340,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56107359389308,
+ 45.52927873127872
+ ],
+ [
+ -73.56107926951452,
+ 45.52928204887775
+ ],
+ [
+ -73.5610603693624,
+ 45.52929804871627
+ ],
+ [
+ -73.56110016885955,
+ 45.529321148702344
+ ],
+ [
+ -73.5611037688457,
+ 45.529318148564
+ ],
+ [
+ -73.5611348692007,
+ 45.52928954922361
+ ],
+ [
+ -73.56114334171369,
+ 45.52929409889384
+ ],
+ [
+ -73.56115858702103,
+ 45.52927735621531
+ ],
+ [
+ -73.56124476185812,
+ 45.529188664175805
+ ],
+ [
+ -73.56118588684105,
+ 45.52916126363171
+ ],
+ [
+ -73.56107359389308,
+ 45.52927873127872
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":340,
+ "ID_UEV":"01035169",
+ "CIVIQUE_DE":" 2285",
+ "CIVIQUE_FI":" 2289",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-2359-4-000-0000",
+ "SUPERFICIE":138,
+ "SUPERFIC_1":243,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000507660457841,
+ "OBJECTID":83711,
+ "Join_Count":1,
+ "TARGET_FID":83711,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83711,
+ "Shape_Le_1":0.000507660457841,
+ "Shape_Ar_1":1.09347601254e-08,
+ "OBJECTID_3":83711,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83710,
+ "g_objectid":"942829",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884578",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302235940000000",
+ "g_sup_tota":"137.7",
+ "g_geometry":"0.000649035",
+ "g_geomet_1":"1.58581e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000507660457841,
+ "Shape_Area":1.09347601254e-08,
+ "Shape_Le_3":0.000507660230296,
+ "Shape_Ar_2":1.09347601254e-08,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":341,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56102811607654,
+ 45.52924762552779
+ ],
+ [
+ -73.56102966920571,
+ 45.529248448407465
+ ],
+ [
+ -73.56101966874456,
+ 45.52925774919606
+ ],
+ [
+ -73.56102006894287,
+ 45.52925814849505
+ ],
+ [
+ -73.56105086892431,
+ 45.529276448799365
+ ],
+ [
+ -73.56105856891966,
+ 45.52926994849962
+ ],
+ [
+ -73.56107359389308,
+ 45.52927873127872
+ ],
+ [
+ -73.56118588684105,
+ 45.52916126363171
+ ],
+ [
+ -73.5611338331817,
+ 45.529137037694426
+ ],
+ [
+ -73.56102811607654,
+ 45.52924762552779
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":341,
+ "ID_UEV":"01035170",
+ "CIVIQUE_DE":" 2279",
+ "CIVIQUE_FI":" 2283",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-2756-1-000-0000",
+ "SUPERFICIE":122,
+ "SUPERFIC_1":189,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000452196649552,
+ "OBJECTID":83712,
+ "Join_Count":1,
+ "TARGET_FID":83712,
+ "feature_id":"3d09cd0a-fa0f-4ede-abaa-36ba2422f4bc",
+ "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.87,
+ "heightmax":43.94,
+ "elevmin":28.27,
+ "elevmax":39.14,
+ "bldgarea":2787.56,
+ "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_2":83712,
+ "Shape_Le_1":0.000452196649552,
+ "Shape_Ar_1":9.02330290404e-09,
+ "OBJECTID_3":83712,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83711,
+ "g_objectid":"942829",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884578",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302235940000000",
+ "g_sup_tota":"137.7",
+ "g_geometry":"0.000649035",
+ "g_geomet_1":"1.58581e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000452196649552,
+ "Shape_Area":9.02330290404e-09,
+ "Shape_Le_3":0.000452197975393,
+ "Shape_Ar_2":9.02330290404e-09,
+ "building_height":21.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":342,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55862972580304,
+ 45.5233106808935
+ ],
+ [
+ -73.55856066776245,
+ 45.523277247697116
+ ],
+ [
+ -73.55851204501671,
+ 45.52332700628661
+ ],
+ [
+ -73.55858333787259,
+ 45.52335997453349
+ ],
+ [
+ -73.55862972580304,
+ 45.5233106808935
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55841883028663,
+ 45.52306764810377
+ ],
+ [
+ -73.55827821319083,
+ 45.52321886910582
+ ],
+ [
+ -73.55846736130152,
+ 45.52330634076531
+ ],
+ [
+ -73.55851666843135,
+ 45.52325334821374
+ ],
+ [
+ -73.55845166813182,
+ 45.52322404740216
+ ],
+ [
+ -73.55854300507747,
+ 45.52312513366828
+ ],
+ [
+ -73.55841883028663,
+ 45.52306764810377
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":342,
+ "ID_UEV":"01035491",
+ "CIVIQUE_DE":" 1491",
+ "CIVIQUE_FI":" 1503",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-2989-1-000-0000",
+ "SUPERFICIE":575,
+ "SUPERFIC_1":698,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00112257583032,
+ "OBJECTID":83717,
+ "Join_Count":2,
+ "TARGET_FID":83717,
+ "feature_id":"046d47c9-72ce-43c4-98f2-f044e88b5818",
+ "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":39.35,
+ "elevmin":24.55,
+ "elevmax":25.55,
+ "bldgarea":640.17,
+ "comment":" ",
+ "OBJECTID_2":83717,
+ "Shape_Le_1":0.00112257583032,
+ "Shape_Ar_1":3.68395604727e-08,
+ "OBJECTID_3":83717,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83716,
+ "g_objectid":"941989",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567044",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226120100000000",
+ "g_sup_tota":"243",
+ "g_geometry":"0.000702739",
+ "g_geomet_1":"2.83525e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00112257583032,
+ "Shape_Area":3.68395604727e-08,
+ "Shape_Le_3":0.00112257522543,
+ "Shape_Ar_2":3.68395604727e-08,
+ "building_height":18.415
+ }
+ },
+ {
+ "type":"Feature",
+ "id":343,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55827611327385,
+ 45.523564381441346
+ ],
+ [
+ -73.558287468114,
+ 45.52355214796355
+ ],
+ [
+ -73.55837158080566,
+ 45.523590752261704
+ ],
+ [
+ -73.5584493748606,
+ 45.52350763422024
+ ],
+ [
+ -73.55832986845051,
+ 45.52345284752119
+ ],
+ [
+ -73.55814346776867,
+ 45.5233672482502
+ ],
+ [
+ -73.55805619396003,
+ 45.52346120671961
+ ],
+ [
+ -73.55827611327385,
+ 45.523564381441346
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":343,
+ "ID_UEV":"01035492",
+ "CIVIQUE_DE":" 1551",
+ "CIVIQUE_FI":" 1559",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1963,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-4819-6-000-0000",
+ "SUPERFICIE":397,
+ "SUPERFIC_1":816,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000930823140514,
+ "OBJECTID":83718,
+ "Join_Count":1,
+ "TARGET_FID":83718,
+ "feature_id":"0f8a05a8-b724-4498-95ec-5873fedeff47",
+ "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.57,
+ "heightmax":35.24,
+ "elevmin":24.3,
+ "elevmax":24.89,
+ "bldgarea":704.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_2":83718,
+ "Shape_Le_1":0.000930823140514,
+ "Shape_Ar_1":3.99262475974e-08,
+ "OBJECTID_3":83718,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83717,
+ "g_objectid":"942080",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567319",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226481960000000",
+ "g_sup_tota":"397.2",
+ "g_geometry":"0.00097389",
+ "g_geomet_1":"4.66457e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000930823140514,
+ "Shape_Area":3.99262475974e-08,
+ "Shape_Le_3":0.000930822278346,
+ "Shape_Ar_2":3.99262475974e-08,
+ "building_height":16.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":344,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5625286223199,
+ 45.519155114267406
+ ],
+ [
+ -73.562475868988,
+ 45.519128346846024
+ ],
+ [
+ -73.5624715693293,
+ 45.51912624692905
+ ],
+ [
+ -73.5624055662857,
+ 45.51919541019032
+ ],
+ [
+ -73.5624641778014,
+ 45.51922240783814
+ ],
+ [
+ -73.5625286223199,
+ 45.519155114267406
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":344,
+ "ID_UEV":"01039959",
+ "CIVIQUE_DE":" 1840",
+ "CIVIQUE_FI":" 1840",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-1736-1-000-0000",
+ "SUPERFICIE":155,
+ "SUPERFIC_1":96,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000317249316462,
+ "OBJECTID":83722,
+ "Join_Count":1,
+ "TARGET_FID":83722,
+ "feature_id":"327f3813-622f-4233-9ff8-a62689c9e21f",
+ "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.16,
+ "heightmax":13.52,
+ "elevmin":24.17,
+ "elevmax":26.61,
+ "bldgarea":833.43,
+ "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_2":83722,
+ "Shape_Le_1":0.000317249316462,
+ "Shape_Ar_1":5.76983854268e-09,
+ "OBJECTID_3":83722,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83721,
+ "g_objectid":"943313",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161709",
+ "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":"66023994291173610000000",
+ "g_sup_tota":"154.5",
+ "g_geometry":"0.000607604",
+ "g_geomet_1":"1.82628e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000317249316462,
+ "Shape_Area":5.76983854268e-09,
+ "Shape_Le_3":0.000317249140376,
+ "Shape_Ar_2":5.76983854268e-09,
+ "building_height":5.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":345,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56276534726481,
+ 45.51528529912755
+ ],
+ [
+ -73.56284930976967,
+ 45.5153237568362
+ ],
+ [
+ -73.56309654688997,
+ 45.51505356182272
+ ],
+ [
+ -73.56305406921177,
+ 45.51504044610999
+ ],
+ [
+ -73.56303706932714,
+ 45.51503504568111
+ ],
+ [
+ -73.5630066569535,
+ 45.51502417827351
+ ],
+ [
+ -73.56276534726481,
+ 45.51528529912755
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":345,
+ "ID_UEV":"01002880",
+ "CIVIQUE_DE":" 1627",
+ "CIVIQUE_FI":" 1633",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-86-8295-3-000-0000",
+ "SUPERFICIE":290,
+ "SUPERFIC_1":738,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000908729028421,
+ "OBJECTID":83724,
+ "Join_Count":1,
+ "TARGET_FID":83724,
+ "feature_id":"c8f2a3f1-9997-466b-9b02-4a713e354e52",
+ "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":20.81,
+ "elevmin":26.07,
+ "elevmax":28.29,
+ "bldgarea":3514.43,
+ "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_2":83724,
+ "Shape_Le_1":0.000908729028421,
+ "Shape_Ar_1":3.13338677733e-08,
+ "OBJECTID_3":83724,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83723,
+ "g_objectid":"943250",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161603",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994186889190000000",
+ "g_sup_tota":"290.3",
+ "g_geometry":"0.000969443",
+ "g_geomet_1":"3.385e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000908729028421,
+ "Shape_Area":3.13338677733e-08,
+ "Shape_Le_3":0.000908728009762,
+ "Shape_Ar_2":3.13338677733e-08,
+ "building_height":10.149999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":346,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5622932922235,
+ 45.529458593889295
+ ],
+ [
+ -73.56231447035836,
+ 45.52946834883553
+ ],
+ [
+ -73.56237810818499,
+ 45.52949771979423
+ ],
+ [
+ -73.56246354737665,
+ 45.529408341572
+ ],
+ [
+ -73.56243526999356,
+ 45.52940094914478
+ ],
+ [
+ -73.5624497697629,
+ 45.52937354860068
+ ],
+ [
+ -73.56247126985507,
+ 45.52937914867906
+ ],
+ [
+ -73.5624882697397,
+ 45.529347049177275
+ ],
+ [
+ -73.56248966998413,
+ 45.529343648840616
+ ],
+ [
+ -73.56247336977204,
+ 45.529341248550075
+ ],
+ [
+ -73.56248206981351,
+ 45.529311649163574
+ ],
+ [
+ -73.56248187016402,
+ 45.529311448614756
+ ],
+ [
+ -73.56246317775529,
+ 45.5292812188035
+ ],
+ [
+ -73.56246295112614,
+ 45.52928111178418
+ ],
+ [
+ -73.5622932922235,
+ 45.529458593889295
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":346,
+ "ID_UEV":"01035058",
+ "CIVIQUE_DE":" 2360",
+ "CIVIQUE_FI":" 2364",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-2477-7-000-0000",
+ "SUPERFICIE":205,
+ "SUPERFIC_1":341,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000668428651113,
+ "OBJECTID":83725,
+ "Join_Count":1,
+ "TARGET_FID":83725,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":83725,
+ "Shape_Le_1":0.000668428651113,
+ "Shape_Ar_1":1.70259773232e-08,
+ "OBJECTID_3":83725,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83724,
+ "g_objectid":"942900",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884752",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392188110000000",
+ "g_sup_tota":"181.6",
+ "g_geometry":"0.000697215",
+ "g_geomet_1":"2.08073e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000668428651113,
+ "Shape_Area":1.70259773232e-08,
+ "Shape_Le_3":0.000668429039623,
+ "Shape_Ar_2":1.70259773232e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":347,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56237810818499,
+ 45.52949771979423
+ ],
+ [
+ -73.56241846975841,
+ 45.529516349250414
+ ],
+ [
+ -73.56245315211312,
+ 45.52953231761266
+ ],
+ [
+ -73.56254985981003,
+ 45.529431151077056
+ ],
+ [
+ -73.56253367021455,
+ 45.52942674889564
+ ],
+ [
+ -73.5624876698919,
+ 45.52941464851751
+ ],
+ [
+ -73.56246354737665,
+ 45.529408341572
+ ],
+ [
+ -73.56237810818499,
+ 45.52949771979423
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":347,
+ "ID_UEV":"01035060",
+ "CIVIQUE_DE":" 2366",
+ "CIVIQUE_FI":" 2368",
+ "NOM_RUE":"rue de Bordeaux (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\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-1881-1-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000435511863295,
+ "OBJECTID":83727,
+ "Join_Count":1,
+ "TARGET_FID":83727,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":83727,
+ "Shape_Le_1":0.000435511863295,
+ "Shape_Ar_1":1.03075649075e-08,
+ "OBJECTID_3":83727,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83726,
+ "g_objectid":"942900",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884752",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392188110000000",
+ "g_sup_tota":"181.6",
+ "g_geometry":"0.000697215",
+ "g_geomet_1":"2.08073e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000435511863295,
+ "Shape_Area":1.03075649075e-08,
+ "Shape_Le_3":0.000435511053392,
+ "Shape_Ar_2":1.03075649075e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":348,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56130811459965,
+ 45.53316912920224
+ ],
+ [
+ -73.56131926979032,
+ 45.53317494871521
+ ],
+ [
+ -73.56130796980881,
+ 45.533185648848914
+ ],
+ [
+ -73.56131267056514,
+ 45.53318794841538
+ ],
+ [
+ -73.56145060228532,
+ 45.53325276525321
+ ],
+ [
+ -73.56145893000746,
+ 45.53325658557326
+ ],
+ [
+ -73.56151597040756,
+ 45.533196749180924
+ ],
+ [
+ -73.56151027050443,
+ 45.53319414924089
+ ],
+ [
+ -73.5614915700018,
+ 45.533185648848914
+ ],
+ [
+ -73.56151967021844,
+ 45.533155649264096
+ ],
+ [
+ -73.56154496994625,
+ 45.533167348544595
+ ],
+ [
+ -73.56160437016739,
+ 45.53310424851255
+ ],
+ [
+ -73.56155607027827,
+ 45.53308184909835
+ ],
+ [
+ -73.56145457009418,
+ 45.533034649080086
+ ],
+ [
+ -73.56145447026944,
+ 45.533034649080086
+ ],
+ [
+ -73.56142637005279,
+ 45.53306074920451
+ ],
+ [
+ -73.56141480836855,
+ 45.53305458974781
+ ],
+ [
+ -73.56141088012986,
+ 45.53305880666889
+ ],
+ [
+ -73.56138876310278,
+ 45.53308255326751
+ ],
+ [
+ -73.56137369046529,
+ 45.53309873566841
+ ],
+ [
+ -73.56133514732103,
+ 45.533140105381854
+ ],
+ [
+ -73.56132567656057,
+ 45.53315027401623
+ ],
+ [
+ -73.56131936062184,
+ 45.53315705580378
+ ],
+ [
+ -73.56131770676859,
+ 45.53315883196482
+ ],
+ [
+ -73.56130811459965,
+ 45.53316912920224
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":348,
+ "ID_UEV":"01022894",
+ "CIVIQUE_DE":" 2520",
+ "CIVIQUE_FI":" 2520",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":16,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-96-9991-1-000-0000",
+ "SUPERFICIE":396,
+ "SUPERFIC_1":856,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000833310400267,
+ "OBJECTID":83728,
+ "Join_Count":1,
+ "TARGET_FID":83728,
+ "feature_id":"4479423c-d6f1-4875-b881-e8075641bbcd",
+ "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.5,
+ "heightmax":48.03,
+ "elevmin":34.89,
+ "elevmax":37.59,
+ "bldgarea":469.44,
+ "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_2":83728,
+ "Shape_Le_1":0.000833310400267,
+ "Shape_Ar_1":3.41341548515e-08,
+ "OBJECTID_3":83728,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83727,
+ "g_objectid":"940416",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423862",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306128380000000",
+ "g_sup_tota":"391.6",
+ "g_geometry":"0.000886314",
+ "g_geomet_1":"4.49516e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000833310400267,
+ "Shape_Area":3.41341548515e-08,
+ "Shape_Le_3":0.000833310409365,
+ "Shape_Ar_2":3.41341548515e-08,
+ "building_height":23.265
+ }
+ },
+ {
+ "type":"Feature",
+ "id":349,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5617032722101,
+ 45.528448651634264
+ ],
+ [
+ -73.56180285683821,
+ 45.52849527698574
+ ],
+ [
+ -73.56189395996013,
+ 45.528398743757315
+ ],
+ [
+ -73.5618809701525,
+ 45.5283922488535
+ ],
+ [
+ -73.56190927001865,
+ 45.52836414863685
+ ],
+ [
+ -73.56184807025409,
+ 45.52833374885372
+ ],
+ [
+ -73.56183576932713,
+ 45.5283459490566
+ ],
+ [
+ -73.56182746948397,
+ 45.528354948572314
+ ],
+ [
+ -73.56180249081415,
+ 45.52834352268572
+ ],
+ [
+ -73.5617032722101,
+ 45.528448651634264
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":349,
+ "ID_UEV":"01034689",
+ "CIVIQUE_DE":" 2262",
+ "CIVIQUE_FI":" 2272",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-7066-5-000-0000",
+ "SUPERFICIE":214,
+ "SUPERFIC_1":376,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000567023936412,
+ "OBJECTID":83729,
+ "Join_Count":1,
+ "TARGET_FID":83729,
+ "feature_id":"a33a95b4-7393-4b8b-be81-13122e912340",
+ "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.93,
+ "heightmax":40.79,
+ "elevmin":29.13,
+ "elevmax":38.3,
+ "bldgarea":2129.79,
+ "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_2":83729,
+ "Shape_Le_1":0.000567023936412,
+ "Shape_Ar_1":1.68226039564e-08,
+ "OBJECTID_3":83729,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83728,
+ "g_objectid":"942848",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884687",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391637280000000",
+ "g_sup_tota":"213.2",
+ "g_geometry":"0.000695427",
+ "g_geomet_1":"2.47932e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000567023936412,
+ "Shape_Area":1.68226039564e-08,
+ "Shape_Le_3":0.000567023415199,
+ "Shape_Ar_2":1.68226039564e-08,
+ "building_height":19.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":350,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55666361985202,
+ 45.51744056128317
+ ],
+ [
+ -73.55687945534443,
+ 45.51753902265806
+ ],
+ [
+ -73.55691619085137,
+ 45.517499425508376
+ ],
+ [
+ -73.55670266751594,
+ 45.51739994700025
+ ],
+ [
+ -73.55669926717928,
+ 45.51740364681115
+ ],
+ [
+ -73.55666361985202,
+ 45.51744056128317
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":350,
+ "ID_UEV":"01040718",
+ "CIVIQUE_DE":" 1100",
+ "CIVIQUE_FI":" 1100",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1932,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-39-6449-5-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":395,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000583147769212,
+ "OBJECTID":83730,
+ "Join_Count":1,
+ "TARGET_FID":83730,
+ "feature_id":"75018007-9abf-41d6-9eda-e1559281dd6c",
+ "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.16,
+ "heightmax":37.93,
+ "elevmin":22.34,
+ "elevmax":23.1,
+ "bldgarea":127.56,
+ "comment":" ",
+ "OBJECTID_2":83730,
+ "Shape_Le_1":0.000583147769212,
+ "Shape_Ar_1":1.23567762421e-08,
+ "OBJECTID_3":83730,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83729,
+ "g_objectid":"945390",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1566496",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004139695770000000",
+ "g_sup_tota":"317.6",
+ "g_geometry":"0.000840381",
+ "g_geomet_1":"3.62751e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000583147769212,
+ "Shape_Area":1.23567762421e-08,
+ "Shape_Le_3":0.000583147577425,
+ "Shape_Ar_2":1.23567762421e-08,
+ "building_height":18.385
+ }
+ },
+ {
+ "type":"Feature",
+ "id":351,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56342060679741,
+ 45.51520661924038
+ ],
+ [
+ -73.56332706921071,
+ 45.51516404623404
+ ],
+ [
+ -73.5630820381274,
+ 45.51543035347832
+ ],
+ [
+ -73.56317677810767,
+ 45.51547375026366
+ ],
+ [
+ -73.56342060679741,
+ 45.51520661924038
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":351,
+ "ID_UEV":"01002885",
+ "CIVIQUE_DE":" 1647",
+ "CIVIQUE_FI":" 1653",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-87-5711-0-000-0000",
+ "SUPERFICIE":348,
+ "SUPERFIC_1":698,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000930539609331,
+ "OBJECTID":83732,
+ "Join_Count":1,
+ "TARGET_FID":83732,
+ "feature_id":"7edb0ab7-7bb8-48a1-80eb-8e6a24c99f4b",
+ "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":16.25,
+ "elevmin":25.69,
+ "elevmax":27.11,
+ "bldgarea":1172.9,
+ "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_2":83732,
+ "Shape_Le_1":0.000930539609331,
+ "Shape_Ar_1":3.56154083467e-08,
+ "OBJECTID_3":83732,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83731,
+ "g_objectid":"943246",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161599",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994187571100000000",
+ "g_sup_tota":"348.4",
+ "g_geometry":"0.00100279",
+ "g_geomet_1":"4.0818e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000930539609331,
+ "Shape_Area":3.56154083467e-08,
+ "Shape_Le_3":0.000930538853123,
+ "Shape_Ar_2":3.56154083467e-08,
+ "building_height":7.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":352,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56255855805286,
+ 45.50546385882032
+ ],
+ [
+ -73.56262206547778,
+ 45.50549364166852
+ ],
+ [
+ -73.56271228276748,
+ 45.50540633548429
+ ],
+ [
+ -73.56268966841532,
+ 45.505395444694315
+ ],
+ [
+ -73.56267876773279,
+ 45.505407144874134
+ ],
+ [
+ -73.5626358907556,
+ 45.505387289642
+ ],
+ [
+ -73.56255855805286,
+ 45.50546385882032
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":352,
+ "ID_UEV":"01000526",
+ "CIVIQUE_DE":" 1082",
+ "CIVIQUE_FI":" 1084",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-96-0311-7-000-0000",
+ "SUPERFICIE":115,
+ "SUPERFIC_1":191,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000392858168994,
+ "OBJECTID":83736,
+ "Join_Count":1,
+ "TARGET_FID":83736,
+ "feature_id":"24842e85-d082-4395-8441-bcc94726f0fa",
+ "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.63,
+ "heightmax":25.42,
+ "elevmin":17.8,
+ "elevmax":22.98,
+ "bldgarea":2050.27,
+ "comment":" ",
+ "OBJECTID_2":83736,
+ "Shape_Le_1":0.000392858168994,
+ "Shape_Ar_1":7.61841389086e-09,
+ "OBJECTID_3":83736,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83735,
+ "g_objectid":"939457",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179487",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994096080820000000",
+ "g_sup_tota":"116.6",
+ "g_geometry":"0.000542588",
+ "g_geomet_1":"1.34772e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000392858168994,
+ "Shape_Area":7.61841389086e-09,
+ "Shape_Le_3":0.000392858020077,
+ "Shape_Ar_2":7.61841389086e-09,
+ "building_height":12.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":353,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55656836186226,
+ 45.51817696124806
+ ],
+ [
+ -73.55683729242895,
+ 45.51830127543381
+ ],
+ [
+ -73.55696656727511,
+ 45.518144846457794
+ ],
+ [
+ -73.55696496738119,
+ 45.518144246609985
+ ],
+ [
+ -73.55669241344597,
+ 45.51804132819503
+ ],
+ [
+ -73.55656836186226,
+ 45.51817696124806
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":353,
+ "ID_UEV":"01040737",
+ "CIVIQUE_DE":" 1155",
+ "CIVIQUE_FI":" 1157",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-30-6228-0-000-0000",
+ "SUPERFICIE":611,
+ "SUPERFIC_1":967,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000976060372145,
+ "OBJECTID":83737,
+ "Join_Count":1,
+ "TARGET_FID":83737,
+ "feature_id":"9ce922a4-3af9-42ab-bea0-6fde2277d5ef",
+ "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.48,
+ "heightmax":16.75,
+ "elevmin":22.28,
+ "elevmax":23.77,
+ "bldgarea":1174.88,
+ "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_2":83737,
+ "Shape_Le_1":0.000976060372145,
+ "Shape_Ar_1":5.40820497715e-08,
+ "OBJECTID_3":83737,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83736,
+ "g_objectid":"938276",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1566522",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004230754720000000",
+ "g_sup_tota":"652.4",
+ "g_geometry":"0.00113734",
+ "g_geomet_1":"7.51431e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000976060372145,
+ "Shape_Area":5.40820497715e-08,
+ "Shape_Le_3":0.000976060441407,
+ "Shape_Ar_2":5.40820497715e-08,
+ "building_height":7.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":354,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55691733388969,
+ 45.517807727494926
+ ],
+ [
+ -73.55716978797717,
+ 45.51792400443955
+ ],
+ [
+ -73.55727461475351,
+ 45.51781195790583
+ ],
+ [
+ -73.55702006254769,
+ 45.517697089299524
+ ],
+ [
+ -73.55691733388969,
+ 45.517807727494926
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":354,
+ "ID_UEV":"01040740",
+ "CIVIQUE_DE":" 1111",
+ "CIVIQUE_FI":" 1115",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-39-3988-5-000-0000",
+ "SUPERFICIE":358,
+ "SUPERFIC_1":1061,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000861630532745,
+ "OBJECTID":83738,
+ "Join_Count":1,
+ "TARGET_FID":83738,
+ "feature_id":"50d4dd71-90f9-4ec4-b4eb-26d82cb3672b",
+ "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,
+ "heightmax":37.73,
+ "elevmin":22.71,
+ "elevmax":26.77,
+ "bldgarea":2585.63,
+ "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_2":83738,
+ "Shape_Le_1":0.000861630532745,
+ "Shape_Ar_1":4.02197172088e-08,
+ "OBJECTID_3":83738,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83737,
+ "g_objectid":"938272",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1566493",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004139398850000000",
+ "g_sup_tota":"357.9",
+ "g_geometry":"0.000875799",
+ "g_geomet_1":"4.12402e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000861630532745,
+ "Shape_Area":4.02197172088e-08,
+ "Shape_Le_3":0.000861629067889,
+ "Shape_Ar_2":4.02197172088e-08,
+ "building_height":18.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":355,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55482715117394,
+ 45.52494820874313
+ ],
+ [
+ -73.55483086717263,
+ 45.52494914763535
+ ],
+ [
+ -73.55482246750472,
+ 45.52496494782438
+ ],
+ [
+ -73.55490196937224,
+ 45.525004367807625
+ ],
+ [
+ -73.5549975538159,
+ 45.5249024089693
+ ],
+ [
+ -73.55490873587131,
+ 45.52486113368467
+ ],
+ [
+ -73.55482715117394,
+ 45.52494820874313
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":355,
+ "ID_UEV":"01034600",
+ "CIVIQUE_DE":" 1675",
+ "CIVIQUE_FI":" 1679",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-57-1182-7-000-0000",
+ "SUPERFICIE":160,
+ "SUPERFIC_1":290,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000467486628688,
+ "OBJECTID":83748,
+ "Join_Count":1,
+ "TARGET_FID":83748,
+ "feature_id":"c4b2e5df-abbf-4c78-b176-bdbca391f41d",
+ "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.55,
+ "heightmax":38.15,
+ "elevmin":24.15,
+ "elevmax":26.2,
+ "bldgarea":1190.97,
+ "comment":" ",
+ "OBJECTID_2":83748,
+ "Shape_Le_1":0.000467486628688,
+ "Shape_Ar_1":1.27732007787e-08,
+ "OBJECTID_3":83748,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83747,
+ "g_objectid":"942394",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729294",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257118270000000",
+ "g_sup_tota":"160.4",
+ "g_geometry":"0.00059844",
+ "g_geomet_1":"1.87222e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000467486628688,
+ "Shape_Area":1.27732007787e-08,
+ "Shape_Le_3":0.000467485893001,
+ "Shape_Ar_2":1.27732007787e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":356,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.556981900716,
+ 45.52224560570044
+ ],
+ [
+ -73.55702780391186,
+ 45.52226684319056
+ ],
+ [
+ -73.5570696673531,
+ 45.522223747678105
+ ],
+ [
+ -73.55707266749145,
+ 45.52222044806552
+ ],
+ [
+ -73.55695606679089,
+ 45.522168747839736
+ ],
+ [
+ -73.5569282669478,
+ 45.522199747470665
+ ],
+ [
+ -73.55699616756092,
+ 45.522229747954796
+ ],
+ [
+ -73.556981900716,
+ 45.52224560570044
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":356,
+ "ID_UEV":"01035527",
+ "CIVIQUE_DE":" 1469",
+ "CIVIQUE_FI":" 1471",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-4083-3-000-0000",
+ "SUPERFICIE":204,
+ "SUPERFIC_1":101,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000379868118317,
+ "OBJECTID":83752,
+ "Join_Count":1,
+ "TARGET_FID":83752,
+ "feature_id":"26f661d5-2243-4ad0-b263-184cae8236fc",
+ "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.45,
+ "heightmax":37.89,
+ "elevmin":26.27,
+ "elevmax":26.97,
+ "bldgarea":354.37,
+ "comment":" ",
+ "OBJECTID_2":83752,
+ "Shape_Le_1":0.000379868118317,
+ "Shape_Ar_1":6.07504065594e-09,
+ "OBJECTID_3":83752,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83751,
+ "g_objectid":"942156",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567498",
+ "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":"66023004234408330000000",
+ "g_sup_tota":"203.9",
+ "g_geometry":"0.000833807",
+ "g_geomet_1":"2.36263e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000379868118317,
+ "Shape_Area":6.07504065594e-09,
+ "Shape_Le_3":0.000379870468288,
+ "Shape_Ar_2":6.07504065594e-09,
+ "building_height":17.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":357,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55634345041175,
+ 45.522816561885115
+ ],
+ [
+ -73.55644582293823,
+ 45.52286390669423
+ ],
+ [
+ -73.55646086679741,
+ 45.52284824769877
+ ],
+ [
+ -73.55653146717532,
+ 45.52277474790659
+ ],
+ [
+ -73.55653166682481,
+ 45.522774648081835
+ ],
+ [
+ -73.55656307834523,
+ 45.5227703960872
+ ],
+ [
+ -73.55644058618594,
+ 45.5227137468922
+ ],
+ [
+ -73.55634345041175,
+ 45.522816561885115
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":357,
+ "ID_UEV":"01035531",
+ "CIVIQUE_DE":" 1559",
+ "CIVIQUE_FI":" 1567",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-35-8247-7-000-0000",
+ "SUPERFICIE":397,
+ "SUPERFIC_1":344,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000544742082725,
+ "OBJECTID":83753,
+ "Join_Count":1,
+ "TARGET_FID":83753,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":83753,
+ "Shape_Le_1":0.000544742082725,
+ "Shape_Ar_1":1.53866736267e-08,
+ "OBJECTID_3":83753,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83752,
+ "g_objectid":"942178",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567534",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235824770000000",
+ "g_sup_tota":"397.2",
+ "g_geometry":"0.00096559",
+ "g_geomet_1":"4.57955e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000544742082725,
+ "Shape_Area":1.53866736267e-08,
+ "Shape_Le_3":0.000544741773415,
+ "Shape_Ar_2":1.53866736267e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":358,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55624331449921,
+ 45.52292255148486
+ ],
+ [
+ -73.55634449632329,
+ 45.52296938008312
+ ],
+ [
+ -73.55637776674239,
+ 45.52293474809045
+ ],
+ [
+ -73.55644582293823,
+ 45.52286390669423
+ ],
+ [
+ -73.55634345041175,
+ 45.522816561885115
+ ],
+ [
+ -73.55624331449921,
+ 45.52292255148486
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":358,
+ "ID_UEV":"01035532",
+ "CIVIQUE_DE":" 1571",
+ "CIVIQUE_FI":" 1579",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-35-9058-7-000-0000",
+ "SUPERFICIE":406,
+ "SUPERFIC_1":342,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000516354660182,
+ "OBJECTID":83754,
+ "Join_Count":1,
+ "TARGET_FID":83754,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":83754,
+ "Shape_Le_1":0.000516354660182,
+ "Shape_Ar_1":1.55041992732e-08,
+ "OBJECTID_3":83754,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83753,
+ "g_objectid":"942178",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567534",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235824770000000",
+ "g_sup_tota":"397.2",
+ "g_geometry":"0.00096559",
+ "g_geomet_1":"4.57955e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000516354660182,
+ "Shape_Area":1.55041992732e-08,
+ "Shape_Le_3":0.000516353904628,
+ "Shape_Ar_2":1.55041992732e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":359,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55614433601414,
+ 45.52302731620797
+ ],
+ [
+ -73.5562443622094,
+ 45.52307360791097
+ ],
+ [
+ -73.55630071103083,
+ 45.52301495502645
+ ],
+ [
+ -73.55620003372643,
+ 45.52296836205056
+ ],
+ [
+ -73.55614433601414,
+ 45.52302731620797
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":359,
+ "ID_UEV":"01035534",
+ "CIVIQUE_DE":" 1591",
+ "CIVIQUE_FI":" 1595",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-35-9973-7-000-0000",
+ "SUPERFICIE":230,
+ "SUPERFIC_1":186,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000383593414621,
+ "OBJECTID":83757,
+ "Join_Count":1,
+ "TARGET_FID":83757,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":83757,
+ "Shape_Le_1":0.000383593414621,
+ "Shape_Ar_1":8.50289082858e-09,
+ "OBJECTID_3":83757,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83756,
+ "g_objectid":"942182",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567539",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004245058160000000",
+ "g_sup_tota":"397.2",
+ "g_geometry":"0.000966957",
+ "g_geomet_1":"4.58914e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000383593414621,
+ "Shape_Area":8.50289082858e-09,
+ "Shape_Le_3":0.000383593443115,
+ "Shape_Ar_2":8.50289082858e-09,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":360,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55614433601414,
+ 45.52302731620797
+ ],
+ [
+ -73.55611076702013,
+ 45.52306284752269
+ ],
+ [
+ -73.55604722901825,
+ 45.52313014469072
+ ],
+ [
+ -73.55635464067598,
+ 45.52327241474044
+ ],
+ [
+ -73.55644442988837,
+ 45.523176534419825
+ ],
+ [
+ -73.55635236718985,
+ 45.523133547725344
+ ],
+ [
+ -73.556347466784,
+ 45.52313864778066
+ ],
+ [
+ -73.5563036671024,
+ 45.52318474792807
+ ],
+ [
+ -73.55625086700576,
+ 45.52315984749926
+ ],
+ [
+ -73.55618946669237,
+ 45.52313074813581
+ ],
+ [
+ -73.5562443622094,
+ 45.52307360791097
+ ],
+ [
+ -73.55614433601414,
+ 45.52302731620797
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":360,
+ "ID_UEV":"01035535",
+ "CIVIQUE_DE":" 1597",
+ "CIVIQUE_FI":" 1601",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1888,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-45-0581-6-000-0000",
+ "SUPERFICIE":397,
+ "SUPERFIC_1":698,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00109957519463,
+ "OBJECTID":83758,
+ "Join_Count":1,
+ "TARGET_FID":83758,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":83758,
+ "Shape_Le_1":0.00109957519463,
+ "Shape_Ar_1":3.49068003498e-08,
+ "OBJECTID_3":83758,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83757,
+ "g_objectid":"942182",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567539",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004245058160000000",
+ "g_sup_tota":"397.2",
+ "g_geometry":"0.000966957",
+ "g_geomet_1":"4.58914e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00109957519463,
+ "Shape_Area":3.49068003498e-08,
+ "Shape_Le_3":0.00109957556526,
+ "Shape_Ar_2":3.49068003498e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":361,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55594143277276,
+ 45.523621322916014
+ ],
+ [
+ -73.55600819844145,
+ 45.52365231894966
+ ],
+ [
+ -73.55606266498185,
+ 45.523593790171574
+ ],
+ [
+ -73.55599219410632,
+ 45.52356107283554
+ ],
+ [
+ -73.55594143277276,
+ 45.523621322916014
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55570442634004,
+ 45.523511291763
+ ],
+ [
+ -73.55586465405239,
+ 45.52358567828672
+ ],
+ [
+ -73.55590496706243,
+ 45.52353274778837
+ ],
+ [
+ -73.5558650668412,
+ 45.523512947414886
+ ],
+ [
+ -73.55587250693249,
+ 45.52350550822292
+ ],
+ [
+ -73.55575639995973,
+ 45.52345160465812
+ ],
+ [
+ -73.55570442634004,
+ 45.523511291763
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":361,
+ "ID_UEV":"01035538",
+ "CIVIQUE_DE":" 1673",
+ "CIVIQUE_FI":" 1677",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-46-3426-9-000-0000",
+ "SUPERFICIE":228,
+ "SUPERFIC_1":309,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000815443981278,
+ "OBJECTID":83759,
+ "Join_Count":1,
+ "TARGET_FID":83759,
+ "feature_id":"7f38248e-a013-46ee-bcf8-272ab1178687",
+ "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.44,
+ "heightmax":40.45,
+ "elevmin":25.3,
+ "elevmax":27.17,
+ "bldgarea":986.02,
+ "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_2":83759,
+ "Shape_Le_1":0.000815443981278,
+ "Shape_Ar_1":1.85179520892e-08,
+ "OBJECTID_3":83759,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83758,
+ "g_objectid":"942237",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567676",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004246342690000000",
+ "g_sup_tota":"228.1",
+ "g_geometry":"0.000852875",
+ "g_geomet_1":"2.6343e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000815443981278,
+ "Shape_Area":1.85179520892e-08,
+ "Shape_Le_3":0.000815444693588,
+ "Shape_Ar_2":1.85179520892e-08,
+ "building_height":19.005000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":362,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56100926628646,
+ 45.51726368711976
+ ],
+ [
+ -73.56108180740134,
+ 45.51730010156873
+ ],
+ [
+ -73.56116830149776,
+ 45.51720860544308
+ ],
+ [
+ -73.56109321799946,
+ 45.51717487996703
+ ],
+ [
+ -73.56100926628646,
+ 45.51726368711976
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":362,
+ "ID_UEV":"01003612",
+ "CIVIQUE_DE":" 1625",
+ "CIVIQUE_FI":" 1631",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-2929-3-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":255,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000411592723654,
+ "OBJECTID":83762,
+ "Join_Count":1,
+ "TARGET_FID":83762,
+ "feature_id":"94444282-f0f9-4262-b3e1-3b78e81d7b46",
+ "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":42.07,
+ "elevmin":25.45,
+ "elevmax":28.3,
+ "bldgarea":1813.53,
+ "comment":" ",
+ "OBJECTID_2":83762,
+ "Shape_Le_1":0.000411592723654,
+ "Shape_Ar_1":9.64307573789e-09,
+ "OBJECTID_3":83762,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83761,
+ "g_objectid":"943401",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161975",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109352580000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.000604073",
+ "g_geomet_1":"1.69349e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000411592723654,
+ "Shape_Area":9.64307573789e-09,
+ "Shape_Le_3":0.00041159289042,
+ "Shape_Ar_2":9.64307573789e-09,
+ "building_height":20.78
+ }
+ },
+ {
+ "type":"Feature",
+ "id":363,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56493813181118,
+ 45.523070036703125
+ ],
+ [
+ -73.5651318583704,
+ 45.52309780776791
+ ],
+ [
+ -73.56515417055037,
+ 45.52302264782723
+ ],
+ [
+ -73.5649968701313,
+ 45.52299974749065
+ ],
+ [
+ -73.56501088156877,
+ 45.52295298544222
+ ],
+ [
+ -73.56499243737294,
+ 45.52294441850041
+ ],
+ [
+ -73.56492526970727,
+ 45.522934648265704
+ ],
+ [
+ -73.5649157701685,
+ 45.52293314819653
+ ],
+ [
+ -73.56491386990102,
+ 45.52293514828876
+ ],
+ [
+ -73.56490380289003,
+ 45.52293049879378
+ ],
+ [
+ -73.56481562256478,
+ 45.52304299858581
+ ],
+ [
+ -73.56483436983214,
+ 45.523054248205284
+ ],
+ [
+ -73.56483596972606,
+ 45.52305484805309
+ ],
+ [
+ -73.56487247050995,
+ 45.5230025479795
+ ],
+ [
+ -73.56486256987354,
+ 45.52299914764284
+ ],
+ [
+ -73.56487276998419,
+ 45.52298384747687
+ ],
+ [
+ -73.56497346977166,
+ 45.52301684809935
+ ],
+ [
+ -73.56493813181118,
+ 45.523070036703125
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":363,
+ "ID_UEV":"01040590",
+ "CIVIQUE_DE":" 1250",
+ "CIVIQUE_FI":" 1250",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Auberge ou g\u00c3\u00aete touristique (H\u00c3\u00b4tel \u00c3\u00a0 caract\u00c3\u00a8re familial, d'au plus 3 \u00c3\u00a9tages en hauteur de b\u00c3\u00a2timent)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-75-2169-7-000-0000",
+ "SUPERFICIE":359,
+ "SUPERFIC_1":240,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00102253189963,
+ "OBJECTID":83765,
+ "Join_Count":1,
+ "TARGET_FID":83765,
+ "feature_id":"67cace94-6eb3-4fe9-ba5b-83ca7ae0be93",
+ "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.67,
+ "heightmax":16.32,
+ "elevmin":26.8,
+ "elevmax":38.76,
+ "bldgarea":3830.67,
+ "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_2":83765,
+ "Shape_Le_1":0.00102253189963,
+ "Shape_Ar_1":2.35656386721e-08,
+ "OBJECTID_3":83765,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83764,
+ "g_objectid":"942929",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885057",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994275197900000000",
+ "g_sup_tota":"214.8",
+ "g_geometry":"0.000854194",
+ "g_geomet_1":"2.47486e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00102253189963,
+ "Shape_Area":2.35656386721e-08,
+ "Shape_Le_3":0.00102253383479,
+ "Shape_Ar_2":2.35656386721e-08,
+ "building_height":7.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":364,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56483962277221,
+ 45.52319749401943
+ ],
+ [
+ -73.56515525603209,
+ 45.52324324972649
+ ],
+ [
+ -73.56517543052354,
+ 45.52317402621063
+ ],
+ [
+ -73.56485660377109,
+ 45.52312832176493
+ ],
+ [
+ -73.56485436985513,
+ 45.52313484814502
+ ],
+ [
+ -73.56485446967987,
+ 45.52313484814502
+ ],
+ [
+ -73.56496776986853,
+ 45.52315974767451
+ ],
+ [
+ -73.56496476973018,
+ 45.523166347799005
+ ],
+ [
+ -73.56495977039893,
+ 45.523181647964975
+ ],
+ [
+ -73.56485076986898,
+ 45.52316384768372
+ ],
+ [
+ -73.56483962277221,
+ 45.52319749401943
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":364,
+ "ID_UEV":"01040592",
+ "CIVIQUE_DE":" 1260",
+ "CIVIQUE_FI":" 1264",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-75-2087-1-000-0000",
+ "SUPERFICIE":217,
+ "SUPERFIC_1":466,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100535728756,
+ "OBJECTID":83766,
+ "Join_Count":1,
+ "TARGET_FID":83766,
+ "feature_id":"67cace94-6eb3-4fe9-ba5b-83ca7ae0be93",
+ "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.67,
+ "heightmax":16.32,
+ "elevmin":26.8,
+ "elevmax":38.76,
+ "bldgarea":3830.67,
+ "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_2":83766,
+ "Shape_Le_1":0.00100535728756,
+ "Shape_Ar_1":1.97733184375e-08,
+ "OBJECTID_3":83766,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83765,
+ "g_objectid":"942929",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885057",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994275197900000000",
+ "g_sup_tota":"214.8",
+ "g_geometry":"0.000854194",
+ "g_geomet_1":"2.47486e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100535728756,
+ "Shape_Area":1.97733184375e-08,
+ "Shape_Le_3":0.00100535926217,
+ "Shape_Ar_2":1.97733184375e-08,
+ "building_height":7.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":365,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55895042944061,
+ 45.527577468475684
+ ],
+ [
+ -73.55904645185412,
+ 45.52762326015563
+ ],
+ [
+ -73.55905636867831,
+ 45.52761164900869
+ ],
+ [
+ -73.55905246921793,
+ 45.52761004911477
+ ],
+ [
+ -73.5590267683925,
+ 45.52760164854754
+ ],
+ [
+ -73.55902286803278,
+ 45.52760004865362
+ ],
+ [
+ -73.55895451775864,
+ 45.527573140038676
+ ],
+ [
+ -73.55895042944061,
+ 45.527577468475684
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55900709302477,
+ 45.5275174711047
+ ],
+ [
+ -73.55911447297639,
+ 45.52757732458416
+ ],
+ [
+ -73.55921769356355,
+ 45.52746802907657
+ ],
+ [
+ -73.55910337893962,
+ 45.52741551496434
+ ],
+ [
+ -73.55900709302477,
+ 45.5275174711047
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":365,
+ "ID_UEV":"01034936",
+ "CIVIQUE_DE":" 2039",
+ "CIVIQUE_FI":" 2049",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-8367-4-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":384,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000775835369141,
+ "OBJECTID":83773,
+ "Join_Count":2,
+ "TARGET_FID":83773,
+ "feature_id":"4f271120-04d5-422e-86e4-132f0b57d285",
+ "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.47,
+ "heightmax":38.14,
+ "elevmin":24.71,
+ "elevmax":26.72,
+ "bldgarea":1453.06,
+ "comment":" ",
+ "OBJECTID_2":83773,
+ "Shape_Le_1":0.000775835369141,
+ "Shape_Ar_1":1.83422429094e-08,
+ "OBJECTID_3":83773,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83772,
+ "g_objectid":"944706",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310916100000000",
+ "g_sup_tota":"261.2",
+ "g_geometry":"0.00075601",
+ "g_geomet_1":"3.00841e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000775835369141,
+ "Shape_Area":1.83422429094e-08,
+ "Shape_Le_3":0.000775834536635,
+ "Shape_Ar_2":1.83422429094e-08,
+ "building_height":17.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":366,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56489568021331,
+ 45.52031858608417
+ ],
+ [
+ -73.56500008790557,
+ 45.520365380508196
+ ],
+ [
+ -73.56508467274129,
+ 45.520274913206975
+ ],
+ [
+ -73.5650398703156,
+ 45.52025504718298
+ ],
+ [
+ -73.56497965620801,
+ 45.520228310338545
+ ],
+ [
+ -73.56489568021331,
+ 45.52031858608417
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":366,
+ "ID_UEV":"01039977",
+ "CIVIQUE_DE":" 2136",
+ "CIVIQUE_FI":" 2140",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-1758-5-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":320,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000476443191928,
+ "OBJECTID":83775,
+ "Join_Count":1,
+ "TARGET_FID":83775,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":83775,
+ "Shape_Le_1":0.000476443191928,
+ "Shape_Ar_1":1.33976413225e-08,
+ "OBJECTID_3":83775,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83774,
+ "g_objectid":"943368",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161896",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272096650000000",
+ "g_sup_tota":"729.3",
+ "g_geometry":"0.00119699",
+ "g_geomet_1":"8.50716e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000476443191928,
+ "Shape_Area":1.33976413225e-08,
+ "Shape_Le_3":0.000476442102242,
+ "Shape_Ar_2":1.33976413225e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":367,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56500008790557,
+ 45.520365380508196
+ ],
+ [
+ -73.56510576993718,
+ 45.520412746901044
+ ],
+ [
+ -73.56510757037991,
+ 45.520410746808814
+ ],
+ [
+ -73.56518827014439,
+ 45.5203208469798
+ ],
+ [
+ -73.56508467274129,
+ 45.520274913206975
+ ],
+ [
+ -73.56500008790557,
+ 45.520365380508196
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":367,
+ "ID_UEV":"01039982",
+ "CIVIQUE_DE":" 2146",
+ "CIVIQUE_FI":" 2150",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-0966-5-000-0000",
+ "SUPERFICIE":394,
+ "SUPERFIC_1":301,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00047648436369,
+ "OBJECTID":83776,
+ "Join_Count":1,
+ "TARGET_FID":83776,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":83776,
+ "Shape_Le_1":0.00047648436369,
+ "Shape_Ar_1":1.34389157942e-08,
+ "OBJECTID_3":83776,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83775,
+ "g_objectid":"943368",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161896",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272096650000000",
+ "g_sup_tota":"729.3",
+ "g_geometry":"0.00119699",
+ "g_geomet_1":"8.50716e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00047648436369,
+ "Shape_Area":1.34389157942e-08,
+ "Shape_Le_3":0.000476484287082,
+ "Shape_Ar_2":1.34389157942e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":368,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5649999584032,
+ 45.52073863692885
+ ],
+ [
+ -73.56500733554195,
+ 45.520742024674995
+ ],
+ [
+ -73.56504396313024,
+ 45.52069183081364
+ ],
+ [
+ -73.5649999584032,
+ 45.52073863692885
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56504749656656,
+ 45.520688072546804
+ ],
+ [
+ -73.56511877053667,
+ 45.5207137472919
+ ],
+ [
+ -73.56511547002476,
+ 45.5207182466001
+ ],
+ [
+ -73.56512047025534,
+ 45.52072244643405
+ ],
+ [
+ -73.56514666390926,
+ 45.52070695201452
+ ],
+ [
+ -73.56517333870046,
+ 45.52067857840397
+ ],
+ [
+ -73.56521787132954,
+ 45.520631212910445
+ ],
+ [
+ -73.56513554738945,
+ 45.52059441804825
+ ],
+ [
+ -73.56504749656656,
+ 45.520688072546804
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":368,
+ "ID_UEV":"01039984",
+ "CIVIQUE_DE":" 2153",
+ "CIVIQUE_FI":" 2155",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-73-1308-7-000-0000",
+ "SUPERFICIE":157,
+ "SUPERFIC_1":146,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000575475203765,
+ "OBJECTID":83777,
+ "Join_Count":1,
+ "TARGET_FID":83777,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":83777,
+ "Shape_Le_1":0.000575475203765,
+ "Shape_Ar_1":1.08952489852e-08,
+ "OBJECTID_3":83777,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83776,
+ "g_objectid":"941495",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565291",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994263931480000000",
+ "g_sup_tota":"241.5",
+ "g_geometry":"0.000900147",
+ "g_geomet_1":"2.78099e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000575475203765,
+ "Shape_Area":1.08952489852e-08,
+ "Shape_Le_3":0.000575473978095,
+ "Shape_Ar_2":1.08952489852e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":369,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56497994399106,
+ 45.52075401623516
+ ],
+ [
+ -73.56498446937961,
+ 45.52075511160941
+ ],
+ [
+ -73.5649999584032,
+ 45.52073863692885
+ ],
+ [
+ -73.56504396313024,
+ 45.52069183081364
+ ],
+ [
+ -73.56504686973909,
+ 45.52068784681697
+ ],
+ [
+ -73.56504749656656,
+ 45.520688072546804
+ ],
+ [
+ -73.56513554738945,
+ 45.52059441804825
+ ],
+ [
+ -73.56505887029248,
+ 45.52056014668372
+ ],
+ [
+ -73.56505556978057,
+ 45.52056384649462
+ ],
+ [
+ -73.56498247018669,
+ 45.520646647075395
+ ],
+ [
+ -73.56498237036195,
+ 45.52064674690014
+ ],
+ [
+ -73.56502817013579,
+ 45.52066604725058
+ ],
+ [
+ -73.56498687056947,
+ 45.5207143471397
+ ],
+ [
+ -73.56493086978566,
+ 45.5206906464065
+ ],
+ [
+ -73.56490578319718,
+ 45.520719950815376
+ ],
+ [
+ -73.56497994399106,
+ 45.52075401623516
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":369,
+ "ID_UEV":"01039985",
+ "CIVIQUE_DE":" 2147",
+ "CIVIQUE_FI":" 2149",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-73-2005-8-000-0000",
+ "SUPERFICIE":174,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000719438871326,
+ "OBJECTID":83778,
+ "Join_Count":1,
+ "TARGET_FID":83778,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":83778,
+ "Shape_Le_1":0.000719438871326,
+ "Shape_Ar_1":1.41074519342e-08,
+ "OBJECTID_3":83778,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83777,
+ "g_objectid":"941498",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565294",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994273200580000000",
+ "g_sup_tota":"174.2",
+ "g_geometry":"0.000651757",
+ "g_geomet_1":"2.01055e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000719438871326,
+ "Shape_Area":1.41074519342e-08,
+ "Shape_Le_3":0.000719439704546,
+ "Shape_Ar_2":1.41074519342e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":370,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57332056511383,
+ 45.49894567515308
+ ],
+ [
+ -73.573232271474,
+ 45.49903714250042
+ ],
+ [
+ -73.5732286822797,
+ 45.49903578452413
+ ],
+ [
+ -73.57320854825774,
+ 45.49905616945695
+ ],
+ [
+ -73.57354741730131,
+ 45.499217855869645
+ ],
+ [
+ -73.5736572515028,
+ 45.499106725745094
+ ],
+ [
+ -73.57332056511383,
+ 45.49894567515308
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":370,
+ "ID_UEV":"01039195",
+ "CIVIQUE_DE":" 1166",
+ "CIVIQUE_FI":" 1172",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-09-6109-4-000-0000",
+ "SUPERFICIE":481,
+ "SUPERFIC_1":1199,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00106455580479,
+ "OBJECTID":83784,
+ "Join_Count":1,
+ "TARGET_FID":83784,
+ "feature_id":"52fbc339-2ccc-4ca3-af93-143a97294049",
+ "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":37.11,
+ "elevmin":36.49,
+ "elevmax":38.81,
+ "bldgarea":2862.43,
+ "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_2":83784,
+ "Shape_Le_1":0.00106455580479,
+ "Shape_Ar_1":5.51351399192e-08,
+ "OBJECTID_3":83784,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83783,
+ "g_objectid":"938118",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340065",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993909610940000000",
+ "g_sup_tota":"481.4",
+ "g_geometry":"0.00106373",
+ "g_geomet_1":"5.54906e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00106455580479,
+ "Shape_Area":5.51351399192e-08,
+ "Shape_Le_3":0.00106455584821,
+ "Shape_Ar_2":5.51351399192e-08,
+ "building_height":17.99
+ }
+ },
+ {
+ "type":"Feature",
+ "id":371,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5616339659566,
+ 45.52914519814267
+ ],
+ [
+ -73.56166647015333,
+ 45.529158848952015
+ ],
+ [
+ -73.56166036915256,
+ 45.52916614874906
+ ],
+ [
+ -73.56167787985211,
+ 45.529173511498655
+ ],
+ [
+ -73.56181188872952,
+ 45.52903332517811
+ ],
+ [
+ -73.56179167017129,
+ 45.52902294880034
+ ],
+ [
+ -73.56180447022197,
+ 45.52901064877272
+ ],
+ [
+ -73.56179956981615,
+ 45.52900804883268
+ ],
+ [
+ -73.56177692128973,
+ 45.52899565347692
+ ],
+ [
+ -73.5616339659566,
+ 45.52914519814267
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":371,
+ "ID_UEV":"01035040",
+ "CIVIQUE_DE":" 2298",
+ "CIVIQUE_FI":" 2300",
+ "NOM_RUE":"rue de Bordeaux (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\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-7741-1-000-0000",
+ "SUPERFICIE":119,
+ "SUPERFIC_1":131,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000536423374165,
+ "OBJECTID":83788,
+ "Join_Count":1,
+ "TARGET_FID":83788,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":83788,
+ "Shape_Le_1":0.000536423374165,
+ "Shape_Ar_1":1.02735087372e-08,
+ "OBJECTID_3":83788,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83787,
+ "g_objectid":"943001",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885634",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392813890000000",
+ "g_sup_tota":"123.2",
+ "g_geometry":"0.000645726",
+ "g_geomet_1":"1.41529e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000536423374165,
+ "Shape_Area":1.02735087372e-08,
+ "Shape_Le_3":0.000536423008893,
+ "Shape_Ar_2":1.02735087372e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":372,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56180285683821,
+ 45.52849527698574
+ ],
+ [
+ -73.56190222203176,
+ 45.528541799814505
+ ],
+ [
+ -73.56200430227857,
+ 45.5284336374527
+ ],
+ [
+ -73.56199306974622,
+ 45.52842834853975
+ ],
+ [
+ -73.56200626999521,
+ 45.52841444861821
+ ],
+ [
+ -73.56200597052097,
+ 45.528414348793454
+ ],
+ [
+ -73.56194567007846,
+ 45.52838314861371
+ ],
+ [
+ -73.56192776997246,
+ 45.52840024922242
+ ],
+ [
+ -73.56190676990336,
+ 45.528389348539896
+ ],
+ [
+ -73.5618959699449,
+ 45.52839974919936
+ ],
+ [
+ -73.56189395996013,
+ 45.528398743757315
+ ],
+ [
+ -73.56180285683821,
+ 45.52849527698574
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":372,
+ "ID_UEV":"01034691",
+ "CIVIQUE_DE":" 2274",
+ "CIVIQUE_FI":" 2284",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-6372-8-000-0000",
+ "SUPERFICIE":213,
+ "SUPERFIC_1":374,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000556626628242,
+ "OBJECTID":83789,
+ "Join_Count":1,
+ "TARGET_FID":83789,
+ "feature_id":"a33a95b4-7393-4b8b-be81-13122e912340",
+ "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.93,
+ "heightmax":40.79,
+ "elevmin":29.13,
+ "elevmax":38.3,
+ "bldgarea":2129.79,
+ "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_2":83789,
+ "Shape_Le_1":0.000556626628242,
+ "Shape_Ar_1":1.67737936295e-08,
+ "OBJECTID_3":83789,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83788,
+ "g_objectid":"942848",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884687",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391637280000000",
+ "g_sup_tota":"213.2",
+ "g_geometry":"0.000695427",
+ "g_geomet_1":"2.47932e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000556626628242,
+ "Shape_Area":1.67737936295e-08,
+ "Shape_Le_3":0.000556629378341,
+ "Shape_Ar_2":1.67737936295e-08,
+ "building_height":19.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":373,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56124203781164,
+ 45.51735690544712
+ ],
+ [
+ -73.56131721573875,
+ 45.51739053199775
+ ],
+ [
+ -73.56139354839539,
+ 45.5173097845692
+ ],
+ [
+ -73.56131846489708,
+ 45.51727605909315
+ ],
+ [
+ -73.56124203781164,
+ 45.51735690544712
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":373,
+ "ID_UEV":"01003606",
+ "CIVIQUE_DE":" 1645",
+ "CIVIQUE_FI":" 1647",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-1240-6-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000387034260065,
+ "OBJECTID":83801,
+ "Join_Count":1,
+ "TARGET_FID":83801,
+ "feature_id":"94444282-f0f9-4262-b3e1-3b78e81d7b46",
+ "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":42.07,
+ "elevmin":25.45,
+ "elevmax":28.3,
+ "bldgarea":1813.53,
+ "comment":" ",
+ "OBJECTID_2":83801,
+ "Shape_Le_1":0.000387034260065,
+ "Shape_Ar_1":8.64247504883e-09,
+ "OBJECTID_3":83801,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83800,
+ "g_objectid":"943354",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161815",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109173710000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.000601641",
+ "g_geomet_1":"1.6685e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000387034260065,
+ "Shape_Area":8.64247504883e-09,
+ "Shape_Le_3":0.000387035009979,
+ "Shape_Ar_2":8.64247504883e-09,
+ "building_height":20.78
+ }
+ },
+ {
+ "type":"Feature",
+ "id":374,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55849141456898,
+ 45.538181758731476
+ ],
+ [
+ -73.55857838080946,
+ 45.538213647791906
+ ],
+ [
+ -73.55865784310681,
+ 45.53810566799248
+ ],
+ [
+ -73.55856939028698,
+ 45.53807452087273
+ ],
+ [
+ -73.55849141456898,
+ 45.538181758731476
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":374,
+ "ID_UEV":"01024658",
+ "CIVIQUE_DE":" 2599",
+ "CIVIQUE_FI":" 2599",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-2752-6-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000453063143244,
+ "OBJECTID":83803,
+ "Join_Count":1,
+ "TARGET_FID":83803,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":83803,
+ "Shape_Le_1":0.000453063143244,
+ "Shape_Ar_1":1.19194508327e-08,
+ "OBJECTID_3":83803,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83802,
+ "g_objectid":"944112",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361365",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422275260000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.00067067",
+ "g_geomet_1":"2.16108e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000453063143244,
+ "Shape_Area":1.19194508327e-08,
+ "Shape_Le_3":0.000453062055447,
+ "Shape_Ar_2":1.19194508327e-08,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":375,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56280484908636,
+ 45.50496879282582
+ ],
+ [
+ -73.56286628807058,
+ 45.504997930860114
+ ],
+ [
+ -73.56291830126044,
+ 45.5049238788842
+ ],
+ [
+ -73.56285860426303,
+ 45.504897883081135
+ ],
+ [
+ -73.56280484908636,
+ 45.50496879282582
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":375,
+ "ID_UEV":"01000501",
+ "CIVIQUE_DE":" 1070",
+ "CIVIQUE_FI":" 1070",
+ "NOM_RUE":"rue Anderson (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-85-8555-4-000-0000",
+ "SUPERFICIE":111,
+ "SUPERFIC_1":159,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000312585515764,
+ "OBJECTID":83804,
+ "Join_Count":1,
+ "TARGET_FID":83804,
+ "feature_id":"8247fa11-995a-4b89-b72b-fc0202c12e4d",
+ "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.53,
+ "heightmax":16.06,
+ "elevmin":17.92,
+ "elevmax":21.24,
+ "bldgarea":957.12,
+ "comment":" ",
+ "OBJECTID_2":83804,
+ "Shape_Le_1":0.000312585515764,
+ "Shape_Ar_1":5.84788243376e-09,
+ "OBJECTID_3":83804,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83803,
+ "g_objectid":"939451",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179480",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994085855540000000",
+ "g_sup_tota":"111.2",
+ "g_geometry":"0.000534464",
+ "g_geomet_1":"1.28088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000312585515764,
+ "Shape_Area":5.84788243376e-09,
+ "Shape_Le_3":0.000312585427959,
+ "Shape_Ar_2":5.84788243376e-09,
+ "building_height":7.765
+ }
+ },
+ {
+ "type":"Feature",
+ "id":376,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56428760541051,
+ 45.51907479581547
+ ],
+ [
+ -73.56429687022623,
+ 45.51908074662945
+ ],
+ [
+ -73.56429787027234,
+ 45.51908144720132
+ ],
+ [
+ -73.56430407019853,
+ 45.51907424722902
+ ],
+ [
+ -73.564409469843,
+ 45.519118646758436
+ ],
+ [
+ -73.56441167048405,
+ 45.519116046818404
+ ],
+ [
+ -73.56448247051145,
+ 45.51902844655586
+ ],
+ [
+ -73.56437274153065,
+ 45.51898461090137
+ ],
+ [
+ -73.56428760541051,
+ 45.51907479581547
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":376,
+ "ID_UEV":"01003761",
+ "CIVIQUE_DE":" 2040",
+ "CIVIQUE_FI":" 2044",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-6624-6-000-0000",
+ "SUPERFICIE":290,
+ "SUPERFIC_1":202,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000494326878052,
+ "OBJECTID":83805,
+ "Join_Count":1,
+ "TARGET_FID":83805,
+ "feature_id":"24187733-ead3-40b7-b229-446928d87821",
+ "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.88,
+ "heightmax":15.58,
+ "elevmin":25.19,
+ "elevmax":27.39,
+ "bldgarea":1579,
+ "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_2":83805,
+ "Shape_Le_1":0.000494326878052,
+ "Shape_Ar_1":1.35778083313e-08,
+ "OBJECTID_3":83805,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83804,
+ "g_objectid":"943216",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161537",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271731920000000",
+ "g_sup_tota":"139.5",
+ "g_geometry":"0.000613511",
+ "g_geomet_1":"1.58918e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000494326878052,
+ "Shape_Area":1.35778083313e-08,
+ "Shape_Le_3":0.000494326872455,
+ "Shape_Ar_2":1.35778083313e-08,
+ "building_height":6.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":377,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56459701805979,
+ 45.51909193509503
+ ],
+ [
+ -73.56454827030828,
+ 45.51907064724287
+ ],
+ [
+ -73.56454567036823,
+ 45.51906944664794
+ ],
+ [
+ -73.56447857015173,
+ 45.5191399472011
+ ],
+ [
+ -73.56449256989802,
+ 45.51914654642627
+ ],
+ [
+ -73.56452930810293,
+ 45.51916392222753
+ ],
+ [
+ -73.56459701805979,
+ 45.51909193509503
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":377,
+ "ID_UEV":"01003763",
+ "CIVIQUE_DE":" 2052",
+ "CIVIQUE_FI":" 2052",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-5632-0-000-0000",
+ "SUPERFICIE":114,
+ "SUPERFIC_1":99,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000308328872502,
+ "OBJECTID":83806,
+ "Join_Count":1,
+ "TARGET_FID":83806,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":83806,
+ "Shape_Le_1":0.000308328872502,
+ "Shape_Ar_1":5.2004372312e-09,
+ "OBJECTID_3":83806,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83805,
+ "g_objectid":"943231",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161557",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271523520000000",
+ "g_sup_tota":"112.9",
+ "g_geometry":"0.000551246",
+ "g_geomet_1":"1.33342e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000308328872502,
+ "Shape_Area":5.2004372312e-09,
+ "Shape_Le_3":0.000308329365339,
+ "Shape_Ar_2":5.2004372312e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":378,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57682249098701,
+ 45.49971314579534
+ ],
+ [
+ -73.57681807171848,
+ 45.49972414270532
+ ],
+ [
+ -73.57689343670458,
+ 45.499761391725144
+ ],
+ [
+ -73.577103720682,
+ 45.49955064099958
+ ],
+ [
+ -73.57706177180518,
+ 45.49953234249391
+ ],
+ [
+ -73.57702777203589,
+ 45.499517643075066
+ ],
+ [
+ -73.57705697212342,
+ 45.499484243153596
+ ],
+ [
+ -73.57705687229867,
+ 45.49948414242952
+ ],
+ [
+ -73.57705333976166,
+ 45.49948191301017
+ ],
+ [
+ -73.57682249098701,
+ 45.49971314579534
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":378,
+ "ID_UEV":"01037390",
+ "CIVIQUE_DE":" 2060",
+ "CIVIQUE_FI":" 2060",
+ "NOM_RUE":"rue Drummond (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-79-8569-2-000-0000",
+ "SUPERFICIE":304,
+ "SUPERFIC_1":421,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00085186834267,
+ "OBJECTID":83808,
+ "Join_Count":1,
+ "TARGET_FID":83808,
+ "feature_id":"76a58260-38fb-45c4-ae87-32fb34844c79",
+ "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.64,
+ "heightmax":122.37,
+ "elevmin":43.72,
+ "elevmax":46.59,
+ "bldgarea":3555.37,
+ "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_2":83808,
+ "Shape_Le_1":0.00085186834267,
+ "Shape_Ar_1":2.51219202236e-08,
+ "OBJECTID_3":83808,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83807,
+ "g_objectid":"938088",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338854",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983979856920000000",
+ "g_sup_tota":"303.9",
+ "g_geometry":"0.00101024",
+ "g_geomet_1":"3.49858e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00085186834267,
+ "Shape_Area":2.51219202236e-08,
+ "Shape_Le_3":0.000851868013245,
+ "Shape_Ar_2":2.51219202236e-08,
+ "building_height":60.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":379,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57860129243754,
+ 45.49846470063572
+ ],
+ [
+ -73.57867707111178,
+ 45.49850091003926
+ ],
+ [
+ -73.57879658111916,
+ 45.49837897815761
+ ],
+ [
+ -73.57876847280862,
+ 45.498367942576785
+ ],
+ [
+ -73.57876357330211,
+ 45.49836624285812
+ ],
+ [
+ -73.57875077325143,
+ 45.49838714310247
+ ],
+ [
+ -73.57870037344533,
+ 45.4983718429365
+ ],
+ [
+ -73.57871378593431,
+ 45.49834992645823
+ ],
+ [
+ -73.57860129243754,
+ 45.49846470063572
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":379,
+ "ID_UEV":"01036687",
+ "CIVIQUE_DE":" 2158",
+ "CIVIQUE_FI":" 2162",
+ "NOM_RUE":"rue Crescent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-68-4936-0-000-0000",
+ "SUPERFICIE":146,
+ "SUPERFIC_1":181,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000553687211965,
+ "OBJECTID":83809,
+ "Join_Count":1,
+ "TARGET_FID":83809,
+ "feature_id":"76be71d7-4ec5-4c2b-96b2-3b10b9c64403",
+ "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.1,
+ "heightmax":80.58,
+ "elevmin":44.94,
+ "elevmax":51.96,
+ "bldgarea":8932.56,
+ "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_2":83809,
+ "Shape_Le_1":0.000553687211965,
+ "Shape_Ar_1":1.19402937795e-08,
+ "OBJECTID_3":83809,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83808,
+ "g_objectid":"938380",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"5419252",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983968553260000000",
+ "g_sup_tota":"145.8",
+ "g_geometry":"0.000590939",
+ "g_geomet_1":"1.68129e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000553687211965,
+ "Shape_Area":1.19402937795e-08,
+ "Shape_Le_3":0.000553686968757,
+ "Shape_Ar_2":1.19402937795e-08,
+ "building_height":39.74
+ }
+ },
+ {
+ "type":"Feature",
+ "id":380,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55523002496753,
+ 45.518451467611435
+ ],
+ [
+ -73.55521868901313,
+ 45.51846391153059
+ ],
+ [
+ -73.55535748588112,
+ 45.51852768245688
+ ],
+ [
+ -73.55536768239448,
+ 45.518516636983506
+ ],
+ [
+ -73.55551223402422,
+ 45.51836002814308
+ ],
+ [
+ -73.55544523633044,
+ 45.518329311798595
+ ],
+ [
+ -73.55537584733933,
+ 45.518297498281214
+ ],
+ [
+ -73.55537454332236,
+ 45.51829690023205
+ ],
+ [
+ -73.5553719667647,
+ 45.51829954693684
+ ],
+ [
+ -73.55536950621958,
+ 45.518298363429025
+ ],
+ [
+ -73.55523002496753,
+ 45.518451467611435
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":380,
+ "ID_UEV":"01040364",
+ "CIVIQUE_DE":" 1298",
+ "CIVIQUE_FI":" 1308",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-40-7455-7-000-0000",
+ "SUPERFICIE":292,
+ "SUPERFIC_1":528,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000762744954225,
+ "OBJECTID":83810,
+ "Join_Count":1,
+ "TARGET_FID":83810,
+ "feature_id":"1efe8ed3-0696-41c8-bbfe-c2ee261ba8ec",
+ "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.95,
+ "heightmax":17.26,
+ "elevmin":19.7,
+ "elevmax":22.3,
+ "bldgarea":4107.29,
+ "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_2":83810,
+ "Shape_Le_1":0.000762744954225,
+ "Shape_Ar_1":3.3288395148e-08,
+ "OBJECTID_3":83810,
+ "Join_Cou_1":7,
+ "TARGET_F_1":83809,
+ "g_objectid":"941817",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566615",
+ "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":"66023004240693000000000",
+ "g_sup_tota":"169.8",
+ "g_geometry":"0.00068702",
+ "g_geomet_1":"1.95556e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000762744954225,
+ "Shape_Area":3.3288395148e-08,
+ "Shape_Le_3":0.000762744289998,
+ "Shape_Ar_2":3.3288395148e-08,
+ "building_height":8.155000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":381,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55536768239448,
+ 45.518516636983506
+ ],
+ [
+ -73.55542216422334,
+ 45.51854166961266
+ ],
+ [
+ -73.55542416701354,
+ 45.51853984668687
+ ],
+ [
+ -73.55544668244029,
+ 45.51855197584331
+ ],
+ [
+ -73.55559066300054,
+ 45.51839598483713
+ ],
+ [
+ -73.55551223402422,
+ 45.51836002814308
+ ],
+ [
+ -73.55536768239448,
+ 45.518516636983506
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":381,
+ "ID_UEV":"01040365",
+ "CIVIQUE_DE":" 1312",
+ "CIVIQUE_FI":" 1316",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-40-6561-3-000-0000",
+ "SUPERFICIE":155,
+ "SUPERFIC_1":339,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00059992480944,
+ "OBJECTID":83811,
+ "Join_Count":1,
+ "TARGET_FID":83811,
+ "feature_id":"1efe8ed3-0696-41c8-bbfe-c2ee261ba8ec",
+ "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.95,
+ "heightmax":17.26,
+ "elevmin":19.7,
+ "elevmax":22.3,
+ "bldgarea":4107.29,
+ "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_2":83811,
+ "Shape_Le_1":0.00059992480944,
+ "Shape_Ar_1":1.74393527272e-08,
+ "OBJECTID_3":83811,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83810,
+ "g_objectid":"941814",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566612",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004240456720000000",
+ "g_sup_tota":"1144.3",
+ "g_geometry":"0.00148927",
+ "g_geomet_1":"1.31896e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00059992480944,
+ "Shape_Area":1.74393527272e-08,
+ "Shape_Le_3":0.000599923932804,
+ "Shape_Ar_2":1.74393527272e-08,
+ "building_height":8.155000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":382,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55639492131041,
+ 45.51881563278552
+ ],
+ [
+ -73.55644626720331,
+ 45.51877354721173
+ ],
+ [
+ -73.55650766751668,
+ 45.5188106469441
+ ],
+ [
+ -73.5564559672909,
+ 45.518852946556535
+ ],
+ [
+ -73.55641876683447,
+ 45.518882746491855
+ ],
+ [
+ -73.55632316710232,
+ 45.51895914659763
+ ],
+ [
+ -73.55632266707927,
+ 45.518959646620694
+ ],
+ [
+ -73.55641488985712,
+ 45.519007294501336
+ ],
+ [
+ -73.5564162064646,
+ 45.519007895248464
+ ],
+ [
+ -73.55643348244111,
+ 45.51898948162957
+ ],
+ [
+ -73.55658259902957,
+ 45.518830549840295
+ ],
+ [
+ -73.55644172202969,
+ 45.518764893935
+ ],
+ [
+ -73.55639492131041,
+ 45.51881563278552
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":382,
+ "ID_UEV":"01040366",
+ "CIVIQUE_DE":" 1420",
+ "CIVIQUE_FI":" 1426",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1865,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-9009-9-000-0000",
+ "SUPERFICIE":310,
+ "SUPERFIC_1":310,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000948563522925,
+ "OBJECTID":83812,
+ "Join_Count":1,
+ "TARGET_FID":83812,
+ "feature_id":"436fd987-b39d-4f24-a78c-6652f18bc34a",
+ "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.47,
+ "heightmax":16.7,
+ "elevmin":21.78,
+ "elevmax":26.69,
+ "bldgarea":4869.88,
+ "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_2":83812,
+ "Shape_Le_1":0.000948563522925,
+ "Shape_Ar_1":2.12347641351e-08,
+ "OBJECTID_3":83812,
+ "Join_Cou_1":9,
+ "TARGET_F_1":83811,
+ "g_objectid":"944637",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004231831440020001",
+ "g_sup_tota":"77.9",
+ "g_geometry":"0.000667332",
+ "g_geomet_1":"8.96252e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000948563522925,
+ "Shape_Area":2.12347641351e-08,
+ "Shape_Le_3":0.00094856370453,
+ "Shape_Ar_2":2.12347641351e-08,
+ "building_height":7.114999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":383,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55714712326298,
+ 45.51908866605939
+ ],
+ [
+ -73.55714056720525,
+ 45.519093446855386
+ ],
+ [
+ -73.55717326745417,
+ 45.51911554679534
+ ],
+ [
+ -73.55710286672577,
+ 45.51916704647231
+ ],
+ [
+ -73.55708866732998,
+ 45.51915754693354
+ ],
+ [
+ -73.55708816730692,
+ 45.51915794713185
+ ],
+ [
+ -73.55698646747334,
+ 45.51926174688241
+ ],
+ [
+ -73.55707156042602,
+ 45.51930300687856
+ ],
+ [
+ -73.5572331605038,
+ 45.51912979115723
+ ],
+ [
+ -73.55714712326298,
+ 45.51908866605939
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":383,
+ "ID_UEV":"01040370",
+ "CIVIQUE_DE":" 1490",
+ "CIVIQUE_FI":" 1494",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1905,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-3843-7-000-0000",
+ "SUPERFICIE":207,
+ "SUPERFIC_1":429,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000724673331647,
+ "OBJECTID":83813,
+ "Join_Count":1,
+ "TARGET_FID":83813,
+ "feature_id":"436fd987-b39d-4f24-a78c-6652f18bc34a",
+ "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.47,
+ "heightmax":16.7,
+ "elevmin":21.78,
+ "elevmax":26.69,
+ "bldgarea":4869.88,
+ "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_2":83813,
+ "Shape_Le_1":0.000724673331647,
+ "Shape_Ar_1":1.87485378935e-08,
+ "OBJECTID_3":83813,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83812,
+ "g_objectid":"941769",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566481",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004231252360000000",
+ "g_sup_tota":"213.2",
+ "g_geometry":"0.000690952",
+ "g_geomet_1":"2.43533e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000724673331647,
+ "Shape_Area":1.87485378935e-08,
+ "Shape_Le_3":0.000724672981023,
+ "Shape_Ar_2":1.87485378935e-08,
+ "building_height":7.114999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":384,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55782352046094,
+ 45.51964057999906
+ ],
+ [
+ -73.55794016792625,
+ 45.51969484688997
+ ],
+ [
+ -73.5579317745536,
+ 45.51970377086263
+ ],
+ [
+ -73.55795427379255,
+ 45.51971419760243
+ ],
+ [
+ -73.55810027872673,
+ 45.519558147241
+ ],
+ [
+ -73.55806636799034,
+ 45.51954194685366
+ ],
+ [
+ -73.55801596818424,
+ 45.51959404727776
+ ],
+ [
+ -73.55795526844273,
+ 45.51956504683974
+ ],
+ [
+ -73.55800336778304,
+ 45.51951524688143
+ ],
+ [
+ -73.55796686789849,
+ 45.51949724695068
+ ],
+ [
+ -73.55792706840133,
+ 45.519537346821394
+ ],
+ [
+ -73.55792230469245,
+ 45.519534997792206
+ ],
+ [
+ -73.55782352046094,
+ 45.51964057999906
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55797707610303,
+ 45.519476458222265
+ ],
+ [
+ -73.5579849685533,
+ 45.51948044671554
+ ],
+ [
+ -73.55798876369234,
+ 45.519476479805995
+ ],
+ [
+ -73.55798056996917,
+ 45.519472724237126
+ ],
+ [
+ -73.55797707610303,
+ 45.519476458222265
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":384,
+ "ID_UEV":"01040372",
+ "CIVIQUE_DE":" 1574",
+ "CIVIQUE_FI":" 1586",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-7087-8-000-0000",
+ "SUPERFICIE":307,
+ "SUPERFIC_1":564,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000901541747125,
+ "OBJECTID":83814,
+ "Join_Count":1,
+ "TARGET_FID":83814,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":83814,
+ "Shape_Le_1":0.000901541747125,
+ "Shape_Ar_1":2.4736959647e-08,
+ "OBJECTID_3":83814,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83813,
+ "g_objectid":"941753",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566450",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004221576770000000",
+ "g_sup_tota":"307.1",
+ "g_geometry":"0.000791751",
+ "g_geomet_1":"3.55315e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000901541747125,
+ "Shape_Area":2.4736959647e-08,
+ "Shape_Le_3":0.000901537695574,
+ "Shape_Ar_2":2.4736959647e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":385,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55809427305411,
+ 45.51977908009077
+ ],
+ [
+ -73.55823106623257,
+ 45.51984247599976
+ ],
+ [
+ -73.55839798580026,
+ 45.51966406849226
+ ],
+ [
+ -73.55839562507988,
+ 45.51966298660784
+ ],
+ [
+ -73.55832454356468,
+ 45.51963040147214
+ ],
+ [
+ -73.55826074206144,
+ 45.519601155519204
+ ],
+ [
+ -73.5582434319107,
+ 45.51961965727166
+ ],
+ [
+ -73.55824406773138,
+ 45.51961994685336
+ ],
+ [
+ -73.55819916817892,
+ 45.5196684472913
+ ],
+ [
+ -73.55819819781043,
+ 45.51966800392554
+ ],
+ [
+ -73.55809427305411,
+ 45.51977908009077
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":385,
+ "ID_UEV":"01040374",
+ "CIVIQUE_DE":" 1602",
+ "CIVIQUE_FI":" 1614",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-4901-1-000-0000",
+ "SUPERFICIE":304,
+ "SUPERFIC_1":553,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000791371213272,
+ "OBJECTID":83815,
+ "Join_Count":1,
+ "TARGET_FID":83815,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":83815,
+ "Shape_Le_1":0.000791371213272,
+ "Shape_Ar_1":3.48840877912e-08,
+ "OBJECTID_3":83815,
+ "Join_Cou_1":7,
+ "TARGET_F_1":83814,
+ "g_objectid":"941751",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566448",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222490110000000",
+ "g_sup_tota":"303.8",
+ "g_geometry":"0.000789721",
+ "g_geomet_1":"3.49394e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000791371213272,
+ "Shape_Area":3.48840877912e-08,
+ "Shape_Le_3":0.000791371937963,
+ "Shape_Ar_2":3.48840877912e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":386,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55823106623257,
+ 45.51984247599976
+ ],
+ [
+ -73.55837220943177,
+ 45.51990788818878
+ ],
+ [
+ -73.55849007547845,
+ 45.51978191205589
+ ],
+ [
+ -73.55844166857,
+ 45.5197604470373
+ ],
+ [
+ -73.55840286821964,
+ 45.519803646871104
+ ],
+ [
+ -73.5583697677724,
+ 45.519788946552936
+ ],
+ [
+ -73.55840986854244,
+ 45.51974424664996
+ ],
+ [
+ -73.5583582681414,
+ 45.5197213472127
+ ],
+ [
+ -73.55840616423494,
+ 45.51966781776587
+ ],
+ [
+ -73.55839798580026,
+ 45.51966406849226
+ ],
+ [
+ -73.55823106623257,
+ 45.51984247599976
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":386,
+ "ID_UEV":"01040375",
+ "CIVIQUE_DE":" 1616",
+ "CIVIQUE_FI":" 1624",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-3909-5-000-0000",
+ "SUPERFICIE":314,
+ "SUPERFIC_1":521,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000916965019033,
+ "OBJECTID":83816,
+ "Join_Count":1,
+ "TARGET_FID":83816,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":83816,
+ "Shape_Le_1":0.000916965019033,
+ "Shape_Ar_1":2.40930623408e-08,
+ "OBJECTID_3":83816,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83815,
+ "g_objectid":"941751",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566448",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222490110000000",
+ "g_sup_tota":"303.8",
+ "g_geometry":"0.000789721",
+ "g_geomet_1":"3.49394e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000916965019033,
+ "Shape_Area":2.40930623408e-08,
+ "Shape_Le_3":0.000916967540421,
+ "Shape_Ar_2":2.40930623408e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":387,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5600355550187,
+ 45.52915644776215
+ ],
+ [
+ -73.5600895692001,
+ 45.52918104871672
+ ],
+ [
+ -73.56011414137637,
+ 45.529192250672125
+ ],
+ [
+ -73.56027090310154,
+ 45.52902740943769
+ ],
+ [
+ -73.56022856931487,
+ 45.529008349206244
+ ],
+ [
+ -73.56017446879854,
+ 45.529067748528064
+ ],
+ [
+ -73.5601362323231,
+ 45.52905058226885
+ ],
+ [
+ -73.5600355550187,
+ 45.52915644776215
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":387,
+ "ID_UEV":"01035234",
+ "CIVIQUE_DE":" 2174",
+ "CIVIQUE_FI":" 2178",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-12-0143-3-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":355,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000628616133346,
+ "OBJECTID":83820,
+ "Join_Count":1,
+ "TARGET_FID":83820,
+ "feature_id":"bf7bffe9-01f4-4ce2-932b-92a9e3470026",
+ "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.89,
+ "heightmax":39.58,
+ "elevmin":26.07,
+ "elevmax":28.18,
+ "bldgarea":1382.27,
+ "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_2":83820,
+ "Shape_Le_1":0.000628616133346,
+ "Shape_Ar_1":1.54191415921e-08,
+ "OBJECTID_3":83820,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83819,
+ "g_objectid":"943007",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885683",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302954850000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000701658",
+ "g_geomet_1":"2.16048e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000628616133346,
+ "Shape_Area":1.54191415921e-08,
+ "Shape_Le_3":0.000628614798918,
+ "Shape_Ar_2":1.54191415921e-08,
+ "building_height":18.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":388,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56238210657081,
+ 45.51820438067792
+ ],
+ [
+ -73.56246841091028,
+ 45.51825572747014
+ ],
+ [
+ -73.56247180854896,
+ 45.51825726890813
+ ],
+ [
+ -73.56248466885422,
+ 45.51824674684019
+ ],
+ [
+ -73.56251601202618,
+ 45.518265591234346
+ ],
+ [
+ -73.56261915976826,
+ 45.51815577951591
+ ],
+ [
+ -73.56259336901061,
+ 45.518144246609985
+ ],
+ [
+ -73.56260376877076,
+ 45.518132746978985
+ ],
+ [
+ -73.56260346929652,
+ 45.51813254643017
+ ],
+ [
+ -73.5625413693106,
+ 45.5181020468223
+ ],
+ [
+ -73.56254116876177,
+ 45.518101946997554
+ ],
+ [
+ -73.56252306900628,
+ 45.518117446813015
+ ],
+ [
+ -73.56248626515087,
+ 45.518096190437134
+ ],
+ [
+ -73.56238210657081,
+ 45.51820438067792
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":388,
+ "ID_UEV":"01003732",
+ "CIVIQUE_DE":" 1782",
+ "CIVIQUE_FI":" 1790",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-90-1528-4-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":515,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00063804010762,
+ "OBJECTID":83825,
+ "Join_Count":1,
+ "TARGET_FID":83825,
+ "feature_id":"e03528fb-3236-4157-aaf3-490876d17932",
+ "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.56,
+ "heightmax":20.34,
+ "elevmin":23.71,
+ "elevmax":25.09,
+ "bldgarea":2715.58,
+ "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_2":83825,
+ "Shape_Le_1":0.00063804010762,
+ "Shape_Ar_1":2.23846586027e-08,
+ "OBJECTID_3":83825,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83824,
+ "g_objectid":"943283",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161662",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994290252000000000",
+ "g_sup_tota":"301.7",
+ "g_geometry":"0.000801657",
+ "g_geomet_1":"3.48655e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00063804010762,
+ "Shape_Area":2.23846586027e-08,
+ "Shape_Le_3":0.000638039439149,
+ "Shape_Ar_2":2.23846586027e-08,
+ "building_height":9.89
+ }
+ },
+ {
+ "type":"Feature",
+ "id":389,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57764646423477,
+ 45.502772691556764
+ ],
+ [
+ -73.577671173108,
+ 45.50278294382809
+ ],
+ [
+ -73.57773778229466,
+ 45.50281071309423
+ ],
+ [
+ -73.57786181319396,
+ 45.5026807988301
+ ],
+ [
+ -73.57784057300589,
+ 45.50267054386081
+ ],
+ [
+ -73.57777446833889,
+ 45.50263861792817
+ ],
+ [
+ -73.57764646423477,
+ 45.502772691556764
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":389,
+ "ID_UEV":"01037615",
+ "CIVIQUE_DE":" 3449",
+ "CIVIQUE_FI":" 3449",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1865,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-73-2821-4-000-0000",
+ "SUPERFICIE":334,
+ "SUPERFIC_1":346,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00056089510519,
+ "OBJECTID":83826,
+ "Join_Count":1,
+ "TARGET_FID":83826,
+ "feature_id":"9286f9eb-d756-4a9c-859e-9fe6c4dbc2a0",
+ "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":70.16,
+ "elevmin":45.59,
+ "elevmax":51.45,
+ "bldgarea":2190.75,
+ "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_2":83826,
+ "Shape_Le_1":0.00056089510519,
+ "Shape_Ar_1":1.68429146702e-08,
+ "OBJECTID_3":83826,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83825,
+ "g_objectid":"939755",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1339442",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984073351690000000",
+ "g_sup_tota":"314",
+ "g_geometry":"0.00100401",
+ "g_geomet_1":"3.61545e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00056089510519,
+ "Shape_Area":1.68429146702e-08,
+ "Shape_Le_3":0.000560895118347,
+ "Shape_Ar_2":1.68429146702e-08,
+ "building_height":34.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":390,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5774306548227,
+ 45.50287082917572
+ ],
+ [
+ -73.57748355024749,
+ 45.5028966909798
+ ],
+ [
+ -73.57753667320075,
+ 45.50284484416452
+ ],
+ [
+ -73.57748194405832,
+ 45.502817108173296
+ ],
+ [
+ -73.5774306548227,
+ 45.50287082917572
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.57758286328036,
+ 45.502711402759324
+ ],
+ [
+ -73.57759127284082,
+ 45.502715343588534
+ ],
+ [
+ -73.57756777355576,
+ 45.50274014419259
+ ],
+ [
+ -73.57760947332038,
+ 45.50275734372673
+ ],
+ [
+ -73.57764646423477,
+ 45.502772691556764
+ ],
+ [
+ -73.57777446833889,
+ 45.50263861792817
+ ],
+ [
+ -73.57771157335227,
+ 45.502608244225385
+ ],
+ [
+ -73.57769088624725,
+ 45.502598258153384
+ ],
+ [
+ -73.57758286328036,
+ 45.502711402759324
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":390,
+ "ID_UEV":"01037617",
+ "CIVIQUE_DE":" 3445",
+ "CIVIQUE_FI":" 3445",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-73-3516-9-000-0000",
+ "SUPERFICIE":314,
+ "SUPERFIC_1":317,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000831962897819,
+ "OBJECTID":83827,
+ "Join_Count":2,
+ "TARGET_FID":83827,
+ "feature_id":"9286f9eb-d756-4a9c-859e-9fe6c4dbc2a0",
+ "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":70.16,
+ "elevmin":45.59,
+ "elevmax":51.45,
+ "bldgarea":2190.75,
+ "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_2":83827,
+ "Shape_Le_1":0.000831962897819,
+ "Shape_Ar_1":2.05581353137e-08,
+ "OBJECTID_3":83827,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83826,
+ "g_objectid":"939755",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1339442",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984073351690000000",
+ "g_sup_tota":"314",
+ "g_geometry":"0.00100401",
+ "g_geomet_1":"3.61545e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000831962897819,
+ "Shape_Area":2.05581353137e-08,
+ "Shape_Le_3":0.000831961735255,
+ "Shape_Ar_2":2.05581353137e-08,
+ "building_height":34.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":391,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57723661080279,
+ 45.50269035772413
+ ],
+ [
+ -73.57724917343245,
+ 45.502696243786914
+ ],
+ [
+ -73.57730077293417,
+ 45.50264184379635
+ ],
+ [
+ -73.57737279154294,
+ 45.50267562503036
+ ],
+ [
+ -73.57752370048024,
+ 45.50251755928823
+ ],
+ [
+ -73.57744010939538,
+ 45.50247721120463
+ ],
+ [
+ -73.57723661080279,
+ 45.50269035772413
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":391,
+ "ID_UEV":"01037622",
+ "CIVIQUE_DE":" 3433",
+ "CIVIQUE_FI":" 3433",
+ "NOM_RUE":"rue Peel (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1865,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-73-5402-0-000-0000",
+ "SUPERFICIE":314,
+ "SUPERFIC_1":400,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00077444689122,
+ "OBJECTID":83828,
+ "Join_Count":1,
+ "TARGET_FID":83828,
+ "feature_id":"9286f9eb-d756-4a9c-859e-9fe6c4dbc2a0",
+ "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":70.16,
+ "elevmin":45.59,
+ "elevmax":51.45,
+ "bldgarea":2190.75,
+ "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_2":83828,
+ "Shape_Le_1":0.00077444689122,
+ "Shape_Ar_1":2.03278731951e-08,
+ "OBJECTID_3":83828,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83827,
+ "g_objectid":"945010",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1339444",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984073480710000000",
+ "g_sup_tota":"314",
+ "g_geometry":"0.00100401",
+ "g_geomet_1":"3.61543e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00077444689122,
+ "Shape_Area":2.03278731951e-08,
+ "Shape_Le_3":0.000774447733415,
+ "Shape_Ar_2":2.03278731951e-08,
+ "building_height":34.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":392,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56337770284055,
+ 45.51846371278042
+ ],
+ [
+ -73.5634705407547,
+ 45.51850654299286
+ ],
+ [
+ -73.56348577796813,
+ 45.51848712123395
+ ],
+ [
+ -73.56361195015322,
+ 45.51831320853804
+ ],
+ [
+ -73.56358904711867,
+ 45.51830279708671
+ ],
+ [
+ -73.56354126883633,
+ 45.518284346595614
+ ],
+ [
+ -73.56354106918684,
+ 45.51828424677087
+ ],
+ [
+ -73.56352656941749,
+ 45.51830034643414
+ ],
+ [
+ -73.56351665978787,
+ 45.51829595054797
+ ],
+ [
+ -73.56343066751315,
+ 45.51838772186617
+ ],
+ [
+ -73.56345626941315,
+ 45.518399047028694
+ ],
+ [
+ -73.56344636877674,
+ 45.51841004663664
+ ],
+ [
+ -73.56343546899355,
+ 45.51840534677962
+ ],
+ [
+ -73.56343476932099,
+ 45.51840604645218
+ ],
+ [
+ -73.56337770284055,
+ 45.51846371278042
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":392,
+ "ID_UEV":"01003582",
+ "CIVIQUE_DE":" 1839",
+ "CIVIQUE_FI":" 1839",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":15,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-80-3954-1-000-0000",
+ "SUPERFICIE":208,
+ "SUPERFIC_1":515,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00071344052218,
+ "OBJECTID":83833,
+ "Join_Count":1,
+ "TARGET_FID":83833,
+ "feature_id":"e03528fb-3236-4157-aaf3-490876d17932",
+ "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.56,
+ "heightmax":20.34,
+ "elevmin":23.71,
+ "elevmax":25.09,
+ "bldgarea":2715.58,
+ "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_2":83833,
+ "Shape_Le_1":0.00071344052218,
+ "Shape_Ar_1":2.18942820083e-08,
+ "OBJECTID_3":83833,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83832,
+ "g_objectid":"943288",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161668",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994280504640000000",
+ "g_sup_tota":"412.2",
+ "g_geometry":"0.000897683",
+ "g_geomet_1":"4.75545e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00071344052218,
+ "Shape_Area":2.18942820083e-08,
+ "Shape_Le_3":0.00071344082225,
+ "Shape_Ar_2":2.18942820083e-08,
+ "building_height":9.89
+ }
+ },
+ {
+ "type":"Feature",
+ "id":393,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56321785554144,
+ 45.518379012831474
+ ],
+ [
+ -73.56323676918339,
+ 45.51835784728712
+ ],
+ [
+ -73.56320756909588,
+ 45.518344946512364
+ ],
+ [
+ -73.5632433693079,
+ 45.5183049464664
+ ],
+ [
+ -73.56336696943194,
+ 45.51835954700579
+ ],
+ [
+ -73.56343066751315,
+ 45.51838772186617
+ ],
+ [
+ -73.56351665978787,
+ 45.51829595054797
+ ],
+ [
+ -73.56340056900291,
+ 45.518244447273716
+ ],
+ [
+ -73.56332203390659,
+ 45.5182095158068
+ ],
+ [
+ -73.56322850171583,
+ 45.51830725772406
+ ],
+ [
+ -73.56317787348192,
+ 45.518360837532924
+ ],
+ [
+ -73.56321785554144,
+ 45.518379012831474
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":393,
+ "ID_UEV":"01003584",
+ "CIVIQUE_DE":" 1829",
+ "CIVIQUE_FI":" 1829",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-80-5046-4-000-0000",
+ "SUPERFICIE":412,
+ "SUPERFIC_1":592,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000910402731711,
+ "OBJECTID":83834,
+ "Join_Count":1,
+ "TARGET_FID":83834,
+ "feature_id":"e03528fb-3236-4157-aaf3-490876d17932",
+ "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.56,
+ "heightmax":20.34,
+ "elevmin":23.71,
+ "elevmax":25.09,
+ "bldgarea":2715.58,
+ "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_2":83834,
+ "Shape_Le_1":0.000910402731711,
+ "Shape_Ar_1":2.71185690001e-08,
+ "OBJECTID_3":83834,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83833,
+ "g_objectid":"943288",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161668",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994280504640000000",
+ "g_sup_tota":"412.2",
+ "g_geometry":"0.000897683",
+ "g_geomet_1":"4.75545e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000910402731711,
+ "Shape_Area":2.71185690001e-08,
+ "Shape_Le_3":0.000910402179337,
+ "Shape_Ar_2":2.71185690001e-08,
+ "building_height":9.89
+ }
+ },
+ {
+ "type":"Feature",
+ "id":394,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56274476807843,
+ 45.518135385589865
+ ],
+ [
+ -73.56285312199583,
+ 45.518183855450864
+ ],
+ [
+ -73.56288456948914,
+ 45.51810854712205
+ ],
+ [
+ -73.56294253619093,
+ 45.51812051619916
+ ],
+ [
+ -73.56301559171803,
+ 45.51804492188593
+ ],
+ [
+ -73.56281482616514,
+ 45.517955408765395
+ ],
+ [
+ -73.56273873452682,
+ 45.51803223065322
+ ],
+ [
+ -73.56274706944355,
+ 45.51803594665191
+ ],
+ [
+ -73.56278466919898,
+ 45.51805274688705
+ ],
+ [
+ -73.5627202705459,
+ 45.51812398398497
+ ],
+ [
+ -73.56274206831365,
+ 45.51813417780036
+ ],
+ [
+ -73.56274476807843,
+ 45.518135385589865
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":394,
+ "ID_UEV":"01003591",
+ "CIVIQUE_DE":" 1781",
+ "CIVIQUE_FI":" 1791",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-80-9018-9-000-0000",
+ "SUPERFICIE":374,
+ "SUPERFIC_1":332,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000865934525816,
+ "OBJECTID":83835,
+ "Join_Count":1,
+ "TARGET_FID":83835,
+ "feature_id":"e03528fb-3236-4157-aaf3-490876d17932",
+ "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.56,
+ "heightmax":20.34,
+ "elevmin":23.71,
+ "elevmax":25.09,
+ "bldgarea":2715.58,
+ "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_2":83835,
+ "Shape_Le_1":0.000865934525816,
+ "Shape_Ar_1":3.44509091319e-08,
+ "OBJECTID_3":83835,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83834,
+ "g_objectid":"943295",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161679",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994280782670000000",
+ "g_sup_tota":"179.8",
+ "g_geometry":"0.000671466",
+ "g_geomet_1":"2.02931e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000865934525816,
+ "Shape_Area":3.44509091319e-08,
+ "Shape_Le_3":0.000865931937836,
+ "Shape_Ar_2":3.44509091319e-08,
+ "building_height":9.89
+ }
+ },
+ {
+ "type":"Feature",
+ "id":395,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5623240823124,
+ 45.529064539747004
+ ],
+ [
+ -73.56235777001692,
+ 45.529077149141415
+ ],
+ [
+ -73.56235557027519,
+ 45.529080149279764
+ ],
+ [
+ -73.56236086998001,
+ 45.529082648495724
+ ],
+ [
+ -73.56239752634661,
+ 45.529100338160376
+ ],
+ [
+ -73.56249469809369,
+ 45.52899730103491
+ ],
+ [
+ -73.56241213673258,
+ 45.528971309728455
+ ],
+ [
+ -73.5623240823124,
+ 45.529064539747004
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":395,
+ "ID_UEV":"01034883",
+ "CIVIQUE_DE":" 2347",
+ "CIVIQUE_FI":" 2351",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-2639-2-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":232,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000442676949172,
+ "OBJECTID":83843,
+ "Join_Count":1,
+ "TARGET_FID":83843,
+ "feature_id":"bbf6c021-941f-4914-a315-29f80f675e18",
+ "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":41.31,
+ "elevmin":28.77,
+ "elevmax":38.65,
+ "bldgarea":2241.19,
+ "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_2":83843,
+ "Shape_Le_1":0.000442676949172,
+ "Shape_Ar_1":1.04600383465e-08,
+ "OBJECTID_3":83843,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83842,
+ "g_objectid":"942814",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884558",
+ "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":"66023994392204370000000",
+ "g_sup_tota":"182.9",
+ "g_geometry":"0.00069488",
+ "g_geomet_1":"2.0736e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000442676949172,
+ "Shape_Area":1.04600383465e-08,
+ "Shape_Le_3":0.000442676756706,
+ "Shape_Ar_2":1.04600383465e-08,
+ "building_height":20.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":396,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56257627379784,
+ 45.51800269781655
+ ],
+ [
+ -73.56269336912553,
+ 45.5180551471776
+ ],
+ [
+ -73.56272126879337,
+ 45.518024447020906
+ ],
+ [
+ -73.56273873452682,
+ 45.51803223065322
+ ],
+ [
+ -73.56281482616514,
+ 45.517955408765395
+ ],
+ [
+ -73.56268706937459,
+ 45.517898446606324
+ ],
+ [
+ -73.56267977047688,
+ 45.517895195557124
+ ],
+ [
+ -73.56257627379784,
+ 45.51800269781655
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":396,
+ "ID_UEV":"01003593",
+ "CIVIQUE_DE":" 1769",
+ "CIVIQUE_FI":" 1775",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-90-0310-8-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":427,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000594133112287,
+ "OBJECTID":83845,
+ "Join_Count":1,
+ "TARGET_FID":83845,
+ "feature_id":"e03528fb-3236-4157-aaf3-490876d17932",
+ "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.56,
+ "heightmax":20.34,
+ "elevmin":23.71,
+ "elevmax":25.09,
+ "bldgarea":2715.58,
+ "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_2":83845,
+ "Shape_Le_1":0.000594133112287,
+ "Shape_Ar_1":1.98940491714e-08,
+ "OBJECTID_3":83845,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83844,
+ "g_objectid":"943280",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161656",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994290130320000000",
+ "g_sup_tota":"223",
+ "g_geometry":"0.000667479",
+ "g_geomet_1":"2.57604e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000594133112287,
+ "Shape_Area":1.98940491714e-08,
+ "Shape_Le_3":0.000594134095489,
+ "Shape_Ar_2":1.98940491714e-08,
+ "building_height":9.89
+ }
+ },
+ {
+ "type":"Feature",
+ "id":397,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56154383050522,
+ 45.51749189458556
+ ],
+ [
+ -73.56156786938351,
+ 45.51750264687995
+ ],
+ [
+ -73.56149692456526,
+ 45.51758088519999
+ ],
+ [
+ -73.56154412908013,
+ 45.517602345721976
+ ],
+ [
+ -73.56154463090184,
+ 45.51760257414977
+ ],
+ [
+ -73.56169386620081,
+ 45.51744470895645
+ ],
+ [
+ -73.56161986548625,
+ 45.5174114610204
+ ],
+ [
+ -73.56154383050522,
+ 45.51749189458556
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":397,
+ "ID_UEV":"01003599",
+ "CIVIQUE_DE":" 1671",
+ "CIVIQUE_FI":" 1673",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Auberge ou g\u00c3\u00aete touristique (H\u00c3\u00b4tel \u00c3\u00a0 caract\u00c3\u00a8re familial, d'au plus 3 \u00c3\u00a9tages en hauteur de b\u00c3\u00a2timent)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-8855-7-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":297,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000593403251186,
+ "OBJECTID":83846,
+ "Join_Count":1,
+ "TARGET_FID":83846,
+ "feature_id":"94444282-f0f9-4262-b3e1-3b78e81d7b46",
+ "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":42.07,
+ "elevmin":25.45,
+ "elevmax":28.3,
+ "bldgarea":1813.53,
+ "comment":" ",
+ "OBJECTID_2":83846,
+ "Shape_Le_1":0.000593403251186,
+ "Shape_Ar_1":1.38715377366e-08,
+ "OBJECTID_3":83846,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83845,
+ "g_objectid":"943348",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161806",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994199945220000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.000608631",
+ "g_geomet_1":"1.74219e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000593403251186,
+ "Shape_Area":1.38715377366e-08,
+ "Shape_Le_3":0.000593402480686,
+ "Shape_Ar_2":1.38715377366e-08,
+ "building_height":20.78
+ }
+ },
+ {
+ "type":"Feature",
+ "id":398,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56082628302839,
+ 45.51678942963876
+ ],
+ [
+ -73.56078096798913,
+ 45.51676834683204
+ ],
+ [
+ -73.56071196840446,
+ 45.516841646974726
+ ],
+ [
+ -73.56075872145968,
+ 45.51686339887705
+ ],
+ [
+ -73.56082628302839,
+ 45.51678942963876
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":398,
+ "ID_UEV":"01003465",
+ "CIVIQUE_DE":" 1592",
+ "CIVIQUE_FI":" 1592",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-08-5076-2-000-0000",
+ "SUPERFICIE":98,
+ "SUPERFIC_1":100,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000302392082713,
+ "OBJECTID":83851,
+ "Join_Count":1,
+ "TARGET_FID":83851,
+ "feature_id":"b0ad8479-53de-413e-889d-16081d5d0a49",
+ "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.16,
+ "heightmax":39.65,
+ "elevmin":27.22,
+ "elevmax":27.95,
+ "bldgarea":113.37,
+ "comment":" ",
+ "OBJECTID_2":83851,
+ "Shape_Le_1":0.000302392082713,
+ "Shape_Ar_1":4.85209889207e-09,
+ "OBJECTID_3":83851,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83850,
+ "g_objectid":"943392",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161963",
+ "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":"66023004108507620000000",
+ "g_sup_tota":"97.5",
+ "g_geometry":"0.000502674",
+ "g_geomet_1":"1.13561e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000302392082713,
+ "Shape_Area":4.85209889207e-09,
+ "Shape_Le_3":0.000302391749954,
+ "Shape_Ar_2":4.85209889207e-09,
+ "building_height":19.245
+ }
+ },
+ {
+ "type":"Feature",
+ "id":399,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56075872145968,
+ 45.51686339887705
+ ],
+ [
+ -73.5608263774572,
+ 45.51689487694731
+ ],
+ [
+ -73.56089393992524,
+ 45.51682090770902
+ ],
+ [
+ -73.56082628302839,
+ 45.51678942963876
+ ],
+ [
+ -73.56075872145968,
+ 45.51686339887705
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":399,
+ "ID_UEV":"01003467",
+ "CIVIQUE_DE":" 1594",
+ "CIVIQUE_FI":" 1594",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-08-4579-6-000-0000",
+ "SUPERFICIE":115,
+ "SUPERFIC_1":117,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000349602354302,
+ "OBJECTID":83852,
+ "Join_Count":1,
+ "TARGET_FID":83852,
+ "feature_id":"b0ad8479-53de-413e-889d-16081d5d0a49",
+ "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.16,
+ "heightmax":39.65,
+ "elevmin":27.22,
+ "elevmax":27.95,
+ "bldgarea":113.37,
+ "comment":" ",
+ "OBJECTID_2":83852,
+ "Shape_Le_1":0.000349602354302,
+ "Shape_Ar_1":7.13121602052e-09,
+ "OBJECTID_3":83852,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83851,
+ "g_objectid":"943392",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161963",
+ "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":"66023004108507620000000",
+ "g_sup_tota":"97.5",
+ "g_geometry":"0.000502674",
+ "g_geomet_1":"1.13561e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000349602354302,
+ "Shape_Area":7.13121602052e-09,
+ "Shape_Le_3":0.000349602020134,
+ "Shape_Ar_2":7.13121602052e-09,
+ "building_height":19.245
+ }
+ },
+ {
+ "type":"Feature",
+ "id":400,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56119805107105,
+ 45.51691457299944
+ ],
+ [
+ -73.56118966849026,
+ 45.51691124640719
+ ],
+ [
+ -73.56119337819369,
+ 45.51690659601289
+ ],
+ [
+ -73.56113856721295,
+ 45.51688167489967
+ ],
+ [
+ -73.56111376840754,
+ 45.51687284715447
+ ],
+ [
+ -73.56111376840754,
+ 45.51687294697921
+ ],
+ [
+ -73.56100566809894,
+ 45.51698094656373
+ ],
+ [
+ -73.56100816821424,
+ 45.51698214715866
+ ],
+ [
+ -73.56109721908324,
+ 45.51702417967245
+ ],
+ [
+ -73.56119805107105,
+ 45.51691457299944
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":400,
+ "ID_UEV":"01003469",
+ "CIVIQUE_DE":" 1610",
+ "CIVIQUE_FI":" 1624",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-08-2693-7-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":406,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000504585711274,
+ "OBJECTID":83853,
+ "Join_Count":1,
+ "TARGET_FID":83853,
+ "feature_id":"c4395447-5328-4e84-8568-10b7521bb0c9",
+ "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":40.19,
+ "elevmin":24.97,
+ "elevmax":27.58,
+ "bldgarea":1295.44,
+ "comment":" ",
+ "OBJECTID_2":83853,
+ "Shape_Le_1":0.000504585711274,
+ "Shape_Ar_1":1.4283298696e-08,
+ "OBJECTID_3":83853,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83852,
+ "g_objectid":"943338",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161787",
+ "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":"66023004108209710000000",
+ "g_sup_tota":"74.1",
+ "g_geometry":"0.00042767",
+ "g_geomet_1":"8.53e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000504585711274,
+ "Shape_Area":1.4283298696e-08,
+ "Shape_Le_3":0.000504584178009,
+ "Shape_Ar_2":1.4283298696e-08,
+ "building_height":19.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":401,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57162943677093,
+ 45.50030269186603
+ ],
+ [
+ -73.57163097101434,
+ 45.50030344279994
+ ],
+ [
+ -73.57161316533715,
+ 45.50032138427476
+ ],
+ [
+ -73.57215556984552,
+ 45.50058788757125
+ ],
+ [
+ -73.57268011381804,
+ 45.5000542622447
+ ],
+ [
+ -73.57248897101105,
+ 45.49996064281971
+ ],
+ [
+ -73.57213727133984,
+ 45.499788242783474
+ ],
+ [
+ -73.5721371715151,
+ 45.49978814295873
+ ],
+ [
+ -73.57211067119236,
+ 45.4998149427557
+ ],
+ [
+ -73.57210975838049,
+ 45.49981449669196
+ ],
+ [
+ -73.57162943677093,
+ 45.50030269186603
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":401,
+ "ID_UEV":"01039182",
+ "CIVIQUE_DE":" 1000",
+ "CIVIQUE_FI":" 1022",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-10-6231-2-000-0000",
+ "SUPERFICIE":3768,
+ "SUPERFIC_1":32746,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00270782639994,
+ "OBJECTID":83855,
+ "Join_Count":1,
+ "TARGET_FID":83855,
+ "feature_id":"a3d1e973-a722-421e-a8eb-fc0ee9752dab",
+ "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":53.48,
+ "elevmin":35.47,
+ "elevmax":36.67,
+ "bldgarea":4210.28,
+ "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_2":83855,
+ "Shape_Le_1":0.00270782639994,
+ "Shape_Ar_1":4.29956061847e-07,
+ "OBJECTID_3":83855,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83854,
+ "g_objectid":"945024",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1340235",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"73",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994010623120000000",
+ "g_sup_tota":"3767.9",
+ "g_geometry":"0.00272107",
+ "g_geomet_1":"4.3395e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00270782639994,
+ "Shape_Area":4.29956061847e-07,
+ "Shape_Le_3":0.00270782542772,
+ "Shape_Ar_2":4.29956061847e-07,
+ "building_height":26.49
+ }
+ },
+ {
+ "type":"Feature",
+ "id":402,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57271644822735,
+ 45.499577429105365
+ ],
+ [
+ -73.5725578114157,
+ 45.49974122083097
+ ],
+ [
+ -73.57287810226445,
+ 45.499897608438175
+ ],
+ [
+ -73.57303819687714,
+ 45.49973453077427
+ ],
+ [
+ -73.57271644822735,
+ 45.499577429105365
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":402,
+ "ID_UEV":"01039184",
+ "CIVIQUE_DE":" 1100",
+ "CIVIQUE_FI":" 1100",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-19-1181-7-000-0000",
+ "SUPERFICIE":688,
+ "SUPERFIC_1":3044,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00117103519216,
+ "OBJECTID":83856,
+ "Join_Count":1,
+ "TARGET_FID":83856,
+ "feature_id":"b785841f-86db-4c3e-9d29-fd04c448a308",
+ "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.51,
+ "heightmax":64.13,
+ "elevmin":36.16,
+ "elevmax":37.65,
+ "bldgarea":2960.95,
+ "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_2":83856,
+ "Shape_Le_1":0.00117103519216,
+ "Shape_Ar_1":7.74457273746e-08,
+ "OBJECTID_3":83856,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83855,
+ "g_objectid":"938122",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340082",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993919118170000000",
+ "g_sup_tota":"688",
+ "g_geometry":"0.00118784",
+ "g_geomet_1":"7.92098e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00117103519216,
+ "Shape_Area":7.74457273746e-08,
+ "Shape_Le_3":0.0011710335847,
+ "Shape_Ar_2":7.74457273746e-08,
+ "building_height":30.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":403,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57271644822735,
+ 45.499577429105365
+ ],
+ [
+ -73.57303819687714,
+ 45.49973453077427
+ ],
+ [
+ -73.57315791732587,
+ 45.499612579107534
+ ],
+ [
+ -73.57283445007165,
+ 45.49945559075321
+ ],
+ [
+ -73.57271644822735,
+ 45.499577429105365
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":403,
+ "ID_UEV":"01039186",
+ "CIVIQUE_DE":" 1112",
+ "CIVIQUE_FI":" 1118",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1927,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-19-0066-1-000-0000",
+ "SUPERFICIE":510,
+ "SUPERFIC_1":3544,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00105811438473,
+ "OBJECTID":83857,
+ "Join_Count":1,
+ "TARGET_FID":83857,
+ "feature_id":"b785841f-86db-4c3e-9d29-fd04c448a308",
+ "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.51,
+ "heightmax":64.13,
+ "elevmin":36.16,
+ "elevmax":37.65,
+ "bldgarea":2960.95,
+ "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_2":83857,
+ "Shape_Le_1":0.00105811438473,
+ "Shape_Ar_1":5.7990827906e-08,
+ "OBJECTID_3":83857,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83856,
+ "g_objectid":"938122",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340082",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993919118170000000",
+ "g_sup_tota":"688",
+ "g_geometry":"0.00118784",
+ "g_geomet_1":"7.92098e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00105811438473,
+ "Shape_Area":5.7990827906e-08,
+ "Shape_Le_3":0.00105811452929,
+ "Shape_Ar_2":5.7990827906e-08,
+ "building_height":30.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":404,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5585228386799,
+ 45.52295579492429
+ ],
+ [
+ -73.55866443873471,
+ 45.523021349206196
+ ],
+ [
+ -73.55874506835207,
+ 45.522930247882925
+ ],
+ [
+ -73.55860946767464,
+ 45.522871048210604
+ ],
+ [
+ -73.55860396832033,
+ 45.52286854809531
+ ],
+ [
+ -73.5585228386799,
+ 45.52295579492429
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5586606489916,
+ 45.52285377403274
+ ],
+ [
+ -73.55867256770668,
+ 45.52286014752808
+ ],
+ [
+ -73.55878786798756,
+ 45.52292264771232
+ ],
+ [
+ -73.5587686683612,
+ 45.52294004779527
+ ],
+ [
+ -73.55879886849483,
+ 45.522956447832094
+ ],
+ [
+ -73.55880206828267,
+ 45.522953347869006
+ ],
+ [
+ -73.55882495512942,
+ 45.52292983779208
+ ],
+ [
+ -73.5586606489916,
+ 45.52285377403274
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":404,
+ "ID_UEV":"01035489",
+ "CIVIQUE_DE":" 1469",
+ "CIVIQUE_FI":" 1473",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-1162-6-000-0000",
+ "SUPERFICIE":441,
+ "SUPERFIC_1":414,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000974102359286,
+ "OBJECTID":83859,
+ "Join_Count":2,
+ "TARGET_FID":83859,
+ "feature_id":"2d99fcc2-bd62-4fa9-9191-e603bbf01b61",
+ "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.45,
+ "heightmax":37.77,
+ "elevmin":24.9,
+ "elevmax":25.8,
+ "bldgarea":657.54,
+ "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_2":83859,
+ "Shape_Le_1":0.000974102359286,
+ "Shape_Ar_1":1.95684845453e-08,
+ "OBJECTID_3":83859,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83858,
+ "g_objectid":"941988",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567043",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225116260000000",
+ "g_sup_tota":"441.3",
+ "g_geometry":"0.000999463",
+ "g_geomet_1":"5.13323e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000974102359286,
+ "Shape_Area":1.95684845453e-08,
+ "Shape_Le_3":0.000974102992762,
+ "Shape_Ar_2":1.95684845453e-08,
+ "building_height":17.66
+ }
+ },
+ {
+ "type":"Feature",
+ "id":405,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55936544498114,
+ 45.527692256143
+ ],
+ [
+ -73.55937186883853,
+ 45.52769504853796
+ ],
+ [
+ -73.55940016870467,
+ 45.52766254883785
+ ],
+ [
+ -73.55942486948399,
+ 45.52767304842274
+ ],
+ [
+ -73.55939916955788,
+ 45.527703148731625
+ ],
+ [
+ -73.55940496928575,
+ 45.52770544919742
+ ],
+ [
+ -73.5594526621325,
+ 45.52772387540682
+ ],
+ [
+ -73.55955004611958,
+ 45.52762075554373
+ ],
+ [
+ -73.55946840116762,
+ 45.52758323672729
+ ],
+ [
+ -73.55936544498114,
+ 45.527692256143
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":405,
+ "ID_UEV":"01034928",
+ "CIVIQUE_DE":" 2071",
+ "CIVIQUE_FI":" 2075",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-5685-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":266,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000555525154526,
+ "OBJECTID":83862,
+ "Join_Count":1,
+ "TARGET_FID":83862,
+ "feature_id":"4f271120-04d5-422e-86e4-132f0b57d285",
+ "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.47,
+ "heightmax":38.14,
+ "elevmin":24.71,
+ "elevmax":26.72,
+ "bldgarea":1453.06,
+ "comment":" ",
+ "OBJECTID_2":83862,
+ "Shape_Le_1":0.000555525154526,
+ "Shape_Ar_1":1.13088476195e-08,
+ "OBJECTID_3":83862,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83861,
+ "g_objectid":"942994",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885498",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310508970000000",
+ "g_sup_tota":"187.9",
+ "g_geometry":"0.00068818",
+ "g_geomet_1":"2.16579e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000555525154526,
+ "Shape_Area":1.13088476195e-08,
+ "Shape_Le_3":0.000555524902753,
+ "Shape_Ar_2":1.13088476195e-08,
+ "building_height":17.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":406,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56877834756453,
+ 45.51094950746409
+ ],
+ [
+ -73.56872287108548,
+ 45.51092234524034
+ ],
+ [
+ -73.56867130036207,
+ 45.51097461024037
+ ],
+ [
+ -73.56872946311607,
+ 45.51100175357836
+ ],
+ [
+ -73.56877834756453,
+ 45.51094950746409
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56877651924282,
+ 45.510847923643055
+ ],
+ [
+ -73.56877737090079,
+ 45.510848344525776
+ ],
+ [
+ -73.56877747072554,
+ 45.510848344525776
+ ],
+ [
+ -73.5688129714633,
+ 45.510820745231506
+ ],
+ [
+ -73.56886666638539,
+ 45.51085511462214
+ ],
+ [
+ -73.56887917145843,
+ 45.51084174979721
+ ],
+ [
+ -73.56897159388579,
+ 45.510739616490405
+ ],
+ [
+ -73.56890767097408,
+ 45.51071084448019
+ ],
+ [
+ -73.56890497480659,
+ 45.510709632194065
+ ],
+ [
+ -73.56882128569562,
+ 45.51080074071191
+ ],
+ [
+ -73.56882020650917,
+ 45.51080025777597
+ ],
+ [
+ -73.56877651924282,
+ 45.510847923643055
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":406,
+ "ID_UEV":"01001185",
+ "CIVIQUE_DE":" 2085",
+ "CIVIQUE_FI":" 2087",
+ "NOM_RUE":"rue Saint-Urbain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-42-2015-4-000-0000",
+ "SUPERFICIE":244,
+ "SUPERFIC_1":213,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000799353270406,
+ "OBJECTID":83865,
+ "Join_Count":2,
+ "TARGET_FID":83865,
+ "feature_id":"6376b293-efd4-49f8-bd6f-43fd71107bb9",
+ "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.5,
+ "heightmax":6.08,
+ "elevmin":34.83,
+ "elevmax":35.78,
+ "bldgarea":115.67,
+ "comment":" ",
+ "OBJECTID_2":83865,
+ "Shape_Le_1":0.000799353270406,
+ "Shape_Ar_1":1.51052670967e-08,
+ "OBJECTID_3":83865,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83864,
+ "g_objectid":"943035",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160596",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994142240730000000",
+ "g_sup_tota":"230.2",
+ "g_geometry":"0.000802643",
+ "g_geomet_1":"2.65093e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000799353270406,
+ "Shape_Area":1.51052670967e-08,
+ "Shape_Le_3":0.000799350855527,
+ "Shape_Ar_2":1.51052670967e-08,
+ "building_height":1.79
+ }
+ },
+ {
+ "type":"Feature",
+ "id":407,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55689792651994,
+ 45.52620518217371
+ ],
+ [
+ -73.55695596786546,
+ 45.52623304766731
+ ],
+ [
+ -73.55707726842304,
+ 45.52629124819285
+ ],
+ [
+ -73.557081468257,
+ 45.52628694763482
+ ],
+ [
+ -73.55716166799843,
+ 45.526203847579794
+ ],
+ [
+ -73.55698080893903,
+ 45.526117625078626
+ ],
+ [
+ -73.55689792651994,
+ 45.52620518217371
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":407,
+ "ID_UEV":"01034629",
+ "CIVIQUE_DE":" 1860",
+ "CIVIQUE_FI":" 1880",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-39-4220-0-000-0000",
+ "SUPERFICIE":431,
+ "SUPERFIC_1":559,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000641349171877,
+ "OBJECTID":83870,
+ "Join_Count":1,
+ "TARGET_FID":83870,
+ "feature_id":"0b0ead64-89ec-4fed-b049-4b2ff378f5a9",
+ "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.53,
+ "heightmax":33.86,
+ "elevmin":23.58,
+ "elevmax":24.22,
+ "bldgarea":399.21,
+ "comment":" ",
+ "OBJECTID_2":83870,
+ "Shape_Le_1":0.000641349171877,
+ "Shape_Ar_1":2.29633074855e-08,
+ "OBJECTID_3":83870,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83869,
+ "g_objectid":"941265",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425238",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004239571090000000",
+ "g_sup_tota":"420.1",
+ "g_geometry":"0.000904832",
+ "g_geomet_1":"4.82658e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000641349171877,
+ "Shape_Area":2.29633074855e-08,
+ "Shape_Le_3":0.000641348744668,
+ "Shape_Ar_2":2.29633074855e-08,
+ "building_height":15.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":408,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55698080893903,
+ 45.526117625078626
+ ],
+ [
+ -73.55680046788913,
+ 45.52603164809238
+ ],
+ [
+ -73.55679746775078,
+ 45.52603484788022
+ ],
+ [
+ -73.55671516809238,
+ 45.526117447912185
+ ],
+ [
+ -73.55671976812465,
+ 45.526119647653914
+ ],
+ [
+ -73.55689792651994,
+ 45.52620518217371
+ ],
+ [
+ -73.55698080893903,
+ 45.526117625078626
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":408,
+ "ID_UEV":"01034630",
+ "CIVIQUE_DE":" 1836",
+ "CIVIQUE_FI":" 1856",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-39-5710-9-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":591,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000644066004866,
+ "OBJECTID":83871,
+ "Join_Count":1,
+ "TARGET_FID":83871,
+ "feature_id":"0b0ead64-89ec-4fed-b049-4b2ff378f5a9",
+ "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.53,
+ "heightmax":33.86,
+ "elevmin":23.58,
+ "elevmax":24.22,
+ "bldgarea":399.21,
+ "comment":" ",
+ "OBJECTID_2":83871,
+ "Shape_Le_1":0.000644066004866,
+ "Shape_Ar_1":2.30317132195e-08,
+ "OBJECTID_3":83871,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83870,
+ "g_objectid":"941265",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425238",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004239571090000000",
+ "g_sup_tota":"420.1",
+ "g_geometry":"0.000904832",
+ "g_geomet_1":"4.82658e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000644066004866,
+ "Shape_Area":2.30317132195e-08,
+ "Shape_Le_3":0.00064406593401,
+ "Shape_Ar_2":2.30317132195e-08,
+ "building_height":15.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":409,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57795058437381,
+ 45.4991972209253
+ ],
+ [
+ -73.57810852870747,
+ 45.49927314169243
+ ],
+ [
+ -73.57835793049594,
+ 45.499021178634784
+ ],
+ [
+ -73.5782033730091,
+ 45.498946842473096
+ ],
+ [
+ -73.57820167329044,
+ 45.498948642915835
+ ],
+ [
+ -73.5781702734612,
+ 45.49898854313705
+ ],
+ [
+ -73.5781587252668,
+ 45.49898406990919
+ ],
+ [
+ -73.57795058437381,
+ 45.4991972209253
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":409,
+ "ID_UEV":"01036319",
+ "CIVIQUE_DE":" 2160",
+ "CIVIQUE_FI":" 2170",
+ "NOM_RUE":"rue de la Montagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1949,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-69-9012-3-000-0000",
+ "SUPERFICIE":536,
+ "SUPERFIC_1":3721,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00106482433684,
+ "OBJECTID":83875,
+ "Join_Count":1,
+ "TARGET_FID":83875,
+ "feature_id":"5c1c550a-8cc0-47a6-aaca-d3697a482c59",
+ "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.98,
+ "heightmax":89.76,
+ "elevmin":44.06,
+ "elevmax":47.94,
+ "bldgarea":3095.55,
+ "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_2":83875,
+ "Shape_Le_1":0.00106482433684,
+ "Shape_Ar_1":5.86850339752e-08,
+ "OBJECTID_3":83875,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83874,
+ "g_objectid":"938198",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1341026",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983979000630000000",
+ "g_sup_tota":"267.1",
+ "g_geometry":"0.000905617",
+ "g_geomet_1":"3.0761e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00106482433684,
+ "Shape_Area":5.86850339752e-08,
+ "Shape_Le_3":0.00106482513715,
+ "Shape_Ar_2":5.86850339752e-08,
+ "building_height":43.89
+ }
+ },
+ {
+ "type":"Feature",
+ "id":410,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56297064540081,
+ 45.50535447787715
+ ],
+ [
+ -73.56297566811443,
+ 45.50535674506803
+ ],
+ [
+ -73.56299536776386,
+ 45.50533524497587
+ ],
+ [
+ -73.56315464849008,
+ 45.50540717095447
+ ],
+ [
+ -73.56323695174576,
+ 45.50532196019061
+ ],
+ [
+ -73.56307502791205,
+ 45.50524602773229
+ ],
+ [
+ -73.56297064540081,
+ 45.50535447787715
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":410,
+ "ID_UEV":"01000512",
+ "CIVIQUE_DE":" 1087",
+ "CIVIQUE_FI":" 1093",
+ "NOM_RUE":"rue Anderson (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":14,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-86-6906-9-000-0000",
+ "SUPERFICIE":315,
+ "SUPERFIC_1":493,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000657273973994,
+ "OBJECTID":83876,
+ "Join_Count":1,
+ "TARGET_FID":83876,
+ "feature_id":"2063aa5e-74bf-441d-bf47-6e6c74b73192",
+ "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.81,
+ "heightmax":18.18,
+ "elevmin":19.2,
+ "elevmax":23.07,
+ "bldgarea":1092.91,
+ "comment":" ",
+ "OBJECTID_2":83876,
+ "Shape_Le_1":0.000657273973994,
+ "Shape_Ar_1":2.04067938593e-08,
+ "OBJECTID_3":83876,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83875,
+ "g_objectid":"939449",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179477",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"14",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994086690690000000",
+ "g_sup_tota":"315.4",
+ "g_geometry":"0.000786712",
+ "g_geomet_1":"3.63633e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000657273973994,
+ "Shape_Area":2.04067938593e-08,
+ "Shape_Le_3":0.000657273398249,
+ "Shape_Ar_2":2.04067938593e-08,
+ "building_height":5.6850000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":411,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56243115829317,
+ 45.50540411146087
+ ],
+ [
+ -73.56249505152725,
+ 45.505434076871445
+ ],
+ [
+ -73.56257056670013,
+ 45.5053570418443
+ ],
+ [
+ -73.56250103201886,
+ 45.505324842517766
+ ],
+ [
+ -73.56243115829317,
+ 45.50540411146087
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":411,
+ "ID_UEV":"01000524",
+ "CIVIQUE_DE":" 1074",
+ "CIVIQUE_FI":" 1076",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-96-1304-1-000-0000",
+ "SUPERFICIE":128,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000360743174648,
+ "OBJECTID":83877,
+ "Join_Count":1,
+ "TARGET_FID":83877,
+ "feature_id":"24842e85-d082-4395-8441-bcc94726f0fa",
+ "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.63,
+ "heightmax":25.42,
+ "elevmin":17.8,
+ "elevmax":22.98,
+ "bldgarea":2050.27,
+ "comment":" ",
+ "OBJECTID_2":83877,
+ "Shape_Le_1":0.000360743174648,
+ "Shape_Ar_1":7.47333852065e-09,
+ "OBJECTID_3":83877,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83876,
+ "g_objectid":"939457",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179487",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994096080820000000",
+ "g_sup_tota":"116.6",
+ "g_geometry":"0.000542588",
+ "g_geomet_1":"1.34772e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000360743174648,
+ "Shape_Area":7.47333852065e-09,
+ "Shape_Le_3":0.000360742625281,
+ "Shape_Ar_2":7.47333852065e-09,
+ "building_height":12.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":412,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5567774191644,
+ 45.50130143756159
+ ],
+ [
+ -73.55670457587732,
+ 45.501383812763045
+ ],
+ [
+ -73.55691122389571,
+ 45.5014816769881
+ ],
+ [
+ -73.55698689105402,
+ 45.50139853376562
+ ],
+ [
+ -73.5567774191644,
+ 45.50130143756159
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":412,
+ "ID_UEV":"01000280",
+ "CIVIQUE_DE":" 350",
+ "CIVIQUE_FI":" 352",
+ "NOM_RUE":"rue Le Moyne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-31-5764-7-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":1254,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000681913560139,
+ "OBJECTID":83888,
+ "Join_Count":1,
+ "TARGET_FID":83888,
+ "feature_id":"b1687429-bb54-469f-ba3f-2d9124402e3d",
+ "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.93,
+ "heightmax":29.6,
+ "elevmin":12.78,
+ "elevmax":15.03,
+ "bldgarea":4189.6,
+ "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_2":83888,
+ "Shape_Le_1":0.000681913560139,
+ "Shape_Ar_1":2.44572149464e-08,
+ "OBJECTID_3":83888,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83887,
+ "g_objectid":"939491",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179919",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004031525640000000",
+ "g_sup_tota":"158.3",
+ "g_geometry":"0.000628361",
+ "g_geomet_1":"1.83144e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000681913560139,
+ "Shape_Area":2.44572149464e-08,
+ "Shape_Le_3":0.000681914270935,
+ "Shape_Ar_2":2.44572149464e-08,
+ "building_height":14.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":413,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55909304123271,
+ 45.52541306021485
+ ],
+ [
+ -73.55946290271264,
+ 45.52558474618938
+ ],
+ [
+ -73.55948502153836,
+ 45.52555803542529
+ ],
+ [
+ -73.5595923700137,
+ 45.52539019675047
+ ],
+ [
+ -73.55941766771303,
+ 45.525318747412555
+ ],
+ [
+ -73.55924409226289,
+ 45.525247753131595
+ ],
+ [
+ -73.5591301904278,
+ 45.52536822181628
+ ],
+ [
+ -73.55909304123271,
+ 45.52541306021485
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":413,
+ "ID_UEV":"01035458",
+ "CIVIQUE_DE":" 1676",
+ "CIVIQUE_FI":" 1690",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1946,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-18-6333-3-000-0000",
+ "SUPERFICIE":806,
+ "SUPERFIC_1":1886,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00124197883742,
+ "OBJECTID":83898,
+ "Join_Count":1,
+ "TARGET_FID":83898,
+ "feature_id":"8c51b6ec-5f44-4e22-ae5f-33b2db778a62",
+ "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.64,
+ "heightmax":41.16,
+ "elevmin":25.29,
+ "elevmax":26.69,
+ "bldgarea":1402.71,
+ "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_2":83898,
+ "Shape_Le_1":0.00124197883742,
+ "Shape_Ar_1":8.73743614656e-08,
+ "OBJECTID_3":83898,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83897,
+ "g_objectid":"938281",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567203",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004218633330000000",
+ "g_sup_tota":"805.7",
+ "g_geometry":"0.00127403",
+ "g_geomet_1":"9.13386e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00124197883742,
+ "Shape_Area":8.73743614656e-08,
+ "Shape_Le_3":0.00124197862746,
+ "Shape_Ar_2":8.73743614656e-08,
+ "building_height":19.259999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":414,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55949227906727,
+ 45.525099976532985
+ ],
+ [
+ -73.55948206816475,
+ 45.52511004804058
+ ],
+ [
+ -73.55942716815113,
+ 45.52508254767173
+ ],
+ [
+ -73.55942716815113,
+ 45.52508264749648
+ ],
+ [
+ -73.5593171684744,
+ 45.52519204822474
+ ],
+ [
+ -73.55928416785191,
+ 45.52522484829841
+ ],
+ [
+ -73.55943516852005,
+ 45.52529974743569
+ ],
+ [
+ -73.5594352683448,
+ 45.52529984815976
+ ],
+ [
+ -73.55945896817869,
+ 45.5252674482844
+ ],
+ [
+ -73.55962616923416,
+ 45.52532784765234
+ ],
+ [
+ -73.55967496015313,
+ 45.52526106759449
+ ],
+ [
+ -73.55971493771605,
+ 45.525198561115
+ ],
+ [
+ -73.55949227906727,
+ 45.525099976532985
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":414,
+ "ID_UEV":"01035459",
+ "CIVIQUE_DE":" 1662",
+ "CIVIQUE_FI":" 1668",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1917,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-18-5112-2-000-0000",
+ "SUPERFICIE":645,
+ "SUPERFIC_1":1031,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00106453859378,
+ "OBJECTID":83899,
+ "Join_Count":1,
+ "TARGET_FID":83899,
+ "feature_id":"680b0885-1356-497a-a047-d837ff88eff4",
+ "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":38.21,
+ "elevmin":25.57,
+ "elevmax":26.75,
+ "bldgarea":875.49,
+ "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_2":83899,
+ "Shape_Le_1":0.00106453859378,
+ "Shape_Ar_1":5.80987099091e-08,
+ "OBJECTID_3":83899,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83898,
+ "g_objectid":"945114",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1567172",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6299",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004218511220000000",
+ "g_sup_tota":"644.8",
+ "g_geometry":"0.00116602",
+ "g_geomet_1":"7.49926e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00106453859378,
+ "Shape_Area":5.80987099091e-08,
+ "Shape_Le_3":0.00106453914357,
+ "Shape_Ar_2":5.80987099091e-08,
+ "building_height":17.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":415,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55965105977043,
+ 45.519221783708645
+ ],
+ [
+ -73.55966386791502,
+ 45.519227747113135
+ ],
+ [
+ -73.55971937047441,
+ 45.519253582836875
+ ],
+ [
+ -73.55982226101038,
+ 45.519141313271284
+ ],
+ [
+ -73.55976456770249,
+ 45.51910954651865
+ ],
+ [
+ -73.55976176811295,
+ 45.51911194680919
+ ],
+ [
+ -73.55974136789166,
+ 45.51913204665692
+ ],
+ [
+ -73.55973583526243,
+ 45.51912928124163
+ ],
+ [
+ -73.55965105977043,
+ 45.519221783708645
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":415,
+ "ID_UEV":"01040171",
+ "CIVIQUE_DE":" 1684",
+ "CIVIQUE_FI":" 1688",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-3139-2-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000457480992987,
+ "OBJECTID":83904,
+ "Join_Count":1,
+ "TARGET_FID":83904,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":83904,
+ "Shape_Le_1":0.000457480992987,
+ "Shape_Ar_1":1.09128125339e-08,
+ "OBJECTID_3":83904,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83903,
+ "g_objectid":"941684",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566348",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211313920000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000564096",
+ "g_geomet_1":"1.48399e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000457480992987,
+ "Shape_Area":1.09128125339e-08,
+ "Shape_Le_3":0.0004574809589,
+ "Shape_Ar_2":1.09128125339e-08,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":416,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56360179770664,
+ 45.52451902708173
+ ],
+ [
+ -73.56355706992468,
+ 45.524495248107506
+ ],
+ [
+ -73.56355237006767,
+ 45.52449314819053
+ ],
+ [
+ -73.56351327024308,
+ 45.52453844794132
+ ],
+ [
+ -73.56345077005884,
+ 45.524511747969086
+ ],
+ [
+ -73.56348487055217,
+ 45.52447214812143
+ ],
+ [
+ -73.56342316986525,
+ 45.5244458474482
+ ],
+ [
+ -73.56335117014223,
+ 45.524529247876785
+ ],
+ [
+ -73.56334766998083,
+ 45.524533248061246
+ ],
+ [
+ -73.56329646977811,
+ 45.52459134786271
+ ],
+ [
+ -73.56330017048832,
+ 45.52459294775663
+ ],
+ [
+ -73.56342316986525,
+ 45.524652248153025
+ ],
+ [
+ -73.56346177056611,
+ 45.52467084793158
+ ],
+ [
+ -73.56346463850412,
+ 45.52467195229905
+ ],
+ [
+ -73.56360179770664,
+ 45.52451902708173
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56374913093948,
+ 45.52432363317942
+ ],
+ [
+ -73.56374407045433,
+ 45.52433274780836
+ ],
+ [
+ -73.5637428698594,
+ 45.524334447527025
+ ],
+ [
+ -73.56374310997839,
+ 45.524334533861946
+ ],
+ [
+ -73.56374916511372,
+ 45.52432364756858
+ ],
+ [
+ -73.56374913093948,
+ 45.52432363317942
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":416,
+ "ID_UEV":"01108920",
+ "CIVIQUE_DE":" 2202",
+ "CIVIQUE_FI":" 2214",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-87-3730-0-000-0000",
+ "SUPERFICIE":739,
+ "SUPERFIC_1":740,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000913053803494,
+ "OBJECTID":83914,
+ "Join_Count":2,
+ "TARGET_FID":83914,
+ "feature_id":"5d4ddff5-5724-4711-8582-47c39dd19358",
+ "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.35,
+ "heightmax":12.87,
+ "elevmin":30.15,
+ "elevmax":38.11,
+ "bldgarea":986.87,
+ "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_2":83914,
+ "Shape_Le_1":0.000913053803494,
+ "Shape_Ar_1":3.26202648721e-08,
+ "OBJECTID_3":83914,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83913,
+ "g_objectid":"942419",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1739054",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994287220050000000",
+ "g_sup_tota":"212.8",
+ "g_geometry":"0.000635464",
+ "g_geomet_1":"2.44919e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000913053803494,
+ "Shape_Area":3.26202648721e-08,
+ "Shape_Le_3":0.000913055229472,
+ "Shape_Ar_2":3.26202648721e-08,
+ "building_height":5.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":417,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57281253809,
+ 45.49928838789908
+ ],
+ [
+ -73.57281946376908,
+ 45.49928149189763
+ ],
+ [
+ -73.57294117531683,
+ 45.49933974818113
+ ],
+ [
+ -73.5732693604145,
+ 45.49949905768566
+ ],
+ [
+ -73.5734027451624,
+ 45.49936318451365
+ ],
+ [
+ -73.5734250708322,
+ 45.49933984260994
+ ],
+ [
+ -73.57341737083684,
+ 45.49933624262379
+ ],
+ [
+ -73.57293727135983,
+ 45.499099642684655
+ ],
+ [
+ -73.5728934707789,
+ 45.499078042767756
+ ],
+ [
+ -73.57288887074664,
+ 45.49907584302603
+ ],
+ [
+ -73.57272397105626,
+ 45.499246143145285
+ ],
+ [
+ -73.57281253809,
+ 45.49928838789908
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":417,
+ "ID_UEV":"01039192",
+ "CIVIQUE_DE":" 1134",
+ "CIVIQUE_FI":" 1140",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":14,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1962,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-09-9329-5-000-0000",
+ "SUPERFICIE":1289,
+ "SUPERFIC_1":14921,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0016650676503,
+ "OBJECTID":83926,
+ "Join_Count":1,
+ "TARGET_FID":83926,
+ "feature_id":"b785841f-86db-4c3e-9d29-fd04c448a308",
+ "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.51,
+ "heightmax":64.13,
+ "elevmin":36.16,
+ "elevmax":37.65,
+ "bldgarea":2960.95,
+ "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_2":83926,
+ "Shape_Le_1":0.0016650676503,
+ "Shape_Ar_1":1.28414712872e-07,
+ "OBJECTID_3":83926,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83925,
+ "g_objectid":"938383",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"5636739",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993909945090000000",
+ "g_sup_tota":"615.1",
+ "g_geometry":"0.00131825",
+ "g_geomet_1":"7.13201e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0016650676503,
+ "Shape_Area":1.28414712872e-07,
+ "Shape_Le_3":0.00166506725093,
+ "Shape_Ar_2":1.28414712872e-07,
+ "building_height":30.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":418,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55950114818128,
+ 45.528143608790806
+ ],
+ [
+ -73.55956639219708,
+ 45.52817415966003
+ ],
+ [
+ -73.55965437287286,
+ 45.528081394590984
+ ],
+ [
+ -73.55962496953856,
+ 45.528068249200636
+ ],
+ [
+ -73.55965886948309,
+ 45.52803074926996
+ ],
+ [
+ -73.55962280037379,
+ 45.52801462802296
+ ],
+ [
+ -73.55950114818128,
+ 45.528143608790806
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":418,
+ "ID_UEV":"01034990",
+ "CIVIQUE_DE":" 2094",
+ "CIVIQUE_FI":" 2096",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-4429-4-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":141,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000499462339834,
+ "OBJECTID":83927,
+ "Join_Count":1,
+ "TARGET_FID":83927,
+ "feature_id":"79707d52-4887-4528-bf65-1f81c2073eda",
+ "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.48,
+ "heightmax":35.93,
+ "elevmin":24.91,
+ "elevmax":26.52,
+ "bldgarea":1051.26,
+ "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_2":83927,
+ "Shape_Le_1":0.000499462339834,
+ "Shape_Ar_1":1.0642927289e-08,
+ "OBJECTID_3":83927,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83926,
+ "g_objectid":"942975",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885469",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311442940000000",
+ "g_sup_tota":"154.2",
+ "g_geometry":"0.000666418",
+ "g_geomet_1":"1.79267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000499462339834,
+ "Shape_Area":1.0642927289e-08,
+ "Shape_Le_3":0.000499461344309,
+ "Shape_Ar_2":1.0642927289e-08,
+ "building_height":16.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":419,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56386463446715,
+ 45.52173678097795
+ ],
+ [
+ -73.5639961567191,
+ 45.52179753108149
+ ],
+ [
+ -73.56401276989526,
+ 45.52180394684497
+ ],
+ [
+ -73.56407397055914,
+ 45.52182744702935
+ ],
+ [
+ -73.56407052705502,
+ 45.52183188158636
+ ],
+ [
+ -73.56411380423053,
+ 45.52185187081748
+ ],
+ [
+ -73.5641153699502,
+ 45.52185244728291
+ ],
+ [
+ -73.56411528721257,
+ 45.52185255610088
+ ],
+ [
+ -73.56415473147752,
+ 45.521870774566885
+ ],
+ [
+ -73.56419146968243,
+ 45.521880247126
+ ],
+ [
+ -73.56418832025662,
+ 45.521886289670825
+ ],
+ [
+ -73.56422276608963,
+ 45.52190219957714
+ ],
+ [
+ -73.5642985699449,
+ 45.52182064725536
+ ],
+ [
+ -73.56425777040162,
+ 45.521801846927985
+ ],
+ [
+ -73.5639396379258,
+ 45.52165584469177
+ ],
+ [
+ -73.56386463446715,
+ 45.52173678097795
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":419,
+ "ID_UEV":"01040294",
+ "CIVIQUE_DE":" 2130",
+ "CIVIQUE_FI":" 2150",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":18,
+ "ANNEE_CONS":1974,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-74-8928-3-000-0000",
+ "SUPERFICIE":749,
+ "SUPERFIC_1":1073,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00102612426695,
+ "OBJECTID":83935,
+ "Join_Count":1,
+ "TARGET_FID":83935,
+ "feature_id":"388af806-7bd5-42f4-9ae9-e434f2327f0c",
+ "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.21,
+ "heightmax":13.74,
+ "elevmin":26.71,
+ "elevmax":29.18,
+ "bldgarea":1424.32,
+ "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_2":83935,
+ "Shape_Le_1":0.00102612426695,
+ "Shape_Ar_1":4.12418433576e-08,
+ "OBJECTID_3":83935,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83934,
+ "g_objectid":"941516",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565337",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"15",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994284210790000000",
+ "g_sup_tota":"737.7",
+ "g_geometry":"0.00131496",
+ "g_geomet_1":"8.62616e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00102612426695,
+ "Shape_Area":4.12418433576e-08,
+ "Shape_Le_3":0.00102612223192,
+ "Shape_Ar_2":4.12418433576e-08,
+ "building_height":5.765000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":420,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56502319508623,
+ 45.518504513223
+ ],
+ [
+ -73.56502986985446,
+ 45.51850744681152
+ ],
+ [
+ -73.56518462069553,
+ 45.518575244901925
+ ],
+ [
+ -73.56528315311687,
+ 45.51846859070319
+ ],
+ [
+ -73.56528407042535,
+ 45.5184673469408
+ ],
+ [
+ -73.5652625703332,
+ 45.51845894727289
+ ],
+ [
+ -73.56525897034705,
+ 45.51846294655803
+ ],
+ [
+ -73.5651814703704,
+ 45.51842724707009
+ ],
+ [
+ -73.56518137054566,
+ 45.51842724707009
+ ],
+ [
+ -73.56511947650448,
+ 45.51840187179924
+ ],
+ [
+ -73.56502319508623,
+ 45.518504513223
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":420,
+ "ID_UEV":"01003075",
+ "CIVIQUE_DE":" 2047",
+ "CIVIQUE_FI":" 2049",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-1069-1-000-0000",
+ "SUPERFICIE":378,
+ "SUPERFIC_1":538,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000644505832046,
+ "OBJECTID":83936,
+ "Join_Count":1,
+ "TARGET_FID":83936,
+ "feature_id":"456c5cae-dfc9-4579-8f4a-f46828926cd4",
+ "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.36,
+ "heightmax":16.55,
+ "elevmin":26.56,
+ "elevmax":33.23,
+ "bldgarea":1108.56,
+ "comment":" ",
+ "OBJECTID_2":83936,
+ "Shape_Le_1":0.000644505832046,
+ "Shape_Ar_1":2.35586186129e-08,
+ "OBJECTID_3":83936,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83935,
+ "g_objectid":"944745",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1511",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270106910000000",
+ "g_sup_tota":"377.6",
+ "g_geometry":"0.000886681",
+ "g_geomet_1":"4.45603e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000644505832046,
+ "Shape_Area":2.35586186129e-08,
+ "Shape_Le_3":0.000644505518512,
+ "Shape_Ar_2":2.35586186129e-08,
+ "building_height":7.595000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":421,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5574320662587,
+ 45.49914864404498
+ ],
+ [
+ -73.55727608784302,
+ 45.49930100808535
+ ],
+ [
+ -73.55774188989814,
+ 45.49952606342738
+ ],
+ [
+ -73.55791204072995,
+ 45.49938221776543
+ ],
+ [
+ -73.55774376588393,
+ 45.49929674350021
+ ],
+ [
+ -73.55743886603268,
+ 45.49914194409574
+ ],
+ [
+ -73.5574320662587,
+ 45.49914864404498
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":421,
+ "ID_UEV":"01004222",
+ "CIVIQUE_DE":" 636",
+ "CIVIQUE_FI":" 640",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1907,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0039-39-1028-6-000-0000",
+ "SUPERFICIE":1610,
+ "SUPERFIC_1":5889,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00149840536461,
+ "OBJECTID":83938,
+ "Join_Count":1,
+ "TARGET_FID":83938,
+ "feature_id":"e2feb324-4de8-4486-9541-521f1517eb41",
+ "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.35,
+ "heightmax":28.77,
+ "elevmin":13.52,
+ "elevmax":14.57,
+ "bldgarea":1014.85,
+ "comment":" ",
+ "OBJECTID_2":83938,
+ "Shape_Le_1":0.00149840536461,
+ "Shape_Ar_1":1.09838381266e-07,
+ "OBJECTID_3":83938,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83937,
+ "g_objectid":"944916",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1179809",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"55",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023003939102860000000",
+ "g_sup_tota":"1609.7",
+ "g_geometry":"0.00220549",
+ "g_geomet_1":"1.86484e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00149840536461,
+ "Shape_Area":1.09838381266e-07,
+ "Shape_Le_3":0.00149840449086,
+ "Shape_Ar_2":1.09838381266e-07,
+ "building_height":13.709999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":422,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5602074685217,
+ 45.51993454679219
+ ],
+ [
+ -73.56013308469595,
+ 45.5200106582156
+ ],
+ [
+ -73.56041368576483,
+ 45.52014049513804
+ ],
+ [
+ -73.56048796796719,
+ 45.52006504651498
+ ],
+ [
+ -73.56045616793965,
+ 45.520049646524264
+ ],
+ [
+ -73.56021086795903,
+ 45.51993094680604
+ ],
+ [
+ -73.5602074685217,
+ 45.51993454679219
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":422,
+ "ID_UEV":"01040273",
+ "CIVIQUE_DE":" 1750",
+ "CIVIQUE_FI":" 1770",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-8435-8-000-0000",
+ "SUPERFICIE":694,
+ "SUPERFIC_1":588,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000834278981616,
+ "OBJECTID":83942,
+ "Join_Count":1,
+ "TARGET_FID":83942,
+ "feature_id":"a6848ef2-9734-4680-bcc9-ca5fedb1a3ec",
+ "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":3,
+ "heightmax":8.23,
+ "elevmin":24.73,
+ "elevmax":25.95,
+ "bldgarea":290.77,
+ "comment":" ",
+ "OBJECTID_2":83942,
+ "Shape_Le_1":0.000834278981616,
+ "Shape_Ar_1":3.16639566457e-08,
+ "OBJECTID_3":83942,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83941,
+ "g_objectid":"941899",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566816",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004202843580000000",
+ "g_sup_tota":"694",
+ "g_geometry":"0.00129046",
+ "g_geomet_1":"8.00321e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000834278981616,
+ "Shape_Area":3.16639566457e-08,
+ "Shape_Le_3":0.000834279961635,
+ "Shape_Ar_2":3.16639566457e-08,
+ "building_height":2.615
+ }
+ },
+ {
+ "type":"Feature",
+ "id":423,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56580106998524,
+ 45.517245246521206
+ ],
+ [
+ -73.56593677048741,
+ 45.51730374652098
+ ],
+ [
+ -73.56595907007687,
+ 45.51728094690847
+ ],
+ [
+ -73.56599487028888,
+ 45.5172446466734
+ ],
+ [
+ -73.56605117054693,
+ 45.51727214704225
+ ],
+ [
+ -73.56614517038516,
+ 45.517176846784345
+ ],
+ [
+ -73.56613997050508,
+ 45.517174446493804
+ ],
+ [
+ -73.56607716994728,
+ 45.51714614662766
+ ],
+ [
+ -73.56630057053674,
+ 45.51690094557247
+ ],
+ [
+ -73.5659855703996,
+ 45.516759145868185
+ ],
+ [
+ -73.56583577032639,
+ 45.516923445710745
+ ],
+ [
+ -73.56564106980137,
+ 45.51713724693669
+ ],
+ [
+ -73.5658120704925,
+ 45.517214047240785
+ ],
+ [
+ -73.56587367045537,
+ 45.517161747167194
+ ],
+ [
+ -73.56587387010487,
+ 45.51716184699194
+ ],
+ [
+ -73.56580106998524,
+ 45.517245246521206
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":423,
+ "ID_UEV":"01002941",
+ "CIVIQUE_DE":" 2150",
+ "CIVIQUE_FI":" 2150",
+ "NOM_RUE":"rue Berri (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1969,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Transport et gestion d'\u00c3\u00a9lectricit\u00c3\u00a9 en bloc",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-69-3901-7-000-0000",
+ "SUPERFICIE":4844,
+ "SUPERFIC_1":1434,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00206962599052,
+ "OBJECTID":83944,
+ "Join_Count":1,
+ "TARGET_FID":83944,
+ "feature_id":"c933f113-3ac4-44cc-a5e1-44ef45018093",
+ "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.56,
+ "heightmax":22.57,
+ "elevmin":28.42,
+ "elevmax":35.97,
+ "bldgarea":1574.25,
+ "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_2":83944,
+ "Shape_Le_1":0.00206962599052,
+ "Shape_Ar_1":1.81332590441e-07,
+ "OBJECTID_3":83944,
+ "Join_Cou_1":1,
+ "TARGET_F_1":83943,
+ "g_objectid":"945767",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"2161374",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4821",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994169390170000000",
+ "g_sup_tota":"4843.8",
+ "g_geometry":"0.00310733",
+ "g_geomet_1":"5.57003e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00206962599052,
+ "Shape_Area":1.81332590441e-07,
+ "Shape_Le_3":0.00206962813563,
+ "Shape_Ar_2":1.81332590441e-07,
+ "building_height":11.005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":424,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56101407676007,
+ 45.52028270403386
+ ],
+ [
+ -73.56087156928933,
+ 45.520240046491246
+ ],
+ [
+ -73.56087006922016,
+ 45.52023954646819
+ ],
+ [
+ -73.56085636894811,
+ 45.52023234649589
+ ],
+ [
+ -73.56074706894393,
+ 45.52017594641309
+ ],
+ [
+ -73.56074666874561,
+ 45.5201757467636
+ ],
+ [
+ -73.56073756940515,
+ 45.52018654672205
+ ],
+ [
+ -73.5607164695113,
+ 45.520177846680575
+ ],
+ [
+ -73.5607162689625,
+ 45.52017794650532
+ ],
+ [
+ -73.56065223183687,
+ 45.520250871630715
+ ],
+ [
+ -73.56092728318941,
+ 45.520378139190065
+ ],
+ [
+ -73.56101407676007,
+ 45.52028270403386
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":424,
+ "ID_UEV":"01040274",
+ "CIVIQUE_DE":" 1800",
+ "CIVIQUE_FI":" 1820",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-5156-3-000-0000",
+ "SUPERFICIE":705,
+ "SUPERFIC_1":595,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000855541826258,
+ "OBJECTID":83947,
+ "Join_Count":1,
+ "TARGET_FID":83947,
+ "feature_id":"50a5b890-e077-4dce-bb7a-30a8c78cdbf4",
+ "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.89,
+ "heightmax":11.81,
+ "elevmin":24.18,
+ "elevmax":25.11,
+ "bldgarea":596.55,
+ "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_2":83947,
+ "Shape_Le_1":0.000855541826258,
+ "Shape_Ar_1":3.2701265953e-08,
+ "OBJECTID_3":83947,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83946,
+ "g_objectid":"941892",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566807",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004202515630000000",
+ "g_sup_tota":"704.7",
+ "g_geometry":"0.00128709",
+ "g_geomet_1":"8.06274e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000855541826258,
+ "Shape_Area":3.2701265953e-08,
+ "Shape_Le_3":0.000855542270497,
+ "Shape_Ar_2":3.2701265953e-08,
+ "building_height":4.46
+ }
+ },
+ {
+ "type":"Feature",
+ "id":425,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5619018074443,
+ 45.52082903408295
+ ],
+ [
+ -73.56197972020976,
+ 45.520745753264194
+ ],
+ [
+ -73.56183266936405,
+ 45.52068564707525
+ ],
+ [
+ -73.56183946913804,
+ 45.52067754688158
+ ],
+ [
+ -73.56183406870915,
+ 45.52067554678935
+ ],
+ [
+ -73.56172626877412,
+ 45.5206357472922
+ ],
+ [
+ -73.56172206894017,
+ 45.52063424722303
+ ],
+ [
+ -73.56167596879277,
+ 45.52061994710317
+ ],
+ [
+ -73.5616857687051,
+ 45.52060444728771
+ ],
+ [
+ -73.56168546923087,
+ 45.52060434656364
+ ],
+ [
+ -73.56161886903742,
+ 45.520582646821985
+ ],
+ [
+ -73.56153956951736,
+ 45.52055674724638
+ ],
+ [
+ -73.56153956951736,
+ 45.520556847071134
+ ],
+ [
+ -73.56147178311814,
+ 45.52063007796602
+ ],
+ [
+ -73.5619018074443,
+ 45.52082903408295
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56145604048572,
+ 45.52042952375381
+ ],
+ [
+ -73.56146299854039,
+ 45.52043170191181
+ ],
+ [
+ -73.56145670328607,
+ 45.520428815987366
+ ],
+ [
+ -73.56145604048572,
+ 45.52042952375381
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":425,
+ "ID_UEV":"01040278",
+ "CIVIQUE_DE":" 1900",
+ "CIVIQUE_FI":" 1920",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-93-8102-5-000-0000",
+ "SUPERFICIE":975,
+ "SUPERFIC_1":890,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00121790084249,
+ "OBJECTID":83948,
+ "Join_Count":1,
+ "TARGET_FID":83948,
+ "feature_id":"cc53003b-a4db-481d-ad17-8c51ba839fa3",
+ "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.5,
+ "heightmax":15.32,
+ "elevmin":24.37,
+ "elevmax":26.24,
+ "bldgarea":2675.11,
+ "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_2":83948,
+ "Shape_Le_1":0.00121790084249,
+ "Shape_Ar_1":4.94483521539e-08,
+ "OBJECTID_3":83948,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83947,
+ "g_objectid":"941606",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565540",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994292897230000000",
+ "g_sup_tota":"234.1",
+ "g_geometry":"0.000700692",
+ "g_geomet_1":"2.67645e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00121790084249,
+ "Shape_Area":4.94483521539e-08,
+ "Shape_Le_3":0.00121790034966,
+ "Shape_Ar_2":4.94483521539e-08,
+ "building_height":6.41
+ }
+ },
+ {
+ "type":"Feature",
+ "id":426,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55514375839958,
+ 45.524734800520925
+ ],
+ [
+ -73.55515454217023,
+ 45.52473979715421
+ ],
+ [
+ -73.55520776674689,
+ 45.524763747898945
+ ],
+ [
+ -73.55522616237934,
+ 45.52477200187668
+ ],
+ [
+ -73.55534335303516,
+ 45.52464760045669
+ ],
+ [
+ -73.55527846694953,
+ 45.524618647682736
+ ],
+ [
+ -73.55526039237505,
+ 45.52461059964975
+ ],
+ [
+ -73.55514375839958,
+ 45.524734800520925
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":426,
+ "ID_UEV":"01034252",
+ "CIVIQUE_DE":" 1680",
+ "CIVIQUE_FI":" 1684",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1917,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-47-8352-0-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":326,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000522538515705,
+ "OBJECTID":83949,
+ "Join_Count":1,
+ "TARGET_FID":83949,
+ "feature_id":"7a1cccbe-d7d5-44f1-a640-325177f0d7af",
+ "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.51,
+ "heightmax":37.41,
+ "elevmin":24.39,
+ "elevmax":25.96,
+ "bldgarea":876.48,
+ "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_2":83949,
+ "Shape_Le_1":0.000522538515705,
+ "Shape_Ar_1":1.46215367092e-08,
+ "OBJECTID_3":83949,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83948,
+ "g_objectid":"942403",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729308",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004247904830000000",
+ "g_sup_tota":"151.2",
+ "g_geometry":"0.00058247",
+ "g_geomet_1":"1.73495e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000522538515705,
+ "Shape_Area":1.46215367092e-08,
+ "Shape_Le_3":0.000522538220776,
+ "Shape_Ar_2":1.46215367092e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":427,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55522616237934,
+ 45.52477200187668
+ ],
+ [
+ -73.55530136728612,
+ 45.52480574803714
+ ],
+ [
+ -73.55530146711087,
+ 45.52480574803714
+ ],
+ [
+ -73.55541696704124,
+ 45.52468054801917
+ ],
+ [
+ -73.55539186696294,
+ 45.52466924803766
+ ],
+ [
+ -73.55534335303516,
+ 45.52464760045669
+ ],
+ [
+ -73.55522616237934,
+ 45.52477200187668
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":427,
+ "ID_UEV":"01034254",
+ "CIVIQUE_DE":" 1686",
+ "CIVIQUE_FI":" 1690",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-47-7657-3-000-0000",
+ "SUPERFICIE":170,
+ "SUPERFIC_1":354,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000504426161438,
+ "OBJECTID":83952,
+ "Join_Count":1,
+ "TARGET_FID":83952,
+ "feature_id":"7a1cccbe-d7d5-44f1-a640-325177f0d7af",
+ "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.51,
+ "heightmax":37.41,
+ "elevmin":24.39,
+ "elevmax":25.96,
+ "bldgarea":876.48,
+ "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_2":83952,
+ "Shape_Le_1":0.000504426161438,
+ "Shape_Ar_1":1.31764195994e-08,
+ "OBJECTID_3":83952,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83951,
+ "g_objectid":"942401",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729305",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004247765730000000",
+ "g_sup_tota":"169.7",
+ "g_geometry":"0.000606762",
+ "g_geomet_1":"1.95834e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000504426161438,
+ "Shape_Area":1.31764195994e-08,
+ "Shape_Le_3":0.000504426236995,
+ "Shape_Ar_2":1.31764195994e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":428,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56016843254896,
+ 45.51755548025151
+ ],
+ [
+ -73.56020816819425,
+ 45.51757604684738
+ ],
+ [
+ -73.5602115685309,
+ 45.51757284705954
+ ],
+ [
+ -73.56023076815727,
+ 45.517554046732165
+ ],
+ [
+ -73.56026748567777,
+ 45.5175727067653
+ ],
+ [
+ -73.56034360879235,
+ 45.51749022094723
+ ],
+ [
+ -73.56033256781559,
+ 45.51748514697225
+ ],
+ [
+ -73.56026295579262,
+ 45.51745305556436
+ ],
+ [
+ -73.56016843254896,
+ 45.51755548025151
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":428,
+ "ID_UEV":"01039906",
+ "CIVIQUE_DE":" 1601",
+ "CIVIQUE_FI":" 1603",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-9359-6-000-0000",
+ "SUPERFICIE":145,
+ "SUPERFIC_1":223,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000457894166128,
+ "OBJECTID":83963,
+ "Join_Count":1,
+ "TARGET_FID":83963,
+ "feature_id":"39a7235b-93aa-4e44-a86b-293c0585f3d9",
+ "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":42.96,
+ "elevmin":26.47,
+ "elevmax":28.06,
+ "bldgarea":1574.35,
+ "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_2":83963,
+ "Shape_Le_1":0.000457894166128,
+ "Shape_Ar_1":1.06901502982e-08,
+ "OBJECTID_3":83963,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83962,
+ "g_objectid":"943410",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161990",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109935960000000",
+ "g_sup_tota":"145.2",
+ "g_geometry":"0.000572504",
+ "g_geomet_1":"1.66658e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000457894166128,
+ "Shape_Area":1.06901502982e-08,
+ "Shape_Le_3":0.000457893410846,
+ "Shape_Ar_2":1.06901502982e-08,
+ "building_height":21.22
+ }
+ },
+ {
+ "type":"Feature",
+ "id":429,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56025301288808,
+ 45.52376682602849
+ ],
+ [
+ -73.56054924597277,
+ 45.523905871109356
+ ],
+ [
+ -73.56059291884996,
+ 45.52383799297929
+ ],
+ [
+ -73.56039398341744,
+ 45.523745707248885
+ ],
+ [
+ -73.56038826912517,
+ 45.52375244766762
+ ],
+ [
+ -73.56029746907478,
+ 45.523714447713886
+ ],
+ [
+ -73.56025301288808,
+ 45.52376682602849
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":429,
+ "ID_UEV":"01035467",
+ "CIVIQUE_DE":" 1468",
+ "CIVIQUE_FI":" 1474",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1940,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-06-7955-7-000-0000",
+ "SUPERFICIE":216,
+ "SUPERFIC_1":541,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000803224246114,
+ "OBJECTID":83973,
+ "Join_Count":1,
+ "TARGET_FID":83973,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":83973,
+ "Shape_Le_1":0.000803224246114,
+ "Shape_Ar_1":2.45033741359e-08,
+ "OBJECTID_3":83973,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83972,
+ "g_objectid":"941932",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566872",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206795570000000",
+ "g_sup_tota":"215.5",
+ "g_geometry":"0.000812461",
+ "g_geomet_1":"2.57227e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000803224246114,
+ "Shape_Area":2.45033741359e-08,
+ "Shape_Le_3":0.000803223906732,
+ "Shape_Ar_2":2.45033741359e-08,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":430,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56068806082719,
+ 45.51714923489956
+ ],
+ [
+ -73.56069966837684,
+ 45.51715474684438
+ ],
+ [
+ -73.56069156818317,
+ 45.51716304668755
+ ],
+ [
+ -73.56069236768047,
+ 45.517162946862804
+ ],
+ [
+ -73.56072386823378,
+ 45.517177846830464
+ ],
+ [
+ -73.56076256786007,
+ 45.517139846876724
+ ],
+ [
+ -73.56079164114317,
+ 45.517154441074894
+ ],
+ [
+ -73.56086796840387,
+ 45.51707369994159
+ ],
+ [
+ -73.56079180751775,
+ 45.51703948973096
+ ],
+ [
+ -73.56068806082719,
+ 45.51714923489956
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":430,
+ "ID_UEV":"01003620",
+ "CIVIQUE_DE":" 1603",
+ "CIVIQUE_FI":" 1605",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-5314-5-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000492486547088,
+ "OBJECTID":83974,
+ "Join_Count":1,
+ "TARGET_FID":83974,
+ "feature_id":"94444282-f0f9-4262-b3e1-3b78e81d7b46",
+ "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":42.07,
+ "elevmin":25.45,
+ "elevmax":28.3,
+ "bldgarea":1813.53,
+ "comment":" ",
+ "OBJECTID_2":83974,
+ "Shape_Le_1":0.000492486547088,
+ "Shape_Ar_1":1.10068886833e-08,
+ "OBJECTID_3":83974,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83973,
+ "g_objectid":"943394",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161966",
+ "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":"66023004109591000000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.000611245",
+ "g_geomet_1":"1.76786e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000492486547088,
+ "Shape_Area":1.10068886833e-08,
+ "Shape_Le_3":0.00049248790691,
+ "Shape_Ar_2":1.10068886833e-08,
+ "building_height":20.78
+ }
+ },
+ {
+ "type":"Feature",
+ "id":431,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55787105053041,
+ 45.52386626856374
+ ],
+ [
+ -73.55784426782054,
+ 45.52384854742282
+ ],
+ [
+ -73.55784446836937,
+ 45.523847947575014
+ ],
+ [
+ -73.55790596850748,
+ 45.52376144808266
+ ],
+ [
+ -73.5578227677284,
+ 45.523732148170396
+ ],
+ [
+ -73.55780466797289,
+ 45.523757947921254
+ ],
+ [
+ -73.5577869684157,
+ 45.52375174799507
+ ],
+ [
+ -73.55778506814822,
+ 45.52375404756154
+ ],
+ [
+ -73.55776976798225,
+ 45.52377224804111
+ ],
+ [
+ -73.55778046811595,
+ 45.52377674824863
+ ],
+ [
+ -73.55770096804709,
+ 45.52387074808685
+ ],
+ [
+ -73.5577377683052,
+ 45.523886148077565
+ ],
+ [
+ -73.55773066815766,
+ 45.52389444792073
+ ],
+ [
+ -73.55772846841593,
+ 45.52389814773163
+ ],
+ [
+ -73.55781684209543,
+ 45.52392468852385
+ ],
+ [
+ -73.55787105053041,
+ 45.52386626856374
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55785978472314,
+ 45.523672660715015
+ ],
+ [
+ -73.55785626837392,
+ 45.52367644776015
+ ],
+ [
+ -73.55794806847042,
+ 45.52371864754784
+ ],
+ [
+ -73.55795139955929,
+ 45.52371506464881
+ ],
+ [
+ -73.55785978472314,
+ 45.523672660715015
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":431,
+ "ID_UEV":"01035496",
+ "CIVIQUE_DE":" 1591",
+ "CIVIQUE_FI":" 1595",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-8255-9-000-0000",
+ "SUPERFICIE":366,
+ "SUPERFIC_1":484,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0008779736774,
+ "OBJECTID":83976,
+ "Join_Count":2,
+ "TARGET_FID":83976,
+ "feature_id":"0f8a05a8-b724-4498-95ec-5873fedeff47",
+ "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.57,
+ "heightmax":35.24,
+ "elevmin":24.3,
+ "elevmax":24.89,
+ "bldgarea":704.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_2":83976,
+ "Shape_Le_1":0.0008779736774,
+ "Shape_Ar_1":2.10127036471e-08,
+ "OBJECTID_3":83976,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83975,
+ "g_objectid":"942098",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567345",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226825590000000",
+ "g_sup_tota":"365.7",
+ "g_geometry":"0.000878687",
+ "g_geomet_1":"4.21044e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0008779736774,
+ "Shape_Area":2.10127036471e-08,
+ "Shape_Le_3":0.000877974519943,
+ "Shape_Ar_2":2.10127036471e-08,
+ "building_height":16.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":432,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55950597754068,
+ 45.51733224243933
+ ],
+ [
+ -73.55965327390132,
+ 45.51740015474364
+ ],
+ [
+ -73.55969870045651,
+ 45.517350710017546
+ ],
+ [
+ -73.55967925981183,
+ 45.51734164754929
+ ],
+ [
+ -73.55978128250203,
+ 45.517235251455986
+ ],
+ [
+ -73.55964718549106,
+ 45.51717477564568
+ ],
+ [
+ -73.55950597754068,
+ 45.51733224243933
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":432,
+ "ID_UEV":"01039913",
+ "CIVIQUE_DE":" 1557",
+ "CIVIQUE_FI":" 1563",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1991,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-19-4031-5-000-0000",
+ "SUPERFICIE":266,
+ "SUPERFIC_1":453,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000756808518647,
+ "OBJECTID":83982,
+ "Join_Count":1,
+ "TARGET_FID":83982,
+ "feature_id":"39a7235b-93aa-4e44-a86b-293c0585f3d9",
+ "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":42.96,
+ "elevmin":26.47,
+ "elevmax":28.06,
+ "bldgarea":1574.35,
+ "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_2":83982,
+ "Shape_Le_1":0.000756808518647,
+ "Shape_Ar_1":3.0403605157e-08,
+ "OBJECTID_3":83982,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83981,
+ "g_objectid":"943426",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162061",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004119403150000000",
+ "g_sup_tota":"266.4",
+ "g_geometry":"0.000766075",
+ "g_geomet_1":"3.10474e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000756808518647,
+ "Shape_Area":3.0403605157e-08,
+ "Shape_Le_3":0.000756809311724,
+ "Shape_Ar_2":3.0403605157e-08,
+ "building_height":21.22
+ }
+ },
+ {
+ "type":"Feature",
+ "id":433,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55964718549106,
+ 45.51717477564568
+ ],
+ [
+ -73.55962516828873,
+ 45.51716484713029
+ ],
+ [
+ -73.55962386786905,
+ 45.51716424728248
+ ],
+ [
+ -73.55956646774014,
+ 45.517146646650716
+ ],
+ [
+ -73.55943650491261,
+ 45.51730021218534
+ ],
+ [
+ -73.55950597754068,
+ 45.51733224243933
+ ],
+ [
+ -73.55964718549106,
+ 45.51717477564568
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":433,
+ "ID_UEV":"01039914",
+ "CIVIQUE_DE":" 1551",
+ "CIVIQUE_FI":" 1553",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Auberge ou g\u00c3\u00aete touristique (H\u00c3\u00b4tel \u00c3\u00a0 caract\u00c3\u00a8re familial, d'au plus 3 \u00c3\u00a9tages en hauteur de b\u00c3\u00a2timent)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-19-4825-0-000-0000",
+ "SUPERFICIE":157,
+ "SUPERFIC_1":598,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000574808165354,
+ "OBJECTID":83983,
+ "Join_Count":1,
+ "TARGET_FID":83983,
+ "feature_id":"39a7235b-93aa-4e44-a86b-293c0585f3d9",
+ "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":42.96,
+ "elevmin":26.47,
+ "elevmax":28.06,
+ "bldgarea":1574.35,
+ "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_2":83983,
+ "Shape_Le_1":0.000574808165354,
+ "Shape_Ar_1":1.5853649552e-08,
+ "OBJECTID_3":83983,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83982,
+ "g_objectid":"943426",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162061",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004119403150000000",
+ "g_sup_tota":"266.4",
+ "g_geometry":"0.000766075",
+ "g_geomet_1":"3.10474e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000574808165354,
+ "Shape_Area":1.5853649552e-08,
+ "Shape_Le_3":0.000574809144241,
+ "Shape_Ar_2":1.5853649552e-08,
+ "building_height":21.22
+ }
+ },
+ {
+ "type":"Feature",
+ "id":434,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55829432004867,
+ 45.527259052713404
+ ],
+ [
+ -73.55852636672029,
+ 45.527366802286394
+ ],
+ [
+ -73.55860656826036,
+ 45.52728594873784
+ ],
+ [
+ -73.5586313679651,
+ 45.52729804911597
+ ],
+ [
+ -73.55863651928179,
+ 45.52729285013522
+ ],
+ [
+ -73.55838050477831,
+ 45.52717224385427
+ ],
+ [
+ -73.55829432004867,
+ 45.527259052713404
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":434,
+ "ID_UEV":"01035437",
+ "CIVIQUE_DE":" 1959",
+ "CIVIQUE_FI":" 1969",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-20-3142-5-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":616,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000809965341448,
+ "OBJECTID":83984,
+ "Join_Count":1,
+ "TARGET_FID":83984,
+ "feature_id":"7bbd75dd-51ab-427d-a377-eef35b92f7fd",
+ "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.47,
+ "heightmax":54.83,
+ "elevmin":24.82,
+ "elevmax":26.85,
+ "bldgarea":2689.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_2":83984,
+ "Shape_Le_1":0.000809965341448,
+ "Shape_Ar_1":2.94320110194e-08,
+ "OBJECTID_3":83984,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83983,
+ "g_objectid":"943006",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885682",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004320314250000000",
+ "g_sup_tota":"320.2",
+ "g_geometry":"0.000884065",
+ "g_geomet_1":"3.67723e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000809965341448,
+ "Shape_Area":2.94320110194e-08,
+ "Shape_Le_3":0.000809966449145,
+ "Shape_Ar_2":2.94320110194e-08,
+ "building_height":26.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":435,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55770686849903,
+ 45.52802214905323
+ ],
+ [
+ -73.55801966799513,
+ 45.528170349232525
+ ],
+ [
+ -73.55821476781912,
+ 45.527966848841295
+ ],
+ [
+ -73.55797576848877,
+ 45.52785364847739
+ ],
+ [
+ -73.557872967885,
+ 45.527960949288676
+ ],
+ [
+ -73.55780546836951,
+ 45.52792894871231
+ ],
+ [
+ -73.55779916771925,
+ 45.527925948573966
+ ],
+ [
+ -73.55770686849903,
+ 45.52802214905323
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":435,
+ "ID_UEV":"01035439",
+ "CIVIQUE_DE":" 2000",
+ "CIVIQUE_FI":" 2000",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Protection contre l'incendie et activit\u00c3\u00a9s connexes",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-21-7015-7-000-0000",
+ "SUPERFICIE":2221,
+ "SUPERFIC_1":1159,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00125609390672,
+ "OBJECTID":83985,
+ "Join_Count":1,
+ "TARGET_FID":83985,
+ "feature_id":"699f2fa8-c3b0-4ee1-a775-1b4770d62dbe",
+ "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.49,
+ "heightmax":36.87,
+ "elevmin":24.66,
+ "elevmax":25.4,
+ "bldgarea":703.43,
+ "comment":" ",
+ "OBJECTID_2":83985,
+ "Shape_Le_1":0.00125609390672,
+ "Shape_Ar_1":8.1038794997e-08,
+ "OBJECTID_3":83985,
+ "Join_Cou_1":1,
+ "TARGET_F_1":83984,
+ "g_objectid":"938511",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1885493",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6722",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004321701570000000",
+ "g_sup_tota":"2221.4",
+ "g_geometry":"0.00207696",
+ "g_geomet_1":"2.5572e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00125609390672,
+ "Shape_Area":8.1038794997e-08,
+ "Shape_Le_3":0.00125609450437,
+ "Shape_Ar_2":8.1038794997e-08,
+ "building_height":17.189999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":436,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55804200175882,
+ 45.5267548037415
+ ],
+ [
+ -73.55804686799041,
+ 45.52675704755
+ ],
+ [
+ -73.55804087131101,
+ 45.52676354605111
+ ],
+ [
+ -73.5583415875161,
+ 45.526903494051304
+ ],
+ [
+ -73.55842313803923,
+ 45.5268164621603
+ ],
+ [
+ -73.5582380188913,
+ 45.526730763064556
+ ],
+ [
+ -73.55823946949776,
+ 45.52672925220352
+ ],
+ [
+ -73.5581216942826,
+ 45.52666900392169
+ ],
+ [
+ -73.55804200175882,
+ 45.5267548037415
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":436,
+ "ID_UEV":"01035447",
+ "CIVIQUE_DE":" 1894",
+ "CIVIQUE_FI":" 1900",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1947,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-5184-8-000-0000",
+ "SUPERFICIE":463,
+ "SUPERFIC_1":874,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000920634392304,
+ "OBJECTID":83986,
+ "Join_Count":1,
+ "TARGET_FID":83986,
+ "feature_id":"698cbac1-5e7b-4910-ae7a-ad9fe3e271f0",
+ "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.49,
+ "heightmax":38.59,
+ "elevmin":24.03,
+ "elevmax":25.73,
+ "bldgarea":1852.92,
+ "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_2":83986,
+ "Shape_Le_1":0.000920634392304,
+ "Shape_Ar_1":3.86789857275e-08,
+ "OBJECTID_3":83986,
+ "Join_Cou_1":5,
+ "TARGET_F_1":83985,
+ "g_objectid":"938290",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1729257",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229408090000000",
+ "g_sup_tota":"200.3",
+ "g_geometry":"0.000645855",
+ "g_geomet_1":"2.30622e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000920634392304,
+ "Shape_Area":3.86789857275e-08,
+ "Shape_Le_3":0.000920635492187,
+ "Shape_Ar_2":3.86789857275e-08,
+ "building_height":18.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":437,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55832986035662,
+ 45.52664803712751
+ ],
+ [
+ -73.55850470475016,
+ 45.526729414980814
+ ],
+ [
+ -73.55858626786382,
+ 45.52664236780133
+ ],
+ [
+ -73.55846293753638,
+ 45.52658403507545
+ ],
+ [
+ -73.55840370009253,
+ 45.52655601669711
+ ],
+ [
+ -73.55837912431898,
+ 45.526582245424585
+ ],
+ [
+ -73.55839156823812,
+ 45.526588647698226
+ ],
+ [
+ -73.5583537679339,
+ 45.526625047758046
+ ],
+ [
+ -73.55832986035662,
+ 45.52664803712751
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":437,
+ "ID_UEV":"01035449",
+ "CIVIQUE_DE":" 1878",
+ "CIVIQUE_FI":" 1882",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-3371-3-000-0000",
+ "SUPERFICIE":200,
+ "SUPERFIC_1":336,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000649684934839,
+ "OBJECTID":83992,
+ "Join_Count":1,
+ "TARGET_FID":83992,
+ "feature_id":"698cbac1-5e7b-4910-ae7a-ad9fe3e271f0",
+ "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.49,
+ "heightmax":38.59,
+ "elevmin":24.03,
+ "elevmax":25.73,
+ "bldgarea":1852.92,
+ "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_2":83992,
+ "Shape_Le_1":0.000649684934839,
+ "Shape_Ar_1":2.21112957558e-08,
+ "OBJECTID_3":83992,
+ "Join_Cou_1":6,
+ "TARGET_F_1":83991,
+ "g_objectid":"938290",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1729257",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229408090000000",
+ "g_sup_tota":"200.3",
+ "g_geometry":"0.000645855",
+ "g_geomet_1":"2.30622e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000649684934839,
+ "Shape_Area":2.21112957558e-08,
+ "Shape_Le_3":0.000649684281317,
+ "Shape_Ar_2":2.21112957558e-08,
+ "building_height":18.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":438,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55873521717838,
+ 45.52619623751664
+ ],
+ [
+ -73.5586476690765,
+ 45.52628805380094
+ ],
+ [
+ -73.55883595293872,
+ 45.52637557941975
+ ],
+ [
+ -73.55892204323955,
+ 45.52628357697579
+ ],
+ [
+ -73.55873521717838,
+ 45.52619623751664
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":438,
+ "ID_UEV":"01035452",
+ "CIVIQUE_DE":" 1834",
+ "CIVIQUE_FI":" 1840",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-0831-9-000-0000",
+ "SUPERFICIE":217,
+ "SUPERFIC_1":433,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000666732060693,
+ "OBJECTID":83993,
+ "Join_Count":1,
+ "TARGET_FID":83993,
+ "feature_id":"3d8499e4-45d1-4b86-afd9-50462739bdaa",
+ "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.59,
+ "heightmax":36.48,
+ "elevmin":24.73,
+ "elevmax":25.92,
+ "bldgarea":1215.15,
+ "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_2":83993,
+ "Shape_Le_1":0.000666732060693,
+ "Shape_Ar_1":2.4828888482e-08,
+ "OBJECTID_3":83993,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83992,
+ "g_objectid":"942013",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567221",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229083190000000",
+ "g_sup_tota":"217.1",
+ "g_geometry":"0.000666732",
+ "g_geomet_1":"2.48288e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000666732060693,
+ "Shape_Area":2.4828888482e-08,
+ "Shape_Le_3":0.000666732100601,
+ "Shape_Ar_2":2.4828888482e-08,
+ "building_height":16.945
+ }
+ },
+ {
+ "type":"Feature",
+ "id":439,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56289739831813,
+ 45.51784461228932
+ ],
+ [
+ -73.562974932469,
+ 45.51787986121692
+ ],
+ [
+ -73.56304362448553,
+ 45.517805187809465
+ ],
+ [
+ -73.56296371702376,
+ 45.5177725181375
+ ],
+ [
+ -73.56289739831813,
+ 45.51784461228932
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":439,
+ "ID_UEV":"01003514",
+ "CIVIQUE_DE":" 1768",
+ "CIVIQUE_FI":" 1770",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-7889-8-000-0000",
+ "SUPERFICIE":110,
+ "SUPERFIC_1":123,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000370918578551,
+ "OBJECTID":83996,
+ "Join_Count":1,
+ "TARGET_FID":83996,
+ "feature_id":"c35bc821-e0be-4b5f-9de4-7ecfec6c5aba",
+ "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":14.42,
+ "elevmin":23.6,
+ "elevmax":24.49,
+ "bldgarea":561.78,
+ "comment":" ",
+ "OBJECTID_2":83996,
+ "Shape_Le_1":0.000370918578551,
+ "Shape_Ar_1":8.06923883846e-09,
+ "OBJECTID_3":83996,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83995,
+ "g_objectid":"943269",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161641",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189788980000000",
+ "g_sup_tota":"109.9",
+ "g_geometry":"0.000483213",
+ "g_geomet_1":"1.26598e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000370918578551,
+ "Shape_Area":8.06923883846e-09,
+ "Shape_Le_3":0.000370919212719,
+ "Shape_Ar_2":8.06923883846e-09,
+ "building_height":6.96
+ }
+ },
+ {
+ "type":"Feature",
+ "id":440,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.562974932469,
+ 45.51787986121692
+ ],
+ [
+ -73.56305246572056,
+ 45.51791510924519
+ ],
+ [
+ -73.5631153049492,
+ 45.51784679674257
+ ],
+ [
+ -73.56308026916093,
+ 45.51783114674033
+ ],
+ [
+ -73.56308746913324,
+ 45.517823147270725
+ ],
+ [
+ -73.56308216942843,
+ 45.517820946629676
+ ],
+ [
+ -73.56304362448553,
+ 45.517805187809465
+ ],
+ [
+ -73.562974932469,
+ 45.51787986121692
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":440,
+ "ID_UEV":"01003515",
+ "CIVIQUE_DE":" 1772",
+ "CIVIQUE_FI":" 1774",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-7293-3-000-0000",
+ "SUPERFICIE":110,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000375966983991,
+ "OBJECTID":83997,
+ "Join_Count":1,
+ "TARGET_FID":83997,
+ "feature_id":"c35bc821-e0be-4b5f-9de4-7ecfec6c5aba",
+ "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":14.42,
+ "elevmin":23.6,
+ "elevmax":24.49,
+ "bldgarea":561.78,
+ "comment":" ",
+ "OBJECTID_2":83997,
+ "Shape_Le_1":0.000375966983991,
+ "Shape_Ar_1":7.93381412101e-09,
+ "OBJECTID_3":83997,
+ "Join_Cou_1":4,
+ "TARGET_F_1":83996,
+ "g_objectid":"943269",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161641",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189788980000000",
+ "g_sup_tota":"109.9",
+ "g_geometry":"0.000483213",
+ "g_geomet_1":"1.26598e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000375966983991,
+ "Shape_Area":7.93381412101e-09,
+ "Shape_Le_3":0.000375966397357,
+ "Shape_Ar_2":7.93381412101e-09,
+ "building_height":6.96
+ }
+ },
+ {
+ "type":"Feature",
+ "id":441,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55647467678675,
+ 45.51595653601562
+ ],
+ [
+ -73.55648016714784,
+ 45.51595104655385
+ ],
+ [
+ -73.55652956690783,
+ 45.51590164679386
+ ],
+ [
+ -73.55656576731815,
+ 45.515919546899866
+ ],
+ [
+ -73.55658146678311,
+ 45.51590364688609
+ ],
+ [
+ -73.55660946717501,
+ 45.51591704678458
+ ],
+ [
+ -73.55665606734547,
+ 45.51593934727335
+ ],
+ [
+ -73.55664406679209,
+ 45.51595164640165
+ ],
+ [
+ -73.55664456681515,
+ 45.51595194677522
+ ],
+ [
+ -73.55669686688874,
+ 45.51597504676129
+ ],
+ [
+ -73.55679186677308,
+ 45.51586874689545
+ ],
+ [
+ -73.55661686679682,
+ 45.5157914465683
+ ],
+ [
+ -73.55663676699504,
+ 45.51576924680359
+ ],
+ [
+ -73.55663146729023,
+ 45.51576684651305
+ ],
+ [
+ -73.5566257467027,
+ 45.51576432301539
+ ],
+ [
+ -73.55646042433096,
+ 45.515950006937565
+ ],
+ [
+ -73.55647467678675,
+ 45.51595653601562
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":441,
+ "ID_UEV":"01039921",
+ "CIVIQUE_DE":" 1213",
+ "CIVIQUE_FI":" 1227",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-37-7476-1-000-0000",
+ "SUPERFICIE":458,
+ "SUPERFIC_1":621,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00093805223901,
+ "OBJECTID":83999,
+ "Join_Count":1,
+ "TARGET_FID":83999,
+ "feature_id":"8fc32b84-eb81-46f7-8c13-5daa455fa978",
+ "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":42.95,
+ "elevmin":20.3,
+ "elevmax":22.53,
+ "bldgarea":1052.18,
+ "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_2":83999,
+ "Shape_Le_1":0.00093805223901,
+ "Shape_Ar_1":2.78083046326e-08,
+ "OBJECTID_3":83999,
+ "Join_Cou_1":3,
+ "TARGET_F_1":83998,
+ "g_objectid":"943467",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162263",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"36",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004137939440000000",
+ "g_sup_tota":"828.1",
+ "g_geometry":"0.00127839",
+ "g_geomet_1":"9.53763e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00093805223901,
+ "Shape_Area":2.78083046326e-08,
+ "Shape_Le_3":0.000938052378931,
+ "Shape_Ar_2":2.78083046326e-08,
+ "building_height":21.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":442,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57358916113273,
+ 45.50221413882174
+ ],
+ [
+ -73.57413171582787,
+ 45.50247752057141
+ ],
+ [
+ -73.5742573718021,
+ 45.50235554372366
+ ],
+ [
+ -73.57432007253516,
+ 45.502294643433345
+ ],
+ [
+ -73.574170772485,
+ 45.50221864352587
+ ],
+ [
+ -73.57420067224507,
+ 45.50218954416243
+ ],
+ [
+ -73.57419507216669,
+ 45.50218684349832
+ ],
+ [
+ -73.57386257212185,
+ 45.50202264348051
+ ],
+ [
+ -73.57385847211265,
+ 45.502026743489715
+ ],
+ [
+ -73.57381917173923,
+ 45.50206864380316
+ ],
+ [
+ -73.5737605719147,
+ 45.50204134398313
+ ],
+ [
+ -73.57358916113273,
+ 45.50221413882174
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":442,
+ "ID_UEV":"01037690",
+ "CIVIQUE_DE":" 2000",
+ "CIVIQUE_FI":" 2000",
+ "NOM_RUE":"rue Mansfield (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1982,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-02-1761-0-000-0000",
+ "SUPERFICIE":1804,
+ "SUPERFIC_1":22930,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00182322417898,
+ "OBJECTID":84000,
+ "Join_Count":1,
+ "TARGET_FID":84000,
+ "feature_id":"1d0152c2-dcb3-43c0-933e-ee6060a25179",
+ "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,
+ "heightmax":110.78,
+ "elevmin":39.14,
+ "elevmax":42.15,
+ "bldgarea":1449.9,
+ "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_2":84000,
+ "Shape_Le_1":0.00182322417898,
+ "Shape_Ar_1":1.65164626004e-07,
+ "OBJECTID_3":84000,
+ "Join_Cou_1":2,
+ "TARGET_F_1":83999,
+ "g_objectid":"945014",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1339829",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"52",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994002176100000000",
+ "g_sup_tota":"1803.5",
+ "g_geometry":"0.00201887",
+ "g_geomet_1":"2.07673e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00182322417898,
+ "Shape_Area":1.65164626004e-07,
+ "Shape_Le_3":0.0018232241868,
+ "Shape_Ar_2":1.65164626004e-07,
+ "building_height":55.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":443,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55752850955491,
+ 45.52016512397159
+ ],
+ [
+ -73.55763762429876,
+ 45.52021552107973
+ ],
+ [
+ -73.55763826731403,
+ 45.52021494641294
+ ],
+ [
+ -73.55773496781636,
+ 45.52012924641788
+ ],
+ [
+ -73.55762080517786,
+ 45.52006562927566
+ ],
+ [
+ -73.55752850955491,
+ 45.52016512397159
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55768996933845,
+ 45.51999107098143
+ ],
+ [
+ -73.55769836720772,
+ 45.51999494705945
+ ],
+ [
+ -73.55770278827491,
+ 45.51999022651803
+ ],
+ [
+ -73.5576977169979,
+ 45.519987876589525
+ ],
+ [
+ -73.55769437151987,
+ 45.51998632615832
+ ],
+ [
+ -73.55768996933845,
+ 45.51999107098143
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":443,
+ "ID_UEV":"01040490",
+ "CIVIQUE_DE":" 1600",
+ "CIVIQUE_FI":" 1600",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1974,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-9344-9-000-0000",
+ "SUPERFICIE":323,
+ "SUPERFIC_1":379,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000548134865393,
+ "OBJECTID":84019,
+ "Join_Count":2,
+ "TARGET_FID":84019,
+ "feature_id":"a3720b36-7f80-46e8-bd21-8dcdc45b6caf",
+ "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.51,
+ "heightmax":11.89,
+ "elevmin":25.87,
+ "elevmax":27.05,
+ "bldgarea":439.02,
+ "comment":" ",
+ "OBJECTID_2":84019,
+ "Shape_Le_1":0.000548134865393,
+ "Shape_Ar_1":1.58317248143e-08,
+ "OBJECTID_3":84019,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84018,
+ "g_objectid":"942021",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567232",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222822360000000",
+ "g_sup_tota":"152.6",
+ "g_geometry":"0.000638702",
+ "g_geomet_1":"1.75814e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000548134865393,
+ "Shape_Area":1.58317248143e-08,
+ "Shape_Le_3":0.000548133402632,
+ "Shape_Ar_2":1.58317248143e-08,
+ "building_height":4.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":444,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5578063290207,
+ 45.52029344193909
+ ],
+ [
+ -73.55781214223842,
+ 45.520296126415396
+ ],
+ [
+ -73.55782666808811,
+ 45.52027994671246
+ ],
+ [
+ -73.558043367829,
+ 45.52037604646767
+ ],
+ [
+ -73.55804356837783,
+ 45.52037574699342
+ ],
+ [
+ -73.55812436796705,
+ 45.520313346633934
+ ],
+ [
+ -73.5580596680411,
+ 45.52027194724287
+ ],
+ [
+ -73.55800946788447,
+ 45.520239846841754
+ ],
+ [
+ -73.55793876768183,
+ 45.52022004646827
+ ],
+ [
+ -73.5578999682308,
+ 45.52020914668507
+ ],
+ [
+ -73.55790896774651,
+ 45.52019324667129
+ ],
+ [
+ -73.55790059685691,
+ 45.52019089944075
+ ],
+ [
+ -73.5578063290207,
+ 45.52029344193909
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55812209538024,
+ 45.52018588751899
+ ],
+ [
+ -73.55811386838216,
+ 45.52019564696183
+ ],
+ [
+ -73.55821726793441,
+ 45.520238647146144
+ ],
+ [
+ -73.55821826798052,
+ 45.520237446551214
+ ],
+ [
+ -73.55822248670025,
+ 45.520232882491825
+ ],
+ [
+ -73.55812209538024,
+ 45.52018588751899
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55801234751367,
+ 45.52013451374711
+ ],
+ [
+ -73.5580065684702,
+ 45.52014184681907
+ ],
+ [
+ -73.55808796790724,
+ 45.52017344719712
+ ],
+ [
+ -73.55809034211744,
+ 45.52017102352421
+ ],
+ [
+ -73.55801234751367,
+ 45.52013451374711
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55791957974665,
+ 45.520170251006576
+ ],
+ [
+ -73.5579250683091,
+ 45.52017294717407
+ ],
+ [
+ -73.55792876812,
+ 45.52016894698961
+ ],
+ [
+ -73.5579682681429,
+ 45.520129546791445
+ ],
+ [
+ -73.55796052408077,
+ 45.52012571298157
+ ],
+ [
+ -73.55791957974665,
+ 45.520170251006576
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":444,
+ "ID_UEV":"01040492",
+ "CIVIQUE_DE":" 1620",
+ "CIVIQUE_FI":" 1630",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-6662-7-000-0000",
+ "SUPERFICIE":604,
+ "SUPERFIC_1":577,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00135005442252,
+ "OBJECTID":84020,
+ "Join_Count":4,
+ "TARGET_FID":84020,
+ "feature_id":"ce8d3f19-dd35-4f1b-82a9-13a6ea149c30",
+ "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.51,
+ "heightmax":11.76,
+ "elevmin":26.09,
+ "elevmax":27.01,
+ "bldgarea":368.26,
+ "comment":" ",
+ "OBJECTID_2":84020,
+ "Shape_Le_1":0.00135005442252,
+ "Shape_Ar_1":2.79420559614e-08,
+ "OBJECTID_3":84020,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84019,
+ "g_objectid":"942018",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567228",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222666270000000",
+ "g_sup_tota":"604.1",
+ "g_geometry":"0.0010935",
+ "g_geomet_1":"7.02576e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00135005442252,
+ "Shape_Area":2.79420559614e-08,
+ "Shape_Le_3":0.00135005369193,
+ "Shape_Ar_2":2.79420559614e-08,
+ "building_height":4.625
+ }
+ },
+ {
+ "type":"Feature",
+ "id":445,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55829807202025,
+ 45.52026826361976
+ ],
+ [
+ -73.5582934683907,
+ 45.520272846564914
+ ],
+ [
+ -73.55837704238844,
+ 45.52031435477395
+ ],
+ [
+ -73.55838290686751,
+ 45.52030797588267
+ ],
+ [
+ -73.55829807202025,
+ 45.52026826361976
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":445,
+ "ID_UEV":"01040493",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-5073-8-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00020214552136,
+ "OBJECTID":84021,
+ "Join_Count":1,
+ "TARGET_FID":84021,
+ "feature_id":"ea2821f4-4749-4a98-b5b4-a9958ef20642",
+ "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.95,
+ "heightmax":6.96,
+ "elevmin":26.66,
+ "elevmax":27.3,
+ "bldgarea":51.28,
+ "comment":" ",
+ "OBJECTID_2":84021,
+ "Shape_Le_1":0.00020214552136,
+ "Shape_Ar_1":6.74097909919e-10,
+ "OBJECTID_3":84021,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84020,
+ "g_objectid":"942015",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567224",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222388160000000",
+ "g_sup_tota":"338.4",
+ "g_geometry":"0.000824261",
+ "g_geomet_1":"3.93643e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00020214552136,
+ "Shape_Area":6.74097909919e-10,
+ "Shape_Le_3":0.000202144851571,
+ "Shape_Ar_2":6.74097909919e-10,
+ "building_height":2.005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":446,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55837696234877,
+ 45.520556995459266
+ ],
+ [
+ -73.55843794088011,
+ 45.52058515682982
+ ],
+ [
+ -73.55850152294877,
+ 45.52051573096651
+ ],
+ [
+ -73.55848756816859,
+ 45.52051004725117
+ ],
+ [
+ -73.55851146855127,
+ 45.520481146637906
+ ],
+ [
+ -73.55847426809484,
+ 45.52046604702075
+ ],
+ [
+ -73.55847316822398,
+ 45.5204673465411
+ ],
+ [
+ -73.55846146804416,
+ 45.52048014659179
+ ],
+ [
+ -73.55845167172912,
+ 45.52047572822257
+ ],
+ [
+ -73.55837696234877,
+ 45.520556995459266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":446,
+ "ID_UEV":"01040495",
+ "CIVIQUE_DE":" 1680",
+ "CIVIQUE_FI":" 1682",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-3086-2-000-0000",
+ "SUPERFICIE":131,
+ "SUPERFIC_1":180,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000394209082658,
+ "OBJECTID":84022,
+ "Join_Count":1,
+ "TARGET_FID":84022,
+ "feature_id":"2d8d3d10-087e-4e38-b7e3-bb5250ed2e89",
+ "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.55,
+ "heightmax":13.99,
+ "elevmin":26.31,
+ "elevmax":27.33,
+ "bldgarea":950.42,
+ "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_2":84022,
+ "Shape_Le_1":0.000394209082658,
+ "Shape_Ar_1":7.57611083516e-09,
+ "OBJECTID_3":84022,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84021,
+ "g_objectid":"941963",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566985",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222308620000000",
+ "g_sup_tota":"130.7",
+ "g_geometry":"0.000612536",
+ "g_geomet_1":"1.52587e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000394209082658,
+ "Shape_Area":7.57611083516e-09,
+ "Shape_Le_3":0.000394208198227,
+ "Shape_Ar_2":7.57611083516e-09,
+ "building_height":5.720000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":447,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56428267802501,
+ 45.51598027811764
+ ],
+ [
+ -73.5643627905322,
+ 45.516016970457116
+ ],
+ [
+ -73.56460395902734,
+ 45.51575274963998
+ ],
+ [
+ -73.5645257863578,
+ 45.51571391871267
+ ],
+ [
+ -73.56428267802501,
+ 45.51598027811764
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":447,
+ "ID_UEV":"01002906",
+ "CIVIQUE_DE":" 1741",
+ "CIVIQUE_FI":" 1745",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-77-6472-9-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":542,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00089376021098,
+ "OBJECTID":84029,
+ "Join_Count":1,
+ "TARGET_FID":84029,
+ "feature_id":"dc48b794-f01d-40a5-baf1-47b457de8e4d",
+ "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.53,
+ "heightmax":18.23,
+ "elevmin":24.24,
+ "elevmax":26.39,
+ "bldgarea":3310.44,
+ "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_2":84029,
+ "Shape_Le_1":0.00089376021098,
+ "Shape_Ar_1":3.01393478608e-08,
+ "OBJECTID_3":84029,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84028,
+ "g_objectid":"943204",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161492",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994177577640000000",
+ "g_sup_tota":"284.5",
+ "g_geometry":"0.000961564",
+ "g_geomet_1":"3.29467e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00089376021098,
+ "Shape_Area":3.01393478608e-08,
+ "Shape_Le_3":0.000893760116801,
+ "Shape_Ar_2":3.01393478608e-08,
+ "building_height":8.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":448,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55950637953762,
+ 45.52190758381823
+ ],
+ [
+ -73.55966696248218,
+ 45.52198254590806
+ ],
+ [
+ -73.5597293682376,
+ 45.521917547407185
+ ],
+ [
+ -73.55956926822898,
+ 45.521841847873276
+ ],
+ [
+ -73.55950637953762,
+ 45.52190758381823
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":448,
+ "ID_UEV":"01035481",
+ "CIVIQUE_DE":" 1341",
+ "CIVIQUE_FI":" 1341",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-14-4045-4-000-0000",
+ "SUPERFICIE":190,
+ "SUPERFIC_1":424,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000535393317176,
+ "OBJECTID":84031,
+ "Join_Count":1,
+ "TARGET_FID":84031,
+ "feature_id":"062d5ba6-404b-4596-a518-f30f2d9820b3",
+ "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.62,
+ "heightmax":10.74,
+ "elevmin":25.12,
+ "elevmax":26.08,
+ "bldgarea":280.84,
+ "comment":" ",
+ "OBJECTID_2":84031,
+ "Shape_Le_1":0.000535393317176,
+ "Shape_Ar_1":1.52003416553e-08,
+ "OBJECTID_3":84031,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84030,
+ "g_objectid":"941973",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567016",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004214465430000000",
+ "g_sup_tota":"218.6",
+ "g_geometry":"0.000686527",
+ "g_geomet_1":"2.51732e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000535393317176,
+ "Shape_Area":1.52003416553e-08,
+ "Shape_Le_3":0.000535393052276,
+ "Shape_Ar_2":1.52003416553e-08,
+ "building_height":4.0600000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":449,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55941223400924,
+ 45.52738760900125
+ ],
+ [
+ -73.55942126949783,
+ 45.52739144910639
+ ],
+ [
+ -73.5594111557221,
+ 45.52740316097739
+ ],
+ [
+ -73.55947937469523,
+ 45.52743497089748
+ ],
+ [
+ -73.55957244283582,
+ 45.52733489613884
+ ],
+ [
+ -73.55954446942357,
+ 45.52732174894985
+ ],
+ [
+ -73.5595188693222,
+ 45.52734924841938
+ ],
+ [
+ -73.55948146921628,
+ 45.52733204888524
+ ],
+ [
+ -73.55952136943749,
+ 45.52728904870093
+ ],
+ [
+ -73.55950836973732,
+ 45.52728308259848
+ ],
+ [
+ -73.55941223400924,
+ 45.52738760900125
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":449,
+ "ID_UEV":"01034650",
+ "CIVIQUE_DE":" 2060",
+ "CIVIQUE_FI":" 2062",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-4947-7-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":147,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000561847135075,
+ "OBJECTID":84037,
+ "Join_Count":1,
+ "TARGET_FID":84037,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":84037,
+ "Shape_Le_1":0.000561847135075,
+ "Shape_Ar_1":9.83467297699e-09,
+ "OBJECTID_3":84037,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84036,
+ "g_objectid":"942870",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884713",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310405340000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000838297",
+ "g_geomet_1":"4.09272e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000561847135075,
+ "Shape_Area":9.83467297699e-09,
+ "Shape_Le_3":0.000561848103899,
+ "Shape_Ar_2":9.83467297699e-09,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":450,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55695906692924,
+ 45.52591572817861
+ ],
+ [
+ -73.55696286836353,
+ 45.525917547507106
+ ],
+ [
+ -73.55694826787011,
+ 45.525932648023584
+ ],
+ [
+ -73.55694846841892,
+ 45.52593274784833
+ ],
+ [
+ -73.55710757737464,
+ 45.52600635286119
+ ],
+ [
+ -73.55720133889253,
+ 45.52590742114087
+ ],
+ [
+ -73.5570489685569,
+ 45.52583254808392
+ ],
+ [
+ -73.55706246828014,
+ 45.52581884781187
+ ],
+ [
+ -73.55706206808182,
+ 45.52581864816238
+ ],
+ [
+ -73.55705425387256,
+ 45.52581528919453
+ ],
+ [
+ -73.55695906692924,
+ 45.52591572817861
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":450,
+ "ID_UEV":"01034572",
+ "CIVIQUE_DE":" 1867",
+ "CIVIQUE_FI":" 1877",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-38-4291-3-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":554,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000673393316519,
+ "OBJECTID":84039,
+ "Join_Count":1,
+ "TARGET_FID":84039,
+ "feature_id":"3ac42144-13c1-4117-8417-4511176dd6ec",
+ "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.43,
+ "heightmax":35.81,
+ "elevmin":23.32,
+ "elevmax":24.25,
+ "bldgarea":795.04,
+ "comment":" ",
+ "OBJECTID_2":84039,
+ "Shape_Le_1":0.000673393316519,
+ "Shape_Ar_1":2.36381653407e-08,
+ "OBJECTID_3":84039,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84038,
+ "g_objectid":"942379",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729270",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004238429130000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000838865",
+ "g_geomet_1":"4.08438e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000673393316519,
+ "Shape_Area":2.36381653407e-08,
+ "Shape_Le_3":0.000673393554075,
+ "Shape_Ar_2":2.36381653407e-08,
+ "building_height":16.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":451,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55824330420697,
+ 45.52653160909678
+ ],
+ [
+ -73.55824756789279,
+ 45.5265337476846
+ ],
+ [
+ -73.55825156807725,
+ 45.52653574777683
+ ],
+ [
+ -73.55828176821088,
+ 45.52650584801677
+ ],
+ [
+ -73.5583092676804,
+ 45.52651964811356
+ ],
+ [
+ -73.55829156812321,
+ 45.52653724784601
+ ],
+ [
+ -73.55829166794797,
+ 45.52653724784601
+ ],
+ [
+ -73.55837299633856,
+ 45.52657909240149
+ ],
+ [
+ -73.55839758919923,
+ 45.526553128074696
+ ],
+ [
+ -73.55846820936222,
+ 45.52647856528385
+ ],
+ [
+ -73.55844766794736,
+ 45.5264695477817
+ ],
+ [
+ -73.55835476798,
+ 45.52642884806318
+ ],
+ [
+ -73.5583454258226,
+ 45.52642493601228
+ ],
+ [
+ -73.55824330420697,
+ 45.52653160909678
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":451,
+ "ID_UEV":"01034560",
+ "CIVIQUE_DE":" 1967",
+ "CIVIQUE_FI":" 1969",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-4358-9-000-0000",
+ "SUPERFICIE":263,
+ "SUPERFIC_1":233,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000619152830849,
+ "OBJECTID":84041,
+ "Join_Count":1,
+ "TARGET_FID":84041,
+ "feature_id":"698cbac1-5e7b-4910-ae7a-ad9fe3e271f0",
+ "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.49,
+ "heightmax":38.59,
+ "elevmin":24.03,
+ "elevmax":25.73,
+ "bldgarea":1852.92,
+ "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_2":84041,
+ "Shape_Le_1":0.000619152830849,
+ "Shape_Ar_1":1.63872656256e-08,
+ "OBJECTID_3":84041,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84040,
+ "g_objectid":"944792",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229604680010001",
+ "g_sup_tota":"282.3",
+ "g_geometry":"0.00172966",
+ "g_geomet_1":"3.26785e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000619152830849,
+ "Shape_Area":1.63872656256e-08,
+ "Shape_Le_3":0.000619151307422,
+ "Shape_Ar_2":1.63872656256e-08,
+ "building_height":18.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":452,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5625584618254,
+ 45.50485390623308
+ ],
+ [
+ -73.5626204628859,
+ 45.50488253615042
+ ],
+ [
+ -73.56267436735001,
+ 45.504818539494295
+ ],
+ [
+ -73.56265586829554,
+ 45.504810544521305
+ ],
+ [
+ -73.56267466772358,
+ 45.50478934480272
+ ],
+ [
+ -73.56263236811114,
+ 45.50477104359908
+ ],
+ [
+ -73.56269306785265,
+ 45.5047018434656
+ ],
+ [
+ -73.56268828705664,
+ 45.504699775924216
+ ],
+ [
+ -73.5625584618254,
+ 45.50485390623308
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":452,
+ "ID_UEV":"01000497",
+ "CIVIQUE_DE":" 1054",
+ "CIVIQUE_FI":" 1054",
+ "NOM_RUE":"rue Anderson (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-95-0342-4-000-0000",
+ "SUPERFICIE":118,
+ "SUPERFIC_1":99,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000545321261831,
+ "OBJECTID":84042,
+ "Join_Count":1,
+ "TARGET_FID":84042,
+ "feature_id":"8247fa11-995a-4b89-b72b-fc0202c12e4d",
+ "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.53,
+ "heightmax":16.06,
+ "elevmin":17.92,
+ "elevmax":21.24,
+ "bldgarea":957.12,
+ "comment":" ",
+ "OBJECTID_2":84042,
+ "Shape_Le_1":0.000545321261831,
+ "Shape_Ar_1":7.14468287961e-09,
+ "OBJECTID_3":84042,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84041,
+ "g_objectid":"939454",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179483",
+ "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":"66023994085984580000000",
+ "g_sup_tota":"117.5",
+ "g_geometry":"0.000549238",
+ "g_geomet_1":"1.35945e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000545321261831,
+ "Shape_Area":7.14468287961e-09,
+ "Shape_Le_3":0.000545321203293,
+ "Shape_Ar_2":7.14468287961e-09,
+ "building_height":7.765
+ }
+ },
+ {
+ "type":"Feature",
+ "id":453,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5626204628859,
+ 45.50488253615042
+ ],
+ [
+ -73.56268245944979,
+ 45.50491117326233
+ ],
+ [
+ -73.5627379179424,
+ 45.50484533029805
+ ],
+ [
+ -73.56272026784792,
+ 45.50483764469185
+ ],
+ [
+ -73.56273286824911,
+ 45.50482334457199
+ ],
+ [
+ -73.56272716834599,
+ 45.50482124465501
+ ],
+ [
+ -73.56269556796794,
+ 45.50480764510703
+ ],
+ [
+ -73.56268316811556,
+ 45.50482234452588
+ ],
+ [
+ -73.56267436735001,
+ 45.504818539494295
+ ],
+ [
+ -73.5626204628859,
+ 45.50488253615042
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":453,
+ "ID_UEV":"01000498",
+ "CIVIQUE_DE":" 1058",
+ "CIVIQUE_FI":" 1058",
+ "NOM_RUE":"rue Anderson (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-85-9845-8-000-0000",
+ "SUPERFICIE":118,
+ "SUPERFIC_1":96,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000345656617812,
+ "OBJECTID":84043,
+ "Join_Count":1,
+ "TARGET_FID":84043,
+ "feature_id":"8247fa11-995a-4b89-b72b-fc0202c12e4d",
+ "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.53,
+ "heightmax":16.06,
+ "elevmin":17.92,
+ "elevmax":21.24,
+ "bldgarea":957.12,
+ "comment":" ",
+ "OBJECTID_2":84043,
+ "Shape_Le_1":0.000345656617812,
+ "Shape_Ar_1":6.32272785254e-09,
+ "OBJECTID_3":84043,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84042,
+ "g_objectid":"939453",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179482",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994085944990000000",
+ "g_sup_tota":"117.5",
+ "g_geometry":"0.000546668",
+ "g_geomet_1":"1.33884e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000345656617812,
+ "Shape_Area":6.32272785254e-09,
+ "Shape_Le_3":0.00034565761385,
+ "Shape_Ar_2":6.32272785254e-09,
+ "building_height":7.765
+ }
+ },
+ {
+ "type":"Feature",
+ "id":454,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56268245944979,
+ 45.50491117326233
+ ],
+ [
+ -73.5627432698079,
+ 45.5049398004817
+ ],
+ [
+ -73.5628000530019,
+ 45.50487238640181
+ ],
+ [
+ -73.5627379179424,
+ 45.50484533029805
+ ],
+ [
+ -73.56268245944979,
+ 45.50491117326233
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":454,
+ "ID_UEV":"01000499",
+ "CIVIQUE_DE":" 1062",
+ "CIVIQUE_FI":" 1062",
+ "NOM_RUE":"rue Anderson (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-85-9449-9-000-0000",
+ "SUPERFICIE":118,
+ "SUPERFIC_1":105,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000309211996544,
+ "OBJECTID":84044,
+ "Join_Count":1,
+ "TARGET_FID":84044,
+ "feature_id":"8247fa11-995a-4b89-b72b-fc0202c12e4d",
+ "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.53,
+ "heightmax":16.06,
+ "elevmin":17.92,
+ "elevmax":21.24,
+ "bldgarea":957.12,
+ "comment":" ",
+ "OBJECTID_2":84044,
+ "Shape_Le_1":0.000309211996544,
+ "Shape_Ar_1":5.65840272034e-09,
+ "OBJECTID_3":84044,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84043,
+ "g_objectid":"939452",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179481",
+ "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":"66023994085895230000000",
+ "g_sup_tota":"112.9",
+ "g_geometry":"0.000535013",
+ "g_geomet_1":"1.24798e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000309211996544,
+ "Shape_Area":5.65840272034e-09,
+ "Shape_Le_3":0.000309210611926,
+ "Shape_Ar_2":5.65840272034e-09,
+ "building_height":7.765
+ }
+ },
+ {
+ "type":"Feature",
+ "id":455,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5627432698079,
+ 45.5049398004817
+ ],
+ [
+ -73.56280484908636,
+ 45.50496879282582
+ ],
+ [
+ -73.56285860426303,
+ 45.504897883081135
+ ],
+ [
+ -73.5628000530019,
+ 45.50487238640181
+ ],
+ [
+ -73.5627432698079,
+ 45.5049398004817
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":455,
+ "ID_UEV":"01000500",
+ "CIVIQUE_DE":" 1066",
+ "CIVIQUE_FI":" 1066",
+ "NOM_RUE":"rue Anderson (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-85-8952-3-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":106,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000309047702405,
+ "OBJECTID":84045,
+ "Join_Count":1,
+ "TARGET_FID":84045,
+ "feature_id":"8247fa11-995a-4b89-b72b-fc0202c12e4d",
+ "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.53,
+ "heightmax":16.06,
+ "elevmin":17.92,
+ "elevmax":21.24,
+ "bldgarea":957.12,
+ "comment":" ",
+ "OBJECTID_2":84045,
+ "Shape_Le_1":0.000309047702405,
+ "Shape_Ar_1":5.65996416832e-09,
+ "OBJECTID_3":84045,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84044,
+ "g_objectid":"939451",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179480",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994085855540000000",
+ "g_sup_tota":"111.2",
+ "g_geometry":"0.000534464",
+ "g_geomet_1":"1.28088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000309047702405,
+ "Shape_Area":5.65996416832e-09,
+ "Shape_Le_3":0.000309048700899,
+ "Shape_Ar_2":5.65996416832e-09,
+ "building_height":7.765
+ }
+ },
+ {
+ "type":"Feature",
+ "id":456,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56148599150714,
+ 45.52804174707926
+ ],
+ [
+ -73.561489668835,
+ 45.528043348771824
+ ],
+ [
+ -73.56148796911633,
+ 45.528045348864055
+ ],
+ [
+ -73.56152396897784,
+ 45.52806634893315
+ ],
+ [
+ -73.56163521421561,
+ 45.52813214513269
+ ],
+ [
+ -73.56175519906503,
+ 45.528005078122156
+ ],
+ [
+ -73.56164026930483,
+ 45.527947548490864
+ ],
+ [
+ -73.56163996893126,
+ 45.52794734884137
+ ],
+ [
+ -73.56162746925415,
+ 45.5279600490673
+ ],
+ [
+ -73.56158362280779,
+ 45.527938754020575
+ ],
+ [
+ -73.56148599150714,
+ 45.52804174707926
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":456,
+ "ID_UEV":"01034525",
+ "CIVIQUE_DE":" 2231",
+ "CIVIQUE_FI":" 2247",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-8727-1-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":609,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000689686127567,
+ "OBJECTID":84054,
+ "Join_Count":1,
+ "TARGET_FID":84054,
+ "feature_id":"627c93de-3511-4cbc-a377-97d2326e5737",
+ "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.93,
+ "heightmax":40.68,
+ "elevmin":27.05,
+ "elevmax":39.63,
+ "bldgarea":2860.19,
+ "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_2":84054,
+ "Shape_Le_1":0.000689686127567,
+ "Shape_Ar_1":2.78519678441e-08,
+ "OBJECTID_3":84054,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84053,
+ "g_objectid":"942989",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885490",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391743520000000",
+ "g_sup_tota":"388.3",
+ "g_geometry":"0.000875334",
+ "g_geomet_1":"4.50182e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000689686127567,
+ "Shape_Area":2.78519678441e-08,
+ "Shape_Le_3":0.000689685505129,
+ "Shape_Ar_2":2.78519678441e-08,
+ "building_height":19.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":457,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56326425606241,
+ 45.519846744182196
+ ],
+ [
+ -73.56344306107026,
+ 45.5199288280033
+ ],
+ [
+ -73.56351756990178,
+ 45.519849864829695
+ ],
+ [
+ -73.56333776934443,
+ 45.519768047207904
+ ],
+ [
+ -73.56331736912313,
+ 45.519758746419306
+ ],
+ [
+ -73.56331726929838,
+ 45.51975904679287
+ ],
+ [
+ -73.56326425606241,
+ 45.519846744182196
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":457,
+ "ID_UEV":"01040615",
+ "CIVIQUE_DE":" 1001",
+ "CIVIQUE_FI":" 1003",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-82-4815-9-000-0000",
+ "SUPERFICIE":218,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000628065355034,
+ "OBJECTID":84078,
+ "Join_Count":1,
+ "TARGET_FID":84078,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":84078,
+ "Shape_Le_1":0.000628065355034,
+ "Shape_Ar_1":2.1340708703e-08,
+ "OBJECTID_3":84078,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84077,
+ "g_objectid":"941543",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565387",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994282372930000000",
+ "g_sup_tota":"343.7",
+ "g_geometry":"0.000829628",
+ "g_geomet_1":"4.0029e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000628065355034,
+ "Shape_Area":2.1340708703e-08,
+ "Shape_Le_3":0.000628066021442,
+ "Shape_Ar_2":2.1340708703e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":458,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57086315773039,
+ 45.50147168911745
+ ],
+ [
+ -73.57103958133345,
+ 45.501561056547814
+ ],
+ [
+ -73.57105413506213,
+ 45.50154758650221
+ ],
+ [
+ -73.57119035087584,
+ 45.501616392732636
+ ],
+ [
+ -73.57129429991386,
+ 45.50151087797494
+ ],
+ [
+ -73.57115762814387,
+ 45.50144259245197
+ ],
+ [
+ -73.5711660448989,
+ 45.501433920289486
+ ],
+ [
+ -73.57109449573623,
+ 45.50139147948349
+ ],
+ [
+ -73.57107830344279,
+ 45.50140239185719
+ ],
+ [
+ -73.5710180731474,
+ 45.5013686196164
+ ],
+ [
+ -73.57100413275637,
+ 45.50136369402955
+ ],
+ [
+ -73.57095113121159,
+ 45.50142361855545
+ ],
+ [
+ -73.57092376484172,
+ 45.50141045877595
+ ],
+ [
+ -73.57086315773039,
+ 45.50147168911745
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":458,
+ "ID_UEV":"01039162",
+ "CIVIQUE_DE":" 896",
+ "CIVIQUE_FI":" 904",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-21-4574-4-000-0000",
+ "SUPERFICIE":448,
+ "SUPERFIC_1":895,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00106626219537,
+ "OBJECTID":84081,
+ "Join_Count":1,
+ "TARGET_FID":84081,
+ "feature_id":"d557171a-01b1-4059-be92-ca29e18026e7",
+ "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":96.07,
+ "elevmin":33.44,
+ "elevmax":35.5,
+ "bldgarea":3072.6,
+ "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_2":84081,
+ "Shape_Le_1":0.00106626219537,
+ "Shape_Ar_1":5.22772283929e-08,
+ "OBJECTID_3":84081,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84080,
+ "g_objectid":"938150",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340253",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994021457440000000",
+ "g_sup_tota":"448",
+ "g_geometry":"0.00106626",
+ "g_geomet_1":"5.22771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00106626219537,
+ "Shape_Area":5.22772283929e-08,
+ "Shape_Le_3":0.00106626203843,
+ "Shape_Ar_2":5.22772283929e-08,
+ "building_height":47.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":459,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57130144232954,
+ 45.501004975149776
+ ],
+ [
+ -73.5712908465172,
+ 45.50101563481399
+ ],
+ [
+ -73.57129167119551,
+ 45.501016044005524
+ ],
+ [
+ -73.57130407104789,
+ 45.50102214410696
+ ],
+ [
+ -73.57125186000718,
+ 45.50107525446971
+ ],
+ [
+ -73.57156171332426,
+ 45.50122909789485
+ ],
+ [
+ -73.57156900592673,
+ 45.501232517117266
+ ],
+ [
+ -73.5716315933452,
+ 45.50116892965268
+ ],
+ [
+ -73.57130144232954,
+ 45.501004975149776
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":459,
+ "ID_UEV":"01039166",
+ "CIVIQUE_DE":" 950",
+ "CIVIQUE_FI":" 950",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-21-1835-2-000-0000",
+ "SUPERFICIE":270,
+ "SUPERFIC_1":884,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000916086187528,
+ "OBJECTID":84082,
+ "Join_Count":1,
+ "TARGET_FID":84082,
+ "feature_id":"11f566cc-d7b2-462d-b701-6e0cafbd581f",
+ "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":133.49,
+ "elevmin":34,
+ "elevmax":36.33,
+ "bldgarea":12074.39,
+ "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_2":84082,
+ "Shape_Le_1":0.000916086187528,
+ "Shape_Ar_1":3.02888428291e-08,
+ "OBJECTID_3":84082,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84081,
+ "g_objectid":"938247",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1341215",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994021122800000000",
+ "g_sup_tota":"250.6",
+ "g_geometry":"0.000903085",
+ "g_geomet_1":"2.90823e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000916086187528,
+ "Shape_Area":3.02888428291e-08,
+ "Shape_Le_3":0.000916085725443,
+ "Shape_Ar_2":3.02888428291e-08,
+ "building_height":66.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":460,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56424759816997,
+ 45.51873353187729
+ ],
+ [
+ -73.5642419702126,
+ 45.518740046566194
+ ],
+ [
+ -73.56424166983903,
+ 45.51874074713807
+ ],
+ [
+ -73.5642561003606,
+ 45.51873718042683
+ ],
+ [
+ -73.56424759816997,
+ 45.51873353187729
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56394297351126,
+ 45.51868632556377
+ ],
+ [
+ -73.5640649089902,
+ 45.51873866250956
+ ],
+ [
+ -73.56407286978896,
+ 45.51872944715656
+ ],
+ [
+ -73.56408607003794,
+ 45.518735047234934
+ ],
+ [
+ -73.56410477054057,
+ 45.518713446418715
+ ],
+ [
+ -73.56415257040665,
+ 45.51873384664
+ ],
+ [
+ -73.56417851584767,
+ 45.518703882128754
+ ],
+ [
+ -73.56398824088646,
+ 45.51862221469375
+ ],
+ [
+ -73.56394297351126,
+ 45.51868632556377
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":460,
+ "ID_UEV":"01040611",
+ "CIVIQUE_DE":" 865",
+ "CIVIQUE_FI":" 867",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-9290-5-000-0000",
+ "SUPERFICIE":206,
+ "SUPERFIC_1":315,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000598418248804,
+ "OBJECTID":84083,
+ "Join_Count":1,
+ "TARGET_FID":84083,
+ "feature_id":"24187733-ead3-40b7-b229-446928d87821",
+ "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.88,
+ "heightmax":15.58,
+ "elevmin":25.19,
+ "elevmax":27.39,
+ "bldgarea":1579,
+ "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_2":84083,
+ "Shape_Le_1":0.000598418248804,
+ "Shape_Ar_1":1.34370142475e-08,
+ "OBJECTID_3":84083,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84082,
+ "g_objectid":"943223",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161545",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270959730000000",
+ "g_sup_tota":"190",
+ "g_geometry":"0.000733442",
+ "g_geomet_1":"2.1072e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000598418248804,
+ "Shape_Area":1.34370142475e-08,
+ "Shape_Le_3":0.00059841831483,
+ "Shape_Ar_2":1.34370142475e-08,
+ "building_height":6.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":461,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56411666317531,
+ 45.51884243887775
+ ],
+ [
+ -73.5641591687325,
+ 45.518862349867845
+ ],
+ [
+ -73.56418084419245,
+ 45.51883920941228
+ ],
+ [
+ -73.56413607054506,
+ 45.51882004665812
+ ],
+ [
+ -73.56411666317531,
+ 45.51884243887775
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56390331071107,
+ 45.51874249721877
+ ],
+ [
+ -73.5640159984614,
+ 45.51879528382558
+ ],
+ [
+ -73.5640649089902,
+ 45.51873866250956
+ ],
+ [
+ -73.56394297351126,
+ 45.51868632556377
+ ],
+ [
+ -73.56390331071107,
+ 45.51874249721877
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":461,
+ "ID_UEV":"01040612",
+ "CIVIQUE_DE":" 875",
+ "CIVIQUE_FI":" 875",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-9597-3-000-0000",
+ "SUPERFICIE":190,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000557693445352,
+ "OBJECTID":84084,
+ "Join_Count":1,
+ "TARGET_FID":84084,
+ "feature_id":"24187733-ead3-40b7-b229-446928d87821",
+ "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.88,
+ "heightmax":15.58,
+ "elevmin":25.19,
+ "elevmax":27.39,
+ "bldgarea":1579,
+ "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_2":84084,
+ "Shape_Le_1":0.000557693445352,
+ "Shape_Ar_1":1.03385041247e-08,
+ "OBJECTID_3":84084,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84083,
+ "g_objectid":"943223",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161545",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270959730000000",
+ "g_sup_tota":"190",
+ "g_geometry":"0.000733442",
+ "g_geomet_1":"2.1072e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000557693445352,
+ "Shape_Area":1.03385041247e-08,
+ "Shape_Le_3":0.000557694614496,
+ "Shape_Ar_2":1.03385041247e-08,
+ "building_height":6.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":462,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55850900350956,
+ 45.51997128409778
+ ],
+ [
+ -73.5586490675223,
+ 45.52003619626374
+ ],
+ [
+ -73.55876811437882,
+ 45.51990895568405
+ ],
+ [
+ -73.55874466815376,
+ 45.51989814673238
+ ],
+ [
+ -73.55871846820459,
+ 45.51992634677378
+ ],
+ [
+ -73.55864316796968,
+ 45.51989184698145
+ ],
+ [
+ -73.55868396841225,
+ 45.519847946575766
+ ],
+ [
+ -73.55865036794196,
+ 45.51983254658505
+ ],
+ [
+ -73.55867166838463,
+ 45.519809647147795
+ ],
+ [
+ -73.55867486817247,
+ 45.51980634663588
+ ],
+ [
+ -73.55866668074457,
+ 45.51980275474363
+ ],
+ [
+ -73.55850900350956,
+ 45.51997128409778
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":462,
+ "ID_UEV":"01040378",
+ "CIVIQUE_DE":" 1644",
+ "CIVIQUE_FI":" 1656",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-1623-4-000-0000",
+ "SUPERFICIE":314,
+ "SUPERFIC_1":490,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000848254965307,
+ "OBJECTID":84085,
+ "Join_Count":1,
+ "TARGET_FID":84085,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":84085,
+ "Shape_Le_1":0.000848254965307,
+ "Shape_Ar_1":2.37136855983e-08,
+ "OBJECTID_3":84085,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84084,
+ "g_objectid":"941961",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566982",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222162340000000",
+ "g_sup_tota":"313.6",
+ "g_geometry":"0.000800964",
+ "g_geomet_1":"3.60701e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000848254965307,
+ "Shape_Area":2.37136855983e-08,
+ "Shape_Le_3":0.00084825689469,
+ "Shape_Ar_2":2.37136855983e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":463,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55988828743637,
+ 45.52022088463641
+ ],
+ [
+ -73.55976918032526,
+ 45.52034433367435
+ ],
+ [
+ -73.55976244530245,
+ 45.52035172879954
+ ],
+ [
+ -73.55990111356738,
+ 45.520415657107186
+ ],
+ [
+ -73.56001934743678,
+ 45.52028583727187
+ ],
+ [
+ -73.5599674682459,
+ 45.520263546675636
+ ],
+ [
+ -73.5599713065524,
+ 45.52025914179625
+ ],
+ [
+ -73.55988828743637,
+ 45.52022088463641
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":463,
+ "ID_UEV":"01040381",
+ "CIVIQUE_DE":" 1750",
+ "CIVIQUE_FI":" 1758",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1700,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-12-2067-4-000-0000",
+ "SUPERFICIE":225,
+ "SUPERFIC_1":548,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00066354621683,
+ "OBJECTID":84086,
+ "Join_Count":1,
+ "TARGET_FID":84086,
+ "feature_id":"17208e37-06da-42f6-9c87-7a55e1172c6a",
+ "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.45,
+ "heightmax":13.18,
+ "elevmin":24.76,
+ "elevmax":26.28,
+ "bldgarea":2107.14,
+ "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_2":84086,
+ "Shape_Le_1":0.00066354621683,
+ "Shape_Ar_1":2.54980130162e-08,
+ "OBJECTID_3":84086,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84085,
+ "g_objectid":"941905",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566822",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004212097430000000",
+ "g_sup_tota":"225",
+ "g_geometry":"0.000665291",
+ "g_geomet_1":"2.61943e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00066354621683,
+ "Shape_Area":2.54980130162e-08,
+ "Shape_Le_3":0.000663547282346,
+ "Shape_Ar_2":2.54980130162e-08,
+ "building_height":5.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":464,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55990111356738,
+ 45.520415657107186
+ ],
+ [
+ -73.56003978093298,
+ 45.520479584515506
+ ],
+ [
+ -73.56010369215352,
+ 45.52040941041625
+ ],
+ [
+ -73.55996976781238,
+ 45.520345146661484
+ ],
+ [
+ -73.56002496819957,
+ 45.52028844710445
+ ],
+ [
+ -73.56002076836562,
+ 45.52028644701222
+ ],
+ [
+ -73.56001934743678,
+ 45.52028583727187
+ ],
+ [
+ -73.55990111356738,
+ 45.520415657107186
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":464,
+ "ID_UEV":"01040382",
+ "CIVIQUE_DE":" 1762",
+ "CIVIQUE_FI":" 1772",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-12-0974-3-000-0000",
+ "SUPERFICIE":225,
+ "SUPERFIC_1":344,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00065707738935,
+ "OBJECTID":84087,
+ "Join_Count":1,
+ "TARGET_FID":84087,
+ "feature_id":"17208e37-06da-42f6-9c87-7a55e1172c6a",
+ "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.45,
+ "heightmax":13.18,
+ "elevmin":24.76,
+ "elevmax":26.28,
+ "bldgarea":2107.14,
+ "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_2":84087,
+ "Shape_Le_1":0.00065707738935,
+ "Shape_Ar_1":1.43553961258e-08,
+ "OBJECTID_3":84087,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84086,
+ "g_objectid":"941905",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566822",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004212097430000000",
+ "g_sup_tota":"225",
+ "g_geometry":"0.000665291",
+ "g_geomet_1":"2.61943e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00065707738935,
+ "Shape_Area":1.43553961258e-08,
+ "Shape_Le_3":0.000657076453897,
+ "Shape_Ar_2":1.43553961258e-08,
+ "building_height":5.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":465,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56003978093298,
+ 45.520479584515506
+ ],
+ [
+ -73.56019313332828,
+ 45.52055028112087
+ ],
+ [
+ -73.56025517845556,
+ 45.52048215657656
+ ],
+ [
+ -73.56024536775136,
+ 45.520477946850065
+ ],
+ [
+ -73.56028636784345,
+ 45.520430647007046
+ ],
+ [
+ -73.56028636784345,
+ 45.5204305471823
+ ],
+ [
+ -73.56023606786209,
+ 45.520407746670465
+ ],
+ [
+ -73.56019466847101,
+ 45.52045304642125
+ ],
+ [
+ -73.56015696799153,
+ 45.52043604653662
+ ],
+ [
+ -73.56019766771004,
+ 45.52039154718245
+ ],
+ [
+ -73.56015046769177,
+ 45.52036894721943
+ ],
+ [
+ -73.56010876792715,
+ 45.52041184667968
+ ],
+ [
+ -73.56010369215352,
+ 45.52040941041625
+ ],
+ [
+ -73.56003978093298,
+ 45.520479584515506
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":465,
+ "ID_UEV":"01040383",
+ "CIVIQUE_DE":" 1776",
+ "CIVIQUE_FI":" 1780",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-9982-8-000-0000",
+ "SUPERFICIE":244,
+ "SUPERFIC_1":441,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000765338600229,
+ "OBJECTID":84088,
+ "Join_Count":1,
+ "TARGET_FID":84088,
+ "feature_id":"17208e37-06da-42f6-9c87-7a55e1172c6a",
+ "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.45,
+ "heightmax":13.18,
+ "elevmin":24.76,
+ "elevmax":26.28,
+ "bldgarea":2107.14,
+ "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_2":84088,
+ "Shape_Le_1":0.000765338600229,
+ "Shape_Ar_1":2.13723884697e-08,
+ "OBJECTID_3":84088,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84087,
+ "g_objectid":"941905",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566822",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004212097430000000",
+ "g_sup_tota":"225",
+ "g_geometry":"0.000665291",
+ "g_geomet_1":"2.61943e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000765338600229,
+ "Shape_Area":2.13723884697e-08,
+ "Shape_Le_3":0.000765338910283,
+ "Shape_Ar_2":2.13723884697e-08,
+ "building_height":5.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":466,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56083595703564,
+ 45.519503581775176
+ ],
+ [
+ -73.5609044997647,
+ 45.519535124596615
+ ],
+ [
+ -73.56103758503836,
+ 45.519394297059456
+ ],
+ [
+ -73.56097020423339,
+ 45.51936152486478
+ ],
+ [
+ -73.56083595703564,
+ 45.519503581775176
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":466,
+ "ID_UEV":"01040088",
+ "CIVIQUE_DE":" 1767",
+ "CIVIQUE_FI":" 1769",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-01-3971-9-000-0000",
+ "SUPERFICIE":127,
+ "SUPERFIC_1":396,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000539598221009,
+ "OBJECTID":84115,
+ "Join_Count":1,
+ "TARGET_FID":84115,
+ "feature_id":"de3eb166-1da9-40b2-969f-1380be198c8b",
+ "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.49,
+ "heightmax":13.11,
+ "elevmin":23.95,
+ "elevmax":25.63,
+ "bldgarea":2208.26,
+ "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_2":84115,
+ "Shape_Le_1":0.000539598221009,
+ "Shape_Ar_1":1.39110795806e-08,
+ "OBJECTID_3":84115,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84114,
+ "g_objectid":"941669",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566316",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004201397190000000",
+ "g_sup_tota":"127.3",
+ "g_geometry":"0.000562393",
+ "g_geomet_1":"1.47074e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000539598221009,
+ "Shape_Area":1.39110795806e-08,
+ "Shape_Le_3":0.000539597732338,
+ "Shape_Ar_2":1.39110795806e-08,
+ "building_height":5.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":467,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55868906397097,
+ 45.52041692694991
+ ],
+ [
+ -73.55873856805232,
+ 45.52043864647665
+ ],
+ [
+ -73.55873886842588,
+ 45.520438347002404
+ ],
+ [
+ -73.55877845388439,
+ 45.52042175451066
+ ],
+ [
+ -73.55882426804737,
+ 45.520428846564315
+ ],
+ [
+ -73.55880846785836,
+ 45.520479146545675
+ ],
+ [
+ -73.55883018108983,
+ 45.520482466842665
+ ],
+ [
+ -73.55895983814786,
+ 45.520347509180496
+ ],
+ [
+ -73.55885836854073,
+ 45.520296547298116
+ ],
+ [
+ -73.55882256203346,
+ 45.52027864359482
+ ],
+ [
+ -73.55868906397097,
+ 45.52041692694991
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":467,
+ "ID_UEV":"01040433",
+ "CIVIQUE_DE":" 1675",
+ "CIVIQUE_FI":" 1687",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-0475-0-000-0000",
+ "SUPERFICIE":310,
+ "SUPERFIC_1":547,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000751391763879,
+ "OBJECTID":84117,
+ "Join_Count":1,
+ "TARGET_FID":84117,
+ "feature_id":"af3c0bd1-1d66-47e2-ba57-c1786f862d90",
+ "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.54,
+ "heightmax":11.85,
+ "elevmin":26.34,
+ "elevmax":27.03,
+ "bldgarea":807.99,
+ "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_2":84117,
+ "Shape_Le_1":0.000751391763879,
+ "Shape_Ar_1":2.54876702453e-08,
+ "OBJECTID_3":84117,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84116,
+ "g_objectid":"941957",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566977",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004212968150000000",
+ "g_sup_tota":"154",
+ "g_geometry":"0.000651236",
+ "g_geomet_1":"1.8275e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000751391763879,
+ "Shape_Area":2.54876702453e-08,
+ "Shape_Le_3":0.000751392173327,
+ "Shape_Ar_2":2.54876702453e-08,
+ "building_height":4.654999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":468,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55858702689163,
+ 45.520313826871906
+ ],
+ [
+ -73.55856046811296,
+ 45.5203735472517
+ ],
+ [
+ -73.5585601677394,
+ 45.52037424692425
+ ],
+ [
+ -73.55858186838037,
+ 45.520394846795035
+ ],
+ [
+ -73.55858216785461,
+ 45.520394647145544
+ ],
+ [
+ -73.55863466847701,
+ 45.52034174722415
+ ],
+ [
+ -73.55868336856446,
+ 45.520365646707525
+ ],
+ [
+ -73.55864976809417,
+ 45.52039954665205
+ ],
+ [
+ -73.55865446795119,
+ 45.5204017472931
+ ],
+ [
+ -73.55868906397097,
+ 45.52041692694991
+ ],
+ [
+ -73.55882256203346,
+ 45.52027864359482
+ ],
+ [
+ -73.55881256786756,
+ 45.520273646961535
+ ],
+ [
+ -73.55871796818153,
+ 45.52022624729377
+ ],
+ [
+ -73.55871916787714,
+ 45.52022504669884
+ ],
+ [
+ -73.55868746137908,
+ 45.52020979329762
+ ],
+ [
+ -73.55858702689163,
+ 45.520313826871906
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":468,
+ "ID_UEV":"01040434",
+ "CIVIQUE_DE":" 1661",
+ "CIVIQUE_FI":" 1673",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-1568-1-000-0000",
+ "SUPERFICIE":308,
+ "SUPERFIC_1":589,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00080655787184,
+ "OBJECTID":84118,
+ "Join_Count":1,
+ "TARGET_FID":84118,
+ "feature_id":"af3c0bd1-1d66-47e2-ba57-c1786f862d90",
+ "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.54,
+ "heightmax":11.85,
+ "elevmin":26.34,
+ "elevmax":27.03,
+ "bldgarea":807.99,
+ "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_2":84118,
+ "Shape_Le_1":0.00080655787184,
+ "Shape_Ar_1":2.6073832087e-08,
+ "OBJECTID_3":84118,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84117,
+ "g_objectid":"941962",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566984",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222256150000000",
+ "g_sup_tota":"312.3",
+ "g_geometry":"0.000802854",
+ "g_geomet_1":"3.60409e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00080655787184,
+ "Shape_Area":2.6073832087e-08,
+ "Shape_Le_3":0.000806557646564,
+ "Shape_Ar_2":2.6073832087e-08,
+ "building_height":4.654999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":469,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55838290686751,
+ 45.52030797588267
+ ],
+ [
+ -73.5583877488174,
+ 45.5203102286844
+ ],
+ [
+ -73.5584245238945,
+ 45.520272135201175
+ ],
+ [
+ -73.55833756844588,
+ 45.520228947058555
+ ],
+ [
+ -73.55829807202025,
+ 45.52026826361976
+ ],
+ [
+ -73.55838290686751,
+ 45.52030797588267
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55831821143815,
+ 45.52017796089447
+ ],
+ [
+ -73.55832256775415,
+ 45.52017994659755
+ ],
+ [
+ -73.55833776809537,
+ 45.52016354656072
+ ],
+ [
+ -73.5584502678874,
+ 45.52021494641294
+ ],
+ [
+ -73.55853006832983,
+ 45.52012854674533
+ ],
+ [
+ -73.55841382196216,
+ 45.52007543368461
+ ],
+ [
+ -73.55831821143815,
+ 45.52017796089447
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":469,
+ "ID_UEV":"01040436",
+ "CIVIQUE_DE":" 1641",
+ "CIVIQUE_FI":" 1649",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-3654-7-000-0000",
+ "SUPERFICIE":302,
+ "SUPERFIC_1":384,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00084122234037,
+ "OBJECTID":84119,
+ "Join_Count":2,
+ "TARGET_FID":84119,
+ "feature_id":"ea2821f4-4749-4a98-b5b4-a9958ef20642",
+ "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.95,
+ "heightmax":6.96,
+ "elevmin":26.66,
+ "elevmax":27.3,
+ "bldgarea":51.28,
+ "comment":" ",
+ "OBJECTID_2":84119,
+ "Shape_Le_1":0.00084122234037,
+ "Shape_Ar_1":1.94588792733e-08,
+ "OBJECTID_3":84119,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84118,
+ "g_objectid":"941962",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566984",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222256150000000",
+ "g_sup_tota":"312.3",
+ "g_geometry":"0.000802854",
+ "g_geomet_1":"3.60409e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00084122234037,
+ "Shape_Area":1.94588792733e-08,
+ "Shape_Le_3":0.000841220935205,
+ "Shape_Ar_2":1.94588792733e-08,
+ "building_height":2.005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":470,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56010623813422,
+ 45.5191688532103
+ ],
+ [
+ -73.56011232294719,
+ 45.51917164200797
+ ],
+ [
+ -73.56016586768249,
+ 45.519116646666205
+ ],
+ [
+ -73.56029301293404,
+ 45.51917791747721
+ ],
+ [
+ -73.56037929568978,
+ 45.51908411728848
+ ],
+ [
+ -73.56024219674183,
+ 45.519021047833384
+ ],
+ [
+ -73.56010623813422,
+ 45.5191688532103
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":470,
+ "ID_UEV":"01040095",
+ "CIVIQUE_DE":" 1691",
+ "CIVIQUE_FI":" 1699",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1970,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-01-9335-1-000-0000",
+ "SUPERFICIE":259,
+ "SUPERFIC_1":374,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00070377387791,
+ "OBJECTID":84120,
+ "Join_Count":1,
+ "TARGET_FID":84120,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":84120,
+ "Shape_Le_1":0.00070377387791,
+ "Shape_Ar_1":1.86666065009e-08,
+ "OBJECTID_3":84120,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84119,
+ "g_objectid":"941676",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566340",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004201933510000000",
+ "g_sup_tota":"258.8",
+ "g_geometry":"0.000717083",
+ "g_geomet_1":"2.98131e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00070377387791,
+ "Shape_Area":1.86666065009e-08,
+ "Shape_Le_3":0.000703773220581,
+ "Shape_Ar_2":1.86666065009e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":471,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55996898000626,
+ 45.5191059546264
+ ],
+ [
+ -73.56010623813422,
+ 45.5191688532103
+ ],
+ [
+ -73.56024219674183,
+ 45.519021047833384
+ ],
+ [
+ -73.56010509779388,
+ 45.51895797747897
+ ],
+ [
+ -73.55996898000626,
+ 45.5191059546264
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":471,
+ "ID_UEV":"01040096",
+ "CIVIQUE_DE":" 1681",
+ "CIVIQUE_FI":" 1689",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-0328-4-000-0000",
+ "SUPERFICIE":259,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000703780264667,
+ "OBJECTID":84121,
+ "Join_Count":1,
+ "TARGET_FID":84121,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":84121,
+ "Shape_Le_1":0.000703780264667,
+ "Shape_Ar_1":2.88557144294e-08,
+ "OBJECTID_3":84121,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84120,
+ "g_objectid":"941681",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566345",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211112380000000",
+ "g_sup_tota":"129.8",
+ "g_geometry":"0.000567349",
+ "g_geomet_1":"1.49497e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000703780264667,
+ "Shape_Area":2.88557144294e-08,
+ "Shape_Le_3":0.000703780701428,
+ "Shape_Ar_2":2.88557144294e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":472,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55990035004297,
+ 45.51907450623377
+ ],
+ [
+ -73.55996898000626,
+ 45.5191059546264
+ ],
+ [
+ -73.56010509779388,
+ 45.51895797747897
+ ],
+ [
+ -73.56003654787023,
+ 45.51892644275143
+ ],
+ [
+ -73.55990035004297,
+ 45.51907450623377
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":472,
+ "ID_UEV":"01040097",
+ "CIVIQUE_DE":" 1675",
+ "CIVIQUE_FI":" 1677",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-1123-8-000-0000",
+ "SUPERFICIE":130,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000553186510965,
+ "OBJECTID":84122,
+ "Join_Count":1,
+ "TARGET_FID":84122,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":84122,
+ "Shape_Le_1":0.000553186510965,
+ "Shape_Ar_1":1.44405795332e-08,
+ "OBJECTID_3":84122,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84121,
+ "g_objectid":"941681",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566345",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211112380000000",
+ "g_sup_tota":"129.8",
+ "g_geometry":"0.000567349",
+ "g_geomet_1":"1.49497e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000553186510965,
+ "Shape_Area":1.44405795332e-08,
+ "Shape_Le_3":0.00055318624409,
+ "Shape_Ar_2":1.44405795332e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":473,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55979084049673,
+ 45.51898144348912
+ ],
+ [
+ -73.55982346790057,
+ 45.51899024695263
+ ],
+ [
+ -73.55986816780354,
+ 45.51900214678194
+ ],
+ [
+ -73.55986644650115,
+ 45.51900530969758
+ ],
+ [
+ -73.55996799974524,
+ 45.5188949089232
+ ],
+ [
+ -73.55989944802295,
+ 45.51886337419566
+ ],
+ [
+ -73.55979084049673,
+ 45.51898144348912
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":473,
+ "ID_UEV":"01040099",
+ "CIVIQUE_DE":" 1661",
+ "CIVIQUE_FI":" 1663",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-2216-9-000-0000",
+ "SUPERFICIE":130,
+ "SUPERFIC_1":199,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00046954086249,
+ "OBJECTID":84123,
+ "Join_Count":1,
+ "TARGET_FID":84123,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":84123,
+ "Shape_Le_1":0.00046954086249,
+ "Shape_Ar_1":1.10072677812e-08,
+ "OBJECTID_3":84123,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84122,
+ "g_objectid":"941668",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566298",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211221690000000",
+ "g_sup_tota":"130",
+ "g_geometry":"0.000568027",
+ "g_geomet_1":"1.4974e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00046954086249,
+ "Shape_Area":1.10072677812e-08,
+ "Shape_Le_3":0.000469537977473,
+ "Shape_Ar_2":1.10072677812e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":474,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5634566759067,
+ 45.51539203246662
+ ],
+ [
+ -73.5634598693993,
+ 45.515393446200875
+ ],
+ [
+ -73.56347206870285,
+ 45.51537944555526
+ ],
+ [
+ -73.56350186953749,
+ 45.5153921457812
+ ],
+ [
+ -73.56344396938552,
+ 45.5154592459977
+ ],
+ [
+ -73.56336486951496,
+ 45.515550845545384
+ ],
+ [
+ -73.56340826719962,
+ 45.515569359888346
+ ],
+ [
+ -73.56364580872894,
+ 45.51530911677261
+ ],
+ [
+ -73.56361796931567,
+ 45.51529644622431
+ ],
+ [
+ -73.5635656575509,
+ 45.51527263667314
+ ],
+ [
+ -73.5634566759067,
+ 45.51539203246662
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":474,
+ "ID_UEV":"01002889",
+ "CIVIQUE_DE":" 1669",
+ "CIVIQUE_FI":" 1671",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-87-3923-3-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":477,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000913361773402,
+ "OBJECTID":84135,
+ "Join_Count":1,
+ "TARGET_FID":84135,
+ "feature_id":"7edb0ab7-7bb8-48a1-80eb-8e6a24c99f4b",
+ "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":16.25,
+ "elevmin":25.69,
+ "elevmax":27.11,
+ "bldgarea":1172.9,
+ "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_2":84135,
+ "Shape_Le_1":0.000913361773402,
+ "Shape_Ar_1":2.19808114427e-08,
+ "OBJECTID_3":84135,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84134,
+ "g_objectid":"943256",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161611",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994187392330000000",
+ "g_sup_tota":"284.5",
+ "g_geometry":"0.000960333",
+ "g_geomet_1":"3.28604e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000913361773402,
+ "Shape_Area":2.19808114427e-08,
+ "Shape_Le_3":0.000913362430364,
+ "Shape_Ar_2":2.19808114427e-08,
+ "building_height":7.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":475,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56340826719962,
+ 45.515569359888346
+ ],
+ [
+ -73.56348992024547,
+ 45.5156041951278
+ ],
+ [
+ -73.56374183024312,
+ 45.51532821027897
+ ],
+ [
+ -73.56366476913563,
+ 45.51529404593377
+ ],
+ [
+ -73.56366446876207,
+ 45.51529394610902
+ ],
+ [
+ -73.56364916949542,
+ 45.5153106456201
+ ],
+ [
+ -73.56364580872894,
+ 45.51530911677261
+ ],
+ [
+ -73.56340826719962,
+ 45.515569359888346
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":475,
+ "ID_UEV":"01002890",
+ "CIVIQUE_DE":" 1675",
+ "CIVIQUE_FI":" 1677",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-87-3327-7-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":651,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000925743753098,
+ "OBJECTID":84136,
+ "Join_Count":1,
+ "TARGET_FID":84136,
+ "feature_id":"7edb0ab7-7bb8-48a1-80eb-8e6a24c99f4b",
+ "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":16.25,
+ "elevmin":25.69,
+ "elevmax":27.11,
+ "bldgarea":1172.9,
+ "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_2":84136,
+ "Shape_Le_1":0.000925743753098,
+ "Shape_Ar_1":3.12852589639e-08,
+ "OBJECTID_3":84136,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84135,
+ "g_objectid":"943205",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161501",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994187263130000000",
+ "g_sup_tota":"284.5",
+ "g_geometry":"0.000960485",
+ "g_geomet_1":"3.28667e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000925743753098,
+ "Shape_Area":3.12852589639e-08,
+ "Shape_Le_3":0.000925743860016,
+ "Shape_Ar_2":3.12852589639e-08,
+ "building_height":7.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":476,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5713759403692,
+ 45.500737718221416
+ ],
+ [
+ -73.57144905615087,
+ 45.500773312488676
+ ],
+ [
+ -73.57166506611176,
+ 45.500554844680636
+ ],
+ [
+ -73.57159249172196,
+ 45.50051909303201
+ ],
+ [
+ -73.5713759403692,
+ 45.500737718221416
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":476,
+ "ID_UEV":"01037677",
+ "CIVIQUE_DE":" 1247",
+ "CIVIQUE_FI":" 1249",
+ "NOM_RUE":"rue Metcalfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-20-1182-1-000-0000",
+ "SUPERFICIE":211,
+ "SUPERFIC_1":644,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000777169778252,
+ "OBJECTID":84139,
+ "Join_Count":1,
+ "TARGET_FID":84139,
+ "feature_id":"c24933b9-fffa-4b67-89e2-db6e4541b3af",
+ "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":21.67,
+ "elevmin":35.15,
+ "elevmax":36.29,
+ "bldgarea":1487.12,
+ "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_2":84139,
+ "Shape_Le_1":0.000777169778252,
+ "Shape_Ar_1":2.36355200487e-08,
+ "OBJECTID_3":84139,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84138,
+ "g_objectid":"938145",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340242",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994020118210000000",
+ "g_sup_tota":"211.4",
+ "g_geometry":"0.000797237",
+ "g_geomet_1":"2.44031e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000777169778252,
+ "Shape_Area":2.36355200487e-08,
+ "Shape_Le_3":0.000777168970736,
+ "Shape_Ar_2":2.36355200487e-08,
+ "building_height":10.58
+ }
+ },
+ {
+ "type":"Feature",
+ "id":477,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5587726784382,
+ 45.51879772548494
+ ],
+ [
+ -73.55884110515473,
+ 45.518829394211465
+ ],
+ [
+ -73.55891702682118,
+ 45.51874655406051
+ ],
+ [
+ -73.55884862438636,
+ 45.518714857455
+ ],
+ [
+ -73.5587726784382,
+ 45.51879772548494
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":477,
+ "ID_UEV":"01040160",
+ "CIVIQUE_DE":" 1610",
+ "CIVIQUE_FI":" 1610",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-20-0094-3-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":211,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000375562698908,
+ "OBJECTID":84151,
+ "Join_Count":1,
+ "TARGET_FID":84151,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":84151,
+ "Shape_Le_1":0.000375562698908,
+ "Shape_Ar_1":8.07419739769e-09,
+ "OBJECTID_3":84151,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84150,
+ "g_objectid":"941699",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566369",
+ "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":"66023004220009430000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000564091",
+ "g_geomet_1":"1.48395e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000375562698908,
+ "Shape_Area":8.07419739769e-09,
+ "Shape_Le_3":0.000375562361453,
+ "Shape_Ar_2":8.07419739769e-09,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":478,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55863582410585,
+ 45.51873438803188
+ ],
+ [
+ -73.55870424992304,
+ 45.51876605675841
+ ],
+ [
+ -73.5587802210522,
+ 45.51868316264813
+ ],
+ [
+ -73.5587118195167,
+ 45.51865146694194
+ ],
+ [
+ -73.55863582410585,
+ 45.51873438803188
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":478,
+ "ID_UEV":"01040161",
+ "CIVIQUE_DE":" 1590",
+ "CIVIQUE_FI":" 1590",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-20-1187-4-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000375706400593,
+ "OBJECTID":84152,
+ "Join_Count":1,
+ "TARGET_FID":84152,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":84152,
+ "Shape_Le_1":0.000375706400593,
+ "Shape_Ar_1":8.07936510264e-09,
+ "OBJECTID_3":84152,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84151,
+ "g_objectid":"941705",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566374",
+ "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":"66023004220168320000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000564092",
+ "g_geomet_1":"1.48397e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000375706400593,
+ "Shape_Area":8.07936510264e-09,
+ "Shape_Le_3":0.000375706087429,
+ "Shape_Ar_2":8.07936510264e-09,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":479,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55884110515473,
+ 45.518829394211465
+ ],
+ [
+ -73.55890953187125,
+ 45.518861062938
+ ],
+ [
+ -73.55898543015532,
+ 45.51877824976671
+ ],
+ [
+ -73.55891702682118,
+ 45.51874655406051
+ ],
+ [
+ -73.55884110515473,
+ 45.518829394211465
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":479,
+ "ID_UEV":"01040163",
+ "CIVIQUE_DE":" 1620",
+ "CIVIQUE_FI":" 1620",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-10-9597-7-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000375490140486,
+ "OBJECTID":84153,
+ "Join_Count":1,
+ "TARGET_FID":84153,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":84153,
+ "Shape_Le_1":0.000375490140486,
+ "Shape_Ar_1":8.07159357022e-09,
+ "OBJECTID_3":84153,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84152,
+ "g_objectid":"941696",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566365",
+ "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":"66023004211900180000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000564091",
+ "g_geomet_1":"1.48395e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000375490140486,
+ "Shape_Area":8.07159357022e-09,
+ "Shape_Le_3":0.000375490152202,
+ "Shape_Ar_2":8.07159357022e-09,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":480,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55297717288006,
+ 45.53726323615972
+ ],
+ [
+ -73.55306444039346,
+ 45.537293887753016
+ ],
+ [
+ -73.55312562217158,
+ 45.53720858166101
+ ],
+ [
+ -73.55303868291074,
+ 45.537177470514145
+ ],
+ [
+ -73.55297717288006,
+ 45.53726323615972
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":480,
+ "ID_UEV":"01025098",
+ "CIVIQUE_DE":" 2206",
+ "CIVIQUE_FI":" 2206",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-61-5748-9-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000395351390758,
+ "OBJECTID":84161,
+ "Join_Count":1,
+ "TARGET_FID":84161,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":84161,
+ "Shape_Le_1":0.000395351390758,
+ "Shape_Ar_1":9.3448551563e-09,
+ "OBJECTID_3":84161,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84160,
+ "g_objectid":"943784",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360938",
+ "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":"66023004461634460000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667005",
+ "g_geomet_1":"2.14036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000395351390758,
+ "Shape_Area":9.3448551563e-09,
+ "Shape_Le_3":0.000395352523305,
+ "Shape_Ar_2":9.3448551563e-09,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":481,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56105664437048,
+ 45.53110618874991
+ ],
+ [
+ -73.56097276820054,
+ 45.53119211087751
+ ],
+ [
+ -73.56113323243457,
+ 45.53126710983954
+ ],
+ [
+ -73.56120836899288,
+ 45.5311901485568
+ ],
+ [
+ -73.56111536920078,
+ 45.53114524900433
+ ],
+ [
+ -73.56112315373241,
+ 45.53113727291711
+ ],
+ [
+ -73.56105664437048,
+ 45.53110618874991
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":481,
+ "ID_UEV":"01022679",
+ "CIVIQUE_DE":" 2343",
+ "CIVIQUE_FI":" 2343",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres immeubles r\u00c3\u00a9sidentiels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-04-2476-2-000-0000",
+ "SUPERFICIE":321,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0005925893712,
+ "OBJECTID":84176,
+ "Join_Count":1,
+ "TARGET_FID":84176,
+ "feature_id":"25ce4e3a-81cc-4582-a3df-afc9c7910049",
+ "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.47,
+ "heightmax":48.09,
+ "elevmin":30.91,
+ "elevmax":34.75,
+ "bldgarea":1369.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_2":84176,
+ "Shape_Le_1":0.0005925893712,
+ "Shape_Ar_1":1.89200296872e-08,
+ "OBJECTID_3":84176,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84175,
+ "g_objectid":"940370",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423705",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004304215780000000",
+ "g_sup_tota":"198.5",
+ "g_geometry":"0.000716242",
+ "g_geomet_1":"2.28726e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0005925893712,
+ "Shape_Area":1.89200296872e-08,
+ "Shape_Le_3":0.000592588516933,
+ "Shape_Ar_2":1.89200296872e-08,
+ "building_height":22.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":482,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56037217755579,
+ 45.53391649819813
+ ],
+ [
+ -73.56034116893164,
+ 45.53390214951488
+ ],
+ [
+ -73.56028306913018,
+ 45.533875249893164
+ ],
+ [
+ -73.56028296930543,
+ 45.533875249893164
+ ],
+ [
+ -73.56019406952254,
+ 45.53397694972674
+ ],
+ [
+ -73.56019836918124,
+ 45.53397875016948
+ ],
+ [
+ -73.56028245309457,
+ 45.53401328503537
+ ],
+ [
+ -73.56037217755579,
+ 45.53391649819813
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":482,
+ "ID_UEV":"01023165",
+ "CIVIQUE_DE":" 2501",
+ "CIVIQUE_FI":" 2505",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1951,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-9486-7-000-0000",
+ "SUPERFICIE":272,
+ "SUPERFIC_1":201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000460909076889,
+ "OBJECTID":84177,
+ "Join_Count":1,
+ "TARGET_FID":84177,
+ "feature_id":"228f7c1f-91c7-40c1-8e1f-5aec2ebf83d7",
+ "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.51,
+ "heightmax":50.56,
+ "elevmin":31.57,
+ "elevmax":39.27,
+ "bldgarea":1377.3,
+ "comment":" ",
+ "OBJECTID_2":84177,
+ "Shape_Le_1":0.000460909076889,
+ "Shape_Ar_1":1.22802118254e-08,
+ "OBJECTID_3":84177,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84176,
+ "g_objectid":"941418",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425427",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307948670000000",
+ "g_sup_tota":"272.4",
+ "g_geometry":"0.000836562",
+ "g_geomet_1":"3.13644e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000460909076889,
+ "Shape_Area":1.22802118254e-08,
+ "Shape_Le_3":0.000460909066985,
+ "Shape_Ar_2":1.22802118254e-08,
+ "building_height":24.025000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":483,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5566538658051,
+ 45.50147735574566
+ ],
+ [
+ -73.55666707504732,
+ 45.50146377958006
+ ],
+ [
+ -73.55659952337115,
+ 45.50143127808131
+ ],
+ [
+ -73.55626666629546,
+ 45.50130174423041
+ ],
+ [
+ -73.55626596572358,
+ 45.501301443856846
+ ],
+ [
+ -73.55612033131008,
+ 45.50146735618384
+ ],
+ [
+ -73.5564847590862,
+ 45.501606555048774
+ ],
+ [
+ -73.55653711491776,
+ 45.50159715803271
+ ],
+ [
+ -73.5566538658051,
+ 45.50147735574566
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":483,
+ "ID_UEV":"01036444",
+ "CIVIQUE_DE":" 407",
+ "CIVIQUE_FI":" 407",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1890,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-31-9371-7-000-0000",
+ "SUPERFICIE":814,
+ "SUPERFIC_1":3104,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00128318665327,
+ "OBJECTID":84180,
+ "Join_Count":1,
+ "TARGET_FID":84180,
+ "feature_id":"2204f2a9-79ef-4a5e-b470-035ac998a812",
+ "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.93,
+ "heightmax":34.97,
+ "elevmin":12.89,
+ "elevmax":15.05,
+ "bldgarea":4303.63,
+ "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_2":84180,
+ "Shape_Le_1":0.00128318665327,
+ "Shape_Ar_1":8.77130018602e-08,
+ "OBJECTID_3":84180,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84179,
+ "g_objectid":"944924",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1179929",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"25",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004031749490000000",
+ "g_sup_tota":"650.7",
+ "g_geometry":"0.00124915",
+ "g_geomet_1":"7.45036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00128318665327,
+ "Shape_Area":8.77130018602e-08,
+ "Shape_Le_3":0.00128318668649,
+ "Shape_Ar_2":8.77130018602e-08,
+ "building_height":17.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":484,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55641240323168,
+ 45.50173175057013
+ ],
+ [
+ -73.5564973801718,
+ 45.50177202940593
+ ],
+ [
+ -73.55649810592469,
+ 45.501771299156424
+ ],
+ [
+ -73.55660558390242,
+ 45.50182408576324
+ ],
+ [
+ -73.55660560908343,
+ 45.50182405788426
+ ],
+ [
+ -73.55663534876417,
+ 45.50179048978957
+ ],
+ [
+ -73.55682238706535,
+ 45.501552690154824
+ ],
+ [
+ -73.5566538658051,
+ 45.50147735574566
+ ],
+ [
+ -73.55653711491776,
+ 45.50159715803271
+ ],
+ [
+ -73.5564847590862,
+ 45.501606555048774
+ ],
+ [
+ -73.55649592956534,
+ 45.50163068206062
+ ],
+ [
+ -73.55649976607319,
+ 45.50163234400777
+ ],
+ [
+ -73.55649775698774,
+ 45.5016346300844
+ ],
+ [
+ -73.55649858256538,
+ 45.50163641164138
+ ],
+ [
+ -73.55647575417456,
+ 45.50165966541152
+ ],
+ [
+ -73.55641240323168,
+ 45.50173175057013
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":484,
+ "ID_UEV":"01036446",
+ "CIVIQUE_DE":" 417",
+ "CIVIQUE_FI":" 419",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-31-7494-9-000-0000",
+ "SUPERFICIE":651,
+ "SUPERFIC_1":4986,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00113163522985,
+ "OBJECTID":84181,
+ "Join_Count":1,
+ "TARGET_FID":84181,
+ "feature_id":"2204f2a9-79ef-4a5e-b470-035ac998a812",
+ "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.93,
+ "heightmax":34.97,
+ "elevmin":12.89,
+ "elevmax":15.05,
+ "bldgarea":4303.63,
+ "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_2":84181,
+ "Shape_Le_1":0.00113163522985,
+ "Shape_Ar_1":6.85189710302e-08,
+ "OBJECTID_3":84181,
+ "Join_Cou_1":6,
+ "TARGET_F_1":84180,
+ "g_objectid":"944924",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1179929",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"25",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004031749490000000",
+ "g_sup_tota":"650.7",
+ "g_geometry":"0.00124915",
+ "g_geomet_1":"7.45036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00113163522985,
+ "Shape_Area":6.85189710302e-08,
+ "Shape_Le_3":0.00113163424867,
+ "Shape_Ar_2":6.85189710302e-08,
+ "building_height":17.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":485,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56225534712841,
+ 45.52843265179574
+ ],
+ [
+ -73.56226427020175,
+ 45.52843674910698
+ ],
+ [
+ -73.56233046300231,
+ 45.528467165977226
+ ],
+ [
+ -73.56243767208275,
+ 45.528353631065514
+ ],
+ [
+ -73.56236966984623,
+ 45.528321948849154
+ ],
+ [
+ -73.5623628646763,
+ 45.52831878773216
+ ],
+ [
+ -73.56225534712841,
+ 45.52843265179574
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":485,
+ "ID_UEV":"01034507",
+ "CIVIQUE_DE":" 2315",
+ "CIVIQUE_FI":" 2319",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-2966-1-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":280,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477947914838,
+ "OBJECTID":84184,
+ "Join_Count":1,
+ "TARGET_FID":84184,
+ "feature_id":"627c93de-3511-4cbc-a377-97d2326e5737",
+ "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.93,
+ "heightmax":40.68,
+ "elevmin":27.05,
+ "elevmax":39.63,
+ "bldgarea":2860.19,
+ "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_2":84184,
+ "Shape_Le_1":0.000477947914838,
+ "Shape_Ar_1":1.22465019662e-08,
+ "OBJECTID_3":84184,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84183,
+ "g_objectid":"942997",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885548",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391236980000000",
+ "g_sup_tota":"149.6",
+ "g_geometry":"0.000604984",
+ "g_geomet_1":"1.72273e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477947914838,
+ "Shape_Area":1.22465019662e-08,
+ "Shape_Le_3":0.000477948111906,
+ "Shape_Ar_2":1.22465019662e-08,
+ "building_height":19.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":486,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55603222113194,
+ 45.50264481065978
+ ],
+ [
+ -73.5560351888947,
+ 45.5026459375103
+ ],
+ [
+ -73.55612966627292,
+ 45.50253064352467
+ ],
+ [
+ -73.55613256568721,
+ 45.50252704353852
+ ],
+ [
+ -73.5561293263292,
+ 45.50252608126394
+ ],
+ [
+ -73.55603222113194,
+ 45.50264481065978
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55611689410122,
+ 45.502512443045106
+ ],
+ [
+ -73.55612932992648,
+ 45.5025181375523
+ ],
+ [
+ -73.5561852659591,
+ 45.50242804346973
+ ],
+ [
+ -73.5563867662581,
+ 45.502489943806154
+ ],
+ [
+ -73.55640276609662,
+ 45.50246404423055
+ ],
+ [
+ -73.5563688661521,
+ 45.50245364357109
+ ],
+ [
+ -73.55641296620728,
+ 45.502382243695884
+ ],
+ [
+ -73.55640616643328,
+ 45.50238014377891
+ ],
+ [
+ -73.55640490738242,
+ 45.502379761567035
+ ],
+ [
+ -73.55634346120361,
+ 45.50247300057881
+ ],
+ [
+ -73.55618302574788,
+ 45.502422785133724
+ ],
+ [
+ -73.55611689410122,
+ 45.502512443045106
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":486,
+ "ID_UEV":"01000422",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Nicolas (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-33-9500-7-000-0000",
+ "SUPERFICIE":1198,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00119357794929,
+ "OBJECTID":84185,
+ "Join_Count":1,
+ "TARGET_FID":84185,
+ "feature_id":"b6ccdff4-b60e-41c1-a01d-54b2ef58ff7d",
+ "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.95,
+ "heightmax":20.39,
+ "elevmin":13.73,
+ "elevmax":16.41,
+ "bldgarea":1790.73,
+ "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_2":84185,
+ "Shape_Le_1":0.00119357794929,
+ "Shape_Ar_1":4.28809604509e-09,
+ "OBJECTID_3":84185,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84184,
+ "g_objectid":"944935",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180880",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004042087380000000",
+ "g_sup_tota":"441.2",
+ "g_geometry":"0.00107831",
+ "g_geomet_1":"5.14961e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00119357794929,
+ "Shape_Area":4.28809604509e-09,
+ "Shape_Le_3":0.00119357605132,
+ "Shape_Ar_2":4.28809604509e-09,
+ "building_height":9.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":487,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57144718735965,
+ 45.5004475132924
+ ],
+ [
+ -73.57134027145821,
+ 45.50039484269813
+ ],
+ [
+ -73.57115877118218,
+ 45.50030544289217
+ ],
+ [
+ -73.57093973680125,
+ 45.50052535591074
+ ],
+ [
+ -73.57123137974622,
+ 45.500667339976054
+ ],
+ [
+ -73.57144718735965,
+ 45.5004475132924
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":487,
+ "ID_UEV":"01037683",
+ "CIVIQUE_DE":" 1225",
+ "CIVIQUE_FI":" 1229",
+ "NOM_RUE":"rue Metcalfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":7,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1963,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services de l'automobile",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-20-3764-4-000-0000",
+ "SUPERFICIE":875,
+ "SUPERFIC_1":6050,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00126431309373,
+ "OBJECTID":84192,
+ "Join_Count":1,
+ "TARGET_FID":84192,
+ "feature_id":"c24933b9-fffa-4b67-89e2-db6e4541b3af",
+ "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":21.67,
+ "elevmin":35.15,
+ "elevmax":36.29,
+ "bldgarea":1487.12,
+ "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_2":84192,
+ "Shape_Le_1":0.00126431309373,
+ "Shape_Ar_1":9.46490248194e-08,
+ "OBJECTID_3":84192,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84191,
+ "g_objectid":"939764",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340244",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994020227450000000",
+ "g_sup_tota":"211.7",
+ "g_geometry":"0.000796003",
+ "g_geomet_1":"2.41956e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00126431309373,
+ "Shape_Area":9.46490248194e-08,
+ "Shape_Le_3":0.00126431389489,
+ "Shape_Ar_2":9.46490248194e-08,
+ "building_height":10.58
+ }
+ },
+ {
+ "type":"Feature",
+ "id":488,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55988682513872,
+ 45.51741218497465
+ ],
+ [
+ -73.55989176781267,
+ 45.51741404657129
+ ],
+ [
+ -73.55986356777127,
+ 45.517451147202976
+ ],
+ [
+ -73.55986746813099,
+ 45.51745264727215
+ ],
+ [
+ -73.5598847683892,
+ 45.517455046663365
+ ],
+ [
+ -73.55987233706055,
+ 45.51749962515787
+ ],
+ [
+ -73.5598766627996,
+ 45.51750159017654
+ ],
+ [
+ -73.55991998224323,
+ 45.517507526601364
+ ],
+ [
+ -73.55992529813585,
+ 45.51750176194705
+ ],
+ [
+ -73.56005648943729,
+ 45.51735936689156
+ ],
+ [
+ -73.56005156834705,
+ 45.51735714646543
+ ],
+ [
+ -73.55997110510427,
+ 45.517320858820874
+ ],
+ [
+ -73.55988682513872,
+ 45.51741218497465
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5598256802328,
+ 45.51747843982843
+ ],
+ [
+ -73.55982892588607,
+ 45.51747991381726
+ ],
+ [
+ -73.55984726845851,
+ 45.517460646741746
+ ],
+ [
+ -73.55984736828326,
+ 45.517460447092255
+ ],
+ [
+ -73.55984359292931,
+ 45.51745902886139
+ ],
+ [
+ -73.5598256802328,
+ 45.51747843982843
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":488,
+ "ID_UEV":"01039910",
+ "CIVIQUE_DE":" 1579",
+ "CIVIQUE_FI":" 1583",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-19-1646-3-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":509,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000648513937005,
+ "OBJECTID":84197,
+ "Join_Count":1,
+ "TARGET_FID":84197,
+ "feature_id":"39a7235b-93aa-4e44-a86b-293c0585f3d9",
+ "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":42.96,
+ "elevmin":26.47,
+ "elevmax":28.06,
+ "bldgarea":1574.35,
+ "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_2":84197,
+ "Shape_Le_1":0.000648513937005,
+ "Shape_Ar_1":1.68792006362e-08,
+ "OBJECTID_3":84197,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84196,
+ "g_objectid":"943412",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161995",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004119104900000000",
+ "g_sup_tota":"124.3",
+ "g_geometry":"0.000545479",
+ "g_geomet_1":"1.41406e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000648513937005,
+ "Shape_Area":1.68792006362e-08,
+ "Shape_Le_3":0.000648515506684,
+ "Shape_Ar_2":1.68792006362e-08,
+ "building_height":21.22
+ }
+ },
+ {
+ "type":"Feature",
+ "id":489,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56328806021764,
+ 45.5177767485484
+ ],
+ [
+ -73.56329396876349,
+ 45.51777934668979
+ ],
+ [
+ -73.56329406948757,
+ 45.51777924686505
+ ],
+ [
+ -73.56334106895702,
+ 45.51773174647322
+ ],
+ [
+ -73.56340883647047,
+ 45.51776486670553
+ ],
+ [
+ -73.56350011855747,
+ 45.51766549791469
+ ],
+ [
+ -73.56342273279473,
+ 45.517630146464384
+ ],
+ [
+ -73.56328806021764,
+ 45.5177767485484
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":489,
+ "ID_UEV":"01003351",
+ "CIVIQUE_DE":" 1765",
+ "CIVIQUE_FI":" 1767",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-4679-6-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":253,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000567925609174,
+ "OBJECTID":84199,
+ "Join_Count":1,
+ "TARGET_FID":84199,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":84199,
+ "Shape_Le_1":0.000567925609174,
+ "Shape_Ar_1":1.13103871002e-08,
+ "OBJECTID_3":84199,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84198,
+ "g_objectid":"943260",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161620",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189467960000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702141",
+ "g_geomet_1":"2.15148e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000567925609174,
+ "Shape_Area":1.13103871002e-08,
+ "Shape_Le_3":0.000567926669938,
+ "Shape_Ar_2":1.13103871002e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":490,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55719362540734,
+ 45.51871923715337
+ ],
+ [
+ -73.55725596641156,
+ 45.51874783469511
+ ],
+ [
+ -73.55733512833535,
+ 45.518661678743776
+ ],
+ [
+ -73.55732626731523,
+ 45.518658946603395
+ ],
+ [
+ -73.55733496735671,
+ 45.518645046681854
+ ],
+ [
+ -73.55733486753195,
+ 45.51864494685711
+ ],
+ [
+ -73.55729386743988,
+ 45.5186523464789
+ ],
+ [
+ -73.55729326669275,
+ 45.51865294722603
+ ],
+ [
+ -73.5572679813541,
+ 45.51864001227704
+ ],
+ [
+ -73.55719362540734,
+ 45.51871923715337
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":490,
+ "ID_UEV":"01040262",
+ "CIVIQUE_DE":" 1460",
+ "CIVIQUE_FI":" 1460",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-30-2380-3-000-0000",
+ "SUPERFICIE":199,
+ "SUPERFIC_1":118,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000390967848606,
+ "OBJECTID":84204,
+ "Join_Count":1,
+ "TARGET_FID":84204,
+ "feature_id":"83b52556-e2c2-40cf-b67a-88dc09ce856f",
+ "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.5,
+ "heightmax":13.7,
+ "elevmin":23.39,
+ "elevmax":26.36,
+ "bldgarea":1285.24,
+ "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_2":84204,
+ "Shape_Le_1":0.000390967848606,
+ "Shape_Ar_1":7.40902695946e-09,
+ "OBJECTID_3":84204,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84203,
+ "g_objectid":"941746",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566441",
+ "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":"66023004230308240000000",
+ "g_sup_tota":"106.7",
+ "g_geometry":"0.000477388",
+ "g_geomet_1":"1.2292e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000390967848606,
+ "Shape_Area":7.40902695946e-09,
+ "Shape_Le_3":0.000390967683556,
+ "Shape_Ar_2":7.40902695946e-09,
+ "building_height":5.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":491,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55860517700916,
+ 45.51922869409925
+ ],
+ [
+ -73.55850896843599,
+ 45.51918474692882
+ ],
+ [
+ -73.55843236778139,
+ 45.519268247182154
+ ],
+ [
+ -73.55849866850059,
+ 45.51929784656866
+ ],
+ [
+ -73.55852863031389,
+ 45.51931116552816
+ ],
+ [
+ -73.55860517700916,
+ 45.51922869409925
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55838202733054,
+ 45.519259882587804
+ ],
+ [
+ -73.55838906812284,
+ 45.51926284675327
+ ],
+ [
+ -73.55846006779973,
+ 45.51917994724706
+ ],
+ [
+ -73.55845778172309,
+ 45.51917898317383
+ ],
+ [
+ -73.55838202733054,
+ 45.519259882587804
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":491,
+ "ID_UEV":"01040266",
+ "CIVIQUE_DE":" 1590",
+ "CIVIQUE_FI":" 1594",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-2744-9-000-0000",
+ "SUPERFICIE":289,
+ "SUPERFIC_1":305,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000667102327298,
+ "OBJECTID":84205,
+ "Join_Count":2,
+ "TARGET_FID":84205,
+ "feature_id":"9ad001c8-0747-41dc-973c-1348eb39c1b8",
+ "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.99,
+ "heightmax":11.08,
+ "elevmin":26.78,
+ "elevmax":27.4,
+ "bldgarea":142.6,
+ "comment":" ",
+ "OBJECTID_2":84205,
+ "Shape_Le_1":0.000667102327298,
+ "Shape_Ar_1":1.18399828402e-08,
+ "OBJECTID_3":84205,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84204,
+ "g_objectid":"941721",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566398",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004221274490000000",
+ "g_sup_tota":"289.2",
+ "g_geometry":"0.000773169",
+ "g_geomet_1":"3.36399e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000667102327298,
+ "Shape_Area":1.18399828402e-08,
+ "Shape_Le_3":0.000667100776486,
+ "Shape_Ar_2":1.18399828402e-08,
+ "building_height":4.045
+ }
+ },
+ {
+ "type":"Feature",
+ "id":492,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55852863031389,
+ 45.51931116552816
+ ],
+ [
+ -73.55863476830176,
+ 45.51935834666067
+ ],
+ [
+ -73.5586375678913,
+ 45.51935524669757
+ ],
+ [
+ -73.55870936796481,
+ 45.519274246559526
+ ],
+ [
+ -73.55862526786366,
+ 45.51923794722378
+ ],
+ [
+ -73.55861886828798,
+ 45.51923494708544
+ ],
+ [
+ -73.55860517700916,
+ 45.51922869409925
+ ],
+ [
+ -73.55852863031389,
+ 45.51931116552816
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":492,
+ "ID_UEV":"01040267",
+ "CIVIQUE_DE":" 1600",
+ "CIVIQUE_FI":" 1604",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-1652-5-000-0000",
+ "SUPERFICIE":293,
+ "SUPERFIC_1":305,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000454811761682,
+ "OBJECTID":84206,
+ "Join_Count":1,
+ "TARGET_FID":84206,
+ "feature_id":"811b43c7-1124-4007-ac38-e45729213ea9",
+ "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.6,
+ "heightmax":10.89,
+ "elevmin":26.69,
+ "elevmax":27.06,
+ "bldgarea":204.51,
+ "comment":" ",
+ "OBJECTID_2":84206,
+ "Shape_Le_1":0.000454811761682,
+ "Shape_Ar_1":1.22410469202e-08,
+ "OBJECTID_3":84206,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84205,
+ "g_objectid":"941721",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566398",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004221274490000000",
+ "g_sup_tota":"289.2",
+ "g_geometry":"0.000773169",
+ "g_geomet_1":"3.36399e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000454811761682,
+ "Shape_Area":1.22410469202e-08,
+ "Shape_Le_3":0.000454810780122,
+ "Shape_Ar_2":1.22410469202e-08,
+ "building_height":4.1450000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":493,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55888503254006,
+ 45.519354563212815
+ ],
+ [
+ -73.5587945679368,
+ 45.51931134719121
+ ],
+ [
+ -73.55871626846286,
+ 45.51939314682656
+ ],
+ [
+ -73.55880912886005,
+ 45.519436575088164
+ ],
+ [
+ -73.55888503254006,
+ 45.519354563212815
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":493,
+ "ID_UEV":"01040268",
+ "CIVIQUE_DE":" 1610",
+ "CIVIQUE_FI":" 1614",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-0659-1-000-0000",
+ "SUPERFICIE":300,
+ "SUPERFIC_1":305,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000427751773505,
+ "OBJECTID":84207,
+ "Join_Count":1,
+ "TARGET_FID":84207,
+ "feature_id":"8c8f1ab2-d4ad-4e94-ab89-37e2a6c0004a",
+ "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.67,
+ "heightmax":10.83,
+ "elevmin":26.61,
+ "elevmax":27.03,
+ "bldgarea":199.33,
+ "comment":" ",
+ "OBJECTID_2":84207,
+ "Shape_Le_1":0.000427751773505,
+ "Shape_Ar_1":1.08478999098e-08,
+ "OBJECTID_3":84207,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84206,
+ "g_objectid":"941712",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566388",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211956600000000",
+ "g_sup_tota":"299.6",
+ "g_geometry":"0.000780897",
+ "g_geomet_1":"3.47187e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000427751773505,
+ "Shape_Area":1.08478999098e-08,
+ "Shape_Le_3":0.000427751635126,
+ "Shape_Ar_2":1.08478999098e-08,
+ "building_height":4.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":494,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55880912886005,
+ 45.519436575088164
+ ],
+ [
+ -73.55881676770152,
+ 45.51944014719533
+ ],
+ [
+ -73.55891156793636,
+ 45.5194842472505
+ ],
+ [
+ -73.5589151679225,
+ 45.51948054654029
+ ],
+ [
+ -73.55898916773775,
+ 45.51940394678501
+ ],
+ [
+ -73.55889776783955,
+ 45.51936064712646
+ ],
+ [
+ -73.55888503254006,
+ 45.519354563212815
+ ],
+ [
+ -73.55880912886005,
+ 45.519436575088164
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":494,
+ "ID_UEV":"01040269",
+ "CIVIQUE_DE":" 1620",
+ "CIVIQUE_FI":" 1624",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-9566-0-000-0000",
+ "SUPERFICIE":300,
+ "SUPERFIC_1":305,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000451655510425,
+ "OBJECTID":84208,
+ "Join_Count":1,
+ "TARGET_FID":84208,
+ "feature_id":"8c8f1ab2-d4ad-4e94-ab89-37e2a6c0004a",
+ "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.67,
+ "heightmax":10.83,
+ "elevmin":26.61,
+ "elevmax":27.03,
+ "bldgarea":199.33,
+ "comment":" ",
+ "OBJECTID_2":84208,
+ "Shape_Le_1":0.000451655510425,
+ "Shape_Ar_1":1.21065455933e-08,
+ "OBJECTID_3":84208,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84207,
+ "g_objectid":"941712",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566388",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211956600000000",
+ "g_sup_tota":"299.6",
+ "g_geometry":"0.000780897",
+ "g_geomet_1":"3.47187e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000451655510425,
+ "Shape_Area":1.21065455933e-08,
+ "Shape_Le_3":0.000451655306222,
+ "Shape_Ar_2":1.21065455933e-08,
+ "building_height":4.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":495,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5588840630709,
+ 45.501435662276286
+ ],
+ [
+ -73.55888746700484,
+ 45.50143704363495
+ ],
+ [
+ -73.5588275775525,
+ 45.5015102115773
+ ],
+ [
+ -73.55902556150231,
+ 45.501599070890705
+ ],
+ [
+ -73.55906544643506,
+ 45.50155028446835
+ ],
+ [
+ -73.55908939178384,
+ 45.50151844576995
+ ],
+ [
+ -73.5588896964242,
+ 45.50142942817587
+ ],
+ [
+ -73.5588840630709,
+ 45.501435662276286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":495,
+ "ID_UEV":"01036624",
+ "CIVIQUE_DE":" 400",
+ "CIVIQUE_FI":" 400",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-11-9378-4-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":576,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00064513201247,
+ "OBJECTID":84209,
+ "Join_Count":1,
+ "TARGET_FID":84209,
+ "feature_id":"2dbc903a-f57f-4816-a4ac-647b024e23d6",
+ "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":49.41,
+ "elevmin":15.54,
+ "elevmax":18.2,
+ "bldgarea":2449.71,
+ "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_2":84209,
+ "Shape_Le_1":0.00064513201247,
+ "Shape_Ar_1":2.15670065815e-08,
+ "OBJECTID_3":84209,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84208,
+ "g_objectid":"937674",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1179771",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004011937840000000",
+ "g_sup_tota":"192.8",
+ "g_geometry":"0.000653163",
+ "g_geomet_1":"2.21988e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00064513201247,
+ "Shape_Area":2.15670065815e-08,
+ "Shape_Le_3":0.000645130614202,
+ "Shape_Ar_2":2.15670065815e-08,
+ "building_height":24.209999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":496,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56526467474679,
+ 45.51861031666308
+ ],
+ [
+ -73.56534420809058,
+ 45.51864515999643
+ ],
+ [
+ -73.56543885723931,
+ 45.518542709228946
+ ],
+ [
+ -73.56542217031875,
+ 45.518535547028165
+ ],
+ [
+ -73.56539337042955,
+ 45.5185245465209
+ ],
+ [
+ -73.56536146967792,
+ 45.51851264669158
+ ],
+ [
+ -73.56536767050343,
+ 45.518504346848424
+ ],
+ [
+ -73.56536677028207,
+ 45.51850404647486
+ ],
+ [
+ -73.56536382320373,
+ 45.51850299516739
+ ],
+ [
+ -73.56526467474679,
+ 45.51861031666308
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":496,
+ "ID_UEV":"01003072",
+ "CIVIQUE_DE":" 2059",
+ "CIVIQUE_FI":" 2061",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-60-9678-2-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":278,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000469894473609,
+ "OBJECTID":84210,
+ "Join_Count":1,
+ "TARGET_FID":84210,
+ "feature_id":"456c5cae-dfc9-4579-8f4a-f46828926cd4",
+ "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.36,
+ "heightmax":16.55,
+ "elevmin":26.56,
+ "elevmax":33.23,
+ "bldgarea":1108.56,
+ "comment":" ",
+ "OBJECTID_2":84210,
+ "Shape_Le_1":0.000469894473609,
+ "Shape_Ar_1":1.13599043964e-08,
+ "OBJECTID_3":84210,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84209,
+ "g_objectid":"943163",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161407",
+ "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":"66023994260967820000000",
+ "g_sup_tota":"188.8",
+ "g_geometry":"0.000708152",
+ "g_geomet_1":"2.19698e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000469894473609,
+ "Shape_Area":1.13599043964e-08,
+ "Shape_Le_3":0.000469896058043,
+ "Shape_Ar_2":1.13599043964e-08,
+ "building_height":7.595000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":497,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56518462069553,
+ 45.518575244901925
+ ],
+ [
+ -73.56526467474679,
+ 45.51861031666308
+ ],
+ [
+ -73.56536382320373,
+ 45.51850299516739
+ ],
+ [
+ -73.56527986969208,
+ 45.51847304684393
+ ],
+ [
+ -73.56528315311687,
+ 45.51846859070319
+ ],
+ [
+ -73.56518462069553,
+ 45.518575244901925
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":497,
+ "ID_UEV":"01003073",
+ "CIVIQUE_DE":" 2053",
+ "CIVIQUE_FI":" 2055",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-0273-0-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":270,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0004733817946,
+ "OBJECTID":84211,
+ "Join_Count":1,
+ "TARGET_FID":84211,
+ "feature_id":"456c5cae-dfc9-4579-8f4a-f46828926cd4",
+ "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.36,
+ "heightmax":16.55,
+ "elevmin":26.56,
+ "elevmax":33.23,
+ "bldgarea":1108.56,
+ "comment":" ",
+ "OBJECTID_2":84211,
+ "Shape_Le_1":0.0004733817946,
+ "Shape_Ar_1":1.17950666522e-08,
+ "OBJECTID_3":84211,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84210,
+ "g_objectid":"943163",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161407",
+ "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":"66023994260967820000000",
+ "g_sup_tota":"188.8",
+ "g_geometry":"0.000708152",
+ "g_geomet_1":"2.19698e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0004733817946,
+ "Shape_Area":1.17950666522e-08,
+ "Shape_Le_3":0.000473383073116,
+ "Shape_Ar_2":1.17950666522e-08,
+ "building_height":7.595000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":498,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55665601878209,
+ 45.50125053953107
+ ],
+ [
+ -73.55665856656144,
+ 45.50125174372329
+ ],
+ [
+ -73.5565748702559,
+ 45.5013391551282
+ ],
+ [
+ -73.55665952973536,
+ 45.501379360219595
+ ],
+ [
+ -73.55676797898089,
+ 45.501253702446704
+ ],
+ [
+ -73.55668863089744,
+ 45.50121670883434
+ ],
+ [
+ -73.55665601878209,
+ 45.50125053953107
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":498,
+ "ID_UEV":"01036476",
+ "CIVIQUE_DE":" 410",
+ "CIVIQUE_FI":" 410",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1964,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-31-7054-1-000-0000",
+ "SUPERFICIE":128,
+ "SUPERFIC_1":517,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000518081165774,
+ "OBJECTID":84217,
+ "Join_Count":1,
+ "TARGET_FID":84217,
+ "feature_id":"b1687429-bb54-469f-ba3f-2d9124402e3d",
+ "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.93,
+ "heightmax":29.6,
+ "elevmin":12.78,
+ "elevmax":15.03,
+ "bldgarea":4189.6,
+ "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_2":84217,
+ "Shape_Le_1":0.000518081165774,
+ "Shape_Ar_1":1.43718940318e-08,
+ "OBJECTID_3":84217,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84216,
+ "g_objectid":"939494",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179930",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004031834520000000",
+ "g_sup_tota":"369.9",
+ "g_geometry":"0.000872531",
+ "g_geomet_1":"4.27562e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000518081165774,
+ "Shape_Area":1.43718940318e-08,
+ "Shape_Le_3":0.000518082544374,
+ "Shape_Ar_2":1.43718940318e-08,
+ "building_height":14.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":499,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55978530696818,
+ 45.528656737668605
+ ],
+ [
+ -73.55989243241167,
+ 45.52870220199532
+ ],
+ [
+ -73.55999780687513,
+ 45.52859195770298
+ ],
+ [
+ -73.55989332274049,
+ 45.528542265663326
+ ],
+ [
+ -73.55978530696818,
+ 45.528656737668605
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":499,
+ "ID_UEV":"01035183",
+ "CIVIQUE_DE":" 2155",
+ "CIVIQUE_FI":" 2165",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-2393-4-000-0000",
+ "SUPERFICIE":250,
+ "SUPERFIC_1":360,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000541965552019,
+ "OBJECTID":84218,
+ "Join_Count":1,
+ "TARGET_FID":84218,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":84218,
+ "Shape_Le_1":0.000541965552019,
+ "Shape_Ar_1":1.69643405064e-08,
+ "OBJECTID_3":84218,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84217,
+ "g_objectid":"943494",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311169790000000",
+ "g_sup_tota":"124.9",
+ "g_geometry":"0.000645312",
+ "g_geomet_1":"1.46647e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000541965552019,
+ "Shape_Area":1.69643405064e-08,
+ "Shape_Le_3":0.000541965914838,
+ "Shape_Ar_2":1.69643405064e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":500,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55967498623347,
+ 45.528609918063566
+ ],
+ [
+ -73.55978530696818,
+ 45.528656737668605
+ ],
+ [
+ -73.55989332274049,
+ 45.528542265663326
+ ],
+ [
+ -73.5598621693255,
+ 45.528527448433294
+ ],
+ [
+ -73.55978666404515,
+ 45.528491564584336
+ ],
+ [
+ -73.55967498623347,
+ 45.528609918063566
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":500,
+ "ID_UEV":"01035184",
+ "CIVIQUE_DE":" 2143",
+ "CIVIQUE_FI":" 2153",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-3088-9-000-0000",
+ "SUPERFICIE":258,
+ "SUPERFIC_1":366,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000558055278028,
+ "OBJECTID":84219,
+ "Join_Count":1,
+ "TARGET_FID":84219,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":84219,
+ "Shape_Le_1":0.000558055278028,
+ "Shape_Ar_1":1.79862004926e-08,
+ "OBJECTID_3":84219,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84218,
+ "g_objectid":"943495",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316903",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311388250000000",
+ "g_sup_tota":"257.5",
+ "g_geometry":"0.0007644",
+ "g_geomet_1":"2.96639e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000558055278028,
+ "Shape_Area":1.79862004926e-08,
+ "Shape_Le_3":0.000558054705176,
+ "Shape_Ar_2":1.79862004926e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":501,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55951113155533,
+ 45.528501168444464
+ ],
+ [
+ -73.55952416902703,
+ 45.52850574869164
+ ],
+ [
+ -73.55950256911012,
+ 45.52853664849783
+ ],
+ [
+ -73.55956468618317,
+ 45.52856307597547
+ ],
+ [
+ -73.55967969328506,
+ 45.5284411962545
+ ],
+ [
+ -73.55960222298604,
+ 45.528405256647574
+ ],
+ [
+ -73.55951113155533,
+ 45.528501168444464
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":501,
+ "ID_UEV":"01035186",
+ "CIVIQUE_DE":" 2123",
+ "CIVIQUE_FI":" 2129",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-4677-8-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":293,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000504275887277,
+ "OBJECTID":84220,
+ "Join_Count":1,
+ "TARGET_FID":84220,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":84220,
+ "Shape_Le_1":0.000504275887277,
+ "Shape_Ar_1":1.31397283607e-08,
+ "OBJECTID_3":84220,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84219,
+ "g_objectid":"943519",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316905",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311527350000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000700446",
+ "g_geomet_1":"2.14921e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000504275887277,
+ "Shape_Area":1.31397283607e-08,
+ "Shape_Le_3":0.000504275372865,
+ "Shape_Ar_2":1.31397283607e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":502,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55887103639107,
+ 45.53554218197641
+ ],
+ [
+ -73.55887451047212,
+ 45.53554365506592
+ ],
+ [
+ -73.55887936950914,
+ 45.53553814941636
+ ],
+ [
+ -73.55890566928305,
+ 45.53554934957312
+ ],
+ [
+ -73.55904722976769,
+ 45.53560965810953
+ ],
+ [
+ -73.55915188567283,
+ 45.535490640031306
+ ],
+ [
+ -73.55898393368344,
+ 45.535418267089646
+ ],
+ [
+ -73.55887103639107,
+ 45.53554218197641
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":502,
+ "ID_UEV":"01023736",
+ "CIVIQUE_DE":" 2506",
+ "CIVIQUE_FI":" 2524",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-8853-4-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":624,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000702575494954,
+ "OBJECTID":84233,
+ "Join_Count":1,
+ "TARGET_FID":84233,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":84233,
+ "Shape_Le_1":0.000702575494954,
+ "Shape_Ar_1":2.78837687689e-08,
+ "OBJECTID_3":84233,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84232,
+ "g_objectid":"944730",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319746330000000",
+ "g_sup_tota":"448.9",
+ "g_geometry":"0.000957772",
+ "g_geomet_1":"5.21875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000702575494954,
+ "Shape_Area":2.78837687689e-08,
+ "Shape_Le_3":0.000702575108563,
+ "Shape_Ar_2":2.78837687689e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":503,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55886916670053,
+ 45.52600317016047
+ ],
+ [
+ -73.55887580999249,
+ 45.526006257533055
+ ],
+ [
+ -73.55891916810697,
+ 45.525959848018864
+ ],
+ [
+ -73.5589456684297,
+ 45.52597214804649
+ ],
+ [
+ -73.55890195418368,
+ 45.52601841097118
+ ],
+ [
+ -73.55908885219063,
+ 45.52610529447406
+ ],
+ [
+ -73.55913495413667,
+ 45.52605602871305
+ ],
+ [
+ -73.55891488733403,
+ 45.52595372453506
+ ],
+ [
+ -73.55886916670053,
+ 45.52600317016047
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":503,
+ "ID_UEV":"01035454",
+ "CIVIQUE_DE":" 1814",
+ "CIVIQUE_FI":" 1818",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-19-9103-5-000-0000",
+ "SUPERFICIE":135,
+ "SUPERFIC_1":373,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00074730814219,
+ "OBJECTID":84237,
+ "Join_Count":1,
+ "TARGET_FID":84237,
+ "feature_id":"4f95662c-071e-4074-8729-3b9d55143853",
+ "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.67,
+ "heightmax":37,
+ "elevmin":25.08,
+ "elevmax":26.05,
+ "bldgarea":652.7,
+ "comment":" ",
+ "OBJECTID_2":84237,
+ "Shape_Le_1":0.00074730814219,
+ "Shape_Ar_1":1.37928210636e-08,
+ "OBJECTID_3":84237,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84236,
+ "g_objectid":"938282",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567206",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004218879770000000",
+ "g_sup_tota":"131.7",
+ "g_geometry":"0.000616409",
+ "g_geomet_1":"1.50884e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00074730814219,
+ "Shape_Area":1.37928210636e-08,
+ "Shape_Le_3":0.000747308655051,
+ "Shape_Ar_2":1.37928210636e-08,
+ "building_height":17.165
+ }
+ },
+ {
+ "type":"Feature",
+ "id":504,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5567774191644,
+ 45.50130143756159
+ ],
+ [
+ -73.55698689105402,
+ 45.50139853376562
+ ],
+ [
+ -73.55704310317851,
+ 45.50133676203224
+ ],
+ [
+ -73.55683290283804,
+ 45.501240193730254
+ ],
+ [
+ -73.5567774191644,
+ 45.50130143756159
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":504,
+ "ID_UEV":"01000282",
+ "CIVIQUE_DE":" 356",
+ "CIVIQUE_FI":" 356",
+ "NOM_RUE":"rue Le Moyne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1909,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services d'affaires",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-31-5256-4-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":547,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000628361741385,
+ "OBJECTID":84239,
+ "Join_Count":1,
+ "TARGET_FID":84239,
+ "feature_id":"b1687429-bb54-469f-ba3f-2d9124402e3d",
+ "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.93,
+ "heightmax":29.6,
+ "elevmin":12.78,
+ "elevmax":15.03,
+ "bldgarea":4189.6,
+ "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_2":84239,
+ "Shape_Le_1":0.000628361741385,
+ "Shape_Ar_1":1.83144662217e-08,
+ "OBJECTID_3":84239,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84238,
+ "g_objectid":"939490",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179918",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004031475070000000",
+ "g_sup_tota":"156.9",
+ "g_geometry":"0.000627562",
+ "g_geomet_1":"1.81717e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000628361741385,
+ "Shape_Area":1.83144662217e-08,
+ "Shape_Le_3":0.000628361705113,
+ "Shape_Ar_2":1.83144662217e-08,
+ "building_height":14.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":505,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55919151969472,
+ 45.527620271708464
+ ],
+ [
+ -73.55927163849717,
+ 45.52766493024263
+ ],
+ [
+ -73.55938510685904,
+ 45.52754495978236
+ ],
+ [
+ -73.55929976569348,
+ 45.52750574214658
+ ],
+ [
+ -73.55919151969472,
+ 45.527620271708464
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":505,
+ "ID_UEV":"01034932",
+ "CIVIQUE_DE":" 2059",
+ "CIVIQUE_FI":" 2063",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-6976-4-000-0000",
+ "SUPERFICIE":195,
+ "SUPERFIC_1":213,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00050836395276,
+ "OBJECTID":84244,
+ "Join_Count":1,
+ "TARGET_FID":84244,
+ "feature_id":"4f271120-04d5-422e-86e4-132f0b57d285",
+ "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.47,
+ "heightmax":38.14,
+ "elevmin":24.71,
+ "elevmax":26.72,
+ "bldgarea":1453.06,
+ "comment":" ",
+ "OBJECTID_2":84244,
+ "Shape_Le_1":0.00050836395276,
+ "Shape_Ar_1":1.43491757112e-08,
+ "OBJECTID_3":84244,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84243,
+ "g_objectid":"942991",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885494",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310697640000000",
+ "g_sup_tota":"194.9",
+ "g_geometry":"0.000695109",
+ "g_geomet_1":"2.25751e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00050836395276,
+ "Shape_Area":1.43491757112e-08,
+ "Shape_Le_3":0.000508364488703,
+ "Shape_Ar_2":1.43491757112e-08,
+ "building_height":17.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":506,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55521455393037,
+ 45.5251593551704
+ ],
+ [
+ -73.55529454682772,
+ 45.52519901707127
+ ],
+ [
+ -73.55539858130133,
+ 45.5250887997586
+ ],
+ [
+ -73.55531667374734,
+ 45.525050727859096
+ ],
+ [
+ -73.55521455393037,
+ 45.5251593551704
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":506,
+ "ID_UEV":"01034591",
+ "CIVIQUE_DE":" 1705",
+ "CIVIQUE_FI":" 1709",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-48-8002-9-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000480261798621,
+ "OBJECTID":84254,
+ "Join_Count":1,
+ "TARGET_FID":84254,
+ "feature_id":"c4b2e5df-abbf-4c78-b176-bdbca391f41d",
+ "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.55,
+ "heightmax":38.15,
+ "elevmin":24.15,
+ "elevmax":26.2,
+ "bldgarea":1190.97,
+ "comment":" ",
+ "OBJECTID_2":84254,
+ "Shape_Le_1":0.000480261798621,
+ "Shape_Ar_1":1.28640046558e-08,
+ "OBJECTID_3":84254,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84253,
+ "g_objectid":"942398",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729298",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004247869860000000",
+ "g_sup_tota":"149.6",
+ "g_geometry":"0.000585048",
+ "g_geomet_1":"1.73263e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000480261798621,
+ "Shape_Area":1.28640046558e-08,
+ "Shape_Le_3":0.000480262776585,
+ "Shape_Ar_2":1.28640046558e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":507,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55351917269351,
+ 45.53327346494874
+ ],
+ [
+ -73.55359267338501,
+ 45.533304639947474
+ ],
+ [
+ -73.55366625051889,
+ 45.53321885991275
+ ],
+ [
+ -73.5535941905413,
+ 45.53318600857773
+ ],
+ [
+ -73.55351917269351,
+ 45.53327346494874
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":507,
+ "ID_UEV":"01023634",
+ "CIVIQUE_DE":" 2042",
+ "CIVIQUE_FI":" 2044",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-66-1099-2-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":148,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000387267334457,
+ "OBJECTID":84261,
+ "Join_Count":1,
+ "TARGET_FID":84261,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":84261,
+ "Shape_Le_1":0.000387267334457,
+ "Shape_Ar_1":8.68252789582e-09,
+ "OBJECTID_3":84261,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84260,
+ "g_objectid":"941205",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425142",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004366169570000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.00065315",
+ "g_geomet_1":"1.87723e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000387267334457,
+ "Shape_Area":8.68252789582e-09,
+ "Shape_Le_3":0.000387269036321,
+ "Shape_Ar_2":8.68252789582e-09,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":508,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56338988056038,
+ 45.521312559077636
+ ],
+ [
+ -73.56338976994377,
+ 45.5213126472112
+ ],
+ [
+ -73.5633995698561,
+ 45.52131864658856
+ ],
+ [
+ -73.5633748690768,
+ 45.521338446962055
+ ],
+ [
+ -73.56332286937676,
+ 45.52138004690194
+ ],
+ [
+ -73.56329016912785,
+ 45.52135994705421
+ ],
+ [
+ -73.56331506955667,
+ 45.52133984720648
+ ],
+ [
+ -73.5632762692063,
+ 45.52131604664853
+ ],
+ [
+ -73.56327386891576,
+ 45.52131484695292
+ ],
+ [
+ -73.5631723003832,
+ 45.5214169874543
+ ],
+ [
+ -73.56330430647041,
+ 45.52147796328767
+ ],
+ [
+ -73.56343740433459,
+ 45.52133431907386
+ ],
+ [
+ -73.56338988056038,
+ 45.521312559077636
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":508,
+ "ID_UEV":"01040288",
+ "CIVIQUE_DE":" 2056",
+ "CIVIQUE_FI":" 2066",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-83-5485-8-000-0000",
+ "SUPERFICIE":245,
+ "SUPERFIC_1":457,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000766016980257,
+ "OBJECTID":84264,
+ "Join_Count":1,
+ "TARGET_FID":84264,
+ "feature_id":"388af806-7bd5-42f4-9ae9-e434f2327f0c",
+ "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.21,
+ "heightmax":13.74,
+ "elevmin":26.71,
+ "elevmax":29.18,
+ "bldgarea":1424.32,
+ "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_2":84264,
+ "Shape_Le_1":0.000766016980257,
+ "Shape_Ar_1":1.99838039026e-08,
+ "OBJECTID_3":84264,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84263,
+ "g_objectid":"941549",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565410",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994283548580000000",
+ "g_sup_tota":"245.3",
+ "g_geometry":"0.000700692",
+ "g_geomet_1":"2.87689e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000766016980257,
+ "Shape_Area":1.99838039026e-08,
+ "Shape_Le_3":0.000766017622893,
+ "Shape_Ar_2":1.99838039026e-08,
+ "building_height":5.765000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":509,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56344699650353,
+ 45.521543872801786
+ ],
+ [
+ -73.56386463446715,
+ 45.52173678097795
+ ],
+ [
+ -73.5639396379258,
+ 45.52165584469177
+ ],
+ [
+ -73.56387056999266,
+ 45.52162414718694
+ ],
+ [
+ -73.56362386976762,
+ 45.52151084699828
+ ],
+ [
+ -73.56363037006737,
+ 45.52150374685073
+ ],
+ [
+ -73.56362636988291,
+ 45.52150224678156
+ ],
+ [
+ -73.56353036995246,
+ 45.52146674694311
+ ],
+ [
+ -73.56354317000314,
+ 45.52144964723373
+ ],
+ [
+ -73.56353657797254,
+ 45.521447206473695
+ ],
+ [
+ -73.56344699650353,
+ 45.521543872801786
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":509,
+ "ID_UEV":"01040293",
+ "CIVIQUE_DE":" 2080",
+ "CIVIQUE_FI":" 2124",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":15,
+ "ANNEE_CONS":1980,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-2107-9-000-0000",
+ "SUPERFICIE":738,
+ "SUPERFIC_1":1266,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0011942849009,
+ "OBJECTID":84268,
+ "Join_Count":1,
+ "TARGET_FID":84268,
+ "feature_id":"388af806-7bd5-42f4-9ae9-e434f2327f0c",
+ "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.21,
+ "heightmax":13.74,
+ "elevmin":26.71,
+ "elevmax":29.18,
+ "bldgarea":1424.32,
+ "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_2":84268,
+ "Shape_Le_1":0.0011942849009,
+ "Shape_Ar_1":4.87375512815e-08,
+ "OBJECTID_3":84268,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84267,
+ "g_objectid":"941547",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565398",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994283409560000000",
+ "g_sup_tota":"122.6",
+ "g_geometry":"0.00054554",
+ "g_geomet_1":"1.42719e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0011942849009,
+ "Shape_Area":4.87375512815e-08,
+ "Shape_Le_3":0.0011942851567,
+ "Shape_Ar_2":4.87375512815e-08,
+ "building_height":5.765000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":510,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55821030538313,
+ 45.50330907150674
+ ],
+ [
+ -73.55829717809414,
+ 45.50334669914115
+ ],
+ [
+ -73.55830041475419,
+ 45.50334264769533
+ ],
+ [
+ -73.55821030538313,
+ 45.50330907150674
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":510,
+ "ID_UEV":"01036639",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-23-4966-6-000-0000",
+ "SUPERFICIE":534,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00019601917866,
+ "OBJECTID":84284,
+ "Join_Count":1,
+ "TARGET_FID":84284,
+ "feature_id":"7674092f-b5fa-4784-868a-071938f89ad6",
+ "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.94,
+ "heightmax":45.4,
+ "elevmin":19.91,
+ "elevmax":21.46,
+ "bldgarea":5006.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_2":84284,
+ "Shape_Le_1":0.00019601917866,
+ "Shape_Ar_1":2.36860561621e-10,
+ "OBJECTID_3":84284,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84283,
+ "g_objectid":"945685",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1180787",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004023496660000000",
+ "g_sup_tota":"534.2",
+ "g_geometry":"0.00102328",
+ "g_geomet_1":"6.15115e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00019601917866,
+ "Shape_Area":2.36860561621e-10,
+ "Shape_Le_3":0.000196018778204,
+ "Shape_Ar_2":2.36860561621e-10,
+ "building_height":22.23
+ }
+ },
+ {
+ "type":"Feature",
+ "id":511,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55905768438647,
+ 45.528152619098385
+ ],
+ [
+ -73.55889606812089,
+ 45.52807764891466
+ ],
+ [
+ -73.55889306798255,
+ 45.5280808487025
+ ],
+ [
+ -73.55873849520724,
+ 45.52824596243152
+ ],
+ [
+ -73.55880203230979,
+ 45.52827574258175
+ ],
+ [
+ -73.55889156791338,
+ 45.52817224860069
+ ],
+ [
+ -73.55895056883553,
+ 45.52819744850374
+ ],
+ [
+ -73.5589193695551,
+ 45.52823344926457
+ ],
+ [
+ -73.55891706908932,
+ 45.52823584865578
+ ],
+ [
+ -73.55895882641056,
+ 45.52825604203301
+ ],
+ [
+ -73.55905768438647,
+ 45.528152619098385
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":511,
+ "ID_UEV":"01035194",
+ "CIVIQUE_DE":" 2015",
+ "CIVIQUE_FI":" 2019",
+ "NOM_RUE":"rue Dubuc (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-9842-3-000-0000",
+ "SUPERFICIE":407,
+ "SUPERFIC_1":677,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000920312912201,
+ "OBJECTID":84288,
+ "Join_Count":1,
+ "TARGET_FID":84288,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":84288,
+ "Shape_Le_1":0.000920312912201,
+ "Shape_Ar_1":2.66403489037e-08,
+ "OBJECTID_3":84288,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84287,
+ "g_objectid":"944826",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311984230000000",
+ "g_sup_tota":"406.7",
+ "g_geometry":"0.000899615",
+ "g_geomet_1":"4.64941e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000920312912201,
+ "Shape_Area":2.66403489037e-08,
+ "Shape_Le_3":0.000920312968312,
+ "Shape_Ar_2":2.66403489037e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":512,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55742251815653,
+ 45.520597315663885
+ ],
+ [
+ -73.55750068273217,
+ 45.520633686945395
+ ],
+ [
+ -73.5575724675172,
+ 45.52055764656843
+ ],
+ [
+ -73.55750466672883,
+ 45.52052594726495
+ ],
+ [
+ -73.5574841666828,
+ 45.52054774683135
+ ],
+ [
+ -73.55747352950164,
+ 45.52054277987568
+ ],
+ [
+ -73.55742251815653,
+ 45.520597315663885
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5576373886764,
+ 45.5205599785105
+ ],
+ [
+ -73.55760596816275,
+ 45.520598146637454
+ ],
+ [
+ -73.55763256831023,
+ 45.52060894659591
+ ],
+ [
+ -73.55763606847162,
+ 45.52060504713551
+ ],
+ [
+ -73.55764598979243,
+ 45.52060970652303
+ ],
+ [
+ -73.55767587606267,
+ 45.52057775451006
+ ],
+ [
+ -73.5576373886764,
+ 45.5205599785105
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":512,
+ "ID_UEV":"01022336",
+ "CIVIQUE_DE":" 1600",
+ "CIVIQUE_FI":" 1600",
+ "NOM_RUE":"avenue Lartigue (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-0397-5-000-0000",
+ "SUPERFICIE":196,
+ "SUPERFIC_1":100,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000562460607544,
+ "OBJECTID":84291,
+ "Join_Count":2,
+ "TARGET_FID":84291,
+ "feature_id":"a83cc904-7a50-493c-ad21-20b18d8929a1",
+ "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.44,
+ "heightmax":12.19,
+ "elevmin":26.18,
+ "elevmax":27.41,
+ "bldgarea":1089.65,
+ "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_2":84291,
+ "Shape_Le_1":0.000562460607544,
+ "Shape_Ar_1":1.01123591417e-08,
+ "OBJECTID_3":84291,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84290,
+ "g_objectid":"942026",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567238",
+ "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":"66023004223930410000000",
+ "g_sup_tota":"98.8",
+ "g_geometry":"0.000444448",
+ "g_geomet_1":"1.13412e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000562460607544,
+ "Shape_Area":1.01123591417e-08,
+ "Shape_Le_3":0.000562459895443,
+ "Shape_Ar_2":1.01123591417e-08,
+ "building_height":4.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":513,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55936144389736,
+ 45.52842214411695
+ ],
+ [
+ -73.5593799690322,
+ 45.528432448548955
+ ],
+ [
+ -73.5593661689354,
+ 45.52844484840133
+ ],
+ [
+ -73.55942269852056,
+ 45.52847608545328
+ ],
+ [
+ -73.55952475268703,
+ 45.52836931704064
+ ],
+ [
+ -73.55946036932244,
+ 45.52833944875685
+ ],
+ [
+ -73.55944660339988,
+ 45.52833305187914
+ ],
+ [
+ -73.55936144389736,
+ 45.52842214411695
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":513,
+ "ID_UEV":"01035188",
+ "CIVIQUE_DE":" 2109",
+ "CIVIQUE_FI":" 2115",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-5869-0-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":244,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000461434663427,
+ "OBJECTID":84299,
+ "Join_Count":1,
+ "TARGET_FID":84299,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":84299,
+ "Shape_Le_1":0.000461434663427,
+ "Shape_Ar_1":1.14295928159e-08,
+ "OBJECTID_3":84299,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84298,
+ "g_objectid":"943519",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316905",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311527350000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000700446",
+ "g_geomet_1":"2.14921e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000461434663427,
+ "Shape_Area":1.14295928159e-08,
+ "Shape_Le_3":0.000461433955641,
+ "Shape_Ar_2":1.14295928159e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":514,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55923039109152,
+ 45.528441227730774
+ ],
+ [
+ -73.55924386923103,
+ 45.52844874876104
+ ],
+ [
+ -73.55926526949844,
+ 45.52842974878418
+ ],
+ [
+ -73.55930736946138,
+ 45.528453149143814
+ ],
+ [
+ -73.55934976889856,
+ 45.52841564921314
+ ],
+ [
+ -73.55936144389736,
+ 45.52842214411695
+ ],
+ [
+ -73.55944660339988,
+ 45.52833305187914
+ ],
+ [
+ -73.55942076947477,
+ 45.52832104862779
+ ],
+ [
+ -73.55936845771,
+ 45.52829678312034
+ ],
+ [
+ -73.55923039109152,
+ 45.528441227730774
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":514,
+ "ID_UEV":"01035189",
+ "CIVIQUE_DE":" 2103",
+ "CIVIQUE_FI":" 2107",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-6464-9-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":281,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000571396001851,
+ "OBJECTID":84301,
+ "Join_Count":1,
+ "TARGET_FID":84301,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":84301,
+ "Shape_Le_1":0.000571396001851,
+ "Shape_Ar_1":1.38912789605e-08,
+ "OBJECTID_3":84301,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84300,
+ "g_objectid":"943520",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316906",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311586900000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000701769",
+ "g_geomet_1":"2.16036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000571396001851,
+ "Shape_Area":1.38912789605e-08,
+ "Shape_Le_3":0.000571396448479,
+ "Shape_Ar_2":1.38912789605e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":515,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5591668027276,
+ 45.528389726255156
+ ],
+ [
+ -73.55918856901908,
+ 45.52839664923627
+ ],
+ [
+ -73.55921506934182,
+ 45.52835544859537
+ ],
+ [
+ -73.55925266909725,
+ 45.52836734842469
+ ],
+ [
+ -73.55921196937872,
+ 45.528430848655034
+ ],
+ [
+ -73.55921196937872,
+ 45.52843094847978
+ ],
+ [
+ -73.55923039109152,
+ 45.528441227730774
+ ],
+ [
+ -73.55936845771,
+ 45.52829678312034
+ ],
+ [
+ -73.55929030032894,
+ 45.52826052605273
+ ],
+ [
+ -73.5591668027276,
+ 45.528389726255156
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":515,
+ "ID_UEV":"01035190",
+ "CIVIQUE_DE":" 2097",
+ "CIVIQUE_FI":" 2101",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-7060-4-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":281,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000672589251519,
+ "OBJECTID":84302,
+ "Join_Count":1,
+ "TARGET_FID":84302,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":84302,
+ "Shape_Le_1":0.000672589251519,
+ "Shape_Ar_1":1.29186314017e-08,
+ "OBJECTID_3":84302,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84301,
+ "g_objectid":"943523",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316910",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311765690000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000698957",
+ "g_geomet_1":"2.12963e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000672589251519,
+ "Shape_Area":1.29186314017e-08,
+ "Shape_Le_3":0.000672589174435,
+ "Shape_Ar_2":1.29186314017e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":516,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55901080092957,
+ 45.52828117718487
+ ],
+ [
+ -73.55911289736417,
+ 45.528330549965204
+ ],
+ [
+ -73.55921243522755,
+ 45.528224405682074
+ ],
+ [
+ -73.55910904286988,
+ 45.52817644393803
+ ],
+ [
+ -73.55902370620093,
+ 45.52826742025554
+ ],
+ [
+ -73.55901080092957,
+ 45.52828117718487
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":516,
+ "ID_UEV":"01035192",
+ "CIVIQUE_DE":" 2079",
+ "CIVIQUE_FI":" 2089",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1908,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-8352-4-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":366,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000516494929879,
+ "OBJECTID":84303,
+ "Join_Count":1,
+ "TARGET_FID":84303,
+ "feature_id":"6ea3b3d4-8cc7-49a4-80f7-2f76f52589ce",
+ "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.48,
+ "heightmax":39.13,
+ "elevmin":24.61,
+ "elevmax":28.15,
+ "bldgarea":2496.43,
+ "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_2":84303,
+ "Shape_Le_1":0.000516494929879,
+ "Shape_Ar_1":1.56458702353e-08,
+ "OBJECTID_3":84303,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84302,
+ "g_objectid":"943523",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316910",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311765690000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000698957",
+ "g_geomet_1":"2.12963e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000516494929879,
+ "Shape_Area":1.56458702353e-08,
+ "Shape_Le_3":0.000516495694434,
+ "Shape_Ar_2":1.56458702353e-08,
+ "building_height":18.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":517,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56431927053976,
+ 45.522225946520514
+ ],
+ [
+ -73.56432347037371,
+ 45.52222154703706
+ ],
+ [
+ -73.5644059696816,
+ 45.52213564649318
+ ],
+ [
+ -73.5643829704196,
+ 45.522124746709984
+ ],
+ [
+ -73.56437427037812,
+ 45.522133747125025
+ ],
+ [
+ -73.56424326973296,
+ 45.52206984669636
+ ],
+ [
+ -73.56419127003294,
+ 45.52204444714381
+ ],
+ [
+ -73.56419906985303,
+ 45.52203664642439
+ ],
+ [
+ -73.56419916967778,
+ 45.522036146401334
+ ],
+ [
+ -73.5641534697287,
+ 45.52203584692709
+ ],
+ [
+ -73.56415477014836,
+ 45.52203264713925
+ ],
+ [
+ -73.56414897042049,
+ 45.52203084669652
+ ],
+ [
+ -73.56406316970137,
+ 45.52200244700562
+ ],
+ [
+ -73.56399586983537,
+ 45.52207064709298
+ ],
+ [
+ -73.5640009698907,
+ 45.522073147208275
+ ],
+ [
+ -73.56419856982998,
+ 45.52216944661296
+ ],
+ [
+ -73.564184970282,
+ 45.522183246709766
+ ],
+ [
+ -73.56420476975616,
+ 45.522192946797354
+ ],
+ [
+ -73.56420537050329,
+ 45.522193146446845
+ ],
+ [
+ -73.56421927042483,
+ 45.52217854685275
+ ],
+ [
+ -73.56431927053976,
+ 45.522225946520514
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56391398476443,
+ 45.522106094770756
+ ],
+ [
+ -73.56392237993573,
+ 45.52211004998911
+ ],
+ [
+ -73.56405857056842,
+ 45.52196804703804
+ ],
+ [
+ -73.56405000182797,
+ 45.521963988397644
+ ],
+ [
+ -73.56400914113081,
+ 45.522006642342966
+ ],
+ [
+ -73.56393243705418,
+ 45.52208673416575
+ ],
+ [
+ -73.56391923860383,
+ 45.52210057743
+ ],
+ [
+ -73.56391398476443,
+ 45.522106094770756
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":517,
+ "ID_UEV":"01040298",
+ "CIVIQUE_DE":" 2185",
+ "CIVIQUE_FI":" 2195",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-74-7674-4-000-0000",
+ "SUPERFICIE":1116,
+ "SUPERFIC_1":929,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00143035563341,
+ "OBJECTID":84306,
+ "Join_Count":2,
+ "TARGET_FID":84306,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":84306,
+ "Shape_Le_1":0.00143035563341,
+ "Shape_Ar_1":4.02365989846e-08,
+ "OBJECTID_3":84306,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84305,
+ "g_objectid":"941518",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565343",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"23",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994274829160000000",
+ "g_sup_tota":"2185.9",
+ "g_geometry":"0.00225614",
+ "g_geomet_1":"2.52929e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00143035563341,
+ "Shape_Area":4.02365989846e-08,
+ "Shape_Le_3":0.00143035556952,
+ "Shape_Ar_2":4.02365989846e-08,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":518,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56356912803467,
+ 45.5218364969071
+ ],
+ [
+ -73.56364510186181,
+ 45.52186963512585
+ ],
+ [
+ -73.56370937550912,
+ 45.52180255289579
+ ],
+ [
+ -73.56363529295625,
+ 45.521767438866505
+ ],
+ [
+ -73.56356912803467,
+ 45.5218364969071
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":518,
+ "ID_UEV":"01040302",
+ "CIVIQUE_DE":" 2103",
+ "CIVIQUE_FI":" 2103",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-3038-5-000-0000",
+ "SUPERFICIE":122,
+ "SUPERFIC_1":105,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000353411283372,
+ "OBJECTID":84307,
+ "Join_Count":1,
+ "TARGET_FID":84307,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":84307,
+ "Shape_Le_1":0.000353411283372,
+ "Shape_Ar_1":7.33281955358e-09,
+ "OBJECTID_3":84307,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84306,
+ "g_objectid":"941558",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565434",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994284383210000000",
+ "g_sup_tota":"225.9",
+ "g_geometry":"0.000669829",
+ "g_geomet_1":"2.63358e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000353411283372,
+ "Shape_Area":7.33281955358e-09,
+ "Shape_Le_3":0.000353412313433,
+ "Shape_Ar_2":7.33281955358e-09,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":519,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56339514609097,
+ 45.52183901500883
+ ],
+ [
+ -73.5634178368855,
+ 45.521849529882196
+ ],
+ [
+ -73.56343696996204,
+ 45.52183014679414
+ ],
+ [
+ -73.56343706978679,
+ 45.521830046969384
+ ],
+ [
+ -73.5634131703034,
+ 45.521819946683486
+ ],
+ [
+ -73.56340886974539,
+ 45.521818546439064
+ ],
+ [
+ -73.56339514609097,
+ 45.52183901500883
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56363529295625,
+ 45.521767438866505
+ ],
+ [
+ -73.5635057698972,
+ 45.52170604664703
+ ],
+ [
+ -73.56343756980985,
+ 45.52177714704799
+ ],
+ [
+ -73.56343627028949,
+ 45.52177854729242
+ ],
+ [
+ -73.56356912803467,
+ 45.5218364969071
+ ],
+ [
+ -73.56363529295625,
+ 45.521767438866505
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":519,
+ "ID_UEV":"01040303",
+ "CIVIQUE_DE":" 2089",
+ "CIVIQUE_FI":" 2095",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-3832-1-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":216,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000591850785501,
+ "OBJECTID":84308,
+ "Join_Count":1,
+ "TARGET_FID":84308,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":84308,
+ "Shape_Le_1":0.000591850785501,
+ "Shape_Ar_1":1.40293366776e-08,
+ "OBJECTID_3":84308,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84307,
+ "g_objectid":"941558",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565434",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994284383210000000",
+ "g_sup_tota":"225.9",
+ "g_geometry":"0.000669829",
+ "g_geomet_1":"2.63358e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000591850785501,
+ "Shape_Area":1.40293366776e-08,
+ "Shape_Le_3":0.000591850874406,
+ "Shape_Ar_2":1.40293366776e-08,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":520,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56315385528804,
+ 45.52164164619531
+ ],
+ [
+ -73.56315556939586,
+ 45.52164214711769
+ ],
+ [
+ -73.56315929888439,
+ 45.521635850064726
+ ],
+ [
+ -73.56315385528804,
+ 45.52164164619531
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":520,
+ "ID_UEV":"01040304",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-5522-6-000-0000",
+ "SUPERFICIE":452,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":1.70563158231e-05,
+ "OBJECTID":84309,
+ "Join_Count":1,
+ "TARGET_FID":84309,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":84309,
+ "Shape_Le_1":1.70563158231e-05,
+ "Shape_Ar_1":6.33089412946e-12,
+ "OBJECTID_3":84309,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84308,
+ "g_objectid":"945355",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565411",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994284552260000000",
+ "g_sup_tota":"451.9",
+ "g_geometry":"0.00097553",
+ "g_geomet_1":"5.26626e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":1.70563158231e-05,
+ "Shape_Area":6.33089412946e-12,
+ "Shape_Le_3":1.70560012491e-05,
+ "Shape_Ar_2":6.33089412946e-12,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":521,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56297427056798,
+ 45.52162053461028
+ ],
+ [
+ -73.56297876897685,
+ 45.52162254729302
+ ],
+ [
+ -73.56298206948875,
+ 45.52162354643981
+ ],
+ [
+ -73.56299826897677,
+ 45.521596146795034
+ ],
+ [
+ -73.5631210687042,
+ 45.52163204683179
+ ],
+ [
+ -73.56315385528804,
+ 45.52164164619531
+ ],
+ [
+ -73.56315929888439,
+ 45.521635850064726
+ ],
+ [
+ -73.56316166949729,
+ 45.5216318471823
+ ],
+ [
+ -73.56316216952035,
+ 45.521631947007045
+ ],
+ [
+ -73.56317626909139,
+ 45.521616846490566
+ ],
+ [
+ -73.56321606948786,
+ 45.52157364665676
+ ],
+ [
+ -73.56307754511447,
+ 45.521510592490145
+ ],
+ [
+ -73.56297427056798,
+ 45.52162053461028
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":521,
+ "ID_UEV":"01040305",
+ "CIVIQUE_DE":" 2057",
+ "CIVIQUE_FI":" 2057",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-7111-6-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":187,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000597862510788,
+ "OBJECTID":84310,
+ "Join_Count":1,
+ "TARGET_FID":84310,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":84310,
+ "Shape_Le_1":0.000597862510788,
+ "Shape_Ar_1":1.5307739278e-08,
+ "OBJECTID_3":84310,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84309,
+ "g_objectid":"945355",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565411",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994284552260000000",
+ "g_sup_tota":"451.9",
+ "g_geometry":"0.00097553",
+ "g_geomet_1":"5.26626e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000597862510788,
+ "Shape_Area":1.5307739278e-08,
+ "Shape_Le_3":0.00059786277267,
+ "Shape_Ar_2":1.5307739278e-08,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":522,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56305857211726,
+ 45.528844410891146
+ ],
+ [
+ -73.56316907631367,
+ 45.528861608626634
+ ],
+ [
+ -73.56318267855961,
+ 45.528809914696104
+ ],
+ [
+ -73.56317670076598,
+ 45.5288088498988
+ ],
+ [
+ -73.56316581717057,
+ 45.52879888900782
+ ],
+ [
+ -73.5631764777341,
+ 45.52876501874092
+ ],
+ [
+ -73.56317166995845,
+ 45.52876344852462
+ ],
+ [
+ -73.56318846749562,
+ 45.52873785651716
+ ],
+ [
+ -73.56320302302294,
+ 45.52867161245525
+ ],
+ [
+ -73.5631260698341,
+ 45.52864664907389
+ ],
+ [
+ -73.56312567053511,
+ 45.528646549249146
+ ],
+ [
+ -73.56305857211726,
+ 45.528844410891146
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":522,
+ "ID_UEV":"01034493",
+ "CIVIQUE_DE":" 2395",
+ "CIVIQUE_FI":" 2395",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1947,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-82-6705-8-000-0000",
+ "SUPERFICIE":180,
+ "SUPERFIC_1":560,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000615358135517,
+ "OBJECTID":84316,
+ "Join_Count":1,
+ "TARGET_FID":84316,
+ "feature_id":"aa954180-2d9b-47ee-a839-6eb6f933f30e",
+ "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,
+ "heightmax":16.02,
+ "elevmin":38.34,
+ "elevmax":42.97,
+ "bldgarea":1037.27,
+ "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_2":84316,
+ "Shape_Le_1":0.000615358135517,
+ "Shape_Ar_1":1.85699080622e-08,
+ "OBJECTID_3":84316,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84315,
+ "g_objectid":"942999",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885624",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994382531240000000",
+ "g_sup_tota":"381.6",
+ "g_geometry":"0.000899945",
+ "g_geomet_1":"4.41854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000615358135517,
+ "Shape_Area":1.85699080622e-08,
+ "Shape_Le_3":0.000615357956761,
+ "Shape_Ar_2":1.85699080622e-08,
+ "building_height":7.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":523,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5613376834092,
+ 45.51643107588374
+ ],
+ [
+ -73.56168674177157,
+ 45.51659166872083
+ ],
+ [
+ -73.56198972516752,
+ 45.51626277585672
+ ],
+ [
+ -73.56181996913811,
+ 45.51618524710177
+ ],
+ [
+ -73.56181466943329,
+ 45.516182846811226
+ ],
+ [
+ -73.56180256905516,
+ 45.516195746686655
+ ],
+ [
+ -73.56159976923581,
+ 45.516102547245055
+ ],
+ [
+ -73.56159646872389,
+ 45.51610594668239
+ ],
+ [
+ -73.56154656804152,
+ 45.51615944645159
+ ],
+ [
+ -73.56148536827698,
+ 45.51613124641019
+ ],
+ [
+ -73.5614809678942,
+ 45.51612924721728
+ ],
+ [
+ -73.56141536774687,
+ 45.51620184678809
+ ],
+ [
+ -73.5616917689818,
+ 45.51632544691214
+ ],
+ [
+ -73.56169716941068,
+ 45.51632784720268
+ ],
+ [
+ -73.5617067687742,
+ 45.51631724689373
+ ],
+ [
+ -73.56180046913819,
+ 45.51635894665836
+ ],
+ [
+ -73.56173446879255,
+ 45.5164321469763
+ ],
+ [
+ -73.56146076822172,
+ 45.51631014674617
+ ],
+ [
+ -73.56146066839698,
+ 45.516310046921426
+ ],
+ [
+ -73.56142676845245,
+ 45.51634474726257
+ ],
+ [
+ -73.56141991381982,
+ 45.51634144315337
+ ],
+ [
+ -73.5613376834092,
+ 45.51643107588374
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":523,
+ "ID_UEV":"01003016",
+ "CIVIQUE_DE":" 1600",
+ "CIVIQUE_FI":" 1610",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":6,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"H\u00c3\u00b4tel (incluant les h\u00c3\u00b4tels-motels)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-98-8425-1-000-0000",
+ "SUPERFICIE":1753,
+ "SUPERFIC_1":6732,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00251435898223,
+ "OBJECTID":84320,
+ "Join_Count":1,
+ "TARGET_FID":84320,
+ "feature_id":"32690f96-1f27-4535-b687-9ac7c59a9e46",
+ "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.53,
+ "heightmax":49.54,
+ "elevmin":22.62,
+ "elevmax":28.17,
+ "bldgarea":3499.06,
+ "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_2":84320,
+ "Shape_Le_1":0.00251435898223,
+ "Shape_Ar_1":1.45585218331e-07,
+ "OBJECTID_3":84320,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84319,
+ "g_objectid":"945509",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2161770",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9520",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994198663810000000",
+ "g_sup_tota":"286.8",
+ "g_geometry":"0.00111864",
+ "g_geomet_1":"3.3291e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00251435898223,
+ "Shape_Area":1.45585218331e-07,
+ "Shape_Le_3":0.00251435817598,
+ "Shape_Ar_2":1.45585218331e-07,
+ "building_height":24.505
+ }
+ },
+ {
+ "type":"Feature",
+ "id":524,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56496252052575,
+ 45.518096220114764
+ ],
+ [
+ -73.56497047053263,
+ 45.51809964653176
+ ],
+ [
+ -73.56501387001593,
+ 45.518118646508626
+ ],
+ [
+ -73.56504190907869,
+ 45.51813087279184
+ ],
+ [
+ -73.56513562832843,
+ 45.518027611735185
+ ],
+ [
+ -73.56509487015398,
+ 45.5179958467812
+ ],
+ [
+ -73.56509377028311,
+ 45.51799654645375
+ ],
+ [
+ -73.5651205700801,
+ 45.517945746449335
+ ],
+ [
+ -73.56510317089646,
+ 45.51794124804046
+ ],
+ [
+ -73.56496252052575,
+ 45.518096220114764
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":524,
+ "ID_UEV":"01003042",
+ "CIVIQUE_DE":" 2034",
+ "CIVIQUE_FI":" 2036",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Clinique m\u00c3\u00a9dicale (cabinet de m\u00c3\u00a9decins g\u00c3\u00a9n\u00c3\u00a9ralistes)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-1513-8-000-0000",
+ "SUPERFICIE":200,
+ "SUPERFIC_1":364,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000563739170841,
+ "OBJECTID":84332,
+ "Join_Count":1,
+ "TARGET_FID":84332,
+ "feature_id":"02437dd3-64c3-49ff-b65a-5082346d0b17",
+ "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":19.57,
+ "elevmin":24.38,
+ "elevmax":38.3,
+ "bldgarea":3609.32,
+ "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_2":84332,
+ "Shape_Le_1":0.000563739170841,
+ "Shape_Ar_1":1.35412077231e-08,
+ "OBJECTID_3":84332,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84331,
+ "g_objectid":"938520",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"2161382",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6517",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270151380000000",
+ "g_sup_tota":"200.3",
+ "g_geometry":"0.000730468",
+ "g_geomet_1":"2.28911e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000563739170841,
+ "Shape_Area":1.35412077231e-08,
+ "Shape_Le_3":0.00056373823998,
+ "Shape_Ar_2":1.35412077231e-08,
+ "building_height":9.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":525,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.58106737378212,
+ 45.49918884284112
+ ],
+ [
+ -73.58091597381498,
+ 45.49934794280361
+ ],
+ [
+ -73.58092447420697,
+ 45.49935194298807
+ ],
+ [
+ -73.58103467443253,
+ 45.49940234279418
+ ],
+ [
+ -73.58120267408599,
+ 45.4992327432468
+ ],
+ [
+ -73.58097467436357,
+ 45.49912104295207
+ ],
+ [
+ -73.58107987435857,
+ 45.49901474308622
+ ],
+ [
+ -73.58108337451996,
+ 45.49901144257431
+ ],
+ [
+ -73.58044427400588,
+ 45.49868454260785
+ ],
+ [
+ -73.58032517408935,
+ 45.49862354249279
+ ],
+ [
+ -73.58014347326453,
+ 45.498530743249496
+ ],
+ [
+ -73.58014077349974,
+ 45.49853334318953
+ ],
+ [
+ -73.5798405735055,
+ 45.498837942667215
+ ],
+ [
+ -73.57984627340863,
+ 45.498840743156066
+ ],
+ [
+ -73.58005967353695,
+ 45.49894274246389
+ ],
+ [
+ -73.58008407304338,
+ 45.49895434281896
+ ],
+ [
+ -73.58010567296029,
+ 45.498964542929606
+ ],
+ [
+ -73.58029847411713,
+ 45.49905544280474
+ ],
+ [
+ -73.58030357417246,
+ 45.49905784309528
+ ],
+ [
+ -73.58030907442608,
+ 45.49905144262028
+ ],
+ [
+ -73.58045397409347,
+ 45.4991121432611
+ ],
+ [
+ -73.58053697432375,
+ 45.49902584251891
+ ],
+ [
+ -73.58064997413884,
+ 45.49907974248642
+ ],
+ [
+ -73.58060417436499,
+ 45.49912724287825
+ ],
+ [
+ -73.58061107396374,
+ 45.49913054249084
+ ],
+ [
+ -73.58065607424028,
+ 45.499153743200985
+ ],
+ [
+ -73.5806113743373,
+ 45.49919654283648
+ ],
+ [
+ -73.58081027379694,
+ 45.49929934254092
+ ],
+ [
+ -73.58081167404137,
+ 45.49929794319582
+ ],
+ [
+ -73.5808675741011,
+ 45.49923924264723
+ ],
+ [
+ -73.5809624741607,
+ 45.49913944308113
+ ],
+ [
+ -73.58106737378212,
+ 45.49918884284112
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5809894385336,
+ 45.49891303695738
+ ],
+ [
+ -73.58098177451113,
+ 45.498922442966666
+ ],
+ [
+ -73.5810192744418,
+ 45.49893704256076
+ ],
+ [
+ -73.58101957391605,
+ 45.498936942736016
+ ],
+ [
+ -73.58102595730394,
+ 45.49893056024745
+ ],
+ [
+ -73.5809894385336,
+ 45.49891303695738
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58089060214142,
+ 45.49886561390725
+ ],
+ [
+ -73.58088767394884,
+ 45.498868542999155
+ ],
+ [
+ -73.58088607405492,
+ 45.498870142893075
+ ],
+ [
+ -73.58096711915907,
+ 45.49890232783046
+ ],
+ [
+ -73.58089060214142,
+ 45.49886561390725
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":525,
+ "ID_UEV":"01003043",
+ "CIVIQUE_DE":" 1379",
+ "CIVIQUE_FI":" 1379",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1912,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Mus\u00c3\u00a9e",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-58-0496-0-000-0000",
+ "SUPERFICIE":5751,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00443477462208,
+ "OBJECTID":84333,
+ "Join_Count":2,
+ "TARGET_FID":84333,
+ "feature_id":"8bcfab49-9cad-4f1e-8c66-44d97b95b97c",
+ "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":77.6,
+ "elevmin":51.53,
+ "elevmax":62.05,
+ "bldgarea":3730.39,
+ "comment":" ",
+ "OBJECTID_2":84333,
+ "Shape_Le_1":0.00443477462208,
+ "Shape_Ar_1":4.30152207701e-07,
+ "OBJECTID_3":84333,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84332,
+ "g_objectid":"945601",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948279210000000",
+ "g_sup_tota":"1837.1",
+ "g_geometry":"0.007557",
+ "g_geomet_1":"2.09091e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00443477462208,
+ "Shape_Area":4.30152207701e-07,
+ "Shape_Le_3":0.00443477286848,
+ "Shape_Ar_2":4.30152207701e-07,
+ "building_height":37.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":526,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56011342551602,
+ 45.52725706880897
+ ],
+ [
+ -73.56007446868362,
+ 45.52723904819381
+ ],
+ [
+ -73.56006466877129,
+ 45.52723444816155
+ ],
+ [
+ -73.56006366872518,
+ 45.52723554803241
+ ],
+ [
+ -73.56001226887295,
+ 45.527212448046335
+ ],
+ [
+ -73.55995916930206,
+ 45.52718864748839
+ ],
+ [
+ -73.55995916930206,
+ 45.52718874821245
+ ],
+ [
+ -73.55988196879967,
+ 45.52727214864104
+ ],
+ [
+ -73.55987976905794,
+ 45.52727434928209
+ ],
+ [
+ -73.5600274988918,
+ 45.52734941389463
+ ],
+ [
+ -73.56011342551602,
+ 45.52725706880897
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":526,
+ "ID_UEV":"01034550",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2075",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-1442-2-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":484,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000578480364665,
+ "OBJECTID":84337,
+ "Join_Count":1,
+ "TARGET_FID":84337,
+ "feature_id":"a685446f-e91c-4b34-848e-2d7c6bc5bd47",
+ "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.56,
+ "heightmax":40.5,
+ "elevmin":26.49,
+ "elevmax":27.51,
+ "bldgarea":947.78,
+ "comment":" ",
+ "OBJECTID_2":84337,
+ "Shape_Le_1":0.000578480364665,
+ "Shape_Ar_1":1.93577197962e-08,
+ "OBJECTID_3":84337,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84336,
+ "g_objectid":"942864",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884706",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310054870000000",
+ "g_sup_tota":"176.5",
+ "g_geometry":"0.000656645",
+ "g_geomet_1":"2.02061e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000578480364665,
+ "Shape_Area":1.93577197962e-08,
+ "Shape_Le_3":0.000578481605544,
+ "Shape_Ar_2":1.93577197962e-08,
+ "building_height":18.97
+ }
+ },
+ {
+ "type":"Feature",
+ "id":527,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55886227069908,
+ 45.509723457222066
+ ],
+ [
+ -73.55886066720787,
+ 45.5097256452726
+ ],
+ [
+ -73.55885796744309,
+ 45.509729245258754
+ ],
+ [
+ -73.55919396585068,
+ 45.509852998267554
+ ],
+ [
+ -73.55920060644468,
+ 45.50984420019997
+ ],
+ [
+ -73.55886227069908,
+ 45.509723457222066
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":527,
+ "ID_UEV":"01021533",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-11-9204-0-000-0000",
+ "SUPERFICIE":492,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000735534362699,
+ "OBJECTID":84340,
+ "Join_Count":1,
+ "TARGET_FID":84340,
+ "feature_id":"a789c84e-ef0e-4f84-8616-bbc1c3ec351c",
+ "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":38.64,
+ "elevmin":16.75,
+ "elevmax":24.19,
+ "bldgarea":1907.27,
+ "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_2":84340,
+ "Shape_Le_1":0.000735534362699,
+ "Shape_Ar_1":3.12783338991e-09,
+ "OBJECTID_3":84340,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84339,
+ "g_objectid":"944434",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004110808980000000",
+ "g_sup_tota":"587.3",
+ "g_geometry":"0.00125089",
+ "g_geomet_1":"6.73779e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000735534362699,
+ "Shape_Area":3.12783338991e-09,
+ "Shape_Le_3":0.00073553450423,
+ "Shape_Ar_2":3.12783338991e-09,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":528,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56484770408012,
+ 45.523845315259386
+ ],
+ [
+ -73.56489265939057,
+ 45.5238523974205
+ ],
+ [
+ -73.56493167018228,
+ 45.523811447690456
+ ],
+ [
+ -73.56496137029285,
+ 45.52378024751071
+ ],
+ [
+ -73.56481186969387,
+ 45.52371034770468
+ ],
+ [
+ -73.56477657040425,
+ 45.523747847635356
+ ],
+ [
+ -73.56476516969867,
+ 45.52374244810579
+ ],
+ [
+ -73.56476487022442,
+ 45.523742647755284
+ ],
+ [
+ -73.56472296991097,
+ 45.5237864474369
+ ],
+ [
+ -73.56484770408012,
+ 45.523845315259386
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":528,
+ "ID_UEV":"01035407",
+ "CIVIQUE_DE":" 1300",
+ "CIVIQUE_FI":" 1302",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-76-3353-4-000-0000",
+ "SUPERFICIE":411,
+ "SUPERFIC_1":299,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000573193920537,
+ "OBJECTID":84347,
+ "Join_Count":1,
+ "TARGET_FID":84347,
+ "feature_id":"62fe555f-94d0-44c8-a2c5-a7c661d2a090",
+ "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.96,
+ "heightmax":11.48,
+ "elevmin":36.78,
+ "elevmax":39.85,
+ "bldgarea":159.33,
+ "comment":" ",
+ "OBJECTID_2":84347,
+ "Shape_Le_1":0.000573193920537,
+ "Shape_Ar_1":1.8108117533e-08,
+ "OBJECTID_3":84347,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84346,
+ "g_objectid":"942933",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885065",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994276335340000000",
+ "g_sup_tota":"411.1",
+ "g_geometry":"0.00101838",
+ "g_geomet_1":"4.7345e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000573193920537,
+ "Shape_Area":1.8108117533e-08,
+ "Shape_Le_3":0.00057319418203,
+ "Shape_Ar_2":1.8108117533e-08,
+ "building_height":4.76
+ }
+ },
+ {
+ "type":"Feature",
+ "id":529,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55719791787146,
+ 45.515260755729585
+ ],
+ [
+ -73.55733847021607,
+ 45.515321393417864
+ ],
+ [
+ -73.55742766677524,
+ 45.51522904653356
+ ],
+ [
+ -73.55740166737489,
+ 45.515216646681196
+ ],
+ [
+ -73.55742286709349,
+ 45.51519574553752
+ ],
+ [
+ -73.5573985674118,
+ 45.515183646058716
+ ],
+ [
+ -73.55749586686261,
+ 45.51508744557945
+ ],
+ [
+ -73.55760584045902,
+ 45.51514238516324
+ ],
+ [
+ -73.55770351672577,
+ 45.515035847876376
+ ],
+ [
+ -73.55755966746652,
+ 45.51496944553378
+ ],
+ [
+ -73.5575029481244,
+ 45.51494327166495
+ ],
+ [
+ -73.55741947844801,
+ 45.51503431363296
+ ],
+ [
+ -73.55742066285515,
+ 45.51503484783026
+ ],
+ [
+ -73.5573906533778,
+ 45.515064922958125
+ ],
+ [
+ -73.55738902020896,
+ 45.515064211594385
+ ],
+ [
+ -73.55738197492005,
+ 45.515071858529744
+ ],
+ [
+ -73.55738216737497,
+ 45.51507194576398
+ ],
+ [
+ -73.55733906736592,
+ 45.51511854593444
+ ],
+ [
+ -73.55733899631947,
+ 45.515118513558846
+ ],
+ [
+ -73.55732229590907,
+ 45.515136642092656
+ ],
+ [
+ -73.55730058627488,
+ 45.515160205229584
+ ],
+ [
+ -73.55729703755009,
+ 45.51515857296007
+ ],
+ [
+ -73.55729360483784,
+ 45.515162270972326
+ ],
+ [
+ -73.55729357246224,
+ 45.51516225568385
+ ],
+ [
+ -73.55729040505,
+ 45.51516081586925
+ ],
+ [
+ -73.55719791787146,
+ 45.515260755729585
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":529,
+ "ID_UEV":"01003418",
+ "CIVIQUE_DE":" 1221",
+ "CIVIQUE_FI":" 1221",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-36-1092-4-000-0000",
+ "SUPERFICIE":893,
+ "SUPERFIC_1":1214,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00144105830276,
+ "OBJECTID":84365,
+ "Join_Count":1,
+ "TARGET_FID":84365,
+ "feature_id":"19253144-dbf1-41e0-8415-5fbdecbec5c4",
+ "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":55.87,
+ "elevmin":21.62,
+ "elevmax":23.83,
+ "bldgarea":3797.03,
+ "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_2":84365,
+ "Shape_Le_1":0.00144105830276,
+ "Shape_Ar_1":6.43720381362e-08,
+ "OBJECTID_3":84365,
+ "Join_Cou_1":11,
+ "TARGET_F_1":84364,
+ "g_objectid":"944437",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004136197840010002",
+ "g_sup_tota":"198.3",
+ "g_geometry":"0.000630777",
+ "g_geomet_1":"2.22665e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00144105830276,
+ "Shape_Area":6.43720381362e-08,
+ "Shape_Le_3":0.00144105766871,
+ "Shape_Ar_2":6.43720381362e-08,
+ "building_height":27.685
+ }
+ },
+ {
+ "type":"Feature",
+ "id":530,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55918203004849,
+ 45.526309551195126
+ ],
+ [
+ -73.55932378388736,
+ 45.52637566665399
+ ],
+ [
+ -73.55932420926669,
+ 45.52637521699297
+ ],
+ [
+ -73.5594065619851,
+ 45.526414199905695
+ ],
+ [
+ -73.55943626929025,
+ 45.526383747961894
+ ],
+ [
+ -73.55941816953474,
+ 45.52637494809567
+ ],
+ [
+ -73.55944386946085,
+ 45.52634934799431
+ ],
+ [
+ -73.55924236826253,
+ 45.526249447704146
+ ],
+ [
+ -73.55918203004849,
+ 45.526309551195126
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":530,
+ "ID_UEV":"01035429",
+ "CIVIQUE_DE":" 1821",
+ "CIVIQUE_FI":" 1825",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-19-6635-9-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":412,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000657160477174,
+ "OBJECTID":84371,
+ "Join_Count":1,
+ "TARGET_FID":84371,
+ "feature_id":"afa2e2ba-a059-4dca-a64e-3edf9e0f8940",
+ "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.51,
+ "heightmax":41.07,
+ "elevmin":25.6,
+ "elevmax":26.92,
+ "bldgarea":1672.32,
+ "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_2":84371,
+ "Shape_Le_1":0.000657160477174,
+ "Shape_Ar_1":1.83310763218e-08,
+ "OBJECTID_3":84371,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84370,
+ "g_objectid":"942010",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567217",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004219663590000000",
+ "g_sup_tota":"211.7",
+ "g_geometry":"0.000741681",
+ "g_geomet_1":"2.40808e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000657160477174,
+ "Shape_Area":1.83310763218e-08,
+ "Shape_Le_3":0.000657160543256,
+ "Shape_Ar_2":1.83310763218e-08,
+ "building_height":19.28
+ }
+ },
+ {
+ "type":"Feature",
+ "id":531,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55888262775291,
+ 45.526905776530654
+ ],
+ [
+ -73.55889176846219,
+ 45.52689644786307
+ ],
+ [
+ -73.55895736771019,
+ 45.52692834771537
+ ],
+ [
+ -73.55900526830034,
+ 45.526879747452675
+ ],
+ [
+ -73.55900436807897,
+ 45.52687934815369
+ ],
+ [
+ -73.55893826790859,
+ 45.526838848084665
+ ],
+ [
+ -73.55895166780707,
+ 45.52682804812621
+ ],
+ [
+ -73.55895136833283,
+ 45.5268278475774
+ ],
+ [
+ -73.55888796792722,
+ 45.52678704803414
+ ],
+ [
+ -73.55891546829606,
+ 45.52676594814029
+ ],
+ [
+ -73.55898023027525,
+ 45.52680758045577
+ ],
+ [
+ -73.55899790285278,
+ 45.52679211661319
+ ],
+ [
+ -73.55881092480618,
+ 45.52670698948627
+ ],
+ [
+ -73.55870063914503,
+ 45.526820813080356
+ ],
+ [
+ -73.55888262775291,
+ 45.526905776530654
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":531,
+ "ID_UEV":"01035434",
+ "CIVIQUE_DE":" 1877",
+ "CIVIQUE_FI":" 1883",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-19-9891-5-000-0000",
+ "SUPERFICIE":376,
+ "SUPERFIC_1":284,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00102562678859,
+ "OBJECTID":84372,
+ "Join_Count":1,
+ "TARGET_FID":84372,
+ "feature_id":"af1a0fb5-9d4b-4d52-81b5-e23ba26ce7ff",
+ "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,
+ "heightmax":39.35,
+ "elevmin":25.29,
+ "elevmax":26.23,
+ "bldgarea":1399.84,
+ "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_2":84372,
+ "Shape_Le_1":0.00102562678859,
+ "Shape_Ar_1":3.26974283862e-08,
+ "OBJECTID_3":84372,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84371,
+ "g_objectid":"943541",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2317257",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"15",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004219928350000000",
+ "g_sup_tota":"261.7",
+ "g_geometry":"0.000910918",
+ "g_geomet_1":"2.97395e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00102562678859,
+ "Shape_Area":3.26974283862e-08,
+ "Shape_Le_3":0.00102562598035,
+ "Shape_Ar_2":3.26974283862e-08,
+ "building_height":19.675
+ }
+ },
+ {
+ "type":"Feature",
+ "id":532,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56202620346836,
+ 45.527990535185346
+ ],
+ [
+ -73.56202857048399,
+ 45.52799164854604
+ ],
+ [
+ -73.56207506993037,
+ 45.528011948942584
+ ],
+ [
+ -73.56210328975686,
+ 45.52802447829733
+ ],
+ [
+ -73.5622014471609,
+ 45.52791955979015
+ ],
+ [
+ -73.5621834697132,
+ 45.52791014928426
+ ],
+ [
+ -73.56219466986997,
+ 45.527899648800044
+ ],
+ [
+ -73.5622497704324,
+ 45.52784994866649
+ ],
+ [
+ -73.56225006990664,
+ 45.52785014921531
+ ],
+ [
+ -73.56220177001752,
+ 45.527813648431426
+ ],
+ [
+ -73.56219197010518,
+ 45.52782014873117
+ ],
+ [
+ -73.56217751080533,
+ 45.52783005566283
+ ],
+ [
+ -73.56202620346836,
+ 45.527990535185346
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":532,
+ "ID_UEV":"01034322",
+ "CIVIQUE_DE":" 2270",
+ "CIVIQUE_FI":" 2274",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1919,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-4512-1-000-0000",
+ "SUPERFICIE":179,
+ "SUPERFIC_1":376,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000648502336074,
+ "OBJECTID":84377,
+ "Join_Count":1,
+ "TARGET_FID":84377,
+ "feature_id":"ed9f5caf-13dd-4b77-9fec-a2be053005f9",
+ "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.08,
+ "heightmax":12.62,
+ "elevmin":29.54,
+ "elevmax":36.07,
+ "bldgarea":1051.06,
+ "comment":" ",
+ "OBJECTID_2":84377,
+ "Shape_Le_1":0.000648502336074,
+ "Shape_Ar_1":1.7367510811e-08,
+ "OBJECTID_3":84377,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84376,
+ "g_objectid":"941658",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565671",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391520850000000",
+ "g_sup_tota":"213.2",
+ "g_geometry":"0.00071608",
+ "g_geomet_1":"2.45613e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000648502336074,
+ "Shape_Area":1.7367510811e-08,
+ "Shape_Le_3":0.000648503959795,
+ "Shape_Ar_2":1.7367510811e-08,
+ "building_height":5.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":533,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55864197277067,
+ 45.51655246367555
+ ],
+ [
+ -73.55864813132804,
+ 45.516555247976605
+ ],
+ [
+ -73.55895276767794,
+ 45.51622024691716
+ ],
+ [
+ -73.55900626834645,
+ 45.516244247124604
+ ],
+ [
+ -73.5587015357691,
+ 45.51657939207558
+ ],
+ [
+ -73.55947707602809,
+ 45.51693000896304
+ ],
+ [
+ -73.55979547830053,
+ 45.51657833177489
+ ],
+ [
+ -73.5589649507937,
+ 45.51619957599993
+ ],
+ [
+ -73.55864197277067,
+ 45.51655246367555
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":533,
+ "ID_UEV":"01040701",
+ "CIVIQUE_DE":" 1420",
+ "CIVIQUE_FI":" 1480",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1962,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-18-7351-6-000-0000",
+ "SUPERFICIE":3600,
+ "SUPERFIC_1":23395,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00368787565281,
+ "OBJECTID":84392,
+ "Join_Count":1,
+ "TARGET_FID":84392,
+ "feature_id":"14fdbeba-1092-4b62-be33-44735a52cc9e",
+ "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":116.53,
+ "elevmin":23.53,
+ "elevmax":27.59,
+ "bldgarea":11932.83,
+ "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_2":84392,
+ "Shape_Le_1":0.00368787565281,
+ "Shape_Ar_1":3.89410350032e-07,
+ "OBJECTID_3":84392,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84391,
+ "g_objectid":"945155",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"2162040",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004118735160000000",
+ "g_sup_tota":"3599.7",
+ "g_geometry":"0.00278208",
+ "g_geomet_1":"4.14656e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00368787565281,
+ "Shape_Area":3.89410350032e-07,
+ "Shape_Le_3":0.00368787759428,
+ "Shape_Ar_2":3.89410350032e-07,
+ "building_height":58.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":534,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55966205937838,
+ 45.507127780872686
+ ],
+ [
+ -73.5596356669743,
+ 45.507115245222685
+ ],
+ [
+ -73.55963536750005,
+ 45.50711514449861
+ ],
+ [
+ -73.55962086683138,
+ 45.507129344793725
+ ],
+ [
+ -73.55958126698373,
+ 45.50710934477074
+ ],
+ [
+ -73.55957606710366,
+ 45.507107045204265
+ ],
+ [
+ -73.55944833999074,
+ 45.50725104465029
+ ],
+ [
+ -73.55952402153821,
+ 45.50728566045516
+ ],
+ [
+ -73.55966205937838,
+ 45.507127780872686
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55968888795366,
+ 45.50713867166266
+ ],
+ [
+ -73.55968930613841,
+ 45.50713886411758
+ ],
+ [
+ -73.55970646520305,
+ 45.50712033898275
+ ],
+ [
+ -73.55968888795366,
+ 45.50713867166266
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55964771249378,
+ 45.507078764223884
+ ],
+ [
+ -73.55971535320283,
+ 45.50711074411584
+ ],
+ [
+ -73.55972108008562,
+ 45.50710455947813
+ ],
+ [
+ -73.55965301849385,
+ 45.507073139863806
+ ],
+ [
+ -73.55964771249378,
+ 45.507078764223884
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":534,
+ "ID_UEV":"01058556",
+ "CIVIQUE_DE":" 982",
+ "CIVIQUE_FI":" 986",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-18-4305-7-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":284,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000802354249491,
+ "OBJECTID":84394,
+ "Join_Count":1,
+ "TARGET_FID":84394,
+ "feature_id":"5fa8615b-1dfc-449d-94a3-aef32dcfd382",
+ "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":37.06,
+ "elevmin":15.52,
+ "elevmax":18.37,
+ "bldgarea":6271.4,
+ "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_2":84394,
+ "Shape_Le_1":0.000802354249491,
+ "Shape_Ar_1":1.62539252693e-08,
+ "OBJECTID_3":84394,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84393,
+ "g_objectid":"945680",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1180660",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004017549990000000",
+ "g_sup_tota":"497.7",
+ "g_geometry":"0.00105422",
+ "g_geomet_1":"5.73124e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000802354249491,
+ "Shape_Area":1.62539252693e-08,
+ "Shape_Le_3":0.000802354377953,
+ "Shape_Ar_2":1.62539252693e-08,
+ "building_height":18.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":535,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55997310339785,
+ 45.50749106471116
+ ],
+ [
+ -73.56006365523534,
+ 45.50753248029003
+ ],
+ [
+ -73.5602483669904,
+ 45.50761354517926
+ ],
+ [
+ -73.56038421408206,
+ 45.507460484164305
+ ],
+ [
+ -73.56039398791405,
+ 45.50744718588921
+ ],
+ [
+ -73.56011682855065,
+ 45.50733141886019
+ ],
+ [
+ -73.55997310339785,
+ 45.50749106471116
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":535,
+ "ID_UEV":"01058559",
+ "CIVIQUE_DE":" 1010",
+ "CIVIQUE_FI":" 1020",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1866,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-08-9640-3-000-0000",
+ "SUPERFICIE":554,
+ "SUPERFIC_1":1570,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00103762265257,
+ "OBJECTID":84395,
+ "Join_Count":1,
+ "TARGET_FID":84395,
+ "feature_id":"5fa8615b-1dfc-449d-94a3-aef32dcfd382",
+ "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":37.06,
+ "elevmin":15.52,
+ "elevmax":18.37,
+ "bldgarea":6271.4,
+ "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_2":84395,
+ "Shape_Le_1":0.00103762265257,
+ "Shape_Ar_1":6.25670630372e-08,
+ "OBJECTID_3":84395,
+ "Join_Cou_1":6,
+ "TARGET_F_1":84394,
+ "g_objectid":"938006",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180600",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004008882690000000",
+ "g_sup_tota":"287.7",
+ "g_geometry":"0.000852084",
+ "g_geomet_1":"3.3125e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00103762265257,
+ "Shape_Area":6.25670630372e-08,
+ "Shape_Le_3":0.00103762208622,
+ "Shape_Ar_2":6.25670630372e-08,
+ "building_height":18.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":536,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56578121115581,
+ 45.51935407667959
+ ],
+ [
+ -73.56607504125199,
+ 45.51948798123564
+ ],
+ [
+ -73.5660900698227,
+ 45.51947044715371
+ ],
+ [
+ -73.56608176997955,
+ 45.51946684716756
+ ],
+ [
+ -73.56612177002552,
+ 45.519424646480545
+ ],
+ [
+ -73.56599287019665,
+ 45.51936424711261
+ ],
+ [
+ -73.56596667024748,
+ 45.519351947084985
+ ],
+ [
+ -73.56596097034435,
+ 45.51935814701117
+ ],
+ [
+ -73.56583277018804,
+ 45.51929894643952
+ ],
+ [
+ -73.56578121115581,
+ 45.51935407667959
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":536,
+ "ID_UEV":"01040564",
+ "CIVIQUE_DE":" 850",
+ "CIVIQUE_FI":" 854",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-61-4864-1-000-0000",
+ "SUPERFICIE":302,
+ "SUPERFIC_1":596,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000809595070376,
+ "OBJECTID":84400,
+ "Join_Count":1,
+ "TARGET_FID":84400,
+ "feature_id":"e165cfe6-f918-423b-b8e3-0ed3d63b0a8e",
+ "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.68,
+ "heightmax":17.99,
+ "elevmin":30.45,
+ "elevmax":38.34,
+ "bldgarea":1210.35,
+ "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_2":84400,
+ "Shape_Le_1":0.000809595070376,
+ "Shape_Ar_1":2.36486829691e-08,
+ "OBJECTID_3":84400,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84399,
+ "g_objectid":"943167",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161426",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994261486410000000",
+ "g_sup_tota":"302.4",
+ "g_geometry":"0.00104891",
+ "g_geomet_1":"3.49949e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000809595070376,
+ "Shape_Area":2.36486829691e-08,
+ "Shape_Le_3":0.000809595553692,
+ "Shape_Ar_2":2.36486829691e-08,
+ "building_height":8.655
+ }
+ },
+ {
+ "type":"Feature",
+ "id":537,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.57586242603197,
+ 45.50200422446568
+ ],
+ [
+ -73.57603786667605,
+ 45.50208981384413
+ ],
+ [
+ -73.57622477187756,
+ 45.50190354356398
+ ],
+ [
+ -73.57627917726407,
+ 45.501930505238924
+ ],
+ [
+ -73.57637532917994,
+ 45.50183236761996
+ ],
+ [
+ -73.57635057174333,
+ 45.501820842807945
+ ],
+ [
+ -73.57636417219064,
+ 45.50180604266503
+ ],
+ [
+ -73.57636357234283,
+ 45.50180584301554
+ ],
+ [
+ -73.576175071744,
+ 45.501714142743786
+ ],
+ [
+ -73.57617487209451,
+ 45.50171404291904
+ ],
+ [
+ -73.57615547191934,
+ 45.501734042942026
+ ],
+ [
+ -73.57613467239905,
+ 45.50172404248087
+ ],
+ [
+ -73.57600067251487,
+ 45.50186194362409
+ ],
+ [
+ -73.57586242603197,
+ 45.50200422446568
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.57571998690972,
+ 45.501934735649826
+ ],
+ [
+ -73.57579917671248,
+ 45.50197336872628
+ ],
+ [
+ -73.57590127224776,
+ 45.5018654437855
+ ],
+ [
+ -73.57590097187419,
+ 45.501865244136006
+ ],
+ [
+ -73.57592017239988,
+ 45.50183284426065
+ ],
+ [
+ -73.57595857255193,
+ 45.50176884310792
+ ],
+ [
+ -73.57597907169864,
+ 45.501774943209355
+ ],
+ [
+ -73.57597927224747,
+ 45.501774742660544
+ ],
+ [
+ -73.57605567235323,
+ 45.50169024326041
+ ],
+ [
+ -73.57599587193378,
+ 45.50166354328819
+ ],
+ [
+ -73.57598657204451,
+ 45.50165914290542
+ ],
+ [
+ -73.57571998690972,
+ 45.501934735649826
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":537,
+ "ID_UEV":"01039034",
+ "CIVIQUE_DE":" 1050",
+ "CIVIQUE_FI":" 1050",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":32,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"H\u00c3\u00b4tel (incluant les h\u00c3\u00b4tels-motels)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-82-5818-8-000-0000",
+ "SUPERFICIE":1660,
+ "SUPERFIC_1":22449,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00230081453711,
+ "OBJECTID":84406,
+ "Join_Count":2,
+ "TARGET_FID":84406,
+ "feature_id":"85176edb-ddb8-49fc-b8f8-d08da3ad5190",
+ "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.5,
+ "heightmax":143.91,
+ "elevmin":42,
+ "elevmax":44.38,
+ "bldgarea":2050.69,
+ "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_2":84406,
+ "Shape_Le_1":0.00230081453711,
+ "Shape_Ar_1":1.15936755493e-07,
+ "OBJECTID_3":84406,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84405,
+ "g_objectid":"945012",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1339677",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"105",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984082963860000000",
+ "g_sup_tota":"2809.3",
+ "g_geometry":"0.00259109",
+ "g_geomet_1":"3.23481e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00230081453711,
+ "Shape_Area":1.15936755493e-07,
+ "Shape_Le_3":0.0023008172648,
+ "Shape_Ar_2":1.15936755493e-07,
+ "building_height":70.705
+ }
+ },
+ {
+ "type":"Feature",
+ "id":538,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.558865278032,
+ 45.518598799045634
+ ],
+ [
+ -73.55887296813482,
+ 45.51860224704636
+ ],
+ [
+ -73.55893695579772,
+ 45.5186309219298
+ ],
+ [
+ -73.55902057116427,
+ 45.518536034460716
+ ],
+ [
+ -73.55907032076054,
+ 45.51848195103151
+ ],
+ [
+ -73.5590017708369,
+ 45.518450415404644
+ ],
+ [
+ -73.558865278032,
+ 45.518598799045634
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":538,
+ "ID_UEV":"01040110",
+ "CIVIQUE_DE":" 1581",
+ "CIVIQUE_FI":" 1583",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-10-9270-1-000-0000",
+ "SUPERFICIE":133,
+ "SUPERFIC_1":261,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000555572789025,
+ "OBJECTID":84408,
+ "Join_Count":1,
+ "TARGET_FID":84408,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":84408,
+ "Shape_Le_1":0.000555572789025,
+ "Shape_Ar_1":1.461985696e-08,
+ "OBJECTID_3":84408,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84407,
+ "g_objectid":"941694",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566363",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004210847570000000",
+ "g_sup_tota":"260.9",
+ "g_geometry":"0.000719159",
+ "g_geomet_1":"3.00536e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000555572789025,
+ "Shape_Area":1.461985696e-08,
+ "Shape_Le_3":0.000555572960965,
+ "Shape_Ar_2":1.461985696e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":539,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5587962074009,
+ 45.5185678317903
+ ],
+ [
+ -73.558865278032,
+ 45.518598799045634
+ ],
+ [
+ -73.5590017708369,
+ 45.518450415404644
+ ],
+ [
+ -73.55893322181258,
+ 45.518418880677096
+ ],
+ [
+ -73.5587962074009,
+ 45.5185678317903
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":539,
+ "ID_UEV":"01040111",
+ "CIVIQUE_DE":" 1575",
+ "CIVIQUE_FI":" 1579",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1936,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-10-9866-6-000-0000",
+ "SUPERFICIE":132,
+ "SUPERFIC_1":316,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000555147621387,
+ "OBJECTID":84409,
+ "Join_Count":1,
+ "TARGET_FID":84409,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":84409,
+ "Shape_Le_1":0.000555147621387,
+ "Shape_Ar_1":1.45034755285e-08,
+ "OBJECTID_3":84409,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84408,
+ "g_objectid":"941701",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566370",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004220036320000000",
+ "g_sup_tota":"131.6",
+ "g_geometry":"0.000573166",
+ "g_geomet_1":"1.51582e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000555147621387,
+ "Shape_Area":1.45034755285e-08,
+ "Shape_Le_3":0.000555147322133,
+ "Shape_Ar_2":1.45034755285e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":540,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55038452095073,
+ 45.523118337491574
+ ],
+ [
+ -73.55045275701097,
+ 45.52315013122387
+ ],
+ [
+ -73.55053636518295,
+ 45.52306594748578
+ ],
+ [
+ -73.55046966516475,
+ 45.52303324813619
+ ],
+ [
+ -73.55049596493868,
+ 45.523006747813454
+ ],
+ [
+ -73.55049246477728,
+ 45.5230050444975
+ ],
+ [
+ -73.55038452095073,
+ 45.523118337491574
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":540,
+ "ID_UEV":"01022171",
+ "CIVIQUE_DE":" 1242",
+ "CIVIQUE_FI":" 1242",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-85-5674-0-000-0000",
+ "SUPERFICIE":125,
+ "SUPERFIC_1":134,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000465922161079,
+ "OBJECTID":84415,
+ "Join_Count":1,
+ "TARGET_FID":84415,
+ "feature_id":"e5135906-da4d-4532-b35a-0ec9cb7c5328",
+ "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.58,
+ "heightmax":29.44,
+ "elevmin":16.79,
+ "elevmax":17.79,
+ "bldgarea":838.11,
+ "comment":" ",
+ "OBJECTID_2":84415,
+ "Shape_Le_1":0.000465922161079,
+ "Shape_Ar_1":8.73048763748e-09,
+ "OBJECTID_3":84415,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84414,
+ "g_objectid":"942342",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729129",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004285656830000000",
+ "g_sup_tota":"250.8",
+ "g_geometry":"0.000698568",
+ "g_geomet_1":"2.88188e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000465922161079,
+ "Shape_Area":8.73048763748e-09,
+ "Shape_Le_3":0.0004659231291,
+ "Shape_Ar_2":8.73048763748e-09,
+ "building_height":13.43
+ }
+ },
+ {
+ "type":"Feature",
+ "id":541,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55081698603692,
+ 45.5231592332623
+ ],
+ [
+ -73.55077666493298,
+ 45.52314004802509
+ ],
+ [
+ -73.55077656510824,
+ 45.52314004802509
+ ],
+ [
+ -73.55073756510839,
+ 45.52317544803879
+ ],
+ [
+ -73.55066416514096,
+ 45.52313564764232
+ ],
+ [
+ -73.55069516477188,
+ 45.52310754742567
+ ],
+ [
+ -73.5506070653856,
+ 45.52305964773485
+ ],
+ [
+ -73.55055136497536,
+ 45.52311024808977
+ ],
+ [
+ -73.55048880183858,
+ 45.523166926063084
+ ],
+ [
+ -73.55071101532295,
+ 45.52327045601702
+ ],
+ [
+ -73.55079184189184,
+ 45.52318562296842
+ ],
+ [
+ -73.55081698603692,
+ 45.5231592332623
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":541,
+ "ID_UEV":"01022172",
+ "CIVIQUE_DE":" 1248",
+ "CIVIQUE_FI":" 1266",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-85-4382-1-000-0000",
+ "SUPERFICIE":376,
+ "SUPERFIC_1":824,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000881480875504,
+ "OBJECTID":84416,
+ "Join_Count":1,
+ "TARGET_FID":84416,
+ "feature_id":"d64cedc6-dd55-4cb8-8889-a67303775a6d",
+ "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.51,
+ "heightmax":29.8,
+ "elevmin":17.17,
+ "elevmax":18.08,
+ "bldgarea":534.76,
+ "comment":" ",
+ "OBJECTID_2":84416,
+ "Shape_Le_1":0.000881480875504,
+ "Shape_Ar_1":3.0748738995e-08,
+ "OBJECTID_3":84416,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84415,
+ "g_objectid":"944648",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004285259500010001",
+ "g_sup_tota":"250.5",
+ "g_geometry":"0.000809657",
+ "g_geomet_1":"2.89304e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000881480875504,
+ "Shape_Area":3.0748738995e-08,
+ "Shape_Le_3":0.000881480921179,
+ "Shape_Ar_2":3.0748738995e-08,
+ "building_height":13.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":542,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55117389638006,
+ 45.52341686474681
+ ],
+ [
+ -73.55112206575258,
+ 45.52339144810714
+ ],
+ [
+ -73.55103806547619,
+ 45.523349947992
+ ],
+ [
+ -73.55103426494122,
+ 45.52335384745239
+ ],
+ [
+ -73.55098904612942,
+ 45.52339999346522
+ ],
+ [
+ -73.55112682586417,
+ 45.52346418707287
+ ],
+ [
+ -73.55117158871968,
+ 45.52341942511667
+ ],
+ [
+ -73.55117389638006,
+ 45.52341686474681
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":542,
+ "ID_UEV":"01022174",
+ "CIVIQUE_DE":" 1290",
+ "CIVIQUE_FI":" 1290",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":15,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-86-0809-5-000-0000",
+ "SUPERFICIE":148,
+ "SUPERFIC_1":356,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000440223336638,
+ "OBJECTID":84417,
+ "Join_Count":1,
+ "TARGET_FID":84417,
+ "feature_id":"e0b28494-8cb4-4a9e-afa8-105dfc9a39fe",
+ "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.47,
+ "heightmax":32.64,
+ "elevmin":17.04,
+ "elevmax":17.41,
+ "bldgarea":92.28,
+ "comment":" ",
+ "OBJECTID_2":84417,
+ "Shape_Le_1":0.000440223336638,
+ "Shape_Ar_1":9.80701439125e-09,
+ "OBJECTID_3":84417,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84416,
+ "g_objectid":"941462",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425523",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"15",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004286080950000000",
+ "g_sup_tota":"147.5",
+ "g_geometry":"0.000544737",
+ "g_geomet_1":"1.68909e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000440223336638,
+ "Shape_Area":9.80701439125e-09,
+ "Shape_Le_3":0.000440223607885,
+ "Shape_Ar_2":9.80701439125e-09,
+ "building_height":15.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":543,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55872713587047,
+ 45.518536865434285
+ ],
+ [
+ -73.55877036807986,
+ 45.518556246723705
+ ],
+ [
+ -73.5587962074009,
+ 45.5185678317903
+ ],
+ [
+ -73.55893322181258,
+ 45.518418880677096
+ ],
+ [
+ -73.55886467278826,
+ 45.518387346848876
+ ],
+ [
+ -73.55872713587047,
+ 45.518536865434285
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":543,
+ "ID_UEV":"01040112",
+ "CIVIQUE_DE":" 1569",
+ "CIVIQUE_FI":" 1571",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-20-0363-2-000-0000",
+ "SUPERFICIE":132,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00055668806955,
+ "OBJECTID":84420,
+ "Join_Count":1,
+ "TARGET_FID":84420,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":84420,
+ "Shape_Le_1":0.00055668806955,
+ "Shape_Ar_1":1.45586223687e-08,
+ "OBJECTID_3":84420,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84419,
+ "g_objectid":"941703",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566372",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004220085990000000",
+ "g_sup_tota":"134.6",
+ "g_geometry":"0.000576204",
+ "g_geomet_1":"1.55067e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00055668806955,
+ "Shape_Area":1.45586223687e-08,
+ "Shape_Le_3":0.000556688133839,
+ "Shape_Ar_2":1.45586223687e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":544,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55866929957037,
+ 45.51849259990386
+ ],
+ [
+ -73.55867666771589,
+ 45.51849564680695
+ ],
+ [
+ -73.55866571846998,
+ 45.51850872924475
+ ],
+ [
+ -73.55872599642943,
+ 45.5185363519214
+ ],
+ [
+ -73.55872713587047,
+ 45.518536865434285
+ ],
+ [
+ -73.55886467278826,
+ 45.518387346848876
+ ],
+ [
+ -73.55879370818494,
+ 45.51835470055928
+ ],
+ [
+ -73.55866929957037,
+ 45.51849259990386
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":544,
+ "ID_UEV":"01040113",
+ "CIVIQUE_DE":" 1563",
+ "CIVIQUE_FI":" 1565",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-20-0859-9-000-0000",
+ "SUPERFICIE":135,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000559585268997,
+ "OBJECTID":84421,
+ "Join_Count":1,
+ "TARGET_FID":84421,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":84421,
+ "Shape_Le_1":0.000559585268997,
+ "Shape_Ar_1":1.47727564624e-08,
+ "OBJECTID_3":84421,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84420,
+ "g_objectid":"941703",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566372",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004220085990000000",
+ "g_sup_tota":"134.6",
+ "g_geometry":"0.000576204",
+ "g_geomet_1":"1.55067e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000559585268997,
+ "Shape_Area":1.47727564624e-08,
+ "Shape_Le_3":0.000559582810315,
+ "Shape_Ar_2":1.47727564624e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":545,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56241547951261,
+ 45.52023046961078
+ ],
+ [
+ -73.56268789854953,
+ 45.52035583240603
+ ],
+ [
+ -73.56271352652988,
+ 45.520326735740554
+ ],
+ [
+ -73.56279192043263,
+ 45.520192101834326
+ ],
+ [
+ -73.56255029777986,
+ 45.52008692522172
+ ],
+ [
+ -73.56241547951261,
+ 45.52023046961078
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":545,
+ "ID_UEV":"01040637",
+ "CIVIQUE_DE":" 1100",
+ "CIVIQUE_FI":" 1108",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":16,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-92-0856-6-000-0000",
+ "SUPERFICIE":479,
+ "SUPERFIC_1":1286,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00095489947416,
+ "OBJECTID":84422,
+ "Join_Count":1,
+ "TARGET_FID":84422,
+ "feature_id":"13b2e589-443f-49bd-9129-4ea33ba35f86",
+ "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.56,
+ "heightmax":15.08,
+ "elevmin":25.19,
+ "elevmax":25.98,
+ "bldgarea":1068.55,
+ "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_2":84422,
+ "Shape_Le_1":0.00095489947416,
+ "Shape_Ar_1":5.38384015785e-08,
+ "OBJECTID_3":84422,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84421,
+ "g_objectid":"941545",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565394",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"16",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994292085660000000",
+ "g_sup_tota":"478.5",
+ "g_geometry":"0.000968572",
+ "g_geomet_1":"5.52284e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00095489947416,
+ "Shape_Area":5.38384015785e-08,
+ "Shape_Le_3":0.000954898525086,
+ "Shape_Ar_2":5.38384015785e-08,
+ "building_height":6.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":546,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57257211423352,
+ 45.50053427268883
+ ],
+ [
+ -73.57273797170188,
+ 45.50061523145806
+ ],
+ [
+ -73.57289249501447,
+ 45.50069065849739
+ ],
+ [
+ -73.57294601007216,
+ 45.500636517511566
+ ],
+ [
+ -73.57279149485345,
+ 45.500560766716305
+ ],
+ [
+ -73.57262539007154,
+ 45.500479333105034
+ ],
+ [
+ -73.57257211423352,
+ 45.50053427268883
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":546,
+ "ID_UEV":"01039253",
+ "CIVIQUE_DE":" 1011",
+ "CIVIQUE_FI":" 1011",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-10-1476-8-000-0000",
+ "SUPERFICIE":231,
+ "SUPERFIC_1":450,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000866244005807,
+ "OBJECTID":84427,
+ "Join_Count":1,
+ "TARGET_FID":84427,
+ "feature_id":"1a3d212c-89d1-4b27-b9af-59e4618c303d",
+ "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":32.05,
+ "elevmin":36.15,
+ "elevmax":37.93,
+ "bldgarea":2404.56,
+ "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_2":84427,
+ "Shape_Le_1":0.000866244005807,
+ "Shape_Ar_1":2.58517484388e-08,
+ "OBJECTID_3":84427,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84426,
+ "g_objectid":"938127",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340210",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994010147680000000",
+ "g_sup_tota":"230.7",
+ "g_geometry":"0.000885859",
+ "g_geomet_1":"2.65583e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000866244005807,
+ "Shape_Area":2.58517484388e-08,
+ "Shape_Le_3":0.00086624308328,
+ "Shape_Ar_2":2.58517484388e-08,
+ "building_height":15.764999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":547,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56249627640388,
+ 45.519402928752456
+ ],
+ [
+ -73.56240286921889,
+ 45.51935844648541
+ ],
+ [
+ -73.56232686931142,
+ 45.51943714705698
+ ],
+ [
+ -73.56242209492558,
+ 45.51948254393455
+ ],
+ [
+ -73.56249627640388,
+ 45.519402928752456
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56228507421865,
+ 45.51941939084251
+ ],
+ [
+ -73.56228666871664,
+ 45.51942014717235
+ ],
+ [
+ -73.56237946885925,
+ 45.51932324702053
+ ],
+ [
+ -73.56237612787784,
+ 45.519321666911694
+ ],
+ [
+ -73.56228507421865,
+ 45.51941939084251
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":547,
+ "ID_UEV":"01040003",
+ "CIVIQUE_DE":" 1863",
+ "CIVIQUE_FI":" 1865",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-2669-3-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00070037527349,
+ "OBJECTID":84428,
+ "Join_Count":2,
+ "TARGET_FID":84428,
+ "feature_id":"85acbee3-ba84-4b87-b9cc-8fae22b6a408",
+ "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.77,
+ "heightmax":8.24,
+ "elevmin":24.28,
+ "elevmax":24.74,
+ "bldgarea":195.05,
+ "comment":" ",
+ "OBJECTID_2":84428,
+ "Shape_Le_1":0.00070037527349,
+ "Shape_Ar_1":1.11879246195e-08,
+ "OBJECTID_3":84428,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84427,
+ "g_objectid":"941470",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565243",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994291167690000000",
+ "g_sup_tota":"284.9",
+ "g_geometry":"0.000759615",
+ "g_geomet_1":"3.28039e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00070037527349,
+ "Shape_Area":1.11879246195e-08,
+ "Shape_Le_3":0.000700375603413,
+ "Shape_Ar_2":1.11879246195e-08,
+ "building_height":0.7350000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":548,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57626729632051,
+ 45.50141150288884
+ ],
+ [
+ -73.57637812337354,
+ 45.50146523468313
+ ],
+ [
+ -73.57654935878772,
+ 45.501548252000525
+ ],
+ [
+ -73.57663217195902,
+ 45.501458742477276
+ ],
+ [
+ -73.57667597343927,
+ 45.501478843224334
+ ],
+ [
+ -73.5766793728766,
+ 45.50147514251411
+ ],
+ [
+ -73.57669887287652,
+ 45.501455843063
+ ],
+ [
+ -73.57666387216182,
+ 45.50143834315531
+ ],
+ [
+ -73.57675447346203,
+ 45.50134854315104
+ ],
+ [
+ -73.57676784997814,
+ 45.501335239480014
+ ],
+ [
+ -73.57636062346585,
+ 45.50113781940514
+ ],
+ [
+ -73.57635467175254,
+ 45.50114374323945
+ ],
+ [
+ -73.57636227192316,
+ 45.50114744305035
+ ],
+ [
+ -73.57647497226401,
+ 45.50120304273653
+ ],
+ [
+ -73.57626729632051,
+ 45.50141150288884
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":548,
+ "ID_UEV":"01039039",
+ "CIVIQUE_DE":" 1110",
+ "CIVIQUE_FI":" 1110",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":27,
+ "NOMBRE_LOG":227,
+ "ANNEE_CONS":1964,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"R\u00c3\u00a9sidence de tourisme, appartement, maison ou chalet (meubl\u00c3\u00a9 et \u00c3\u00a9quip\u00c3\u00a9 pour repas)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-81-2561-9-000-0000",
+ "SUPERFICIE":1417,
+ "SUPERFIC_1":17083,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00159095045072,
+ "OBJECTID":84429,
+ "Join_Count":1,
+ "TARGET_FID":84429,
+ "feature_id":"9379a9c0-174e-4f11-8424-fdc3254e6c38",
+ "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":135.73,
+ "elevmin":42.7,
+ "elevmax":45.72,
+ "bldgarea":2724.06,
+ "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_2":84429,
+ "Shape_Le_1":0.00159095045072,
+ "Shape_Ar_1":9.27395635705e-08,
+ "OBJECTID_3":84429,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84428,
+ "g_objectid":"944996",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338865",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"33",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984081063460000000",
+ "g_sup_tota":"1727.8",
+ "g_geometry":"0.00188443",
+ "g_geomet_1":"2.00226e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00159095045072,
+ "Shape_Area":9.27395635705e-08,
+ "Shape_Le_3":0.00159095206808,
+ "Shape_Ar_2":9.27395635705e-08,
+ "building_height":67.60499999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":549,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56542374143436,
+ 45.51868000512843
+ ],
+ [
+ -73.56550327118086,
+ 45.51871484666314
+ ],
+ [
+ -73.56559650929331,
+ 45.51861392384381
+ ],
+ [
+ -73.56551771789022,
+ 45.51857828011383
+ ],
+ [
+ -73.56542374143436,
+ 45.51868000512843
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":549,
+ "ID_UEV":"01003068",
+ "CIVIQUE_DE":" 2069",
+ "CIVIQUE_FI":" 2071",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-60-8386-3-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":262,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000449196431083,
+ "OBJECTID":84435,
+ "Join_Count":1,
+ "TARGET_FID":84435,
+ "feature_id":"456c5cae-dfc9-4579-8f4a-f46828926cd4",
+ "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.36,
+ "heightmax":16.55,
+ "elevmin":26.56,
+ "elevmax":33.23,
+ "bldgarea":1108.56,
+ "comment":" ",
+ "OBJECTID_2":84435,
+ "Shape_Le_1":0.000449196431083,
+ "Shape_Ar_1":1.13198676283e-08,
+ "OBJECTID_3":84435,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84434,
+ "g_objectid":"943159",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161399",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994260838630000000",
+ "g_sup_tota":"188.8",
+ "g_geometry":"0.000707588",
+ "g_geomet_1":"2.19465e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000449196431083,
+ "Shape_Area":1.13198676283e-08,
+ "Shape_Le_3":0.000449195853161,
+ "Shape_Ar_2":1.13198676283e-08,
+ "building_height":7.595000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":550,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56183362984,
+ 45.519222821526284
+ ],
+ [
+ -73.56189095352653,
+ 45.519251397484304
+ ],
+ [
+ -73.56196495603973,
+ 45.51917209256831
+ ],
+ [
+ -73.56193436919763,
+ 45.51915714673523
+ ],
+ [
+ -73.56190732568437,
+ 45.51914384666149
+ ],
+ [
+ -73.56183362984,
+ 45.519222821526284
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":550,
+ "ID_UEV":"01040008",
+ "CIVIQUE_DE":" 1821",
+ "CIVIQUE_FI":" 1821",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (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\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-6444-7-000-0000",
+ "SUPERFICIE":122,
+ "SUPERFIC_1":108,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000344719927653,
+ "OBJECTID":84438,
+ "Join_Count":1,
+ "TARGET_FID":84438,
+ "feature_id":"f57eac9c-b69c-4212-b473-1cf5e454e35e",
+ "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.54,
+ "heightmax":10.3,
+ "elevmin":22.96,
+ "elevmax":25.18,
+ "bldgarea":535.47,
+ "comment":" ",
+ "OBJECTID_2":84438,
+ "Shape_Le_1":0.000344719927653,
+ "Shape_Ar_1":6.64551714192e-09,
+ "OBJECTID_3":84438,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84437,
+ "g_objectid":"941480",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565256",
+ "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":"66023994291644470000000",
+ "g_sup_tota":"122.1",
+ "g_geometry":"0.000587295",
+ "g_geomet_1":"1.40603e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000344719927653,
+ "Shape_Area":6.64551714192e-09,
+ "Shape_Le_3":0.000344720202776,
+ "Shape_Ar_2":6.64551714192e-09,
+ "building_height":3.8800000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":551,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5636418382221,
+ 45.517869995654074
+ ],
+ [
+ -73.56372054239097,
+ 45.517903908189105
+ ],
+ [
+ -73.56381561601971,
+ 45.5178004124094
+ ],
+ [
+ -73.56373322642911,
+ 45.517770511750015
+ ],
+ [
+ -73.5636418382221,
+ 45.517869995654074
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":551,
+ "ID_UEV":"01003086",
+ "CIVIQUE_DE":" 1787",
+ "CIVIQUE_FI":" 1791",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-89-2295-3-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":252,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000448971375345,
+ "OBJECTID":84442,
+ "Join_Count":1,
+ "TARGET_FID":84442,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":84442,
+ "Shape_Le_1":0.000448971375345,
+ "Shape_Ar_1":1.1149384451e-08,
+ "OBJECTID_3":84442,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84441,
+ "g_objectid":"943211",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161514",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994189289190000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000702613",
+ "g_geomet_1":"2.15745e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000448971375345,
+ "Shape_Area":1.1149384451e-08,
+ "Shape_Le_3":0.000448971609179,
+ "Shape_Ar_2":1.1149384451e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":552,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56284802283983,
+ 45.51976402543972
+ ],
+ [
+ -73.56289519318047,
+ 45.51978487352339
+ ],
+ [
+ -73.5630056982762,
+ 45.51983566543391
+ ],
+ [
+ -73.56311358274749,
+ 45.51965389446195
+ ],
+ [
+ -73.56281616885296,
+ 45.5195560464247
+ ],
+ [
+ -73.56276756948958,
+ 45.51960684642911
+ ],
+ [
+ -73.56276416915293,
+ 45.519610446415264
+ ],
+ [
+ -73.56292306946592,
+ 45.51968474660407
+ ],
+ [
+ -73.56284802283983,
+ 45.51976402543972
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56269635307608,
+ 45.51960861359694
+ ],
+ [
+ -73.56269746913473,
+ 45.51960914689491
+ ],
+ [
+ -73.56277166949879,
+ 45.51953224676607
+ ],
+ [
+ -73.56276878717163,
+ 45.51953087170266
+ ],
+ [
+ -73.56269635307608,
+ 45.51960861359694
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":552,
+ "ID_UEV":"01040640",
+ "CIVIQUE_DE":" 1000",
+ "CIVIQUE_FI":" 1008",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":14,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-81-8795-1-000-0000",
+ "SUPERFICIE":707,
+ "SUPERFIC_1":1170,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00127504450657,
+ "OBJECTID":84453,
+ "Join_Count":2,
+ "TARGET_FID":84453,
+ "feature_id":"f9ba30f6-f871-4e40-9e9e-0adac450169d",
+ "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.09,
+ "heightmax":21.42,
+ "elevmin":24.65,
+ "elevmax":26.5,
+ "bldgarea":1817.82,
+ "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_2":84453,
+ "Shape_Le_1":0.00127504450657,
+ "Shape_Ar_1":4.49311312187e-08,
+ "OBJECTID_3":84453,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84452,
+ "g_objectid":"941468",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565238",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994282871570000000",
+ "g_sup_tota":"210.7",
+ "g_geometry":"0.000649682",
+ "g_geomet_1":"2.42653e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00127504450657,
+ "Shape_Area":4.49311312187e-08,
+ "Shape_Le_3":0.00127504581516,
+ "Shape_Ar_2":4.49311312187e-08,
+ "building_height":9.665000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":553,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56295235498904,
+ 45.519447228457125
+ ],
+ [
+ -73.56307479498764,
+ 45.51950361505009
+ ],
+ [
+ -73.56320206884224,
+ 45.5193422469974
+ ],
+ [
+ -73.56309515833674,
+ 45.51930057241378
+ ],
+ [
+ -73.56307523655477,
+ 45.51932103288965
+ ],
+ [
+ -73.56305746954843,
+ 45.51934354651775
+ ],
+ [
+ -73.5630544658128,
+ 45.51934236300994
+ ],
+ [
+ -73.56295235498904,
+ 45.519447228457125
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":553,
+ "ID_UEV":"01040641",
+ "CIVIQUE_DE":" 1892",
+ "CIVIQUE_FI":" 1896",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-81-6868-8-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000661898151104,
+ "OBJECTID":84454,
+ "Join_Count":1,
+ "TARGET_FID":84454,
+ "feature_id":"327f3813-622f-4233-9ff8-a62689c9e21f",
+ "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.16,
+ "heightmax":13.52,
+ "elevmin":24.17,
+ "elevmax":26.61,
+ "bldgarea":833.43,
+ "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_2":84454,
+ "Shape_Le_1":0.000661898151104,
+ "Shape_Ar_1":2.42380032473e-08,
+ "OBJECTID_3":84454,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84453,
+ "g_objectid":"943307",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161702",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994281686880000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000853557",
+ "g_geomet_1":"4.39835e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000661898151104,
+ "Shape_Area":2.42380032473e-08,
+ "Shape_Le_3":0.000661897986082,
+ "Shape_Ar_2":2.42380032473e-08,
+ "building_height":5.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":554,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56318207781248,
+ 45.51893936600923
+ ],
+ [
+ -73.5634462770459,
+ 45.51905927621492
+ ],
+ [
+ -73.5635044478938,
+ 45.51899213283096
+ ],
+ [
+ -73.56353416868878,
+ 45.51894057829535
+ ],
+ [
+ -73.56323756868069,
+ 45.51881354725769
+ ],
+ [
+ -73.56322791176056,
+ 45.51880941397357
+ ],
+ [
+ -73.56312959967313,
+ 45.51891554926348
+ ],
+ [
+ -73.56318207781248,
+ 45.51893936600923
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":554,
+ "ID_UEV":"01040644",
+ "CIVIQUE_DE":" 900",
+ "CIVIQUE_FI":" 904",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-81-5114-8-000-0000",
+ "SUPERFICIE":452,
+ "SUPERFIC_1":1405,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000973946781757,
+ "OBJECTID":84455,
+ "Join_Count":1,
+ "TARGET_FID":84455,
+ "feature_id":"9c2c8643-67b3-42a8-9304-bd9bf9656b83",
+ "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.05,
+ "heightmax":19.73,
+ "elevmin":23.37,
+ "elevmax":26.44,
+ "bldgarea":3104.74,
+ "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_2":84455,
+ "Shape_Le_1":0.000973946781757,
+ "Shape_Ar_1":4.83125459352e-08,
+ "OBJECTID_3":84455,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84454,
+ "g_objectid":"943292",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161676",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994281680760000000",
+ "g_sup_tota":"142.2",
+ "g_geometry":"0.000623417",
+ "g_geomet_1":"1.63826e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000973946781757,
+ "Shape_Area":4.83125459352e-08,
+ "Shape_Le_3":0.00097394711967,
+ "Shape_Ar_2":4.83125459352e-08,
+ "building_height":9.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":555,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56337592488087,
+ 45.51866755221606
+ ],
+ [
+ -73.56338107349958,
+ 45.51866988775541
+ ],
+ [
+ -73.56348076874433,
+ 45.51855954723561
+ ],
+ [
+ -73.56347434848423,
+ 45.51855666490845
+ ],
+ [
+ -73.56337592488087,
+ 45.51866755221606
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":555,
+ "ID_UEV":"01040645",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-80-3584-6-000-0000",
+ "SUPERFICIE":350,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000309667240136,
+ "OBJECTID":84456,
+ "Join_Count":1,
+ "TARGET_FID":84456,
+ "feature_id":"f449cea9-bc70-4568-a13b-0c26f85e1db7",
+ "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.53,
+ "heightmax":10.85,
+ "elevmin":24.39,
+ "elevmax":25.19,
+ "bldgarea":176.37,
+ "comment":" ",
+ "OBJECTID_2":84456,
+ "Shape_Le_1":0.000309667240136,
+ "Shape_Ar_1":8.98292918321e-10,
+ "OBJECTID_3":84456,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84455,
+ "g_objectid":"943287",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161667",
+ "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":"66023994280477670000000",
+ "g_sup_tota":"101",
+ "g_geometry":"0.0004693",
+ "g_geomet_1":"1.16325e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000309667240136,
+ "Shape_Area":8.98292918321e-10,
+ "Shape_Le_3":0.00030966684008,
+ "Shape_Ar_2":8.98292918321e-10,
+ "building_height":4.16
+ }
+ },
+ {
+ "type":"Feature",
+ "id":556,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57744326331779,
+ 45.500461950109205
+ ],
+ [
+ -73.57740665281662,
+ 45.500498549818516
+ ],
+ [
+ -73.5773759958274,
+ 45.5005309182176
+ ],
+ [
+ -73.57753881808384,
+ 45.50060874554747
+ ],
+ [
+ -73.57760147295146,
+ 45.500543242526916
+ ],
+ [
+ -73.57763280353291,
+ 45.50055799950237
+ ],
+ [
+ -73.57763648535736,
+ 45.500554261020625
+ ],
+ [
+ -73.57744326331779,
+ 45.500461950109205
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":556,
+ "ID_UEV":"01039047",
+ "CIVIQUE_DE":" 1200",
+ "CIVIQUE_FI":" 1200",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-70-4371-4-000-0000",
+ "SUPERFICIE":170,
+ "SUPERFIC_1":564,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000621478836846,
+ "OBJECTID":84474,
+ "Join_Count":1,
+ "TARGET_FID":84474,
+ "feature_id":"4c9aee36-6e22-4391-9a4c-dd85c1515492",
+ "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":93.49,
+ "elevmin":43.36,
+ "elevmax":47.69,
+ "bldgarea":9435.45,
+ "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_2":84474,
+ "Shape_Le_1":0.000621478836846,
+ "Shape_Ar_1":1.66294517423e-08,
+ "OBJECTID_3":84474,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84473,
+ "g_objectid":"944995",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338857",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984070435570000000",
+ "g_sup_tota":"674.3",
+ "g_geometry":"0.00124317",
+ "g_geomet_1":"7.78258e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000621478836846,
+ "Shape_Area":1.66294517423e-08,
+ "Shape_Le_3":0.000621479154371,
+ "Shape_Ar_2":1.66294517423e-08,
+ "building_height":46.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":557,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56189159114587,
+ 45.522926941975086
+ ],
+ [
+ -73.56200948956814,
+ 45.522981866270406
+ ],
+ [
+ -73.5620844120878,
+ 45.522898542284196
+ ],
+ [
+ -73.56198994909872,
+ 45.522854302834105
+ ],
+ [
+ -73.56198876918819,
+ 45.52285564821988
+ ],
+ [
+ -73.56188756937767,
+ 45.5228117478142
+ ],
+ [
+ -73.56189092115093,
+ 45.52280792479619
+ ],
+ [
+ -73.56185472703586,
+ 45.52279097527359
+ ],
+ [
+ -73.56184966924869,
+ 45.52279634782349
+ ],
+ [
+ -73.56184946869986,
+ 45.52279644764823
+ ],
+ [
+ -73.56187636922091,
+ 45.522808048003306
+ ],
+ [
+ -73.5618578692671,
+ 45.5228292477219
+ ],
+ [
+ -73.56181784044283,
+ 45.522812151609806
+ ],
+ [
+ -73.56181775590656,
+ 45.522812240642686
+ ],
+ [
+ -73.56176257170716,
+ 45.52286702644241
+ ],
+ [
+ -73.56177613977887,
+ 45.52287315802012
+ ],
+ [
+ -73.56189159114587,
+ 45.522926941975086
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":557,
+ "ID_UEV":"01032255",
+ "CIVIQUE_DE":" 1332",
+ "CIVIQUE_FI":" 1332",
+ "NOM_RUE":"rue Berthier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-95-6253-3-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":547,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000832277223388,
+ "OBJECTID":84494,
+ "Join_Count":1,
+ "TARGET_FID":84494,
+ "feature_id":"ebe94d82-3efd-4a6c-a255-28b22365bae9",
+ "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.14,
+ "heightmax":12.79,
+ "elevmin":26.56,
+ "elevmax":27.84,
+ "bldgarea":2155.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_2":84494,
+ "Shape_Le_1":0.000832277223388,
+ "Shape_Ar_1":2.73004622819e-08,
+ "OBJECTID_3":84494,
+ "Join_Cou_1":7,
+ "TARGET_F_1":84493,
+ "g_objectid":"941642",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565619",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994295756340000000",
+ "g_sup_tota":"218.8",
+ "g_geometry":"0.000660185",
+ "g_geomet_1":"2.465e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000832277223388,
+ "Shape_Area":2.73004622819e-08,
+ "Shape_Le_3":0.00083227877307,
+ "Shape_Ar_2":2.73004622819e-08,
+ "building_height":5.324999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":558,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54969238651627,
+ 45.53004798257863
+ ],
+ [
+ -73.54980670293884,
+ 45.53010003893594
+ ],
+ [
+ -73.5498647658681,
+ 45.53003604857508
+ ],
+ [
+ -73.54985116632011,
+ 45.53003074887026
+ ],
+ [
+ -73.54985580142593,
+ 45.53002485921018
+ ],
+ [
+ -73.54975240277301,
+ 45.52997734982513
+ ],
+ [
+ -73.54969238651627,
+ 45.53004798257863
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":558,
+ "ID_UEV":"01019287",
+ "CIVIQUE_DE":" 2425",
+ "CIVIQUE_FI":" 2425",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-93-0949-3-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":290,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000440587136435,
+ "OBJECTID":84495,
+ "Join_Count":1,
+ "TARGET_FID":84495,
+ "feature_id":"b2635238-5f35-4d49-9826-d4efc81df553",
+ "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.54,
+ "heightmax":33.47,
+ "elevmin":20.4,
+ "elevmax":21.89,
+ "bldgarea":611.34,
+ "comment":" ",
+ "OBJECTID_2":84495,
+ "Shape_Le_1":0.000440587136435,
+ "Shape_Ar_1":1.12117909767e-08,
+ "OBJECTID_3":84495,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84494,
+ "g_objectid":"940678",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424262",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004393145760000000",
+ "g_sup_tota":"178.4",
+ "g_geometry":"0.000649118",
+ "g_geomet_1":"2.05766e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000440587136435,
+ "Shape_Area":1.12117909767e-08,
+ "Shape_Le_3":0.0004405863335,
+ "Shape_Ar_2":1.12117909767e-08,
+ "building_height":15.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":559,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55373442722389,
+ 45.53541133691396
+ ],
+ [
+ -73.55374036544735,
+ 45.53541344492484
+ ],
+ [
+ -73.55379176709822,
+ 45.53533424972614
+ ],
+ [
+ -73.55379012133888,
+ 45.53533368944851
+ ],
+ [
+ -73.55373442722389,
+ 45.53541133691396
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55393890427885,
+ 45.535318177042534
+ ],
+ [
+ -73.55386076668287,
+ 45.53529074951877
+ ],
+ [
+ -73.55385826746692,
+ 45.53529424968017
+ ],
+ [
+ -73.55380426677533,
+ 45.53537174965682
+ ],
+ [
+ -73.55384636673828,
+ 45.53538624942617
+ ],
+ [
+ -73.55388143040554,
+ 45.53539830753616
+ ],
+ [
+ -73.55393890427885,
+ 45.535318177042534
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":559,
+ "ID_UEV":"01024269",
+ "CIVIQUE_DE":" 2160",
+ "CIVIQUE_FI":" 2160",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-9336-5-000-0000",
+ "SUPERFICIE":240,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000559796090889,
+ "OBJECTID":84505,
+ "Join_Count":2,
+ "TARGET_FID":84505,
+ "feature_id":"86270378-ca95-4e28-9f0a-566dbdfcd03a",
+ "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.23,
+ "heightmax":35.05,
+ "elevmin":19.73,
+ "elevmax":20.76,
+ "bldgarea":430.14,
+ "comment":" ",
+ "OBJECTID_2":84505,
+ "Shape_Le_1":0.000559796090889,
+ "Shape_Ar_1":8.16569898346e-09,
+ "OBJECTID_3":84505,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84504,
+ "g_objectid":"941019",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424855",
+ "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":"66023004359854030000000",
+ "g_sup_tota":"190.5",
+ "g_geometry":"0.000682013",
+ "g_geomet_1":"2.2069e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000559796090889,
+ "Shape_Area":8.16569898346e-09,
+ "Shape_Le_3":0.000559797447612,
+ "Shape_Ar_2":8.16569898346e-09,
+ "building_height":16.91
+ }
+ },
+ {
+ "type":"Feature",
+ "id":560,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56254946950426,
+ 45.52202154680723
+ ],
+ [
+ -73.56257836921822,
+ 45.522033946659604
+ ],
+ [
+ -73.56260756930573,
+ 45.5220002472639
+ ],
+ [
+ -73.56257866869245,
+ 45.521987846512204
+ ],
+ [
+ -73.56254946950426,
+ 45.52202154680723
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56239388589097,
+ 45.521877693950714
+ ],
+ [
+ -73.56226149669256,
+ 45.522021009911974
+ ],
+ [
+ -73.56226631346144,
+ 45.52202324382794
+ ],
+ [
+ -73.56238376941727,
+ 45.52189474689535
+ ],
+ [
+ -73.56258386947184,
+ 45.52198514674742
+ ],
+ [
+ -73.56265986937932,
+ 45.52190194686765
+ ],
+ [
+ -73.56263376925489,
+ 45.52189024668783
+ ],
+ [
+ -73.56264226874755,
+ 45.521880946798554
+ ],
+ [
+ -73.5626372694163,
+ 45.521878747056824
+ ],
+ [
+ -73.56262046918116,
+ 45.52187264695539
+ ],
+ [
+ -73.5626096692227,
+ 45.52186884642042
+ ],
+ [
+ -73.56251566938448,
+ 45.5218353466742
+ ],
+ [
+ -73.56251686908008,
+ 45.521833646955535
+ ],
+ [
+ -73.56251596885872,
+ 45.52181524682648
+ ],
+ [
+ -73.56249356944451,
+ 45.52181574684953
+ ],
+ [
+ -73.56247386889578,
+ 45.52181524682648
+ ],
+ [
+ -73.56247525834834,
+ 45.521789606255616
+ ],
+ [
+ -73.56239388589097,
+ 45.521877693950714
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":560,
+ "ID_UEV":"01040423",
+ "CIVIQUE_DE":" 2021",
+ "CIVIQUE_FI":" 2031",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-94-1850-4-000-0000",
+ "SUPERFICIE":698,
+ "SUPERFIC_1":621,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00124283259896,
+ "OBJECTID":84506,
+ "Join_Count":2,
+ "TARGET_FID":84506,
+ "feature_id":"188d8fa4-cb0e-4b54-a41f-961e1974b585",
+ "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.43,
+ "heightmax":3.82,
+ "elevmin":26.65,
+ "elevmax":27.08,
+ "bldgarea":11.58,
+ "comment":" ",
+ "OBJECTID_2":84506,
+ "Shape_Le_1":0.00124283259896,
+ "Shape_Ar_1":2.77406394625e-08,
+ "OBJECTID_3":84506,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84505,
+ "g_objectid":"941619",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565580",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994294332890000000",
+ "g_sup_tota":"334.3",
+ "g_geometry":"0.000876877",
+ "g_geomet_1":"3.89185e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00124283259896,
+ "Shape_Area":2.77406394625e-08,
+ "Shape_Le_3":0.00124283154023,
+ "Shape_Ar_2":2.77406394625e-08,
+ "building_height":0.6949999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":561,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56016060395055,
+ 45.52034470329571
+ ],
+ [
+ -73.5601685683466,
+ 45.52034844717339
+ ],
+ [
+ -73.56019856793141,
+ 45.520316546421775
+ ],
+ [
+ -73.56032866835521,
+ 45.52037714723785
+ ],
+ [
+ -73.5603319679678,
+ 45.52037364707645
+ ],
+ [
+ -73.56041816798592,
+ 45.52028604681391
+ ],
+ [
+ -73.5602794637481,
+ 45.52021863003604
+ ],
+ [
+ -73.56016060395055,
+ 45.52034470329571
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":561,
+ "ID_UEV":"01040321",
+ "CIVIQUE_DE":" 1775",
+ "CIVIQUE_FI":" 1781",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-8967-0-000-0000",
+ "SUPERFICIE":230,
+ "SUPERFIC_1":292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000651310567083,
+ "OBJECTID":84528,
+ "Join_Count":1,
+ "TARGET_FID":84528,
+ "feature_id":"536665d2-0bbe-4e3c-b536-cde29b075a10",
+ "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.6,
+ "heightmax":7.77,
+ "elevmin":24.75,
+ "elevmax":25.6,
+ "bldgarea":300.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_2":84528,
+ "Shape_Le_1":0.000651310567083,
+ "Shape_Ar_1":1.90522100038e-08,
+ "OBJECTID_3":84528,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84527,
+ "g_objectid":"941901",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566818",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004202896700000000",
+ "g_sup_tota":"230.4",
+ "g_geometry":"0.000674448",
+ "g_geomet_1":"2.68044e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000651310567083,
+ "Shape_Area":1.90522100038e-08,
+ "Shape_Le_3":0.000651312083681,
+ "Shape_Ar_2":1.90522100038e-08,
+ "building_height":2.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":562,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5602794637481,
+ 45.52021863003604
+ ],
+ [
+ -73.56017806788537,
+ 45.52016934718792
+ ],
+ [
+ -73.56017516847109,
+ 45.52017234642694
+ ],
+ [
+ -73.5601045680932,
+ 45.520243046629595
+ ],
+ [
+ -73.56010836772883,
+ 45.52024484707233
+ ],
+ [
+ -73.56013916771026,
+ 45.520259946689485
+ ],
+ [
+ -73.5601055681393,
+ 45.520293746809266
+ ],
+ [
+ -73.5601452678117,
+ 45.520312946435624
+ ],
+ [
+ -73.56012836775182,
+ 45.52032954702128
+ ],
+ [
+ -73.56016060395055,
+ 45.52034470329571
+ ],
+ [
+ -73.5602794637481,
+ 45.52021863003604
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56006681635233,
+ 45.52023253895081
+ ],
+ [
+ -73.56006776783506,
+ 45.52023294724302
+ ],
+ [
+ -73.56007216821783,
+ 45.52023494643593
+ ],
+ [
+ -73.56014506816221,
+ 45.520156646961986
+ ],
+ [
+ -73.56014041686859,
+ 45.52015446970331
+ ],
+ [
+ -73.56006681635233,
+ 45.52023253895081
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":562,
+ "ID_UEV":"01040322",
+ "CIVIQUE_DE":" 1763",
+ "CIVIQUE_FI":" 1769",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-12-0060-1-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":177,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000804949984566,
+ "OBJECTID":84529,
+ "Join_Count":2,
+ "TARGET_FID":84529,
+ "feature_id":"17208e37-06da-42f6-9c87-7a55e1172c6a",
+ "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.45,
+ "heightmax":13.18,
+ "elevmin":24.76,
+ "elevmax":26.28,
+ "bldgarea":2107.14,
+ "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_2":84529,
+ "Shape_Le_1":0.000804949984566,
+ "Shape_Ar_1":1.60893999917e-08,
+ "OBJECTID_3":84529,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84528,
+ "g_objectid":"941901",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566818",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004202896700000000",
+ "g_sup_tota":"230.4",
+ "g_geometry":"0.000674448",
+ "g_geomet_1":"2.68044e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000804949984566,
+ "Shape_Area":1.60893999917e-08,
+ "Shape_Le_3":0.000804948505972,
+ "Shape_Ar_2":1.60893999917e-08,
+ "building_height":5.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":563,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5553417513426,
+ 45.52316296005286
+ ],
+ [
+ -73.55534366689855,
+ 45.52316384768372
+ ],
+ [
+ -73.55534826693082,
+ 45.52315884745314
+ ],
+ [
+ -73.55543086696278,
+ 45.523070547518046
+ ],
+ [
+ -73.55542841001495,
+ 45.523069413472946
+ ],
+ [
+ -73.5553417513426,
+ 45.52316296005286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":563,
+ "ID_UEV":"01022048",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-45-6184-3-000-0000",
+ "SUPERFICIE":406,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000260040904902,
+ "OBJECTID":84530,
+ "Join_Count":1,
+ "TARGET_FID":84530,
+ "feature_id":"98d7f313-9c40-4651-aec5-30ec5dde9015",
+ "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.5,
+ "heightmax":39.25,
+ "elevmin":24.03,
+ "elevmax":26.49,
+ "bldgarea":874.92,
+ "comment":" ",
+ "OBJECTID_2":84530,
+ "Shape_Le_1":0.000260040904902,
+ "Shape_Ar_1":2.88745115714e-10,
+ "OBJECTID_3":84530,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84529,
+ "g_objectid":"942231",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567670",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004245818170000000",
+ "g_sup_tota":"382.8",
+ "g_geometry":"0.000938875",
+ "g_geomet_1":"4.48515e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000260040904902,
+ "Shape_Area":2.88745115714e-10,
+ "Shape_Le_3":0.000260040687045,
+ "Shape_Ar_2":2.88745115714e-10,
+ "building_height":18.375
+ }
+ },
+ {
+ "type":"Feature",
+ "id":564,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55515266798308,
+ 45.52325197045237
+ ],
+ [
+ -73.55522723796851,
+ 45.52328657276741
+ ],
+ [
+ -73.55525064732136,
+ 45.523261303616565
+ ],
+ [
+ -73.55512756700546,
+ 45.52320364808019
+ ],
+ [
+ -73.55512456686711,
+ 45.52320684786803
+ ],
+ [
+ -73.55510555250109,
+ 45.523229926270375
+ ],
+ [
+ -73.55515266798308,
+ 45.52325197045237
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55520974435606,
+ 45.52310180795237
+ ],
+ [
+ -73.5553417513426,
+ 45.52316296005286
+ ],
+ [
+ -73.55542841001495,
+ 45.523069413472946
+ ],
+ [
+ -73.55539076709208,
+ 45.52305204756424
+ ],
+ [
+ -73.55540056700441,
+ 45.5230414481546
+ ],
+ [
+ -73.55539656681995,
+ 45.52303984826069
+ ],
+ [
+ -73.55535196674171,
+ 45.5230243475459
+ ],
+ [
+ -73.55530176748442,
+ 45.52300694746295
+ ],
+ [
+ -73.55530516692176,
+ 45.52300214778119
+ ],
+ [
+ -73.55530306700479,
+ 45.52300134828389
+ ],
+ [
+ -73.55530288084512,
+ 45.52300126914355
+ ],
+ [
+ -73.55520974435606,
+ 45.52310180795237
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":564,
+ "ID_UEV":"01022049",
+ "CIVIQUE_DE":" 1617",
+ "CIVIQUE_FI":" 1627",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"C",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-45-8181-7-000-0000",
+ "SUPERFICIE":383,
+ "SUPERFIC_1":478,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000917803042835,
+ "OBJECTID":84531,
+ "Join_Count":2,
+ "TARGET_FID":84531,
+ "feature_id":"cacf7be8-a632-49cc-9a14-792010ce994d",
+ "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":5.03,
+ "heightmax":33.86,
+ "elevmin":25.68,
+ "elevmax":26.6,
+ "bldgarea":48.34,
+ "comment":" ",
+ "OBJECTID_2":84531,
+ "Shape_Le_1":0.000917803042835,
+ "Shape_Ar_1":2.30112626536e-08,
+ "OBJECTID_3":84531,
+ "Join_Cou_1":6,
+ "TARGET_F_1":84530,
+ "g_objectid":"938503",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1567683",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004246902380000000",
+ "g_sup_tota":"1546.1",
+ "g_geometry":"0.00174787",
+ "g_geomet_1":"1.78996e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000917803042835,
+ "Shape_Area":2.30112626536e-08,
+ "Shape_Le_3":0.000917800903962,
+ "Shape_Ar_2":2.30112626536e-08,
+ "building_height":14.415
+ }
+ },
+ {
+ "type":"Feature",
+ "id":565,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5548981211732,
+ 45.522828317822906
+ ],
+ [
+ -73.55488246667434,
+ 45.522821547726544
+ ],
+ [
+ -73.55476626707141,
+ 45.52277134756993
+ ],
+ [
+ -73.55476276691002,
+ 45.52277534775439
+ ],
+ [
+ -73.55469986742679,
+ 45.522849147920134
+ ],
+ [
+ -73.55469976670271,
+ 45.52284924774488
+ ],
+ [
+ -73.55472256721455,
+ 45.52285864745891
+ ],
+ [
+ -73.55468716720085,
+ 45.522901447993725
+ ],
+ [
+ -73.55468396741301,
+ 45.52290534745412
+ ],
+ [
+ -73.55478814937544,
+ 45.522948161478766
+ ],
+ [
+ -73.5548981211732,
+ 45.522828317822906
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":565,
+ "ID_UEV":"01022052",
+ "CIVIQUE_DE":" 1571",
+ "CIVIQUE_FI":" 1571",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-55-2353-7-000-0000",
+ "SUPERFICIE":432,
+ "SUPERFIC_1":545,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000606599807142,
+ "OBJECTID":84532,
+ "Join_Count":1,
+ "TARGET_FID":84532,
+ "feature_id":"98d7f313-9c40-4651-aec5-30ec5dde9015",
+ "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.5,
+ "heightmax":39.25,
+ "elevmin":24.03,
+ "elevmax":26.49,
+ "bldgarea":874.92,
+ "comment":" ",
+ "OBJECTID_2":84532,
+ "Shape_Le_1":0.000606599807142,
+ "Shape_Ar_1":2.03153645055e-08,
+ "OBJECTID_3":84532,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84531,
+ "g_objectid":"942234",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567673",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004255155900000000",
+ "g_sup_tota":"191.4",
+ "g_geometry":"0.000788043",
+ "g_geomet_1":"2.20486e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000606599807142,
+ "Shape_Area":2.03153645055e-08,
+ "Shape_Le_3":0.000606600244081,
+ "Shape_Ar_2":2.03153645055e-08,
+ "building_height":18.375
+ }
+ },
+ {
+ "type":"Feature",
+ "id":566,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55621877649719,
+ 45.5200989176812
+ ],
+ [
+ -73.55648113841565,
+ 45.52021898616757
+ ],
+ [
+ -73.55665586319937,
+ 45.52003183994775
+ ],
+ [
+ -73.55658246682923,
+ 45.51999614675506
+ ],
+ [
+ -73.55661066687063,
+ 45.51996744669061
+ ],
+ [
+ -73.55656816670937,
+ 45.519946746995075
+ ],
+ [
+ -73.5565625675303,
+ 45.51994424687979
+ ],
+ [
+ -73.55655376676476,
+ 45.51995434716569
+ ],
+ [
+ -73.55649586751213,
+ 45.51992914726263
+ ],
+ [
+ -73.55647636751219,
+ 45.51995134702734
+ ],
+ [
+ -73.55626756741614,
+ 45.51986074662645
+ ],
+ [
+ -73.55626256718557,
+ 45.51985854688473
+ ],
+ [
+ -73.55613906688627,
+ 45.5199987466951
+ ],
+ [
+ -73.55614316689548,
+ 45.52000054713783
+ ],
+ [
+ -73.55621376727339,
+ 45.5200333472115
+ ],
+ [
+ -73.55617223118537,
+ 45.52007761723854
+ ],
+ [
+ -73.55621877649719,
+ 45.5200989176812
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":566,
+ "ID_UEV":"01022329",
+ "CIVIQUE_DE":" 1300",
+ "CIVIQUE_FI":" 1318",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-9727-4-000-0000",
+ "SUPERFICIE":1854,
+ "SUPERFIC_1":2337,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00144003625276,
+ "OBJECTID":84541,
+ "Join_Count":1,
+ "TARGET_FID":84541,
+ "feature_id":"211958cf-542a-49df-b678-d8f003531624",
+ "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.51,
+ "heightmax":14.57,
+ "elevmin":22.45,
+ "elevmax":25.92,
+ "bldgarea":1418.25,
+ "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_2":84541,
+ "Shape_Le_1":0.00144003625276,
+ "Shape_Ar_1":1.01318340646e-07,
+ "OBJECTID_3":84541,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84540,
+ "g_objectid":"942140",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567444",
+ "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":"66023004242193840000000",
+ "g_sup_tota":"129.3",
+ "g_geometry":"0.000704666",
+ "g_geomet_1":"1.51624e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00144003625276,
+ "Shape_Area":1.01318340646e-07,
+ "Shape_Le_3":0.0014400371149,
+ "Shape_Ar_2":1.01318340646e-07,
+ "building_height":6.03
+ }
+ },
+ {
+ "type":"Feature",
+ "id":567,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55703381138314,
+ 45.520304125885
+ ],
+ [
+ -73.55699606683686,
+ 45.52028564661559
+ ],
+ [
+ -73.55699596701211,
+ 45.520285746440344
+ ],
+ [
+ -73.55691759649173,
+ 45.5203623659807
+ ],
+ [
+ -73.55696126037572,
+ 45.52038268346436
+ ],
+ [
+ -73.55703381138314,
+ 45.520304125885
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":567,
+ "ID_UEV":"01022330",
+ "CIVIQUE_DE":" 1556",
+ "CIVIQUE_FI":" 1556",
+ "NOM_RUE":"avenue Lartigue (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-4868-1-000-0000",
+ "SUPERFICIE":64,
+ "SUPERFIC_1":98,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000306862081828,
+ "OBJECTID":84542,
+ "Join_Count":1,
+ "TARGET_FID":84542,
+ "feature_id":"de005517-bbb4-4c7a-94fc-49e9ab3ba9df",
+ "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.51,
+ "heightmax":10.64,
+ "elevmin":26.31,
+ "elevmax":27.55,
+ "bldgarea":383.26,
+ "comment":" ",
+ "OBJECTID_2":84542,
+ "Shape_Le_1":0.000306862081828,
+ "Shape_Ar_1":4.62491003554e-09,
+ "OBJECTID_3":84542,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84541,
+ "g_objectid":"942126",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567429",
+ "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":"66023004232486810000000",
+ "g_sup_tota":"63.7",
+ "g_geometry":"0.000384049",
+ "g_geomet_1":"7.44433e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000306862081828,
+ "Shape_Area":4.62491003554e-09,
+ "Shape_Le_3":0.000306861850941,
+ "Shape_Ar_2":4.62491003554e-09,
+ "building_height":4.065
+ }
+ },
+ {
+ "type":"Feature",
+ "id":568,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56163803089225,
+ 45.5217052624382
+ ],
+ [
+ -73.56184933110359,
+ 45.52179024027766
+ ],
+ [
+ -73.5619062536925,
+ 45.521693376098725
+ ],
+ [
+ -73.56170841992949,
+ 45.521609511619964
+ ],
+ [
+ -73.56167843653246,
+ 45.52164293762177
+ ],
+ [
+ -73.56168306894033,
+ 45.52164464723298
+ ],
+ [
+ -73.56166376948921,
+ 45.52167044698383
+ ],
+ [
+ -73.56163803089225,
+ 45.5217052624382
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":568,
+ "ID_UEV":"01040630",
+ "CIVIQUE_DE":" 1262",
+ "CIVIQUE_FI":" 1268",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1904,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-94-7421-8-000-0000",
+ "SUPERFICIE":221,
+ "SUPERFIC_1":383,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00068033261796,
+ "OBJECTID":84546,
+ "Join_Count":1,
+ "TARGET_FID":84546,
+ "feature_id":"994a4dd1-9964-4192-86ce-81dfe56b3344",
+ "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.12,
+ "heightmax":14.65,
+ "elevmin":25.71,
+ "elevmax":27.04,
+ "bldgarea":2451.53,
+ "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_2":84546,
+ "Shape_Le_1":0.00068033261796,
+ "Shape_Ar_1":2.51593475965e-08,
+ "OBJECTID_3":84546,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84545,
+ "g_objectid":"941612",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565555",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"14",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994294670890000000",
+ "g_sup_tota":"299.9",
+ "g_geometry":"0.000752203",
+ "g_geomet_1":"3.42642e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00068033261796,
+ "Shape_Area":2.51593475965e-08,
+ "Shape_Le_3":0.000680331684586,
+ "Shape_Ar_2":2.51593475965e-08,
+ "building_height":6.265000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":569,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56015760201356,
+ 45.51651952420697
+ ],
+ [
+ -73.56010409684843,
+ 45.51657464725246
+ ],
+ [
+ -73.56032559177449,
+ 45.51667535423451
+ ],
+ [
+ -73.56037653207314,
+ 45.51661906566764
+ ],
+ [
+ -73.56015760201356,
+ 45.51651952420697
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":569,
+ "ID_UEV":"01040657",
+ "CIVIQUE_DE":" 831",
+ "CIVIQUE_FI":" 833",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-08-9454-7-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":353,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000636547791087,
+ "OBJECTID":84551,
+ "Join_Count":1,
+ "TARGET_FID":84551,
+ "feature_id":"d2a77e4c-9927-4ce1-9775-14c8826454c9",
+ "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":44.74,
+ "elevmin":27.34,
+ "elevmax":28.71,
+ "bldgarea":964.41,
+ "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_2":84551,
+ "Shape_Le_1":0.000636547791087,
+ "Shape_Ar_1":1.74957991167e-08,
+ "OBJECTID_3":84551,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84550,
+ "g_objectid":"945516",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2161965",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9900",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004108605300000000",
+ "g_sup_tota":"1488.8",
+ "g_geometry":"0.00174384",
+ "g_geomet_1":"1.70633e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000636547791087,
+ "Shape_Area":1.74957991167e-08,
+ "Shape_Le_3":0.000636548315727,
+ "Shape_Ar_2":1.74957991167e-08,
+ "building_height":22.12
+ }
+ },
+ {
+ "type":"Feature",
+ "id":570,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56001826825032,
+ 45.51808114657795
+ ],
+ [
+ -73.56002156786292,
+ 45.51807764641654
+ ],
+ [
+ -73.56007486798262,
+ 45.518023046776484
+ ],
+ [
+ -73.56006976792729,
+ 45.518020646485944
+ ],
+ [
+ -73.56002656809349,
+ 45.51800104666127
+ ],
+ [
+ -73.56010586851286,
+ 45.51791444644484
+ ],
+ [
+ -73.560127767904,
+ 45.51792434708125
+ ],
+ [
+ -73.56013116824067,
+ 45.51792024707204
+ ],
+ [
+ -73.56017406770091,
+ 45.51787194718291
+ ],
+ [
+ -73.56015656779321,
+ 45.5178643470123
+ ],
+ [
+ -73.56025256772367,
+ 45.51775544720642
+ ],
+ [
+ -73.56012106795477,
+ 45.517698246727
+ ],
+ [
+ -73.56011026799632,
+ 45.517709847082074
+ ],
+ [
+ -73.55987726804334,
+ 45.51760174677349
+ ],
+ [
+ -73.55948786789263,
+ 45.51742124654359
+ ],
+ [
+ -73.55950046829382,
+ 45.5174078466451
+ ],
+ [
+ -73.5594107681143,
+ 45.517363046917374
+ ],
+ [
+ -73.55940796852477,
+ 45.517366047055724
+ ],
+ [
+ -73.55912436821687,
+ 45.517668747165246
+ ],
+ [
+ -73.55913006812,
+ 45.517671446930024
+ ],
+ [
+ -73.55922006777375,
+ 45.51771294704516
+ ],
+ [
+ -73.55923576813804,
+ 45.517696547008335
+ ],
+ [
+ -73.55947156768055,
+ 45.51780804675425
+ ],
+ [
+ -73.55945916782818,
+ 45.51782104645442
+ ],
+ [
+ -73.55945936837699,
+ 45.51782104645442
+ ],
+ [
+ -73.55967206793343,
+ 45.5179184466293
+ ],
+ [
+ -73.55967756818707,
+ 45.51792104656934
+ ],
+ [
+ -73.55968916854214,
+ 45.517908347242724
+ ],
+ [
+ -73.55969986777652,
+ 45.517913346573984
+ ],
+ [
+ -73.55992286816767,
+ 45.51801774707167
+ ],
+ [
+ -73.55991196838448,
+ 45.51802914687792
+ ],
+ [
+ -73.55991206820923,
+ 45.51802914687792
+ ],
+ [
+ -73.56001826825032,
+ 45.51808114657795
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":570,
+ "ID_UEV":"01040659",
+ "CIVIQUE_DE":" 945",
+ "CIVIQUE_FI":" 965",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":13,
+ "NOMBRE_LOG":209,
+ "ANNEE_CONS":1971,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-19-3579-4-000-0000",
+ "SUPERFICIE":3808,
+ "SUPERFIC_1":19884,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00294918813913,
+ "OBJECTID":84552,
+ "Join_Count":1,
+ "TARGET_FID":84552,
+ "feature_id":"9cd2331f-1eff-4c67-82cc-03e5c14f2c45",
+ "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.6,
+ "heightmax":75.72,
+ "elevmin":22.72,
+ "elevmax":27.86,
+ "bldgarea":3038.46,
+ "comment":" ",
+ "OBJECTID_2":84552,
+ "Shape_Le_1":0.00294918813913,
+ "Shape_Ar_1":3.49986539993e-07,
+ "OBJECTID_3":84552,
+ "Join_Cou_1":1,
+ "TARGET_F_1":84551,
+ "g_objectid":"943425",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162060",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"209",
+ "g_nb_locau":"9",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004119357940000000",
+ "g_sup_tota":"3808.2",
+ "g_geometry":"0.0029621",
+ "g_geomet_1":"4.35906e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00294918813913,
+ "Shape_Area":3.49986539993e-07,
+ "Shape_Le_3":0.0029491865481,
+ "Shape_Ar_2":3.49986539993e-07,
+ "building_height":37.56
+ }
+ },
+ {
+ "type":"Feature",
+ "id":571,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55753797491946,
+ 45.51939508666421
+ ],
+ [
+ -73.55745736328853,
+ 45.51948390281016
+ ],
+ [
+ -73.55767609189996,
+ 45.51958527349187
+ ],
+ [
+ -73.55775843742379,
+ 45.51949725954119
+ ],
+ [
+ -73.55753797491946,
+ 45.51939508666421
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":571,
+ "ID_UEV":"01040665",
+ "CIVIQUE_DE":" 1231",
+ "CIVIQUE_FI":" 1231",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":35,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-9977-8-000-0000",
+ "SUPERFICIE":250,
+ "SUPERFIC_1":1000,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000724537706629,
+ "OBJECTID":84554,
+ "Join_Count":1,
+ "TARGET_FID":84554,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":84554,
+ "Shape_Le_1":0.000724537706629,
+ "Shape_Ar_1":2.77077660317e-08,
+ "OBJECTID_3":84554,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84553,
+ "g_objectid":"941762",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566474",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004221946960000000",
+ "g_sup_tota":"149.3",
+ "g_geometry":"0.000644471",
+ "g_geomet_1":"1.70892e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000724537706629,
+ "Shape_Area":2.77077660317e-08,
+ "Shape_Le_3":0.000724537808024,
+ "Shape_Ar_2":2.77077660317e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":572,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55249203270299,
+ 45.532693858185304
+ ],
+ [
+ -73.55257127016982,
+ 45.53272740919287
+ ],
+ [
+ -73.55257200491594,
+ 45.532726503575574
+ ],
+ [
+ -73.55270684926353,
+ 45.532783598834314
+ ],
+ [
+ -73.552750925037,
+ 45.5327324561882
+ ],
+ [
+ -73.55279087202297,
+ 45.532686102431974
+ ],
+ [
+ -73.5525810673842,
+ 45.53259704976433
+ ],
+ [
+ -73.55258086683538,
+ 45.53259704976433
+ ],
+ [
+ -73.55255436741197,
+ 45.53261864968123
+ ],
+ [
+ -73.55249806715392,
+ 45.53266474982863
+ ],
+ [
+ -73.55249756713086,
+ 45.53266515002695
+ ],
+ [
+ -73.55251096702935,
+ 45.532670549556514
+ ],
+ [
+ -73.55249203270299,
+ 45.532693858185304
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":572,
+ "ID_UEV":"01019145",
+ "CIVIQUE_DE":" 2524",
+ "CIVIQUE_FI":" 2532",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2007,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-66-9041-6-000-0000",
+ "SUPERFICIE":337,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000742546154514,
+ "OBJECTID":84562,
+ "Join_Count":1,
+ "TARGET_FID":84562,
+ "feature_id":"93de796e-eda8-49bd-9490-401c5361a401",
+ "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.91,
+ "heightmax":31.36,
+ "elevmin":18.63,
+ "elevmax":19.67,
+ "bldgarea":455.78,
+ "comment":" ",
+ "OBJECTID_2":84562,
+ "Shape_Le_1":0.000742546154514,
+ "Shape_Ar_1":2.91401142856e-08,
+ "OBJECTID_3":84562,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84561,
+ "g_objectid":"941208",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425153",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004366975280000000",
+ "g_sup_tota":"340",
+ "g_geometry":"0.000870516",
+ "g_geomet_1":"3.9267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000742546154514,
+ "Shape_Area":2.91401142856e-08,
+ "Shape_Le_3":0.000742547920987,
+ "Shape_Ar_2":2.91401142856e-08,
+ "building_height":14.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":573,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55724464934293,
+ 45.51811778675675
+ ],
+ [
+ -73.5573139178249,
+ 45.51814981251413
+ ],
+ [
+ -73.55739817530738,
+ 45.518059936966814
+ ],
+ [
+ -73.5573322666926,
+ 45.518039146439754
+ ],
+ [
+ -73.5573596672367,
+ 45.51799634680426
+ ],
+ [
+ -73.55735876521669,
+ 45.51799606081985
+ ],
+ [
+ -73.55724464934293,
+ 45.51811778675675
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":573,
+ "ID_UEV":"01040152",
+ "CIVIQUE_DE":" 1434",
+ "CIVIQUE_FI":" 1434",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-30-1916-5-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":111,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000487235991933,
+ "OBJECTID":84567,
+ "Join_Count":1,
+ "TARGET_FID":84567,
+ "feature_id":"50d4dd71-90f9-4ec4-b4eb-26d82cb3672b",
+ "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,
+ "heightmax":37.73,
+ "elevmin":22.71,
+ "elevmax":26.77,
+ "bldgarea":2585.63,
+ "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_2":84567,
+ "Shape_Le_1":0.000487235991933,
+ "Shape_Ar_1":8.83318354175e-09,
+ "OBJECTID_3":84567,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84566,
+ "g_objectid":"941734",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566417",
+ "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":"66023004230191650000000",
+ "g_sup_tota":"128.9",
+ "g_geometry":"0.000562272",
+ "g_geomet_1":"1.4837e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000487235991933,
+ "Shape_Area":8.83318354175e-09,
+ "Shape_Le_3":0.000487236032808,
+ "Shape_Ar_2":8.83318354175e-09,
+ "building_height":18.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":574,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55918396089292,
+ 45.51465407397663
+ ],
+ [
+ -73.55942634527146,
+ 45.514764672601856
+ ],
+ [
+ -73.55947359385311,
+ 45.51471326645438
+ ],
+ [
+ -73.559233168198,
+ 45.51460504563664
+ ],
+ [
+ -73.55918396089292,
+ 45.51465407397663
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55910024750027,
+ 45.514545836971095
+ ],
+ [
+ -73.55905325882269,
+ 45.51459328250428
+ ],
+ [
+ -73.55915375716201,
+ 45.51464004725067
+ ],
+ [
+ -73.5592006684979,
+ 45.51459304598258
+ ],
+ [
+ -73.55920056777383,
+ 45.51459304598258
+ ],
+ [
+ -73.55910024750027,
+ 45.514545836971095
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":574,
+ "ID_UEV":"01040705",
+ "CIVIQUE_DE":" 500",
+ "CIVIQUE_FI":" 500",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":7,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-16-6938-5-000-0000",
+ "SUPERFICIE":277,
+ "SUPERFIC_1":1662,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00102436952412,
+ "OBJECTID":84569,
+ "Join_Count":1,
+ "TARGET_FID":84569,
+ "feature_id":"89ccdbc5-4c1a-452f-aaf4-275ed8f47b97",
+ "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.55,
+ "heightmax":69.28,
+ "elevmin":21.76,
+ "elevmax":23.72,
+ "bldgarea":2132.56,
+ "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_2":84569,
+ "Shape_Le_1":0.00102436952412,
+ "Shape_Ar_1":2.4346941796e-08,
+ "OBJECTID_3":84569,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84568,
+ "g_objectid":"938349",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2162029",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004116693850000000",
+ "g_sup_tota":"276.7",
+ "g_geometry":"0.000981795",
+ "g_geomet_1":"3.17734e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00102436952412,
+ "Shape_Area":2.4346941796e-08,
+ "Shape_Le_3":0.00102437087158,
+ "Shape_Ar_2":2.4346941796e-08,
+ "building_height":34.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":575,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57439701133485,
+ 45.50018704444684
+ ],
+ [
+ -73.57487340830299,
+ 45.50041921162761
+ ],
+ [
+ -73.57492207241755,
+ 45.50044154269334
+ ],
+ [
+ -73.57492267226536,
+ 45.50044094284553
+ ],
+ [
+ -73.57516617180323,
+ 45.50019284327539
+ ],
+ [
+ -73.57483267171227,
+ 45.50003104264879
+ ],
+ [
+ -73.57464075728696,
+ 45.499937847703805
+ ],
+ [
+ -73.57439701133485,
+ 45.50018704444684
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":575,
+ "ID_UEV":"01039089",
+ "CIVIQUE_DE":" 1120",
+ "CIVIQUE_FI":" 1150",
+ "NOM_RUE":"boulevard De Maisonneuve Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":13,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1969,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-90-5531-0-000-0000",
+ "SUPERFICIE":1820,
+ "SUPERFIC_1":20133,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00186458671224,
+ "OBJECTID":84587,
+ "Join_Count":1,
+ "TARGET_FID":84587,
+ "feature_id":"f5222acb-0847-49df-b513-f4d55084c967",
+ "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,
+ "heightmax":103.62,
+ "elevmin":39.15,
+ "elevmax":42.95,
+ "bldgarea":3575.43,
+ "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_2":84587,
+ "Shape_Le_1":0.00186458671224,
+ "Shape_Ar_1":1.93212656759e-07,
+ "OBJECTID_3":84587,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84586,
+ "g_objectid":"945004",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338916",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"44",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984090553100000000",
+ "g_sup_tota":"1819.9",
+ "g_geometry":"0.00193387",
+ "g_geomet_1":"2.09774e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00186458671224,
+ "Shape_Area":1.93212656759e-07,
+ "Shape_Le_3":0.00186458564564,
+ "Shape_Ar_2":1.93212656759e-07,
+ "building_height":51.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":576,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56686169353418,
+ 45.513705615671924
+ ],
+ [
+ -73.56686377006878,
+ 45.513706445746166
+ ],
+ [
+ -73.56685056532318,
+ 45.513722811608766
+ ],
+ [
+ -73.5669832980626,
+ 45.51378258324991
+ ],
+ [
+ -73.56701614490102,
+ 45.51379736720503
+ ],
+ [
+ -73.56709826919162,
+ 45.51383435542146
+ ],
+ [
+ -73.56719254602103,
+ 45.51387680881797
+ ],
+ [
+ -73.56722631916115,
+ 45.51389200376326
+ ],
+ [
+ -73.5673632913047,
+ 45.513756545178715
+ ],
+ [
+ -73.5674017472147,
+ 45.51371851284939
+ ],
+ [
+ -73.56702947015577,
+ 45.513535545779106
+ ],
+ [
+ -73.56702537014657,
+ 45.51353964578832
+ ],
+ [
+ -73.56698587012366,
+ 45.51357674552069
+ ],
+ [
+ -73.56698351120193,
+ 45.51357549906033
+ ],
+ [
+ -73.56686169353418,
+ 45.513705615671924
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":576,
+ "ID_UEV":"01125755",
+ "CIVIQUE_DE":" 2040",
+ "CIVIQUE_FI":" 2040",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"C.E.G.E.P. (coll\u00c3\u00a8ge d'enseignement g\u00c3\u00a9n\u00c3\u00a9ral et professionnel)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-55-5634-1-000-0000",
+ "SUPERFICIE":905,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00133778988127,
+ "OBJECTID":84611,
+ "Join_Count":1,
+ "TARGET_FID":84611,
+ "feature_id":"e3375b24-c58b-421e-885b-178a9428d620",
+ "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":16.46,
+ "elevmin":21.61,
+ "elevmax":32.17,
+ "bldgarea":3099.27,
+ "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_2":84611,
+ "Shape_Le_1":0.00133778988127,
+ "Shape_Ar_1":9.9611367185e-08,
+ "OBJECTID_3":84611,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84610,
+ "g_objectid":"943087",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161226",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"137",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994155540070000000",
+ "g_sup_tota":"3180.1",
+ "g_geometry":"0.00314117",
+ "g_geomet_1":"3.65302e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00133778988127,
+ "Shape_Area":9.9611367185e-08,
+ "Shape_Le_3":0.00133778820168,
+ "Shape_Ar_2":9.9611367185e-08,
+ "building_height":7.9750000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":577,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55709613260228,
+ 45.52022080729471
+ ],
+ [
+ -73.55712946687325,
+ 45.52023664705391
+ ],
+ [
+ -73.55711486727914,
+ 45.52025184649582
+ ],
+ [
+ -73.5571448030121,
+ 45.52026615291092
+ ],
+ [
+ -73.55723973544728,
+ 45.520165118575655
+ ],
+ [
+ -73.55718186677159,
+ 45.520137746809866
+ ],
+ [
+ -73.55717654278507,
+ 45.520135229607455
+ ],
+ [
+ -73.55709613260228,
+ 45.52022080729471
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":577,
+ "ID_UEV":"05236486",
+ "CIVIQUE_DE":" 1563",
+ "CIVIQUE_FI":" 1567",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"Condominium",
+ "MATRICULE8":"0042-32-3955-7-001-0001",
+ "SUPERFICIE":137,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00047177423756,
+ "OBJECTID":84613,
+ "Join_Count":1,
+ "TARGET_FID":84613,
+ "feature_id":"0264c9fe-20ec-4849-a69c-40f7d4f525fd",
+ "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.41,
+ "heightmax":20.48,
+ "elevmin":25.55,
+ "elevmax":27.32,
+ "bldgarea":959.69,
+ "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_2":84613,
+ "Shape_Le_1":0.00047177423756,
+ "Shape_Ar_1":1.15380290266e-08,
+ "OBJECTID_3":84613,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84612,
+ "g_objectid":"944638",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232395570020001",
+ "g_sup_tota":"150.3",
+ "g_geometry":"0.000596258",
+ "g_geomet_1":"1.79045e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00047177423756,
+ "Shape_Area":1.15380290266e-08,
+ "Shape_Le_3":0.000471773805788,
+ "Shape_Ar_2":1.15380290266e-08,
+ "building_height":9.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":578,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5456990135205,
+ 45.528814908631425
+ ],
+ [
+ -73.54556606404446,
+ 45.528755849253336
+ ],
+ [
+ -73.54556296408137,
+ 45.528759348515415
+ ],
+ [
+ -73.54550576450127,
+ 45.52882604853361
+ ],
+ [
+ -73.54563284230368,
+ 45.52888465555271
+ ],
+ [
+ -73.5456990135205,
+ 45.528814908631425
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":578,
+ "ID_UEV":"01018806",
+ "CIVIQUE_DE":" 557",
+ "CIVIQUE_FI":" 565",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-22-4015-6-000-0000",
+ "SUPERFICIE":227,
+ "SUPERFIC_1":361,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000474103232924,
+ "OBJECTID":84625,
+ "Join_Count":1,
+ "TARGET_FID":84625,
+ "feature_id":"b1c1a3c9-57c2-4c87-9e32-cf381a530a2c",
+ "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":10.77,
+ "elevmin":19,
+ "elevmax":19.66,
+ "bldgarea":268.93,
+ "comment":" ",
+ "OBJECTID_2":84625,
+ "Shape_Le_1":0.000474103232924,
+ "Shape_Ar_1":1.28211504327e-08,
+ "OBJECTID_3":84625,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84624,
+ "g_objectid":"940727",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424332",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014322401560000000",
+ "g_sup_tota":"227.1",
+ "g_geometry":"0.000661985",
+ "g_geomet_1":"2.58113e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000474103232924,
+ "Shape_Area":1.28211504327e-08,
+ "Shape_Le_3":0.000474102499824,
+ "Shape_Ar_2":1.28211504327e-08,
+ "building_height":5.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":579,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55799442582394,
+ 45.502338632871904
+ ],
+ [
+ -73.55812924409119,
+ 45.502400164486296
+ ],
+ [
+ -73.55812966587322,
+ 45.50239974360358
+ ],
+ [
+ -73.55800766654242,
+ 45.50233964370988
+ ],
+ [
+ -73.55815646656953,
+ 45.502190144010235
+ ],
+ [
+ -73.55814999684672,
+ 45.502186958611546
+ ],
+ [
+ -73.55799442582394,
+ 45.502338632871904
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":579,
+ "ID_UEV":"01036614",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-22-4869-4-000-0000",
+ "SUPERFICIE":682,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000720205807194,
+ "OBJECTID":84632,
+ "Join_Count":1,
+ "TARGET_FID":84632,
+ "feature_id":"8155309a-d0de-441b-9278-eb70c3030286",
+ "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":33.28,
+ "elevmin":15.4,
+ "elevmax":18.89,
+ "bldgarea":2697.37,
+ "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_2":84632,
+ "Shape_Le_1":0.000720205807194,
+ "Shape_Ar_1":2.18079821391e-09,
+ "OBJECTID_3":84632,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84631,
+ "g_objectid":"945684",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1180719",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004022486940000000",
+ "g_sup_tota":"682.2",
+ "g_geometry":"0.00119296",
+ "g_geomet_1":"7.85503e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000720205807194,
+ "Shape_Area":2.18079821391e-09,
+ "Shape_Le_3":0.000720205834704,
+ "Shape_Ar_2":2.18079821391e-09,
+ "building_height":16.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":580,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56242209492558,
+ 45.51948254393455
+ ],
+ [
+ -73.56252236933372,
+ 45.519530346498584
+ ],
+ [
+ -73.56259836924119,
+ 45.51945154700159
+ ],
+ [
+ -73.56249627640388,
+ 45.519402928752456
+ ],
+ [
+ -73.56242209492558,
+ 45.51948254393455
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":580,
+ "ID_UEV":"01040002",
+ "CIVIQUE_DE":" 1869",
+ "CIVIQUE_FI":" 1871",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-1676-9-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000442459899604,
+ "OBJECTID":84644,
+ "Join_Count":1,
+ "TARGET_FID":84644,
+ "feature_id":"85acbee3-ba84-4b87-b9cc-8fae22b6a408",
+ "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.77,
+ "heightmax":8.24,
+ "elevmin":24.28,
+ "elevmax":24.74,
+ "bldgarea":195.05,
+ "comment":" ",
+ "OBJECTID_2":84644,
+ "Shape_Le_1":0.000442459899604,
+ "Shape_Ar_1":1.16346426215e-08,
+ "OBJECTID_3":84644,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84643,
+ "g_objectid":"941470",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565243",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994291167690000000",
+ "g_sup_tota":"284.9",
+ "g_geometry":"0.000759615",
+ "g_geomet_1":"3.28039e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000442459899604,
+ "Shape_Area":1.16346426215e-08,
+ "Shape_Le_3":0.000442460073797,
+ "Shape_Ar_2":1.16346426215e-08,
+ "building_height":0.7350000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":581,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55777025631413,
+ 45.52163497322573
+ ],
+ [
+ -73.55786014804924,
+ 45.521676392401886
+ ],
+ [
+ -73.55786112021637,
+ 45.52167550926763
+ ],
+ [
+ -73.55788895153573,
+ 45.521646126617746
+ ],
+ [
+ -73.55780896853092,
+ 45.521602947468345
+ ],
+ [
+ -73.55784766815721,
+ 45.52156764817872
+ ],
+ [
+ -73.55780346827729,
+ 45.521545947537746
+ ],
+ [
+ -73.55763126789054,
+ 45.52146094811456
+ ],
+ [
+ -73.55763066804275,
+ 45.52146054791625
+ ],
+ [
+ -73.5576138678076,
+ 45.5214892479807
+ ],
+ [
+ -73.55759176786763,
+ 45.521525847690015
+ ],
+ [
+ -73.55778676786689,
+ 45.52161754796177
+ ],
+ [
+ -73.55777066820362,
+ 45.5216345478464
+ ],
+ [
+ -73.55777025631413,
+ 45.52163497322573
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":581,
+ "ID_UEV":"01035523",
+ "CIVIQUE_DE":" 1357",
+ "CIVIQUE_FI":" 1365",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1950,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-8905-4-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":284,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000841533159028,
+ "OBJECTID":84648,
+ "Join_Count":1,
+ "TARGET_FID":84648,
+ "feature_id":"72efd55a-d6d2-470c-9874-6f8d84b7f55f",
+ "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.61,
+ "heightmax":9.13,
+ "elevmin":26.33,
+ "elevmax":27.09,
+ "bldgarea":185.51,
+ "comment":" ",
+ "OBJECTID_2":84648,
+ "Shape_Le_1":0.000841533159028,
+ "Shape_Ar_1":2.10520087818e-08,
+ "OBJECTID_3":84648,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84647,
+ "g_objectid":"942046",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567280",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224701380000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000929243",
+ "g_geomet_1":"4.36415e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000841533159028,
+ "Shape_Area":2.10520087818e-08,
+ "Shape_Le_3":0.000841532266183,
+ "Shape_Ar_2":2.10520087818e-08,
+ "building_height":3.2600000000000007
+ }
+ },
+ {
+ "type":"Feature",
+ "id":582,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56045634600541,
+ 45.531207505472295
+ ],
+ [
+ -73.56036914054525,
+ 45.53117585203424
+ ],
+ [
+ -73.56032871242199,
+ 45.5312185320599
+ ],
+ [
+ -73.56026876901032,
+ 45.531300149132875
+ ],
+ [
+ -73.56033813641771,
+ 45.531332298097375
+ ],
+ [
+ -73.56045634600541,
+ 45.531207505472295
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":582,
+ "ID_UEV":"01022691",
+ "CIVIQUE_DE":" 2290",
+ "CIVIQUE_FI":" 2290",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1962,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-04-8176-2-000-0000",
+ "SUPERFICIE":288,
+ "SUPERFIC_1":427,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000501171670603,
+ "OBJECTID":84651,
+ "Join_Count":1,
+ "TARGET_FID":84651,
+ "feature_id":"da1a3347-13c1-4911-b6cc-5b657497e24b",
+ "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.65,
+ "heightmax":50.46,
+ "elevmin":30.06,
+ "elevmax":43.72,
+ "bldgarea":3391.1,
+ "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_2":84651,
+ "Shape_Le_1":0.000501171670603,
+ "Shape_Ar_1":1.36073063079e-08,
+ "OBJECTID_3":84651,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84650,
+ "g_objectid":"940392",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423741",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004304817620000000",
+ "g_sup_tota":"288",
+ "g_geometry":"0.000959197",
+ "g_geomet_1":"3.31766e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000501171670603,
+ "Shape_Area":1.36073063079e-08,
+ "Shape_Le_3":0.000501171902241,
+ "Shape_Ar_2":1.36073063079e-08,
+ "building_height":24.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":583,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55961876781373,
+ 45.515145445556165
+ ],
+ [
+ -73.55966466831164,
+ 45.51516934593886
+ ],
+ [
+ -73.55968946801639,
+ 45.51514594557922
+ ],
+ [
+ -73.5596435684178,
+ 45.5151219462711
+ ],
+ [
+ -73.55961876781373,
+ 45.515145445556165
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55986406779434,
+ 45.51501294574115
+ ],
+ [
+ -73.55987336768362,
+ 45.51500344620238
+ ],
+ [
+ -73.55994546813069,
+ 45.514931046281056
+ ],
+ [
+ -73.5598649680157,
+ 45.51489134570933
+ ],
+ [
+ -73.55970356848674,
+ 45.514811945465205
+ ],
+ [
+ -73.55960776820578,
+ 45.51490804611973
+ ],
+ [
+ -73.55975276769792,
+ 45.51497944599493
+ ],
+ [
+ -73.55975746845425,
+ 45.51498174556141
+ ],
+ [
+ -73.55977056797917,
+ 45.51496814601342
+ ],
+ [
+ -73.55986406779434,
+ 45.51501294574115
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":583,
+ "ID_UEV":"01040746",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-17-1322-5-000-0000",
+ "SUPERFICIE":9767,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000982024057465,
+ "OBJECTID":84661,
+ "Join_Count":2,
+ "TARGET_FID":84661,
+ "feature_id":"9a474fbf-3bb3-445f-b73d-01ff2bb0a177",
+ "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.97,
+ "heightmax":39.83,
+ "elevmin":23.59,
+ "elevmax":24.67,
+ "bldgarea":284.39,
+ "comment":" ",
+ "OBJECTID_2":84661,
+ "Shape_Le_1":0.000982024057465,
+ "Shape_Ar_1":3.44302299937e-08,
+ "OBJECTID_3":84661,
+ "Join_Cou_1":1,
+ "TARGET_F_1":84660,
+ "g_objectid":"945515",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2161957",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004117132250000000",
+ "g_sup_tota":"9766.7",
+ "g_geometry":"0.00445246",
+ "g_geomet_1":"1.12487e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000982024057465,
+ "Shape_Area":3.44302299937e-08,
+ "Shape_Le_3":0.000982023572713,
+ "Shape_Ar_2":3.44302299937e-08,
+ "building_height":19.43
+ }
+ },
+ {
+ "type":"Feature",
+ "id":584,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5574833024343,
+ 45.520002969012104
+ ],
+ [
+ -73.5574483673701,
+ 45.51998984700413
+ ],
+ [
+ -73.55743036743935,
+ 45.520009747202366
+ ],
+ [
+ -73.55741566712119,
+ 45.52000314707787
+ ],
+ [
+ -73.55737136741652,
+ 45.51998334670438
+ ],
+ [
+ -73.55739126671543,
+ 45.519961646962734
+ ],
+ [
+ -73.55736086693231,
+ 45.519947946690685
+ ],
+ [
+ -73.55735856736584,
+ 45.519950346981226
+ ],
+ [
+ -73.55726571596186,
+ 45.52004374697164
+ ],
+ [
+ -73.55739155719645,
+ 45.52010186925616
+ ],
+ [
+ -73.5574833024343,
+ 45.520002969012104
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55754985046707,
+ 45.51993123099181
+ ],
+ [
+ -73.55742976669222,
+ 45.51987424724901
+ ],
+ [
+ -73.55738206755022,
+ 45.51992384665849
+ ],
+ [
+ -73.55743066691359,
+ 45.51994684681982
+ ],
+ [
+ -73.5574131670059,
+ 45.51996504729939
+ ],
+ [
+ -73.557445267407,
+ 45.51998004709179
+ ],
+ [
+ -73.55746096687197,
+ 45.519962446460035
+ ],
+ [
+ -73.5575020667888,
+ 45.51998114696266
+ ],
+ [
+ -73.55750304794915,
+ 45.519981682059274
+ ],
+ [
+ -73.55754985046707,
+ 45.51993123099181
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":584,
+ "ID_UEV":"01040488",
+ "CIVIQUE_DE":" 1568",
+ "CIVIQUE_FI":" 1576",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":11,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-1430-3-000-0000",
+ "SUPERFICIE":288,
+ "SUPERFIC_1":428,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0010549696382,
+ "OBJECTID":84664,
+ "Join_Count":2,
+ "TARGET_FID":84664,
+ "feature_id":"a3720b36-7f80-46e8-bd21-8dcdc45b6caf",
+ "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.51,
+ "heightmax":11.89,
+ "elevmin":25.87,
+ "elevmax":27.05,
+ "bldgarea":439.02,
+ "comment":" ",
+ "OBJECTID_2":84664,
+ "Shape_Le_1":0.0010549696382,
+ "Shape_Ar_1":2.50986331065e-08,
+ "OBJECTID_3":84664,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84663,
+ "g_objectid":"942032",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567252",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"11",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232143030000000",
+ "g_sup_tota":"288.2",
+ "g_geometry":"0.000778394",
+ "g_geomet_1":"3.35949e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0010549696382,
+ "Shape_Area":2.50986331065e-08,
+ "Shape_Le_3":0.00105497059296,
+ "Shape_Ar_2":2.50986331065e-08,
+ "building_height":4.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":585,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55739155719645,
+ 45.52010186925616
+ ],
+ [
+ -73.55752850955491,
+ 45.52016512397159
+ ],
+ [
+ -73.55762080517786,
+ 45.52006562927566
+ ],
+ [
+ -73.55759176696832,
+ 45.52004944687477
+ ],
+ [
+ -73.55758816698217,
+ 45.520052847211424
+ ],
+ [
+ -73.55755666732819,
+ 45.520085647285086
+ ],
+ [
+ -73.55749636688567,
+ 45.52005654702232
+ ],
+ [
+ -73.55752826673796,
+ 45.520024246971715
+ ],
+ [
+ -73.55753116705156,
+ 45.52002094645981
+ ],
+ [
+ -73.5574833024343,
+ 45.520002969012104
+ ],
+ [
+ -73.55739155719645,
+ 45.52010186925616
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55765604511224,
+ 45.51996856364859
+ ],
+ [
+ -73.55765156738777,
+ 45.51997334714255
+ ],
+ [
+ -73.55768996933845,
+ 45.51999107098143
+ ],
+ [
+ -73.55769437151987,
+ 45.51998632615832
+ ],
+ [
+ -73.55765604511224,
+ 45.51996856364859
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55750304794915,
+ 45.519981682059274
+ ],
+ [
+ -73.5575053673007,
+ 45.51998294650607
+ ],
+ [
+ -73.55755346754034,
+ 45.51993294689827
+ ],
+ [
+ -73.55754985046707,
+ 45.51993123099181
+ ],
+ [
+ -73.55750304794915,
+ 45.519981682059274
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5575617511957,
+ 45.5199248628924
+ ],
+ [
+ -73.55755916744347,
+ 45.51992754646939
+ ],
+ [
+ -73.55755696680242,
+ 45.519929846935185
+ ],
+ [
+ -73.55760816700514,
+ 45.51995354676907
+ ],
+ [
+ -73.55761284527843,
+ 45.5199485429412
+ ],
+ [
+ -73.5575617511957,
+ 45.5199248628924
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":585,
+ "ID_UEV":"01040489",
+ "CIVIQUE_DE":" 1580",
+ "CIVIQUE_FI":" 1590",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-0437-9-000-0000",
+ "SUPERFICIE":302,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00104190851744,
+ "OBJECTID":84665,
+ "Join_Count":3,
+ "TARGET_FID":84665,
+ "feature_id":"a3720b36-7f80-46e8-bd21-8dcdc45b6caf",
+ "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.51,
+ "heightmax":11.89,
+ "elevmin":25.87,
+ "elevmax":27.05,
+ "bldgarea":439.02,
+ "comment":" ",
+ "OBJECTID_2":84665,
+ "Shape_Le_1":0.00104190851744,
+ "Shape_Ar_1":1.74295643663e-08,
+ "OBJECTID_3":84665,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84664,
+ "g_objectid":"942032",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567252",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"11",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232143030000000",
+ "g_sup_tota":"288.2",
+ "g_geometry":"0.000778394",
+ "g_geomet_1":"3.35949e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00104190851744,
+ "Shape_Area":1.74295643663e-08,
+ "Shape_Le_3":0.00104191104838,
+ "Shape_Ar_2":1.74295643663e-08,
+ "building_height":4.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":586,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56326800173873,
+ 45.5211854147254
+ ],
+ [
+ -73.56330806923386,
+ 45.521204447077864
+ ],
+ [
+ -73.56333766951968,
+ 45.521173446547614
+ ],
+ [
+ -73.56336246922442,
+ 45.52118554692574
+ ],
+ [
+ -73.5634374699851,
+ 45.52110844714741
+ ],
+ [
+ -73.56336936882316,
+ 45.52107584672324
+ ],
+ [
+ -73.56336869073434,
+ 45.52107552386663
+ ],
+ [
+ -73.56326800173873,
+ 45.5211854147254
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":586,
+ "ID_UEV":"01040197",
+ "CIVIQUE_DE":" 2049",
+ "CIVIQUE_FI":" 2051",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-83-5263-9-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":139,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00044767315717,
+ "OBJECTID":84677,
+ "Join_Count":1,
+ "TARGET_FID":84677,
+ "feature_id":"970f5304-c05b-4191-8205-646008b0d8b9",
+ "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.51,
+ "heightmax":9.41,
+ "elevmin":26.48,
+ "elevmax":27.53,
+ "bldgarea":180.74,
+ "comment":" ",
+ "OBJECTID_2":84677,
+ "Shape_Le_1":0.00044767315717,
+ "Shape_Ar_1":9.41611807537e-09,
+ "OBJECTID_3":84677,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84676,
+ "g_objectid":"941548",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565409",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994283526390000000",
+ "g_sup_tota":"158.3",
+ "g_geometry":"0.000616686",
+ "g_geomet_1":"1.82348e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00044767315717,
+ "Shape_Area":9.41611807537e-09,
+ "Shape_Le_3":0.000447674151767,
+ "Shape_Ar_2":9.41611807537e-09,
+ "building_height":3.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":587,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54303576211258,
+ 45.507690745681664
+ ],
+ [
+ -73.5430011624955,
+ 45.507736445630755
+ ],
+ [
+ -73.54303986212179,
+ 45.507780746234744
+ ],
+ [
+ -73.54310226248127,
+ 45.507782745427654
+ ],
+ [
+ -73.54311646187706,
+ 45.5077777460964
+ ],
+ [
+ -73.54314866210292,
+ 45.5077359456077
+ ],
+ [
+ -73.5431128618909,
+ 45.50769024565861
+ ],
+ [
+ -73.54306566187265,
+ 45.50768754589382
+ ],
+ [
+ -73.54303576211258,
+ 45.507690745681664
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5436907617411,
+ 45.50469784507978
+ ],
+ [
+ -73.54362136195813,
+ 45.50471724525496
+ ],
+ [
+ -73.54360566249318,
+ 45.50477534505642
+ ],
+ [
+ -73.54367936193485,
+ 45.50481664462275
+ ],
+ [
+ -73.54375636188844,
+ 45.50479534507941
+ ],
+ [
+ -73.5437722619022,
+ 45.504742445158016
+ ],
+ [
+ -73.5437642624326,
+ 45.50472964510733
+ ],
+ [
+ -73.54372076222523,
+ 45.50470214473848
+ ],
+ [
+ -73.54370546205926,
+ 45.50469624518586
+ ],
+ [
+ -73.5436907617411,
+ 45.50469784507978
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":587,
+ "ID_UEV":"01040868",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"avenue Pierre-Dupuy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc pour la r\u00c3\u00a9cr\u00c3\u00a9ation en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0140-46-0831-5-000-0000",
+ "SUPERFICIE":42463,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00083139556687,
+ "OBJECTID":84680,
+ "Join_Count":2,
+ "TARGET_FID":84680,
+ "feature_id":"32cda440-da07-4a54-a3d0-0ab397ad5e8a",
+ "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.59,
+ "heightmax":6.45,
+ "elevmin":15.57,
+ "elevmax":15.79,
+ "bldgarea":89,
+ "comment":" ",
+ "OBJECTID_2":84680,
+ "Shape_Le_1":0.00083139556687,
+ "Shape_Ar_1":2.44053199995e-08,
+ "OBJECTID_3":84680,
+ "Join_Cou_1":1,
+ "TARGET_F_1":84679,
+ "g_objectid":"2322165",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"2296252",
+ "g_nb_poly_":"1",
+ "g_utilisat":"7611",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014046083150000000",
+ "g_sup_tota":"42462.8",
+ "g_geometry":"0.0201519",
+ "g_geomet_1":"4.88969e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00083139556687,
+ "Shape_Area":2.44053199995e-08,
+ "Shape_Le_3":0.000831394407979,
+ "Shape_Ar_2":2.44053199995e-08,
+ "building_height":1.9300000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":588,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56063285954068,
+ 45.52795410185062
+ ],
+ [
+ -73.5607963868656,
+ 45.528028884975356
+ ],
+ [
+ -73.56083584641902,
+ 45.527987075493435
+ ],
+ [
+ -73.5608870691048,
+ 45.52792644859702
+ ],
+ [
+ -73.56072906901316,
+ 45.5278604491507
+ ],
+ [
+ -73.560727568944,
+ 45.52785974857883
+ ],
+ [
+ -73.56072364430258,
+ 45.52785790856592
+ ],
+ [
+ -73.56063285954068,
+ 45.52795410185062
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5608031947335,
+ 45.52780238082551
+ ],
+ [
+ -73.560879669483,
+ 45.527841848472825
+ ],
+ [
+ -73.56088231528847,
+ 45.52783931598194
+ ],
+ [
+ -73.56086560048891,
+ 45.527831512564546
+ ],
+ [
+ -73.5608031947335,
+ 45.52780238082551
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":588,
+ "ID_UEV":"01034671",
+ "CIVIQUE_DE":" 2170",
+ "CIVIQUE_FI":" 2184",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-5113-4-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":518,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000803201698922,
+ "OBJECTID":84682,
+ "Join_Count":2,
+ "TARGET_FID":84682,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":84682,
+ "Shape_Le_1":0.000803201698922,
+ "Shape_Ar_1":2.29904664128e-08,
+ "OBJECTID_3":84682,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84681,
+ "g_objectid":"942984",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885481",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301640460000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000839517",
+ "g_geomet_1":"4.10261e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000803201698922,
+ "Shape_Area":2.29904664128e-08,
+ "Shape_Le_3":0.000803202066135,
+ "Shape_Ar_2":2.29904664128e-08,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":589,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56514415030414,
+ 45.51945019621987
+ ],
+ [
+ -73.56515027019066,
+ 45.51945314689551
+ ],
+ [
+ -73.5651697701906,
+ 45.51946264643428
+ ],
+ [
+ -73.56517377037505,
+ 45.51945824695083
+ ],
+ [
+ -73.5652061945321,
+ 45.51947296525544
+ ],
+ [
+ -73.56530174210356,
+ 45.519369527931666
+ ],
+ [
+ -73.56526856971057,
+ 45.519354346476206
+ ],
+ [
+ -73.56523916997357,
+ 45.519386046679
+ ],
+ [
+ -73.56521367689152,
+ 45.51937435729105
+ ],
+ [
+ -73.56514415030414,
+ 45.51945019621987
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":589,
+ "ID_UEV":"01003786",
+ "CIVIQUE_DE":" 2096",
+ "CIVIQUE_FI":" 2098",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-0467-6-000-0000",
+ "SUPERFICIE":114,
+ "SUPERFIC_1":114,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00042150120593,
+ "OBJECTID":84687,
+ "Join_Count":1,
+ "TARGET_FID":84687,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":84687,
+ "Shape_Le_1":0.00042150120593,
+ "Shape_Ar_1":7.63425825294e-09,
+ "OBJECTID_3":84687,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84686,
+ "g_objectid":"943172",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161453",
+ "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":"66023994271046760000000",
+ "g_sup_tota":"114.3",
+ "g_geometry":"0.000543559",
+ "g_geomet_1":"1.27164e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00042150120593,
+ "Shape_Area":7.63425825294e-09,
+ "Shape_Le_3":0.000421500723507,
+ "Shape_Ar_2":7.63425825294e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":590,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56320862130268,
+ 45.519938775404455
+ ],
+ [
+ -73.56336565282446,
+ 45.520010865958994
+ ],
+ [
+ -73.56344306107026,
+ 45.5199288280033
+ ],
+ [
+ -73.56326425606241,
+ 45.519846744182196
+ ],
+ [
+ -73.56320862130268,
+ 45.519938775404455
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":590,
+ "ID_UEV":"01040616",
+ "CIVIQUE_DE":" 1011",
+ "CIVIQUE_FI":" 1015",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-82-5325-8-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000589869218545,
+ "OBJECTID":84688,
+ "Join_Count":1,
+ "TARGET_FID":84688,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":84688,
+ "Shape_Le_1":0.000589869218545,
+ "Shape_Ar_1":1.97427295222e-08,
+ "OBJECTID_3":84688,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84687,
+ "g_objectid":"941543",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565387",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994282372930000000",
+ "g_sup_tota":"343.7",
+ "g_geometry":"0.000829628",
+ "g_geomet_1":"4.0029e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000589869218545,
+ "Shape_Area":1.97427295222e-08,
+ "Shape_Le_3":0.000589868294339,
+ "Shape_Ar_2":1.97427295222e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":591,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55018914773282,
+ 45.52736400359618
+ ],
+ [
+ -73.55037157970648,
+ 45.52745053186685
+ ],
+ [
+ -73.55040906614732,
+ 45.52741194915242
+ ],
+ [
+ -73.55040926579683,
+ 45.52741174860361
+ ],
+ [
+ -73.55038676655788,
+ 45.52740294873739
+ ],
+ [
+ -73.55039462753189,
+ 45.52739299773895
+ ],
+ [
+ -73.55023490883582,
+ 45.52731710395148
+ ],
+ [
+ -73.55018914773282,
+ 45.52736400359618
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":591,
+ "ID_UEV":"01019343",
+ "CIVIQUE_DE":" 2233",
+ "CIVIQUE_FI":" 2233",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-80-6854-6-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":170,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000535188110607,
+ "OBJECTID":84695,
+ "Join_Count":1,
+ "TARGET_FID":84695,
+ "feature_id":"05f7d39d-0270-4de1-a1af-52bad1462abd",
+ "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.45,
+ "heightmax":33.24,
+ "elevmin":17.24,
+ "elevmax":17.98,
+ "bldgarea":1491.78,
+ "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_2":84695,
+ "Shape_Le_1":0.000535188110607,
+ "Shape_Ar_1":1.22173586963e-08,
+ "OBJECTID_3":84695,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84694,
+ "g_objectid":"940882",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424571",
+ "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":"66023004380685460000000",
+ "g_sup_tota":"192.3",
+ "g_geometry":"0.000845617",
+ "g_geomet_1":"2.21599e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000535188110607,
+ "Shape_Area":1.22173586963e-08,
+ "Shape_Le_3":0.000535188144242,
+ "Shape_Ar_2":1.22173586963e-08,
+ "building_height":15.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":592,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56152771825144,
+ 45.528700904273606
+ ],
+ [
+ -73.56164381802962,
+ 45.52875486899231
+ ],
+ [
+ -73.5617397783899,
+ 45.528653269882795
+ ],
+ [
+ -73.56170716897252,
+ 45.52863884925379
+ ],
+ [
+ -73.56165606949385,
+ 45.52861624929077
+ ],
+ [
+ -73.56162191414187,
+ 45.52860117215666
+ ],
+ [
+ -73.56152771825144,
+ 45.528700904273606
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":592,
+ "ID_UEV":"01034898",
+ "CIVIQUE_DE":" 2269",
+ "CIVIQUE_FI":" 2279",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-8699-2-000-0000",
+ "SUPERFICIE":274,
+ "SUPERFIC_1":390,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000533829652145,
+ "OBJECTID":84700,
+ "Join_Count":1,
+ "TARGET_FID":84700,
+ "feature_id":"bbf6c021-941f-4914-a315-29f80f675e18",
+ "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":41.31,
+ "elevmin":28.77,
+ "elevmax":38.65,
+ "bldgarea":2241.19,
+ "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_2":84700,
+ "Shape_Le_1":0.000533829652145,
+ "Shape_Ar_1":1.68193411611e-08,
+ "OBJECTID_3":84700,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84699,
+ "g_objectid":"942821",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884567",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391869920000000",
+ "g_sup_tota":"274.4",
+ "g_geometry":"0.000775089",
+ "g_geomet_1":"3.15438e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000533829652145,
+ "Shape_Area":1.68193411611e-08,
+ "Shape_Le_3":0.00053382978537,
+ "Shape_Ar_2":1.68193411611e-08,
+ "building_height":20.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":593,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56001383009603,
+ 45.52402148705228
+ ],
+ [
+ -73.56034083528317,
+ 45.52417270085975
+ ],
+ [
+ -73.56035846918985,
+ 45.5241791480995
+ ],
+ [
+ -73.56040206922196,
+ 45.524119684925815
+ ],
+ [
+ -73.56009058003808,
+ 45.523977993140164
+ ],
+ [
+ -73.56007146944461,
+ 45.523970248178706
+ ],
+ [
+ -73.56007203421885,
+ 45.52396955660005
+ ],
+ [
+ -73.5600644853096,
+ 45.52396612298848
+ ],
+ [
+ -73.56001383009603,
+ 45.52402148705228
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":593,
+ "ID_UEV":"01035463",
+ "CIVIQUE_DE":" 1498",
+ "CIVIQUE_FI":" 1498",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-06-9685-8-000-0000",
+ "SUPERFICIE":243,
+ "SUPERFIC_1":669,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000899834176577,
+ "OBJECTID":84708,
+ "Join_Count":1,
+ "TARGET_FID":84708,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":84708,
+ "Shape_Le_1":0.000899834176577,
+ "Shape_Ar_1":2.7188385824e-08,
+ "OBJECTID_3":84708,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84707,
+ "g_objectid":"941936",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566876",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206917680000000",
+ "g_sup_tota":"394",
+ "g_geometry":"0.000990364",
+ "g_geomet_1":"4.46833e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000899834176577,
+ "Shape_Area":2.7188385824e-08,
+ "Shape_Le_3":0.000899834359791,
+ "Shape_Ar_2":2.7188385824e-08,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":594,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56336869073434,
+ 45.52107552386663
+ ],
+ [
+ -73.56329816949678,
+ 45.521041946778716
+ ],
+ [
+ -73.5631939695479,
+ 45.521150246736795
+ ],
+ [
+ -73.56326800173873,
+ 45.5211854147254
+ ],
+ [
+ -73.56336869073434,
+ 45.52107552386663
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":594,
+ "ID_UEV":"01040198",
+ "CIVIQUE_DE":" 2045",
+ "CIVIQUE_FI":" 2045",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-83-5958-4-000-0000",
+ "SUPERFICIE":216,
+ "SUPERFIC_1":190,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000459401625892,
+ "OBJECTID":84712,
+ "Join_Count":1,
+ "TARGET_FID":84712,
+ "feature_id":"970f5304-c05b-4191-8205-646008b0d8b9",
+ "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.51,
+ "heightmax":9.41,
+ "elevmin":26.48,
+ "elevmax":27.53,
+ "bldgarea":180.74,
+ "comment":" ",
+ "OBJECTID_2":84712,
+ "Shape_Le_1":0.000459401625892,
+ "Shape_Ar_1":1.14064235759e-08,
+ "OBJECTID_3":84712,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84711,
+ "g_objectid":"941548",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565409",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994283526390000000",
+ "g_sup_tota":"158.3",
+ "g_geometry":"0.000616686",
+ "g_geomet_1":"1.82348e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000459401625892,
+ "Shape_Area":1.14064235759e-08,
+ "Shape_Le_3":0.000459400066845,
+ "Shape_Ar_2":1.14064235759e-08,
+ "building_height":3.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":595,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56317526904527,
+ 45.52098694694035
+ ],
+ [
+ -73.56309446945605,
+ 45.52107684676936
+ ],
+ [
+ -73.56311666922075,
+ 45.521083046695544
+ ],
+ [
+ -73.56310486921619,
+ 45.521103546741585
+ ],
+ [
+ -73.56314336919299,
+ 45.52111944675536
+ ],
+ [
+ -73.56323146947858,
+ 45.521008947055556
+ ],
+ [
+ -73.56317506939578,
+ 45.520986847115594
+ ],
+ [
+ -73.56317526904527,
+ 45.52098694694035
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":595,
+ "ID_UEV":"01040199",
+ "CIVIQUE_DE":" 2037",
+ "CIVIQUE_FI":" 2037",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-83-6753-8-000-0000",
+ "SUPERFICIE":206,
+ "SUPERFIC_1":147,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00041135238908,
+ "OBJECTID":84713,
+ "Join_Count":1,
+ "TARGET_FID":84713,
+ "feature_id":"8ef39ce0-fcba-455d-9b6c-89254739fb12",
+ "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.88,
+ "heightmax":7.57,
+ "elevmin":26.4,
+ "elevmax":27.31,
+ "bldgarea":70.88,
+ "comment":" ",
+ "OBJECTID_2":84713,
+ "Shape_Le_1":0.00041135238908,
+ "Shape_Ar_1":8.16102000038e-09,
+ "OBJECTID_3":84713,
+ "Join_Cou_1":1,
+ "TARGET_F_1":84712,
+ "g_objectid":"941551",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565414",
+ "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":"66023994283675380000000",
+ "g_sup_tota":"206.1",
+ "g_geometry":"0.000663089",
+ "g_geomet_1":"2.30949e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00041135238908,
+ "Shape_Area":8.16102000038e-09,
+ "Shape_Le_3":0.000411351373511,
+ "Shape_Ar_2":8.16102000038e-09,
+ "building_height":2.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":596,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56287404382391,
+ 45.521075289143575
+ ],
+ [
+ -73.56287415533984,
+ 45.52107533950561
+ ],
+ [
+ -73.56293096911078,
+ 45.52101544645598
+ ],
+ [
+ -73.56292993489043,
+ 45.5210149617214
+ ],
+ [
+ -73.56287404382391,
+ 45.521075289143575
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5629522920365,
+ 45.52099083021294
+ ],
+ [
+ -73.56295936880167,
+ 45.520993846539085
+ ],
+ [
+ -73.56302136896285,
+ 45.52092194664082
+ ],
+ [
+ -73.56301759810552,
+ 45.520920340451646
+ ],
+ [
+ -73.5629522920365,
+ 45.52099083021294
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":596,
+ "ID_UEV":"01040200",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-83-7647-1-000-0000",
+ "SUPERFICIE":290,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00036887916802,
+ "OBJECTID":84714,
+ "Join_Count":1,
+ "TARGET_FID":84714,
+ "feature_id":"f57c5402-6a5b-4be2-98ce-cb1c2436cf99",
+ "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.58,
+ "heightmax":12.18,
+ "elevmin":25.88,
+ "elevmax":27.15,
+ "bldgarea":1043.85,
+ "comment":" ",
+ "OBJECTID_2":84714,
+ "Shape_Le_1":0.00036887916802,
+ "Shape_Ar_1":5.82808318701e-10,
+ "OBJECTID_3":84714,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84713,
+ "g_objectid":"945357",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565416",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994283764710000000",
+ "g_sup_tota":"290.2",
+ "g_geometry":"0.00075969",
+ "g_geomet_1":"3.33215e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00036887916802,
+ "Shape_Area":5.82808318701e-10,
+ "Shape_Le_3":0.000368879789385,
+ "Shape_Ar_2":5.82808318701e-10,
+ "building_height":5.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":597,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58065780723386,
+ 45.49959646685376
+ ],
+ [
+ -73.58077446908833,
+ 45.49965345689182
+ ],
+ [
+ -73.58082903185618,
+ 45.49959829247751
+ ],
+ [
+ -73.58071054078067,
+ 45.49954040941266
+ ],
+ [
+ -73.58070787429081,
+ 45.499543243176426
+ ],
+ [
+ -73.58066187396815,
+ 45.49959214291336
+ ],
+ [
+ -73.58065780723386,
+ 45.49959646685376
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":597,
+ "ID_UEV":"01036518",
+ "CIVIQUE_DE":" 12",
+ "CIVIQUE_FI":" 12",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-9065-3-000-0000",
+ "SUPERFICIE":91,
+ "SUPERFIC_1":180,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000416263776922,
+ "OBJECTID":84718,
+ "Join_Count":1,
+ "TARGET_FID":84718,
+ "feature_id":"d79fc7c8-21a3-4cd9-bd24-5b7e771ed72e",
+ "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":73.97,
+ "elevmin":58.73,
+ "elevmax":62.67,
+ "bldgarea":1130.72,
+ "comment":" ",
+ "OBJECTID_2":84718,
+ "Shape_Le_1":0.000416263776922,
+ "Shape_Ar_1":9.61993817127e-09,
+ "OBJECTID_3":84718,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84717,
+ "g_objectid":"939908",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340939",
+ "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":"66023983949855960000000",
+ "g_sup_tota":"96.1",
+ "g_geometry":"0.000449732",
+ "g_geomet_1":"1.10744e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000416263776922,
+ "Shape_Area":9.61993817127e-09,
+ "Shape_Le_3":0.000416263901021,
+ "Shape_Ar_2":9.61993817127e-09,
+ "building_height":36.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":598,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58071054078067,
+ 45.49954040941266
+ ],
+ [
+ -73.58082903185618,
+ 45.49959829247751
+ ],
+ [
+ -73.58087892984058,
+ 45.49954784590666
+ ],
+ [
+ -73.58076127423526,
+ 45.49949184242488
+ ],
+ [
+ -73.58075777407386,
+ 45.49949024253096
+ ],
+ [
+ -73.58071054078067,
+ 45.49954040941266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":598,
+ "ID_UEV":"01036520",
+ "CIVIQUE_DE":" 14",
+ "CIVIQUE_FI":" 14",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-8559-6-000-0000",
+ "SUPERFICIE":96,
+ "SUPERFIC_1":202,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000405885306329,
+ "OBJECTID":84720,
+ "Join_Count":1,
+ "TARGET_FID":84720,
+ "feature_id":"d79fc7c8-21a3-4cd9-bd24-5b7e771ed72e",
+ "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":73.97,
+ "elevmin":58.73,
+ "elevmax":62.67,
+ "bldgarea":1130.72,
+ "comment":" ",
+ "OBJECTID_2":84720,
+ "Shape_Le_1":0.000405885306329,
+ "Shape_Ar_1":8.83615893533e-09,
+ "OBJECTID_3":84720,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84719,
+ "g_objectid":"939908",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340939",
+ "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":"66023983949855960000000",
+ "g_sup_tota":"96.1",
+ "g_geometry":"0.000449732",
+ "g_geomet_1":"1.10744e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000405885306329,
+ "Shape_Area":8.83615893533e-09,
+ "Shape_Le_3":0.000405885154648,
+ "Shape_Ar_2":8.83615893533e-09,
+ "building_height":36.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":599,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55804217982458,
+ 45.52662832758554
+ ],
+ [
+ -73.55797086808295,
+ 45.52659184748607
+ ],
+ [
+ -73.55796886799071,
+ 45.52659374775355
+ ],
+ [
+ -73.55788566811094,
+ 45.52668264753645
+ ],
+ [
+ -73.55795926682855,
+ 45.52671662752064
+ ],
+ [
+ -73.55804217982458,
+ 45.52662832758554
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":599,
+ "ID_UEV":"01103663",
+ "CIVIQUE_DE":" 1950",
+ "CIVIQUE_FI":" 1956",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-29-6968-3-000-0000",
+ "SUPERFICIE":179,
+ "SUPERFIC_1":252,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00040680984612,
+ "OBJECTID":84721,
+ "Join_Count":1,
+ "TARGET_FID":84721,
+ "feature_id":"698cbac1-5e7b-4910-ae7a-ad9fe3e271f0",
+ "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.49,
+ "heightmax":38.59,
+ "elevmin":24.03,
+ "elevmax":25.73,
+ "bldgarea":1852.92,
+ "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_2":84721,
+ "Shape_Le_1":0.00040680984612,
+ "Shape_Ar_1":9.45956051643e-09,
+ "OBJECTID_3":84721,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84720,
+ "g_objectid":"942369",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729255",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004229637280000000",
+ "g_sup_tota":"179.3",
+ "g_geometry":"0.000657668",
+ "g_geomet_1":"2.04877e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00040680984612,
+ "Shape_Area":9.45956051643e-09,
+ "Shape_Le_3":0.000406809358916,
+ "Shape_Ar_2":9.45956051643e-09,
+ "building_height":18.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":600,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58075241231582,
+ 45.49981192463091
+ ],
+ [
+ -73.58082728087615,
+ 45.49984659169714
+ ],
+ [
+ -73.58083154636063,
+ 45.49984199975878
+ ],
+ [
+ -73.58090959222575,
+ 45.49975796440883
+ ],
+ [
+ -73.58089487392114,
+ 45.4997513427006
+ ],
+ [
+ -73.58089812586965,
+ 45.49974777688869
+ ],
+ [
+ -73.58088250554503,
+ 45.49974054364147
+ ],
+ [
+ -73.58087857370906,
+ 45.49974504294967
+ ],
+ [
+ -73.58083597372305,
+ 45.499726642820605
+ ],
+ [
+ -73.5808317738891,
+ 45.49972474255312
+ ],
+ [
+ -73.58075241231582,
+ 45.49981192463091
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":600,
+ "ID_UEV":"01036522",
+ "CIVIQUE_DE":" 18",
+ "CIVIQUE_FI":" 18",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-8286-6-000-0000",
+ "SUPERFICIE":93,
+ "SUPERFIC_1":283,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000416521234182,
+ "OBJECTID":84722,
+ "Join_Count":1,
+ "TARGET_FID":84722,
+ "feature_id":"dc4ee5d2-23ed-4f64-937a-8e4dc3b17398",
+ "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.38,
+ "heightmax":80.62,
+ "elevmin":61.34,
+ "elevmax":67.3,
+ "bldgarea":906.84,
+ "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_2":84722,
+ "Shape_Le_1":0.000416521234182,
+ "Shape_Ar_1":9.53688508898e-09,
+ "OBJECTID_3":84722,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84721,
+ "g_objectid":"945307",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1340933",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983949648640000000",
+ "g_sup_tota":"226.8",
+ "g_geometry":"0.0010168",
+ "g_geomet_1":"2.61426e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000416521234182,
+ "Shape_Area":9.53688508898e-09,
+ "Shape_Le_3":0.000416521337417,
+ "Shape_Ar_2":9.53688508898e-09,
+ "building_height":39.120000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":601,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.558945378848,
+ 45.51971180720444
+ ],
+ [
+ -73.55885306793658,
+ 45.519668547116055
+ ],
+ [
+ -73.55877706802912,
+ 45.51974874685747
+ ],
+ [
+ -73.55887004983478,
+ 45.51979232080925
+ ],
+ [
+ -73.558945378848,
+ 45.51971180720444
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":601,
+ "ID_UEV":"01040327",
+ "CIVIQUE_DE":" 1625",
+ "CIVIQUE_FI":" 1627",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-0403-2-000-0000",
+ "SUPERFICIE":300,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000425379110505,
+ "OBJECTID":84724,
+ "Join_Count":1,
+ "TARGET_FID":84724,
+ "feature_id":"2842b8b0-0ae0-40cf-89fa-bed274086532",
+ "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.51,
+ "heightmax":8.13,
+ "elevmin":26.79,
+ "elevmax":27.24,
+ "bldgarea":99.37,
+ "comment":" ",
+ "OBJECTID_2":84724,
+ "Shape_Le_1":0.000425379110505,
+ "Shape_Ar_1":1.07299203978e-08,
+ "OBJECTID_3":84724,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84723,
+ "g_objectid":"938501",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1566949",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6812",
+ "g_nb_logem":" ",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004212733920000000",
+ "g_sup_tota":"3707.3",
+ "g_geometry":"0.00282822",
+ "g_geomet_1":"4.27023e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000425379110505,
+ "Shape_Area":1.07299203978e-08,
+ "Shape_Le_3":0.000425378340466,
+ "Shape_Ar_2":1.07299203978e-08,
+ "building_height":2.8100000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":602,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55849756773041,
+ 45.51962424651206
+ ],
+ [
+ -73.55869076818625,
+ 45.51971604660856
+ ],
+ [
+ -73.55877086810293,
+ 45.51963284672879
+ ],
+ [
+ -73.55864056802963,
+ 45.51957084656761
+ ],
+ [
+ -73.55857756782234,
+ 45.519540946807545
+ ],
+ [
+ -73.55849756773041,
+ 45.51962424651206
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55839798580026,
+ 45.51966406849226
+ ],
+ [
+ -73.55840616423494,
+ 45.51966781776587
+ ],
+ [
+ -73.5585461679931,
+ 45.51951134652172
+ ],
+ [
+ -73.55854004001269,
+ 45.51950863326711
+ ],
+ [
+ -73.55839562507988,
+ 45.51966298660784
+ ],
+ [
+ -73.55839798580026,
+ 45.51966406849226
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":602,
+ "ID_UEV":"01040328",
+ "CIVIQUE_DE":" 1611",
+ "CIVIQUE_FI":" 1619",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-2092-3-000-0000",
+ "SUPERFICIE":603,
+ "SUPERFIC_1":389,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00109855663228,
+ "OBJECTID":84725,
+ "Join_Count":2,
+ "TARGET_FID":84725,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":84725,
+ "Shape_Le_1":0.00109855663228,
+ "Shape_Ar_1":2.52772840122e-08,
+ "OBJECTID_3":84725,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84724,
+ "g_objectid":"941751",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566448",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222490110000000",
+ "g_sup_tota":"303.8",
+ "g_geometry":"0.000789721",
+ "g_geomet_1":"3.49394e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00109855663228,
+ "Shape_Area":2.52772840122e-08,
+ "Shape_Le_3":0.00109855639176,
+ "Shape_Ar_2":2.52772840122e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":603,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55826074206144,
+ 45.519601155519204
+ ],
+ [
+ -73.55832454356468,
+ 45.51963040147214
+ ],
+ [
+ -73.55848087091731,
+ 45.5194633164292
+ ],
+ [
+ -73.5584119019096,
+ 45.51943096871453
+ ],
+ [
+ -73.558255094319,
+ 45.51959856727036
+ ],
+ [
+ -73.55826074206144,
+ 45.519601155519204
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":603,
+ "ID_UEV":"01040330",
+ "CIVIQUE_DE":" 1595",
+ "CIVIQUE_FI":" 1599",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-3980-8-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":211,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000610906551423,
+ "OBJECTID":84726,
+ "Join_Count":1,
+ "TARGET_FID":84726,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":84726,
+ "Shape_Le_1":0.000610906551423,
+ "Shape_Ar_1":1.66060395403e-08,
+ "OBJECTID_3":84726,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84725,
+ "g_objectid":"941751",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566448",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222490110000000",
+ "g_sup_tota":"303.8",
+ "g_geometry":"0.000789721",
+ "g_geomet_1":"3.49394e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000610906551423,
+ "Shape_Area":1.66060395403e-08,
+ "Shape_Le_3":0.000610906043149,
+ "Shape_Ar_2":1.66060395403e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":604,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55819051220422,
+ 45.519568961588604
+ ],
+ [
+ -73.558255094319,
+ 45.51959856727036
+ ],
+ [
+ -73.5584119019096,
+ 45.51943096871453
+ ],
+ [
+ -73.55828045610001,
+ 45.5193693174903
+ ],
+ [
+ -73.55815893970515,
+ 45.519499195781556
+ ],
+ [
+ -73.55816776834968,
+ 45.51950334705212
+ ],
+ [
+ -73.55813102834612,
+ 45.519541695043486
+ ],
+ [
+ -73.55819051220422,
+ 45.519568961588604
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":604,
+ "ID_UEV":"01040331",
+ "CIVIQUE_DE":" 1585",
+ "CIVIQUE_FI":" 1591",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-4774-4-000-0000",
+ "SUPERFICIE":286,
+ "SUPERFIC_1":231,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000751905630661,
+ "OBJECTID":84727,
+ "Join_Count":1,
+ "TARGET_FID":84727,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":84727,
+ "Shape_Le_1":0.000751905630661,
+ "Shape_Ar_1":3.13149471341e-08,
+ "OBJECTID_3":84727,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84726,
+ "g_objectid":"941753",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566450",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004221576770000000",
+ "g_sup_tota":"307.1",
+ "g_geometry":"0.000791751",
+ "g_geomet_1":"3.55315e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000751905630661,
+ "Shape_Area":3.13149471341e-08,
+ "Shape_Le_3":0.000751906926445,
+ "Shape_Ar_2":3.13149471341e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":605,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55798876369234,
+ 45.519476479805995
+ ],
+ [
+ -73.55805856817022,
+ 45.5194035465867
+ ],
+ [
+ -73.55814756777788,
+ 45.51944564654964
+ ],
+ [
+ -73.55811566792558,
+ 45.51947884682162
+ ],
+ [
+ -73.55815893970515,
+ 45.519499195781556
+ ],
+ [
+ -73.55828045610001,
+ 45.5193693174903
+ ],
+ [
+ -73.55820866771768,
+ 45.519335646872904
+ ],
+ [
+ -73.55813926703539,
+ 45.519303105803985
+ ],
+ [
+ -73.55798056996917,
+ 45.519472724237126
+ ],
+ [
+ -73.55798876369234,
+ 45.519476479805995
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":605,
+ "ID_UEV":"01040332",
+ "CIVIQUE_DE":" 1577",
+ "CIVIQUE_FI":" 1581",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-5767-7-000-0000",
+ "SUPERFICIE":307,
+ "SUPERFIC_1":454,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000868369523824,
+ "OBJECTID":84728,
+ "Join_Count":1,
+ "TARGET_FID":84728,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":84728,
+ "Shape_Le_1":0.000868369523824,
+ "Shape_Ar_1":2.25471478608e-08,
+ "OBJECTID_3":84728,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84727,
+ "g_objectid":"941753",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566450",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004221576770000000",
+ "g_sup_tota":"307.1",
+ "g_geometry":"0.000791751",
+ "g_geomet_1":"3.55315e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000868369523824,
+ "Shape_Area":2.25471478608e-08,
+ "Shape_Le_3":0.000868369857468,
+ "Shape_Ar_2":2.25471478608e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":606,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55793820830351,
+ 45.519453304276865
+ ],
+ [
+ -73.55798056996917,
+ 45.519472724237126
+ ],
+ [
+ -73.55813926703539,
+ 45.519303105803985
+ ],
+ [
+ -73.55811546827609,
+ 45.519291947016036
+ ],
+ [
+ -73.5581063680363,
+ 45.519301647103624
+ ],
+ [
+ -73.5580306685024,
+ 45.51926614726518
+ ],
+ [
+ -73.55803676770451,
+ 45.51925964696543
+ ],
+ [
+ -73.55800586789833,
+ 45.519245446670325
+ ],
+ [
+ -73.55784950817011,
+ 45.51941264053123
+ ],
+ [
+ -73.55788636868282,
+ 45.5194295396918
+ ],
+ [
+ -73.55795486824442,
+ 45.5193609466007
+ ],
+ [
+ -73.55800546770001,
+ 45.51938594685426
+ ],
+ [
+ -73.55793820830351,
+ 45.519453304276865
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":606,
+ "ID_UEV":"01040333",
+ "CIVIQUE_DE":" 1561",
+ "CIVIQUE_FI":" 1573",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-6860-9-000-0000",
+ "SUPERFICIE":304,
+ "SUPERFIC_1":626,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000963032203883,
+ "OBJECTID":84729,
+ "Join_Count":1,
+ "TARGET_FID":84729,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":84729,
+ "Shape_Le_1":0.000963032203883,
+ "Shape_Ar_1":2.55211151044e-08,
+ "OBJECTID_3":84729,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84728,
+ "g_objectid":"941753",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566450",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004221576770000000",
+ "g_sup_tota":"307.1",
+ "g_geometry":"0.000791751",
+ "g_geomet_1":"3.55315e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000963032203883,
+ "Shape_Area":2.55211151044e-08,
+ "Shape_Le_3":0.000963030588956,
+ "Shape_Ar_2":2.55211151044e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":607,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58090986022371,
+ 45.499878263121644
+ ],
+ [
+ -73.58098966786073,
+ 45.49991521716384
+ ],
+ [
+ -73.58106907170215,
+ 45.499829718616915
+ ],
+ [
+ -73.58098857878173,
+ 45.49979350291812
+ ],
+ [
+ -73.58090986022371,
+ 45.499878263121644
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":607,
+ "ID_UEV":"01036525",
+ "CIVIQUE_DE":" 22",
+ "CIVIQUE_FI":" 22",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-6994-7-000-0000",
+ "SUPERFICIE":91,
+ "SUPERFIC_1":185,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000408572354737,
+ "OBJECTID":84734,
+ "Join_Count":1,
+ "TARGET_FID":84734,
+ "feature_id":"dc4ee5d2-23ed-4f64-937a-8e4dc3b17398",
+ "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.38,
+ "heightmax":80.62,
+ "elevmin":61.34,
+ "elevmax":67.3,
+ "bldgarea":906.84,
+ "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_2":84734,
+ "Shape_Le_1":0.000408572354737,
+ "Shape_Ar_1":9.71559689437e-09,
+ "OBJECTID_3":84734,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84733,
+ "g_objectid":"939902",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340932",
+ "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":"66023983949639810000000",
+ "g_sup_tota":"91.2",
+ "g_geometry":"0.000427112",
+ "g_geomet_1":"1.0504e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000408572354737,
+ "Shape_Area":9.71559689437e-09,
+ "Shape_Le_3":0.000408571988056,
+ "Shape_Ar_2":9.71559689437e-09,
+ "building_height":39.120000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":608,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55700702417667,
+ 45.51902393285851
+ ],
+ [
+ -73.5570577675238,
+ 45.518989647104824
+ ],
+ [
+ -73.55711116746825,
+ 45.519028647104676
+ ],
+ [
+ -73.55712676710846,
+ 45.51903984726144
+ ],
+ [
+ -73.55716137392011,
+ 45.519063351942435
+ ],
+ [
+ -73.55729446908633,
+ 45.518920689788295
+ ],
+ [
+ -73.55721326750015,
+ 45.518881146597934
+ ],
+ [
+ -73.55719746731111,
+ 45.518873846800886
+ ],
+ [
+ -73.55715889628787,
+ 45.51885596018471
+ ],
+ [
+ -73.55700364182646,
+ 45.51902237253476
+ ],
+ [
+ -73.55700702417667,
+ 45.51902393285851
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":608,
+ "ID_UEV":"01040336",
+ "CIVIQUE_DE":" 1463",
+ "CIVIQUE_FI":" 1471",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-3417-0-000-0000",
+ "SUPERFICIE":299,
+ "SUPERFIC_1":660,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000765065513601,
+ "OBJECTID":84735,
+ "Join_Count":1,
+ "TARGET_FID":84735,
+ "feature_id":"436fd987-b39d-4f24-a78c-6652f18bc34a",
+ "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.47,
+ "heightmax":16.7,
+ "elevmin":21.78,
+ "elevmax":26.69,
+ "bldgarea":4869.88,
+ "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_2":84735,
+ "Shape_Le_1":0.000765065513601,
+ "Shape_Ar_1":2.68059049769e-08,
+ "OBJECTID_3":84735,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84734,
+ "g_objectid":"944759",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1511",
+ "g_nb_logem":"1",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004231451190000000",
+ "g_sup_tota":"302",
+ "g_geometry":"0.000778767",
+ "g_geomet_1":"3.4297e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000765065513601,
+ "Shape_Area":2.68059049769e-08,
+ "Shape_Le_3":0.000765065259245,
+ "Shape_Ar_2":2.68059049769e-08,
+ "building_height":7.114999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":609,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56094544949474,
+ 45.52811857076572
+ ],
+ [
+ -73.56110773845322,
+ 45.52819423972268
+ ],
+ [
+ -73.56117545470532,
+ 45.5281224900112
+ ],
+ [
+ -73.56105906894273,
+ 45.528060448481206
+ ],
+ [
+ -73.56108096923319,
+ 45.52804014898398
+ ],
+ [
+ -73.5610755688043,
+ 45.52803724867039
+ ],
+ [
+ -73.56104726893815,
+ 45.5280230492746
+ ],
+ [
+ -73.56101126907666,
+ 45.52805834856423
+ ],
+ [
+ -73.56100518696165,
+ 45.52805528547334
+ ],
+ [
+ -73.56094544949474,
+ 45.52811857076572
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":609,
+ "ID_UEV":"01034675",
+ "CIVIQUE_DE":" 2198",
+ "CIVIQUE_FI":" 2206",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-2629-2-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":276,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000621520445803,
+ "OBJECTID":84742,
+ "Join_Count":1,
+ "TARGET_FID":84742,
+ "feature_id":"694a6a65-44fe-4b5a-bae6-fb81925dc646",
+ "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.7,
+ "heightmax":40.03,
+ "elevmin":27.05,
+ "elevmax":29.88,
+ "bldgarea":582.39,
+ "comment":" ",
+ "OBJECTID_2":84742,
+ "Shape_Le_1":0.000621520445803,
+ "Shape_Ar_1":1.84968196978e-08,
+ "OBJECTID_3":84742,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84741,
+ "g_objectid":"942981",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885478",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301262920000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000834836",
+ "g_geomet_1":"4.05124e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000621520445803,
+ "Shape_Area":1.84968196978e-08,
+ "Shape_Le_3":0.000621519107529,
+ "Shape_Ar_2":1.84968196978e-08,
+ "building_height":18.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":610,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5652061945321,
+ 45.51947296525544
+ ],
+ [
+ -73.56527118224112,
+ 45.519502464817194
+ ],
+ [
+ -73.56533627786877,
+ 45.51943109372029
+ ],
+ [
+ -73.56532067013467,
+ 45.5194251465036
+ ],
+ [
+ -73.56534627023603,
+ 45.51939174658214
+ ],
+ [
+ -73.56534746993164,
+ 45.51939044706178
+ ],
+ [
+ -73.56530396972427,
+ 45.51937054686354
+ ],
+ [
+ -73.56530174210356,
+ 45.519369527931666
+ ],
+ [
+ -73.5652061945321,
+ 45.51947296525544
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":610,
+ "ID_UEV":"01003788",
+ "CIVIQUE_DE":" 2100",
+ "CIVIQUE_FI":" 2102",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-61-9970-1-000-0000",
+ "SUPERFICIE":119,
+ "SUPERFIC_1":130,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000419622771605,
+ "OBJECTID":84745,
+ "Join_Count":1,
+ "TARGET_FID":84745,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":84745,
+ "Shape_Le_1":0.000419622771605,
+ "Shape_Ar_1":8.69923195552e-09,
+ "OBJECTID_3":84745,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84744,
+ "g_objectid":"943172",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161453",
+ "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":"66023994271046760000000",
+ "g_sup_tota":"114.3",
+ "g_geometry":"0.000543559",
+ "g_geomet_1":"1.27164e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000419622771605,
+ "Shape_Area":8.69923195552e-09,
+ "Shape_Le_3":0.000419621260243,
+ "Shape_Ar_2":8.69923195552e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":611,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56131125413292,
+ 45.519722315782545
+ ],
+ [
+ -73.56131431812312,
+ 45.51972372591951
+ ],
+ [
+ -73.5613155690801,
+ 45.51972424662698
+ ],
+ [
+ -73.56132666941211,
+ 45.5197120464241
+ ],
+ [
+ -73.5613624687248,
+ 45.51972804716194
+ ],
+ [
+ -73.56143746948547,
+ 45.51976154690816
+ ],
+ [
+ -73.56146095618003,
+ 45.519772113042876
+ ],
+ [
+ -73.56158226303286,
+ 45.519644304990976
+ ],
+ [
+ -73.5614540691718,
+ 45.51958514668746
+ ],
+ [
+ -73.56144529088931,
+ 45.51958109614097
+ ],
+ [
+ -73.56131125413292,
+ 45.519722315782545
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":611,
+ "ID_UEV":"01040070",
+ "CIVIQUE_DE":" 1815",
+ "CIVIQUE_FI":" 1815",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":13,
+ "ANNEE_CONS":1968,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-9997-1-000-0000",
+ "SUPERFICIE":254,
+ "SUPERFIC_1":594,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000690097056396,
+ "OBJECTID":84753,
+ "Join_Count":1,
+ "TARGET_FID":84753,
+ "feature_id":"de3eb166-1da9-40b2-969f-1380be198c8b",
+ "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.49,
+ "heightmax":13.11,
+ "elevmin":23.95,
+ "elevmax":25.63,
+ "bldgarea":2208.26,
+ "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_2":84753,
+ "Shape_Le_1":0.000690097056396,
+ "Shape_Ar_1":2.53756356274e-08,
+ "OBJECTID_3":84753,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84752,
+ "g_objectid":"941484",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565263",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994292820740000000",
+ "g_sup_tota":"509.9",
+ "g_geometry":"0.00101488",
+ "g_geomet_1":"5.87532e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000690097056396,
+ "Shape_Area":2.53756356274e-08,
+ "Shape_Le_3":0.000690096943738,
+ "Shape_Ar_2":2.53756356274e-08,
+ "building_height":5.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":612,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56075367896096,
+ 45.5205720941771
+ ],
+ [
+ -73.56075706940507,
+ 45.520573546582206
+ ],
+ [
+ -73.56077396946496,
+ 45.52055314726023
+ ],
+ [
+ -73.56090814741492,
+ 45.52060848704234
+ ],
+ [
+ -73.56097148396866,
+ 45.52053889660309
+ ],
+ [
+ -73.56083983131501,
+ 45.52047743603514
+ ],
+ [
+ -73.56075367896096,
+ 45.5205720941771
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":612,
+ "ID_UEV":"01040316",
+ "CIVIQUE_DE":" 1825",
+ "CIVIQUE_FI":" 1831",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-4696-9-000-0000",
+ "SUPERFICIE":215,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000542704975486,
+ "OBJECTID":84759,
+ "Join_Count":1,
+ "TARGET_FID":84759,
+ "feature_id":"d6ff67ae-d9aa-4128-bd02-658c006792fd",
+ "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.67,
+ "heightmax":11.29,
+ "elevmin":23.99,
+ "elevmax":25.78,
+ "bldgarea":805.13,
+ "comment":" ",
+ "OBJECTID_2":84759,
+ "Shape_Le_1":0.000542704975486,
+ "Shape_Ar_1":1.36200209166e-08,
+ "OBJECTID_3":84759,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84758,
+ "g_objectid":"941888",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566803",
+ "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":"66023004203350360000000",
+ "g_sup_tota":"234.2",
+ "g_geometry":"0.000677943",
+ "g_geomet_1":"2.73047e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000542704975486,
+ "Shape_Area":1.36200209166e-08,
+ "Shape_Le_3":0.000542704407358,
+ "Shape_Ar_2":1.36200209166e-08,
+ "building_height":4.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":613,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54932238204414,
+ 45.53043595010931
+ ],
+ [
+ -73.5494245792028,
+ 45.53048071746144
+ ],
+ [
+ -73.54949846480415,
+ 45.53041754908092
+ ],
+ [
+ -73.54955836594768,
+ 45.53045224852275
+ ],
+ [
+ -73.54956196593382,
+ 45.53045414879023
+ ],
+ [
+ -73.54956867577562,
+ 45.530446911945724
+ ],
+ [
+ -73.54938767372401,
+ 45.53036762051957
+ ],
+ [
+ -73.54932238204414,
+ 45.53043595010931
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":613,
+ "ID_UEV":"01019295",
+ "CIVIQUE_DE":" 2465",
+ "CIVIQUE_FI":" 2465",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-93-3693-4-000-0000",
+ "SUPERFICIE":197,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000584062670561,
+ "OBJECTID":84779,
+ "Join_Count":1,
+ "TARGET_FID":84779,
+ "feature_id":"82712f79-841d-4d1a-988c-5aec3689f3b2",
+ "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.15,
+ "heightmax":34.99,
+ "elevmin":21.24,
+ "elevmax":22.64,
+ "bldgarea":635.95,
+ "comment":" ",
+ "OBJECTID_2":84779,
+ "Shape_Le_1":0.000584062670561,
+ "Shape_Ar_1":1.07810687331e-08,
+ "OBJECTID_3":84779,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84778,
+ "g_objectid":"940689",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424279",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394410150000000",
+ "g_sup_tota":"196.3",
+ "g_geometry":"0.000697095",
+ "g_geomet_1":"2.26082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000584062670561,
+ "Shape_Area":1.07810687331e-08,
+ "Shape_Le_3":0.000584062009218,
+ "Shape_Ar_2":1.07810687331e-08,
+ "building_height":15.420000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":614,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57086315773039,
+ 45.50147168911745
+ ],
+ [
+ -73.57083879149887,
+ 45.50145934502305
+ ],
+ [
+ -73.57079357988165,
+ 45.501505018891805
+ ],
+ [
+ -73.57098995944092,
+ 45.50160240197956
+ ],
+ [
+ -73.57113464596898,
+ 45.50167293670696
+ ],
+ [
+ -73.57119035087584,
+ 45.501616392732636
+ ],
+ [
+ -73.57105413506213,
+ 45.50154758650221
+ ],
+ [
+ -73.57103958133345,
+ 45.501561056547814
+ ],
+ [
+ -73.57086315773039,
+ 45.50147168911745
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":614,
+ "ID_UEV":"01039160",
+ "CIVIQUE_DE":" 892",
+ "CIVIQUE_FI":" 894",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-21-5185-8-000-0000",
+ "SUPERFICIE":220,
+ "SUPERFIC_1":609,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000921324148427,
+ "OBJECTID":84794,
+ "Join_Count":1,
+ "TARGET_FID":84794,
+ "feature_id":"d557171a-01b1-4059-be92-ca29e18026e7",
+ "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":96.07,
+ "elevmin":33.44,
+ "elevmax":35.5,
+ "bldgarea":3072.6,
+ "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_2":84794,
+ "Shape_Le_1":0.000921324148427,
+ "Shape_Ar_1":2.53234559044e-08,
+ "OBJECTID_3":84794,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84793,
+ "g_objectid":"938150",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340253",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994021457440000000",
+ "g_sup_tota":"448",
+ "g_geometry":"0.00106626",
+ "g_geomet_1":"5.22771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000921324148427,
+ "Shape_Area":2.53234559044e-08,
+ "Shape_Le_3":0.000921323809201,
+ "Shape_Ar_2":2.53234559044e-08,
+ "building_height":47.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":615,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5661210919367,
+ 45.51840966892138
+ ],
+ [
+ -73.56649146603017,
+ 45.51857640502737
+ ],
+ [
+ -73.56653257044361,
+ 45.518519846663885
+ ],
+ [
+ -73.56653427016228,
+ 45.51851764692216
+ ],
+ [
+ -73.56651207039758,
+ 45.51850774718508
+ ],
+ [
+ -73.56656127050807,
+ 45.518453347194516
+ ],
+ [
+ -73.56653667045282,
+ 45.518442346687245
+ ],
+ [
+ -73.56657325847095,
+ 45.518402084039245
+ ],
+ [
+ -73.56625095044285,
+ 45.51825698652101
+ ],
+ [
+ -73.56624567052312,
+ 45.51826294722753
+ ],
+ [
+ -73.56631326986336,
+ 45.51829254661403
+ ],
+ [
+ -73.56627237049534,
+ 45.51833874658618
+ ],
+ [
+ -73.56627207012178,
+ 45.51833914678449
+ ],
+ [
+ -73.56628616969282,
+ 45.518344946512364
+ ],
+ [
+ -73.56627576993269,
+ 45.518357546913556
+ ],
+ [
+ -73.56638826972471,
+ 45.51840344651214
+ ],
+ [
+ -73.5663343697572,
+ 45.51846874718523
+ ],
+ [
+ -73.56614036980407,
+ 45.5183895465906
+ ],
+ [
+ -73.56614026997931,
+ 45.5183895465906
+ ],
+ [
+ -73.5661210919367,
+ 45.51840966892138
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":615,
+ "ID_UEV":"01040558",
+ "CIVIQUE_DE":" 524",
+ "CIVIQUE_FI":" 530",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Auberge ou g\u00c3\u00aete touristique (H\u00c3\u00b4tel \u00c3\u00a0 caract\u00c3\u00a8re familial, d'au plus 3 \u00c3\u00a9tages en hauteur de b\u00c3\u00a2timent)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-60-1457-9-000-0000",
+ "SUPERFICIE":719,
+ "SUPERFIC_1":940,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00163050312549,
+ "OBJECTID":84795,
+ "Join_Count":1,
+ "TARGET_FID":84795,
+ "feature_id":"e52450b2-c71b-4fbd-8dd6-6974cbcb0e7e",
+ "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.08,
+ "heightmax":17.82,
+ "elevmin":36.5,
+ "elevmax":40.17,
+ "bldgarea":1121.01,
+ "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_2":84795,
+ "Shape_Le_1":0.00163050312549,
+ "Shape_Ar_1":5.04046706434e-08,
+ "OBJECTID_3":84795,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84794,
+ "g_objectid":"943125",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161315",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994260084490000000",
+ "g_sup_tota":"274.3",
+ "g_geometry":"0.00094399",
+ "g_geomet_1":"3.26656e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00163050312549,
+ "Shape_Area":5.04046706434e-08,
+ "Shape_Le_3":0.00163050306137,
+ "Shape_Ar_2":5.04046706434e-08,
+ "building_height":8.370000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":616,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55022127421428,
+ 45.52304227822885
+ ],
+ [
+ -73.55038452095073,
+ 45.523118337491574
+ ],
+ [
+ -73.55049246477728,
+ 45.5230050444975
+ ],
+ [
+ -73.55046266484196,
+ 45.52299054742612
+ ],
+ [
+ -73.55046236536771,
+ 45.522990648150184
+ ],
+ [
+ -73.55041736509116,
+ 45.523028847753416
+ ],
+ [
+ -73.5503942651051,
+ 45.52301554767968
+ ],
+ [
+ -73.55038916504978,
+ 45.52302054791026
+ ],
+ [
+ -73.55033086469949,
+ 45.52298844750914
+ ],
+ [
+ -73.55037296556176,
+ 45.522950947578465
+ ],
+ [
+ -73.55033226944053,
+ 45.522928788283245
+ ],
+ [
+ -73.55022127421428,
+ 45.52304227822885
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":616,
+ "ID_UEV":"01022170",
+ "CIVIQUE_DE":" 1228",
+ "CIVIQUE_FI":" 1240",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-85-6568-3-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":552,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000790875916621,
+ "OBJECTID":84809,
+ "Join_Count":1,
+ "TARGET_FID":84809,
+ "feature_id":"e5135906-da4d-4532-b35a-0ec9cb7c5328",
+ "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.58,
+ "heightmax":29.44,
+ "elevmin":16.79,
+ "elevmax":17.79,
+ "bldgarea":838.11,
+ "comment":" ",
+ "OBJECTID_2":84809,
+ "Shape_Le_1":0.000790875916621,
+ "Shape_Ar_1":2.13092225873e-08,
+ "OBJECTID_3":84809,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84808,
+ "g_objectid":"942343",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729130",
+ "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":"66023004285746100000000",
+ "g_sup_tota":"114.1",
+ "g_geometry":"0.000507324",
+ "g_geomet_1":"1.2877e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000790875916621,
+ "Shape_Area":2.13092225873e-08,
+ "Shape_Le_3":0.000790876113299,
+ "Shape_Ar_2":2.13092225873e-08,
+ "building_height":13.43
+ }
+ },
+ {
+ "type":"Feature",
+ "id":617,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56095166920602,
+ 45.52118784649222
+ ],
+ [
+ -73.56086476951535,
+ 45.52128084718365
+ ],
+ [
+ -73.56098336940882,
+ 45.52133554664845
+ ],
+ [
+ -73.56106396934855,
+ 45.52137274710489
+ ],
+ [
+ -73.5611776688362,
+ 45.52142514700323
+ ],
+ [
+ -73.56126816941233,
+ 45.52132814702666
+ ],
+ [
+ -73.56132096950898,
+ 45.52127154729437
+ ],
+ [
+ -73.5611924689791,
+ 45.521212246897974
+ ],
+ [
+ -73.56100826893831,
+ 45.52112724657547
+ ],
+ [
+ -73.56095166920602,
+ 45.52118784649222
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":617,
+ "ID_UEV":"01040428",
+ "CIVIQUE_DE":" 1895",
+ "CIVIQUE_FI":" 1895",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":9,
+ "NOMBRE_LOG":82,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-03-3682-8-000-0000",
+ "SUPERFICIE":1984,
+ "SUPERFIC_1":4964,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00110922868921,
+ "OBJECTID":84814,
+ "Join_Count":1,
+ "TARGET_FID":84814,
+ "feature_id":"ea441752-9fd1-45ad-b532-4dafd4e77516",
+ "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.46,
+ "heightmax":32.09,
+ "elevmin":25.26,
+ "elevmax":26.11,
+ "bldgarea":596.77,
+ "comment":" ",
+ "OBJECTID_2":84814,
+ "Shape_Le_1":0.00110922868921,
+ "Shape_Ar_1":6.87420849955e-08,
+ "OBJECTID_3":84814,
+ "Join_Cou_1":1,
+ "TARGET_F_1":84813,
+ "g_objectid":"941909",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566827",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"82",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004203368280000000",
+ "g_sup_tota":"1983.7",
+ "g_geometry":"0.00234379",
+ "g_geomet_1":"2.27636e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00110922868921,
+ "Shape_Area":6.87420849955e-08,
+ "Shape_Le_3":0.00110922911287,
+ "Shape_Ar_2":6.87420849955e-08,
+ "building_height":14.815000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":618,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58104316403264,
+ 45.499742691222515
+ ],
+ [
+ -73.58112297526694,
+ 45.499779647063356
+ ],
+ [
+ -73.58120503480636,
+ 45.49969372583507
+ ],
+ [
+ -73.58112561747511,
+ 45.49965635990338
+ ],
+ [
+ -73.58104316403264,
+ 45.499742691222515
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":618,
+ "ID_UEV":"01036491",
+ "CIVIQUE_DE":" 3441",
+ "CIVIQUE_FI":" 3441",
+ "NOM_RUE":"avenue du Mus\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-5979-9-000-0000",
+ "SUPERFICIE":92,
+ "SUPERFIC_1":185,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000413912836852,
+ "OBJECTID":84825,
+ "Join_Count":1,
+ "TARGET_FID":84825,
+ "feature_id":"dc4ee5d2-23ed-4f64-937a-8e4dc3b17398",
+ "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.38,
+ "heightmax":80.62,
+ "elevmin":61.34,
+ "elevmax":67.3,
+ "bldgarea":906.84,
+ "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_2":84825,
+ "Shape_Le_1":0.000413912836852,
+ "Shape_Ar_1":9.91361222308e-09,
+ "OBJECTID_3":84825,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84824,
+ "g_objectid":"939903",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340934",
+ "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":"66023983949657540000000",
+ "g_sup_tota":"91.6",
+ "g_geometry":"0.000428877",
+ "g_geomet_1":"1.05191e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000413912836852,
+ "Shape_Area":9.91361222308e-09,
+ "Shape_Le_3":0.000413912731665,
+ "Shape_Ar_2":9.91361222308e-09,
+ "building_height":39.120000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":619,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56443803051255,
+ 45.51834388081574
+ ],
+ [
+ -73.56459834995573,
+ 45.51841738240657
+ ],
+ [
+ -73.56460577026193,
+ 45.518407747070164
+ ],
+ [
+ -73.56443803051255,
+ 45.51834388081574
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56421499504783,
+ 45.51824162699978
+ ],
+ [
+ -73.56442564325069,
+ 45.51833820159702
+ ],
+ [
+ -73.5644932704699,
+ 45.51825044665109
+ ],
+ [
+ -73.56449427051602,
+ 45.51825074702465
+ ],
+ [
+ -73.56446377000883,
+ 45.518227746863325
+ ],
+ [
+ -73.56446502636172,
+ 45.518226924882974
+ ],
+ [
+ -73.56445880215384,
+ 45.518224072233444
+ ],
+ [
+ -73.56428861624849,
+ 45.51814604525408
+ ],
+ [
+ -73.56421499504783,
+ 45.51824162699978
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":619,
+ "ID_UEV":"01040606",
+ "CIVIQUE_DE":" 809",
+ "CIVIQUE_FI":" 813",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-70-6542-2-000-0000",
+ "SUPERFICIE":458,
+ "SUPERFIC_1":473,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0010659962895,
+ "OBJECTID":84835,
+ "Join_Count":1,
+ "TARGET_FID":84835,
+ "feature_id":"9614f382-2dc6-45ce-bce9-c7f2867734b4",
+ "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.98,
+ "heightmax":14.17,
+ "elevmin":25.13,
+ "elevmax":28.33,
+ "bldgarea":1466.23,
+ "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_2":84835,
+ "Shape_Le_1":0.0010659962895,
+ "Shape_Ar_1":2.80901355514e-08,
+ "OBJECTID_3":84835,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84834,
+ "g_objectid":"943214",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161532",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994270654220000000",
+ "g_sup_tota":"458.3",
+ "g_geometry":"0.00114299",
+ "g_geomet_1":"5.29691e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0010659962895,
+ "Shape_Area":2.80901355514e-08,
+ "Shape_Le_3":0.00106599604526,
+ "Shape_Ar_2":2.80901355514e-08,
+ "building_height":6.095
+ }
+ },
+ {
+ "type":"Feature",
+ "id":620,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56046769724827,
+ 45.52787857228858
+ ],
+ [
+ -73.56063285954068,
+ 45.52795410185062
+ ],
+ [
+ -73.56072364430258,
+ 45.52785790856592
+ ],
+ [
+ -73.56055974645697,
+ 45.52778110376522
+ ],
+ [
+ -73.5605572058722,
+ 45.52778379363746
+ ],
+ [
+ -73.56051658979064,
+ 45.527826801016346
+ ],
+ [
+ -73.56051378210721,
+ 45.52782977417503
+ ],
+ [
+ -73.56050587796574,
+ 45.527838144165315
+ ],
+ [
+ -73.56047211291953,
+ 45.52787389581393
+ ],
+ [
+ -73.56046769724827,
+ 45.52787857228858
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56059441082525,
+ 45.52774439703659
+ ],
+ [
+ -73.5606026692996,
+ 45.527748248832914
+ ],
+ [
+ -73.56062606875992,
+ 45.52772374860241
+ ],
+ [
+ -73.56064576930865,
+ 45.527733749063565
+ ],
+ [
+ -73.56064889445277,
+ 45.527730346928266
+ ],
+ [
+ -73.56063121737863,
+ 45.527722093849846
+ ],
+ [
+ -73.56062986929487,
+ 45.52772354895292
+ ],
+ [
+ -73.56061895152524,
+ 45.527718412025386
+ ],
+ [
+ -73.56059441082525,
+ 45.52774439703659
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":620,
+ "ID_UEV":"01034669",
+ "CIVIQUE_DE":" 2154",
+ "CIVIQUE_FI":" 2168",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-6404-6-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":518,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000767949947649,
+ "OBJECTID":84855,
+ "Join_Count":2,
+ "TARGET_FID":84855,
+ "feature_id":"e318b32b-d4e0-49f1-be44-02b0023758d1",
+ "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.82,
+ "heightmax":30.5,
+ "elevmin":26.8,
+ "elevmax":27.47,
+ "bldgarea":17.81,
+ "comment":" ",
+ "OBJECTID_2":84855,
+ "Shape_Le_1":0.000767949947649,
+ "Shape_Ar_1":2.32919155245e-08,
+ "OBJECTID_3":84855,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84854,
+ "g_objectid":"942984",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885481",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301640460000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000839517",
+ "g_geomet_1":"4.10261e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000767949947649,
+ "Shape_Area":2.32919155245e-08,
+ "Shape_Le_3":0.000767951889826,
+ "Shape_Ar_2":2.32919155245e-08,
+ "building_height":14.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":621,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56112639309042,
+ 45.5144833098072
+ ],
+ [
+ -73.56107336816325,
+ 45.51451974583989
+ ],
+ [
+ -73.56107256776663,
+ 45.5145203456877
+ ],
+ [
+ -73.56101866779912,
+ 45.514489246232024
+ ],
+ [
+ -73.56097116830662,
+ 45.51453004577529
+ ],
+ [
+ -73.56097086793305,
+ 45.51453004577529
+ ],
+ [
+ -73.56097906795146,
+ 45.51451084614892
+ ],
+ [
+ -73.56104206815877,
+ 45.514363845665244
+ ],
+ [
+ -73.56107006855066,
+ 45.514298645716224
+ ],
+ [
+ -73.56116576810756,
+ 45.514318946112766
+ ],
+ [
+ -73.56117026831508,
+ 45.514319946158885
+ ],
+ [
+ -73.56117396812597,
+ 45.514314945928305
+ ],
+ [
+ -73.56113916796008,
+ 45.51430214587762
+ ],
+ [
+ -73.56116076787698,
+ 45.51427304561486
+ ],
+ [
+ -73.56117446814903,
+ 45.51427814567018
+ ],
+ [
+ -73.56118336784,
+ 45.51426694551342
+ ],
+ [
+ -73.56114026783094,
+ 45.5142501461776
+ ],
+ [
+ -73.56120236781686,
+ 45.514171445606024
+ ],
+ [
+ -73.5612786680979,
+ 45.514201245541344
+ ],
+ [
+ -73.56128016816707,
+ 45.514199346173186
+ ],
+ [
+ -73.56128205944134,
+ 45.5141972417596
+ ],
+ [
+ -73.56104766194188,
+ 45.5140903159656
+ ],
+ [
+ -73.56104376787744,
+ 45.51409464620126
+ ],
+ [
+ -73.5610405680896,
+ 45.514097945813845
+ ],
+ [
+ -73.56111196796479,
+ 45.51413264615499
+ ],
+ [
+ -73.5610806679603,
+ 45.51416444618254
+ ],
+ [
+ -73.56103706792818,
+ 45.5142089455367
+ ],
+ [
+ -73.5610024683111,
+ 45.514192146200884
+ ],
+ [
+ -73.56096586770248,
+ 45.514229345758
+ ],
+ [
+ -73.56094346828827,
+ 45.514252345919324
+ ],
+ [
+ -73.56094326773946,
+ 45.514252345919324
+ ],
+ [
+ -73.5608104684502,
+ 45.51404534626601
+ ],
+ [
+ -73.56081036772613,
+ 45.51404524554194
+ ],
+ [
+ -73.56057546840499,
+ 45.5139070458238
+ ],
+ [
+ -73.56034936805074,
+ 45.514096945767726
+ ],
+ [
+ -73.56040786805052,
+ 45.514131345735315
+ ],
+ [
+ -73.56037656804602,
+ 45.514157746233295
+ ],
+ [
+ -73.56046666842386,
+ 45.51420374565663
+ ],
+ [
+ -73.56047116773205,
+ 45.51420594629768
+ ],
+ [
+ -73.56050286793486,
+ 45.51417194562908
+ ],
+ [
+ -73.56060356772231,
+ 45.51421824542598
+ ],
+ [
+ -73.56059986791142,
+ 45.514222345435186
+ ],
+ [
+ -73.56060186800364,
+ 45.514223546030124
+ ],
+ [
+ -73.56066736832624,
+ 45.51426324570252
+ ],
+ [
+ -73.56058646801293,
+ 45.51432924604816
+ ],
+ [
+ -73.56056446789772,
+ 45.514347146154165
+ ],
+ [
+ -73.56048076799489,
+ 45.51441534624153
+ ],
+ [
+ -73.56047966812403,
+ 45.514416346287646
+ ],
+ [
+ -73.56050406852978,
+ 45.51442934598782
+ ],
+ [
+ -73.56044856776903,
+ 45.51448064601529
+ ],
+ [
+ -73.56042346769073,
+ 45.514503746001374
+ ],
+ [
+ -73.56042316821649,
+ 45.51450384582612
+ ],
+ [
+ -73.56001076790446,
+ 45.51456404554456
+ ],
+ [
+ -73.56051786772726,
+ 45.51480304577424
+ ],
+ [
+ -73.56075091804227,
+ 45.51491283321098
+ ],
+ [
+ -73.56081199909633,
+ 45.51484809641281
+ ],
+ [
+ -73.5608608799475,
+ 45.51479601757245
+ ],
+ [
+ -73.56095638615014,
+ 45.51469241477342
+ ],
+ [
+ -73.56096522648586,
+ 45.51468282620176
+ ],
+ [
+ -73.56100654493794,
+ 45.51465031840776
+ ],
+ [
+ -73.56108882301261,
+ 45.51455999409875
+ ],
+ [
+ -73.56111979836184,
+ 45.514513303096756
+ ],
+ [
+ -73.56111522440992,
+ 45.514497944474854
+ ],
+ [
+ -73.56112639309042,
+ 45.5144833098072
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55958030470914,
+ 45.51396699373207
+ ],
+ [
+ -73.55983106807118,
+ 45.514015045408314
+ ],
+ [
+ -73.55984836832938,
+ 45.51401834592022
+ ],
+ [
+ -73.55984866780362,
+ 45.51401854556972
+ ],
+ [
+ -73.55995106820907,
+ 45.51406954612295
+ ],
+ [
+ -73.56021726843403,
+ 45.51380544581497
+ ],
+ [
+ -73.56015406767793,
+ 45.51377404598573
+ ],
+ [
+ -73.5598505680711,
+ 45.51362364606471
+ ],
+ [
+ -73.55970506855591,
+ 45.51355164544238
+ ],
+ [
+ -73.55929596785647,
+ 45.51334924582133
+ ],
+ [
+ -73.55896956701375,
+ 45.513187745568295
+ ],
+ [
+ -73.55888636713398,
+ 45.51314664565147
+ ],
+ [
+ -73.55888586711092,
+ 45.513147245499276
+ ],
+ [
+ -73.55847626728774,
+ 45.512978145974955
+ ],
+ [
+ -73.558476167463,
+ 45.51297834562445
+ ],
+ [
+ -73.55836696728356,
+ 45.5129241461827
+ ],
+ [
+ -73.55828736738994,
+ 45.51300364625157
+ ],
+ [
+ -73.55817086741345,
+ 45.51311974602975
+ ],
+ [
+ -73.5582662674961,
+ 45.51316704587276
+ ],
+ [
+ -73.55831416718691,
+ 45.513190745706645
+ ],
+ [
+ -73.55830256683184,
+ 45.51320254571121
+ ],
+ [
+ -73.55822766679523,
+ 45.51327984603836
+ ],
+ [
+ -73.5581534673305,
+ 45.513244245475846
+ ],
+ [
+ -73.55809796746907,
+ 45.513301445955264
+ ],
+ [
+ -73.55806216725706,
+ 45.513284346245875
+ ],
+ [
+ -73.557781367438,
+ 45.51358234559906
+ ],
+ [
+ -73.55778596747027,
+ 45.513584445516045
+ ],
+ [
+ -73.5582723666982,
+ 45.51381044604555
+ ],
+ [
+ -73.55834476751885,
+ 45.51384404561651
+ ],
+ [
+ -73.55833766737129,
+ 45.513851545962375
+ ],
+ [
+ -73.55833836704385,
+ 45.51385184543661
+ ],
+ [
+ -73.55837320588059,
+ 45.51387028243788
+ ],
+ [
+ -73.55840330618948,
+ 45.51388405285705
+ ],
+ [
+ -73.55841776728798,
+ 45.51387004591618
+ ],
+ [
+ -73.55862966734712,
+ 45.51397884589731
+ ],
+ [
+ -73.55863006754542,
+ 45.51397904554681
+ ],
+ [
+ -73.55864566718564,
+ 45.51397204612333
+ ],
+ [
+ -73.5586689668212,
+ 45.51399784587418
+ ],
+ [
+ -73.55866876717171,
+ 45.513998146247744
+ ],
+ [
+ -73.55906476834623,
+ 45.51418164571667
+ ],
+ [
+ -73.55932076846054,
+ 45.514300245610144
+ ],
+ [
+ -73.55931850756491,
+ 45.514302698061364
+ ],
+ [
+ -73.55933218085731,
+ 45.51430895554416
+ ],
+ [
+ -73.55945282670844,
+ 45.51436413704558
+ ],
+ [
+ -73.55947056853375,
+ 45.51434844567452
+ ],
+ [
+ -73.55951816785101,
+ 45.514374945997254
+ ],
+ [
+ -73.55954826815989,
+ 45.514348345849776
+ ],
+ [
+ -73.5595914679937,
+ 45.51430994569773
+ ],
+ [
+ -73.5595301684044,
+ 45.51427574627896
+ ],
+ [
+ -73.55954076781403,
+ 45.514266445490364
+ ],
+ [
+ -73.55954026779096,
+ 45.51426614601612
+ ],
+ [
+ -73.55948266801256,
+ 45.51424654619145
+ ],
+ [
+ -73.55944136844624,
+ 45.51423254554584
+ ],
+ [
+ -73.55943816775908,
+ 45.51423174604854
+ ],
+ [
+ -73.5594660503398,
+ 45.514175296503026
+ ],
+ [
+ -73.55943353355258,
+ 45.514160233758076
+ ],
+ [
+ -73.55936426776859,
+ 45.51419864560131
+ ],
+ [
+ -73.5593638684696,
+ 45.514198245403
+ ],
+ [
+ -73.55932405008669,
+ 45.514109519189255
+ ],
+ [
+ -73.559321688467,
+ 45.51410842471432
+ ],
+ [
+ -73.55932294212192,
+ 45.51410704875159
+ ],
+ [
+ -73.55931306846519,
+ 45.514085045938415
+ ],
+ [
+ -73.55928196811018,
+ 45.514015845804934
+ ],
+ [
+ -73.55928186828544,
+ 45.514015845804934
+ ],
+ [
+ -73.55932016771341,
+ 45.5139171461097
+ ],
+ [
+ -73.5594698562707,
+ 45.51394582998636
+ ],
+ [
+ -73.55948867638315,
+ 45.513925177954896
+ ],
+ [
+ -73.55958030470914,
+ 45.51396699373207
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":621,
+ "ID_UEV":"01040703",
+ "CIVIQUE_DE":" 400",
+ "CIVIQUE_FI":" 400",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":10,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Universit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-15-9325-4-000-0000",
+ "SUPERFICIE":23194,
+ "SUPERFIC_1":132291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0119367167025,
+ "OBJECTID":84856,
+ "Join_Count":2,
+ "TARGET_FID":84856,
+ "feature_id":"e7affa55-4773-436a-99a9-e39cda4b6c4f",
+ "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":66.96,
+ "elevmin":21.33,
+ "elevmax":24.98,
+ "bldgarea":13873.09,
+ "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_2":84856,
+ "Shape_Le_1":0.0119367167025,
+ "Shape_Ar_1":2.0253824471e-06,
+ "OBJECTID_3":84856,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84855,
+ "g_objectid":"938557",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"6821",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004115932540000000",
+ "g_sup_tota":"23194.5",
+ "g_geometry":"0.0109035",
+ "g_geomet_1":"2.67402e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0119367167025,
+ "Shape_Area":2.0253824471e-06,
+ "Shape_Le_3":0.0119367170991,
+ "Shape_Ar_2":2.0253824471e-06,
+ "building_height":33.224999999999994
+ }
+ },
+ {
+ "type":"Feature",
+ "id":622,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57636062346585,
+ 45.50113781940514
+ ],
+ [
+ -73.57676784997814,
+ 45.501335239480014
+ ],
+ [
+ -73.57677247339278,
+ 45.50133064304504
+ ],
+ [
+ -73.57702137335954,
+ 45.50108304259863
+ ],
+ [
+ -73.57691407344758,
+ 45.50102974247893
+ ],
+ [
+ -73.5766173718161,
+ 45.500882242871505
+ ],
+ [
+ -73.57636062346585,
+ 45.50113781940514
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":622,
+ "ID_UEV":"01039043",
+ "CIVIQUE_DE":" 1130",
+ "CIVIQUE_FI":" 1140",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":17,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-81-0634-6-000-0000",
+ "SUPERFICIE":1728,
+ "SUPERFIC_1":22982,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00162357837482,
+ "OBJECTID":84864,
+ "Join_Count":1,
+ "TARGET_FID":84864,
+ "feature_id":"9379a9c0-174e-4f11-8424-fdc3254e6c38",
+ "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":135.73,
+ "elevmin":42.7,
+ "elevmax":45.72,
+ "bldgarea":2724.06,
+ "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_2":84864,
+ "Shape_Le_1":0.00162357837482,
+ "Shape_Ar_1":1.53774187983e-07,
+ "OBJECTID_3":84864,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84863,
+ "g_objectid":"944996",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338865",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"33",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984081063460000000",
+ "g_sup_tota":"1727.8",
+ "g_geometry":"0.00188443",
+ "g_geomet_1":"2.00226e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00162357837482,
+ "Shape_Area":1.53774187983e-07,
+ "Shape_Le_3":0.00162357773119,
+ "Shape_Ar_2":1.53774187983e-07,
+ "building_height":67.60499999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":623,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5594660503398,
+ 45.514175296503026
+ ],
+ [
+ -73.55946666817404,
+ 45.51417404554606
+ ],
+ [
+ -73.55953686835363,
+ 45.51419124597951
+ ],
+ [
+ -73.55960646778611,
+ 45.5142081460394
+ ],
+ [
+ -73.55975246822368,
+ 45.5142435460531
+ ],
+ [
+ -73.55981156807125,
+ 45.51425784617296
+ ],
+ [
+ -73.55981156807125,
+ 45.51425774544889
+ ],
+ [
+ -73.55984786830632,
+ 45.51421674625613
+ ],
+ [
+ -73.55988456784038,
+ 45.51417534596574
+ ],
+ [
+ -73.55983486770683,
+ 45.51415354550002
+ ],
+ [
+ -73.55985226778976,
+ 45.51413394567535
+ ],
+ [
+ -73.55971506811774,
+ 45.51407364613216
+ ],
+ [
+ -73.55973076848203,
+ 45.514056045500396
+ ],
+ [
+ -73.55973066775796,
+ 45.514056045500396
+ ],
+ [
+ -73.55965126841315,
+ 45.51401334568965
+ ],
+ [
+ -73.55956316812755,
+ 45.51396584619714
+ ],
+ [
+ -73.55951766782795,
+ 45.51400764578652
+ ],
+ [
+ -73.55951746817846,
+ 45.514007545961775
+ ],
+ [
+ -73.55939306855711,
+ 45.514063545846255
+ ],
+ [
+ -73.55946516810486,
+ 45.514142645716824
+ ],
+ [
+ -73.55946506828012,
+ 45.51414274554157
+ ],
+ [
+ -73.55943353355258,
+ 45.514160233758076
+ ],
+ [
+ -73.5594660503398,
+ 45.514175296503026
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55932294212192,
+ 45.51410704875159
+ ],
+ [
+ -73.559321688467,
+ 45.51410842471432
+ ],
+ [
+ -73.55932405008669,
+ 45.514109519189255
+ ],
+ [
+ -73.55932294212192,
+ 45.51410704875159
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5594698562707,
+ 45.51394582998636
+ ],
+ [
+ -73.55958030470914,
+ 45.51396699373207
+ ],
+ [
+ -73.55948867638315,
+ 45.513925177954896
+ ],
+ [
+ -73.5594698562707,
+ 45.51394582998636
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":623,
+ "ID_UEV":"01040704",
+ "CIVIQUE_DE":" 430",
+ "CIVIQUE_FI":" 430",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1874,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-15-3980-2-000-0000",
+ "SUPERFICIE":1081,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00153657952197,
+ "OBJECTID":84865,
+ "Join_Count":1,
+ "TARGET_FID":84865,
+ "feature_id":"e7affa55-4773-436a-99a9-e39cda4b6c4f",
+ "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":66.96,
+ "elevmin":21.33,
+ "elevmax":24.98,
+ "bldgarea":13873.09,
+ "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_2":84865,
+ "Shape_Le_1":0.00153657952197,
+ "Shape_Ar_1":7.53052376029e-08,
+ "OBJECTID_3":84865,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84864,
+ "g_objectid":"938557",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"6821",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004115932540000000",
+ "g_sup_tota":"23194.5",
+ "g_geometry":"0.0109035",
+ "g_geomet_1":"2.67402e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00153657952197,
+ "Shape_Area":7.53052376029e-08,
+ "Shape_Le_3":0.00153657702361,
+ "Shape_Ar_2":7.53052376029e-08,
+ "building_height":33.224999999999994
+ }
+ },
+ {
+ "type":"Feature",
+ "id":624,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54969238651627,
+ 45.53004798257863
+ ],
+ [
+ -73.54968986571657,
+ 45.53005094854274
+ ],
+ [
+ -73.54967166613633,
+ 45.53004324854738
+ ],
+ [
+ -73.5496313657168,
+ 45.53008614890694
+ ],
+ [
+ -73.54960960931786,
+ 45.53010953217946
+ ],
+ [
+ -73.54975054477367,
+ 45.53017231565014
+ ],
+ [
+ -73.54978256603444,
+ 45.53014104892057
+ ],
+ [
+ -73.54980606621882,
+ 45.53015294874988
+ ],
+ [
+ -73.54978596637109,
+ 45.530172548574555
+ ],
+ [
+ -73.5497830660575,
+ 45.53017484904034
+ ],
+ [
+ -73.54982542502519,
+ 45.530196465145046
+ ],
+ [
+ -73.54987824670556,
+ 45.53013897508393
+ ],
+ [
+ -73.54980206603436,
+ 45.530105148883806
+ ],
+ [
+ -73.54980670293884,
+ 45.53010003893594
+ ],
+ [
+ -73.54969238651627,
+ 45.53004798257863
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":624,
+ "ID_UEV":"01019289",
+ "CIVIQUE_DE":" 2437",
+ "CIVIQUE_FI":" 2439",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-93-1457-6-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":362,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000713105316893,
+ "OBJECTID":84870,
+ "Join_Count":1,
+ "TARGET_FID":84870,
+ "feature_id":"b2635238-5f35-4d49-9826-d4efc81df553",
+ "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.54,
+ "heightmax":33.47,
+ "elevmin":20.4,
+ "elevmax":21.89,
+ "bldgarea":611.34,
+ "comment":" ",
+ "OBJECTID_2":84870,
+ "Shape_Le_1":0.000713105316893,
+ "Shape_Ar_1":1.82797064925e-08,
+ "OBJECTID_3":84870,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84869,
+ "g_objectid":"940678",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424262",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004393145760000000",
+ "g_sup_tota":"178.4",
+ "g_geometry":"0.000649118",
+ "g_geomet_1":"2.05766e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000713105316893,
+ "Shape_Area":1.82797064925e-08,
+ "Shape_Le_3":0.000713104582732,
+ "Shape_Ar_2":1.82797064925e-08,
+ "building_height":15.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":625,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5648221588374,
+ 45.52092775356327
+ ],
+ [
+ -73.56488337029315,
+ 45.520955852880604
+ ],
+ [
+ -73.56490422287344,
+ 45.520964825416655
+ ],
+ [
+ -73.56491511006612,
+ 45.52095324574599
+ ],
+ [
+ -73.56499696995604,
+ 45.52085724671486
+ ],
+ [
+ -73.56499506968856,
+ 45.52085644721756
+ ],
+ [
+ -73.56491417027458,
+ 45.52083674666882
+ ],
+ [
+ -73.56492121286553,
+ 45.52082239528761
+ ],
+ [
+ -73.5648221588374,
+ 45.52092775356327
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":625,
+ "ID_UEV":"01040059",
+ "CIVIQUE_DE":" 2162",
+ "CIVIQUE_FI":" 2164",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-73-2729-3-000-0000",
+ "SUPERFICIE":157,
+ "SUPERFIC_1":261,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000478033282044,
+ "OBJECTID":84872,
+ "Join_Count":1,
+ "TARGET_FID":84872,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":84872,
+ "Shape_Le_1":0.000478033282044,
+ "Shape_Ar_1":1.12645294859e-08,
+ "OBJECTID_3":84872,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84871,
+ "g_objectid":"941502",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565300",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994273272930000000",
+ "g_sup_tota":"156.7",
+ "g_geometry":"0.000604624",
+ "g_geomet_1":"1.80971e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000478033282044,
+ "Shape_Area":1.12645294859e-08,
+ "Shape_Le_3":0.000478031471617,
+ "Shape_Ar_2":1.12645294859e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":626,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56214130679771,
+ 45.52010430012365
+ ],
+ [
+ -73.56227839315517,
+ 45.520167384867214
+ ],
+ [
+ -73.56241093793628,
+ 45.5200262614531
+ ],
+ [
+ -73.56227157719337,
+ 45.5199655985838
+ ],
+ [
+ -73.56214130679771,
+ 45.52010430012365
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":626,
+ "ID_UEV":"01040063",
+ "CIVIQUE_DE":" 1879",
+ "CIVIQUE_FI":" 1889",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1962,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-92-3439-8-000-0000",
+ "SUPERFICIE":254,
+ "SUPERFIC_1":412,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000686788801697,
+ "OBJECTID":84873,
+ "Join_Count":1,
+ "TARGET_FID":84873,
+ "feature_id":"13b2e589-443f-49bd-9129-4ea33ba35f86",
+ "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.56,
+ "heightmax":15.08,
+ "elevmin":25.19,
+ "elevmax":25.98,
+ "bldgarea":1068.55,
+ "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_2":84873,
+ "Shape_Le_1":0.000686788801697,
+ "Shape_Ar_1":2.74698339917e-08,
+ "OBJECTID_3":84873,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84872,
+ "g_objectid":"941598",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565530",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994292453290000000",
+ "g_sup_tota":"254.4",
+ "g_geometry":"0.000711874",
+ "g_geomet_1":"2.93439e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000686788801697,
+ "Shape_Area":2.74698339917e-08,
+ "Shape_Le_3":0.000686789547613,
+ "Shape_Ar_2":2.74698339917e-08,
+ "building_height":6.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":627,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56193246443353,
+ 45.52000819317387
+ ],
+ [
+ -73.56200421954094,
+ 45.520041214480756
+ ],
+ [
+ -73.56212534293208,
+ 45.51991225259867
+ ],
+ [
+ -73.5621416692245,
+ 45.519893446875365
+ ],
+ [
+ -73.56213476872644,
+ 45.51989054656177
+ ],
+ [
+ -73.56206556679432,
+ 45.519866477106525
+ ],
+ [
+ -73.56193246443353,
+ 45.52000819317387
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":627,
+ "ID_UEV":"01040065",
+ "CIVIQUE_DE":" 1867",
+ "CIVIQUE_FI":" 1869",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-92-5327-3-000-0000",
+ "SUPERFICIE":127,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000555992044435,
+ "OBJECTID":84874,
+ "Join_Count":1,
+ "TARGET_FID":84874,
+ "feature_id":"de3eb166-1da9-40b2-969f-1380be198c8b",
+ "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.49,
+ "heightmax":13.11,
+ "elevmin":23.95,
+ "elevmax":25.63,
+ "bldgarea":2208.26,
+ "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_2":84874,
+ "Shape_Le_1":0.000555992044435,
+ "Shape_Ar_1":1.48618264064e-08,
+ "OBJECTID_3":84874,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84873,
+ "g_objectid":"941598",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565530",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994292453290000000",
+ "g_sup_tota":"254.4",
+ "g_geometry":"0.000711874",
+ "g_geomet_1":"2.93439e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000555992044435,
+ "Shape_Area":1.48618264064e-08,
+ "Shape_Le_3":0.000555991281212,
+ "Shape_Ar_2":1.48618264064e-08,
+ "building_height":5.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":628,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5555182172138,
+ 45.5221695581289
+ ],
+ [
+ -73.55543036693973,
+ 45.52213164810737
+ ],
+ [
+ -73.55541586717038,
+ 45.522125448181185
+ ],
+ [
+ -73.55529866752133,
+ 45.522260147737924
+ ],
+ [
+ -73.55539306755787,
+ 45.5223007476317
+ ],
+ [
+ -73.55537796614207,
+ 45.522318101849216
+ ],
+ [
+ -73.55545837542553,
+ 45.52223293874942
+ ],
+ [
+ -73.55551788716261,
+ 45.52216990796518
+ ],
+ [
+ -73.5555182172138,
+ 45.5221695581289
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55530597721092,
+ 45.522192703081075
+ ],
+ [
+ -73.55531446681104,
+ 45.522196147484514
+ ],
+ [
+ -73.55538906737341,
+ 45.522105347434135
+ ],
+ [
+ -73.55538862400763,
+ 45.52210516846905
+ ],
+ [
+ -73.55530896925538,
+ 45.52218953387019
+ ],
+ [
+ -73.55530597721092,
+ 45.522192703081075
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":628,
+ "ID_UEV":"01022036",
+ "CIVIQUE_DE":" 1579",
+ "CIVIQUE_FI":" 1579",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1962,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-44-7582-0-000-0000",
+ "SUPERFICIE":425,
+ "SUPERFIC_1":448,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00086759902362,
+ "OBJECTID":84888,
+ "Join_Count":2,
+ "TARGET_FID":84888,
+ "feature_id":"ab26122a-7286-4a28-a96c-a5cd28a212eb",
+ "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.51,
+ "heightmax":11.14,
+ "elevmin":24.79,
+ "elevmax":27.26,
+ "bldgarea":349.11,
+ "comment":" ",
+ "OBJECTID_2":84888,
+ "Shape_Le_1":0.00086759902362,
+ "Shape_Ar_1":1.8849507725e-08,
+ "OBJECTID_3":84888,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84887,
+ "g_objectid":"944775",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004244658880000000",
+ "g_sup_tota":"425.1",
+ "g_geometry":"0.00100637",
+ "g_geomet_1":"4.89696e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00086759902362,
+ "Shape_Area":1.8849507725e-08,
+ "Shape_Le_3":0.000867599185067,
+ "Shape_Ar_2":1.8849507725e-08,
+ "building_height":4.315
+ }
+ },
+ {
+ "type":"Feature",
+ "id":629,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55580516749633,
+ 45.51901794697097
+ ],
+ [
+ -73.55592326736674,
+ 45.51907104654186
+ ],
+ [
+ -73.55601776722801,
+ 45.51896694641774
+ ],
+ [
+ -73.55589976718235,
+ 45.518913946671596
+ ],
+ [
+ -73.55580516749633,
+ 45.51901794697097
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":629,
+ "ID_UEV":"01040732",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-41-2232-3-000-0000",
+ "SUPERFICIE":934,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000540028394919,
+ "OBJECTID":84900,
+ "Join_Count":1,
+ "TARGET_FID":84900,
+ "feature_id":"fbaef374-ef53-4ca7-af90-6252b1fb2d1e",
+ "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.91,
+ "heightmax":8.03,
+ "elevmin":21.65,
+ "elevmax":22.35,
+ "bldgarea":150.19,
+ "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_2":84900,
+ "Shape_Le_1":0.000540028394919,
+ "Shape_Ar_1":1.72989800021e-08,
+ "OBJECTID_3":84900,
+ "Join_Cou_1":1,
+ "TARGET_F_1":84899,
+ "g_objectid":"945615",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004241223230000000",
+ "g_sup_tota":"933.8",
+ "g_geometry":"0.00142276",
+ "g_geomet_1":"1.07989e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000540028394919,
+ "Shape_Area":1.72989800021e-08,
+ "Shape_Le_3":0.000540028047309,
+ "Shape_Ar_2":1.72989800021e-08,
+ "building_height":2.5599999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":630,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56245315211312,
+ 45.52953231761266
+ ],
+ [
+ -73.56252822751753,
+ 45.52956688485415
+ ],
+ [
+ -73.56268957218785,
+ 45.529398098293896
+ ],
+ [
+ -73.56265286995583,
+ 45.52938924896496
+ ],
+ [
+ -73.56265227010802,
+ 45.52939044866057
+ ],
+ [
+ -73.56261877036181,
+ 45.52945014925528
+ ],
+ [
+ -73.5625553699562,
+ 45.529432648448264
+ ],
+ [
+ -73.56254985981003,
+ 45.529431151077056
+ ],
+ [
+ -73.56245315211312,
+ 45.52953231761266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":630,
+ "ID_UEV":"01035062",
+ "CIVIQUE_DE":" 2372",
+ "CIVIQUE_FI":" 2374",
+ "NOM_RUE":"rue de Bordeaux (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\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-92-1285-5-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":175,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000635135900938,
+ "OBJECTID":84904,
+ "Join_Count":1,
+ "TARGET_FID":84904,
+ "feature_id":"4cc3b846-1df1-4ffc-a313-d7e103007b0e",
+ "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.87,
+ "heightmax":41.89,
+ "elevmin":28.59,
+ "elevmax":39.25,
+ "bldgarea":2781.7,
+ "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_2":84904,
+ "Shape_Le_1":0.000635135900938,
+ "Shape_Ar_1":1.3394347358e-08,
+ "OBJECTID_3":84904,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84903,
+ "g_objectid":"942900",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884752",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994392188110000000",
+ "g_sup_tota":"181.6",
+ "g_geometry":"0.000697215",
+ "g_geomet_1":"2.08073e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000635135900938,
+ "Shape_Area":1.3394347358e-08,
+ "Shape_Le_3":0.000635136217096,
+ "Shape_Ar_2":1.3394347358e-08,
+ "building_height":20.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":631,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56489536185332,
+ 45.51933705071461
+ ],
+ [
+ -73.56495707782872,
+ 45.51936622741975
+ ],
+ [
+ -73.56503503376165,
+ 45.51928185122675
+ ],
+ [
+ -73.56497068277264,
+ 45.519255738511816
+ ],
+ [
+ -73.56489536185332,
+ 45.51933705071461
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56504818184996,
+ 45.519267621254016
+ ],
+ [
+ -73.56504726993741,
+ 45.51926724713604
+ ],
+ [
+ -73.56503772633185,
+ 45.51927893922196
+ ],
+ [
+ -73.56504818184996,
+ 45.519267621254016
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56499504001093,
+ 45.519229445033154
+ ],
+ [
+ -73.56499777035266,
+ 45.51923084707623
+ ],
+ [
+ -73.56502326972996,
+ 45.51920634684573
+ ],
+ [
+ -73.5650186373221,
+ 45.51920397083688
+ ],
+ [
+ -73.56499504001093,
+ 45.519229445033154
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":631,
+ "ID_UEV":"01003778",
+ "CIVIQUE_DE":" 2080",
+ "CIVIQUE_FI":" 2080",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-2354-4-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":100,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000473275124031,
+ "OBJECTID":84910,
+ "Join_Count":2,
+ "TARGET_FID":84910,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":84910,
+ "Shape_Le_1":0.000473275124031,
+ "Shape_Ar_1":7.4860898405e-09,
+ "OBJECTID_3":84910,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84909,
+ "g_objectid":"943175",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161458",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271185770000000",
+ "g_sup_tota":"111.7",
+ "g_geometry":"0.000549496",
+ "g_geomet_1":"1.32834e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000473275124031,
+ "Shape_Area":7.4860898405e-09,
+ "Shape_Le_3":0.00047327398741,
+ "Shape_Ar_2":7.4860898405e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":632,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56495707782872,
+ 45.51936622741975
+ ],
+ [
+ -73.56501788009294,
+ 45.519394972450314
+ ],
+ [
+ -73.56511137451217,
+ 45.519293519030974
+ ],
+ [
+ -73.56504818184996,
+ 45.519267621254016
+ ],
+ [
+ -73.56503772633185,
+ 45.51927893922196
+ ],
+ [
+ -73.56503527028335,
+ 45.519281946554884
+ ],
+ [
+ -73.56503503376165,
+ 45.51928185122675
+ ],
+ [
+ -73.56495707782872,
+ 45.51936622741975
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":632,
+ "ID_UEV":"01003780",
+ "CIVIQUE_DE":" 2084",
+ "CIVIQUE_FI":" 2086",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-1857-7-000-0000",
+ "SUPERFICIE":112,
+ "SUPERFIC_1":110,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000407934560256,
+ "OBJECTID":84911,
+ "Join_Count":1,
+ "TARGET_FID":84911,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":84911,
+ "Shape_Le_1":0.000407934560256,
+ "Shape_Ar_1":8.7228925696e-09,
+ "OBJECTID_3":84911,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84910,
+ "g_objectid":"943175",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161458",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271185770000000",
+ "g_sup_tota":"111.7",
+ "g_geometry":"0.000549496",
+ "g_geomet_1":"1.32834e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000407934560256,
+ "Shape_Area":8.7228925696e-09,
+ "Shape_Le_3":0.00040793395402,
+ "Shape_Ar_2":8.7228925696e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":633,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58181125970371,
+ 45.49913186899086
+ ],
+ [
+ -73.58193892116613,
+ 45.49919214155438
+ ],
+ [
+ -73.58198885332476,
+ 45.499140000660795
+ ],
+ [
+ -73.58186122693591,
+ 45.49907974428507
+ ],
+ [
+ -73.58181125970371,
+ 45.49913186899086
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":633,
+ "ID_UEV":"01003533",
+ "CIVIQUE_DE":" 29",
+ "CIVIQUE_FI":" 29",
+ "NOM_RUE":"place Redpath (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-0015-7-000-0000",
+ "SUPERFICIE":102,
+ "SUPERFIC_1":175,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000426709476633,
+ "OBJECTID":84912,
+ "Join_Count":1,
+ "TARGET_FID":84912,
+ "feature_id":"66527640-51e2-4cd3-87cf-3c385b13a430",
+ "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.51,
+ "heightmax":77.55,
+ "elevmin":64.76,
+ "elevmax":67.3,
+ "bldgarea":668.67,
+ "comment":" ",
+ "OBJECTID_2":84912,
+ "Shape_Le_1":0.000426709476633,
+ "Shape_Ar_1":9.6646452052e-09,
+ "OBJECTID_3":84912,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84911,
+ "g_objectid":"945601",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983948279210000000",
+ "g_sup_tota":"1837.1",
+ "g_geometry":"0.007557",
+ "g_geomet_1":"2.09091e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000426709476633,
+ "Shape_Area":9.6646452052e-09,
+ "Shape_Le_3":0.000426709774674,
+ "Shape_Ar_2":9.6646452052e-09,
+ "building_height":37.519999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":634,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55776467692014,
+ 45.52586435260808
+ ],
+ [
+ -73.55775476818984,
+ 45.5258599477287
+ ],
+ [
+ -73.55771426812082,
+ 45.52584194779795
+ ],
+ [
+ -73.55762966799662,
+ 45.525936248009735
+ ],
+ [
+ -73.55762956817188,
+ 45.52593644765923
+ ],
+ [
+ -73.55765976830551,
+ 45.525949347534656
+ ],
+ [
+ -73.55767763333796,
+ 45.525957001664594
+ ],
+ [
+ -73.55776467692014,
+ 45.52586435260808
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55785646442614,
+ 45.52578544429311
+ ],
+ [
+ -73.55784646846159,
+ 45.52579624784885
+ ],
+ [
+ -73.55783246781598,
+ 45.52579004792267
+ ],
+ [
+ -73.55781666852627,
+ 45.525807848203925
+ ],
+ [
+ -73.55783666854926,
+ 45.525816048222346
+ ],
+ [
+ -73.55783706784825,
+ 45.525816048222346
+ ],
+ [
+ -73.55785416845696,
+ 45.525797148070225
+ ],
+ [
+ -73.55786820147816,
+ 45.525803433432
+ ],
+ [
+ -73.55787633854403,
+ 45.525794772061374
+ ],
+ [
+ -73.55785646442614,
+ 45.52578544429311
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":634,
+ "ID_UEV":"01034279",
+ "CIVIQUE_DE":" 1900",
+ "CIVIQUE_FI":" 1904",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-28-8983-2-000-0000",
+ "SUPERFICIE":145,
+ "SUPERFIC_1":162,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00051202379735,
+ "OBJECTID":84914,
+ "Join_Count":2,
+ "TARGET_FID":84914,
+ "feature_id":"e23eaef0-5277-4314-8abe-5fd5c3b1c1a6",
+ "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.15,
+ "heightmax":36.66,
+ "elevmin":23.71,
+ "elevmax":24.83,
+ "bldgarea":472.87,
+ "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_2":84914,
+ "Shape_Le_1":0.00051202379735,
+ "Shape_Ar_1":7.21087068509e-09,
+ "OBJECTID_3":84914,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84913,
+ "g_objectid":"942117",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567384",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004228829020000000",
+ "g_sup_tota":"262.1",
+ "g_geometry":"0.000767108",
+ "g_geomet_1":"3.01913e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00051202379735,
+ "Shape_Area":7.21087068509e-09,
+ "Shape_Le_3":0.000512022446203,
+ "Shape_Ar_2":7.21087068509e-09,
+ "building_height":17.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":635,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5583068808797,
+ 45.50213942674345
+ ],
+ [
+ -73.55840293476948,
+ 45.502184691420666
+ ],
+ [
+ -73.55852584781147,
+ 45.502237540080706
+ ],
+ [
+ -73.55853864786215,
+ 45.50223522072915
+ ],
+ [
+ -73.55854246638356,
+ 45.502230743904
+ ],
+ [
+ -73.5586092581326,
+ 45.502149698799855
+ ],
+ [
+ -73.55837967920068,
+ 45.50204408151944
+ ],
+ [
+ -73.5583068808797,
+ 45.50213942674345
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":635,
+ "ID_UEV":"01036616",
+ "CIVIQUE_DE":" 470",
+ "CIVIQUE_FI":" 470",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1948,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-22-3048-6-000-0000",
+ "SUPERFICIE":269,
+ "SUPERFIC_1":765,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000736559042829,
+ "OBJECTID":84921,
+ "Join_Count":1,
+ "TARGET_FID":84921,
+ "feature_id":"989d1ad8-4826-406b-a6ac-8ca27bc35bff",
+ "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.06,
+ "heightmax":29.05,
+ "elevmin":16.84,
+ "elevmax":18.52,
+ "bldgarea":2916.69,
+ "comment":" ",
+ "OBJECTID_2":84921,
+ "Shape_Le_1":0.000736559042829,
+ "Shape_Ar_1":2.92122679438e-08,
+ "OBJECTID_3":84921,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84920,
+ "g_objectid":"937955",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180631",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004022304860000000",
+ "g_sup_tota":"268.6",
+ "g_geometry":"0.000751178",
+ "g_geomet_1":"3.04903e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000736559042829,
+ "Shape_Area":2.92122679438e-08,
+ "Shape_Le_3":0.000736559771598,
+ "Shape_Ar_2":2.92122679438e-08,
+ "building_height":13.995000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":636,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56352899219108,
+ 45.52008585053187
+ ],
+ [
+ -73.56362391473372,
+ 45.52013143806571
+ ],
+ [
+ -73.56376604898581,
+ 45.51998080522028
+ ],
+ [
+ -73.56375027038052,
+ 45.5199734469673
+ ],
+ [
+ -73.56376186983627,
+ 45.519961047114926
+ ],
+ [
+ -73.56376147053729,
+ 45.519960846566114
+ ],
+ [
+ -73.56368134633891,
+ 45.51992438805036
+ ],
+ [
+ -73.56352899219108,
+ 45.52008585053187
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":636,
+ "ID_UEV":"01039999",
+ "CIVIQUE_DE":" 2027",
+ "CIVIQUE_FI":" 2027",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-82-2635-3-000-0000",
+ "SUPERFICIE":207,
+ "SUPERFIC_1":306,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000657269028998,
+ "OBJECTID":84922,
+ "Join_Count":1,
+ "TARGET_FID":84922,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":84922,
+ "Shape_Le_1":0.000657269028998,
+ "Shape_Ar_1":2.21039895292e-08,
+ "OBJECTID_3":84922,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84921,
+ "g_objectid":"941514",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565328",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994282365680000000",
+ "g_sup_tota":"355.5",
+ "g_geometry":"0.000839404",
+ "g_geomet_1":"4.12424e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000657269028998,
+ "Shape_Area":2.21039895292e-08,
+ "Shape_Le_3":0.000657267501505,
+ "Shape_Ar_2":2.21039895292e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":637,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56276878717163,
+ 45.51953087170266
+ ],
+ [
+ -73.56267546901952,
+ 45.519486347167486
+ ],
+ [
+ -73.56260126955479,
+ 45.51956324729632
+ ],
+ [
+ -73.56269635307608,
+ 45.51960861359694
+ ],
+ [
+ -73.56276878717163,
+ 45.51953087170266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":637,
+ "ID_UEV":"01040001",
+ "CIVIQUE_DE":" 1881",
+ "CIVIQUE_FI":" 1883",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-0583-8-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000421866047012,
+ "OBJECTID":84923,
+ "Join_Count":1,
+ "TARGET_FID":84923,
+ "feature_id":"a942a759-f854-422f-83ef-707895f06211",
+ "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":3.88,
+ "heightmax":7.9,
+ "elevmin":24.64,
+ "elevmax":25.39,
+ "bldgarea":93.79,
+ "comment":" ",
+ "OBJECTID_2":84923,
+ "Shape_Le_1":0.000421866047012,
+ "Shape_Ar_1":1.05790214038e-08,
+ "OBJECTID_3":84923,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84922,
+ "g_objectid":"941469",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565240",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994291058380000000",
+ "g_sup_tota":"285.1",
+ "g_geometry":"0.000759612",
+ "g_geomet_1":"3.28039e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000421866047012,
+ "Shape_Area":1.05790214038e-08,
+ "Shape_Le_3":0.000421864959709,
+ "Shape_Ar_2":1.05790214038e-08,
+ "building_height":2.0100000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":638,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55459361342636,
+ 45.51879487823134
+ ],
+ [
+ -73.5546211659559,
+ 45.51880654693489
+ ],
+ [
+ -73.5546213665047,
+ 45.51880634728539
+ ],
+ [
+ -73.5546808665506,
+ 45.51883774711463
+ ],
+ [
+ -73.55470016330374,
+ 45.51881965365439
+ ],
+ [
+ -73.55480783913231,
+ 45.51870034689379
+ ],
+ [
+ -73.55477196607522,
+ 45.51868144674167
+ ],
+ [
+ -73.55473416577098,
+ 45.518716647105876
+ ],
+ [
+ -73.55468684884084,
+ 45.51869157040994
+ ],
+ [
+ -73.55459361342636,
+ 45.51879487823134
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":638,
+ "ID_UEV":"01040473",
+ "CIVIQUE_DE":" 1278",
+ "CIVIQUE_FI":" 1284",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-2592-1-000-0000",
+ "SUPERFICIE":196,
+ "SUPERFIC_1":272,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000569555275341,
+ "OBJECTID":84932,
+ "Join_Count":1,
+ "TARGET_FID":84932,
+ "feature_id":"b35f7769-57de-4caa-995d-de306f41706a",
+ "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.5,
+ "heightmax":13.19,
+ "elevmin":19.52,
+ "elevmax":21.19,
+ "bldgarea":843.63,
+ "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_2":84932,
+ "Shape_Le_1":0.000569555275341,
+ "Shape_Ar_1":1.51402350844e-08,
+ "OBJECTID_3":84932,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84931,
+ "g_objectid":"941828",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566628",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004250259210000000",
+ "g_sup_tota":"196.2",
+ "g_geometry":"0.000672921",
+ "g_geomet_1":"2.2602e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000569555275341,
+ "Shape_Area":1.51402350844e-08,
+ "Shape_Le_3":0.000569555744316,
+ "Shape_Ar_2":1.51402350844e-08,
+ "building_height":5.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":639,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55486226610255,
+ 45.518913946671596
+ ],
+ [
+ -73.55497636578849,
+ 45.51880634728539
+ ],
+ [
+ -73.55493566606998,
+ 45.51878514666748
+ ],
+ [
+ -73.55490216632376,
+ 45.51876694708724
+ ],
+ [
+ -73.55491876601009,
+ 45.51875204711958
+ ],
+ [
+ -73.55491156603779,
+ 45.51874794711036
+ ],
+ [
+ -73.55491056599168,
+ 45.518748447133426
+ ],
+ [
+ -73.5548938664806,
+ 45.51875644660302
+ ],
+ [
+ -73.55487766609326,
+ 45.518739846916695
+ ],
+ [
+ -73.55488516643912,
+ 45.518736246930544
+ ],
+ [
+ -73.55488336599639,
+ 45.51873514705969
+ ],
+ [
+ -73.55484616643928,
+ 45.51871834682454
+ ],
+ [
+ -73.55472006619993,
+ 45.51885564722064
+ ],
+ [
+ -73.55473766593238,
+ 45.51886354686549
+ ],
+ [
+ -73.5548316657706,
+ 45.51890694724811
+ ],
+ [
+ -73.55483666600118,
+ 45.51890924681459
+ ],
+ [
+ -73.55484256645312,
+ 45.518903646736206
+ ],
+ [
+ -73.55486226610255,
+ 45.518913946671596
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55480783913231,
+ 45.51870034689379
+ ],
+ [
+ -73.55470016330374,
+ 45.51881965365439
+ ],
+ [
+ -73.5548203657891,
+ 45.51870694701829
+ ],
+ [
+ -73.55480783913231,
+ 45.51870034689379
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":639,
+ "ID_UEV":"01040474",
+ "CIVIQUE_DE":" 1290",
+ "CIVIQUE_FI":" 1290",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":17,
+ "ANNEE_CONS":1946,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-1399-2-000-0000",
+ "SUPERFICIE":478,
+ "SUPERFIC_1":418,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00105028050782,
+ "OBJECTID":84933,
+ "Join_Count":2,
+ "TARGET_FID":84933,
+ "feature_id":"b35f7769-57de-4caa-995d-de306f41706a",
+ "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.5,
+ "heightmax":13.19,
+ "elevmin":19.52,
+ "elevmax":21.19,
+ "bldgarea":843.63,
+ "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_2":84933,
+ "Shape_Le_1":0.00105028050782,
+ "Shape_Ar_1":2.6704270195e-08,
+ "OBJECTID_3":84933,
+ "Join_Cou_1":2,
+ "TARGET_F_1":84932,
+ "g_objectid":"941828",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566628",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004250259210000000",
+ "g_sup_tota":"196.2",
+ "g_geometry":"0.000672921",
+ "g_geomet_1":"2.2602e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00105028050782,
+ "Shape_Area":2.6704270195e-08,
+ "Shape_Le_3":0.00105027791772,
+ "Shape_Ar_2":2.6704270195e-08,
+ "building_height":5.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":640,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55507504479932,
+ 45.51876734368825
+ ],
+ [
+ -73.55507446743457,
+ 45.518768046958094
+ ],
+ [
+ -73.55506176720863,
+ 45.51878354677356
+ ],
+ [
+ -73.55504326725483,
+ 45.51880674658438
+ ],
+ [
+ -73.5549738656732,
+ 45.51889314715132
+ ],
+ [
+ -73.55493026654041,
+ 45.51894744641781
+ ],
+ [
+ -73.55496786629584,
+ 45.51896234728479
+ ],
+ [
+ -73.55495796655876,
+ 45.51897484696191
+ ],
+ [
+ -73.55496306571476,
+ 45.518976747229395
+ ],
+ [
+ -73.55502512343254,
+ 45.51899915383817
+ ],
+ [
+ -73.5551576655157,
+ 45.51885935872272
+ ],
+ [
+ -73.55519336950024,
+ 45.51882170141069
+ ],
+ [
+ -73.55507504479932,
+ 45.51876734368825
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":640,
+ "ID_UEV":"01040475",
+ "CIVIQUE_DE":" 1308",
+ "CIVIQUE_FI":" 1308",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":15,
+ "ANNEE_CONS":2003,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-0008-8-000-0000",
+ "SUPERFICIE":312,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000733637149556,
+ "OBJECTID":84934,
+ "Join_Count":1,
+ "TARGET_FID":84934,
+ "feature_id":"7e903a48-47cb-4954-9e18-aece249d480c",
+ "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.49,
+ "heightmax":16.36,
+ "elevmin":19.71,
+ "elevmax":21.7,
+ "bldgarea":1992.53,
+ "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_2":84934,
+ "Shape_Le_1":0.000733637149556,
+ "Shape_Ar_1":2.76468119741e-08,
+ "OBJECTID_3":84934,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84933,
+ "g_objectid":"941822",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566621",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"15",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251000880000000",
+ "g_sup_tota":"312.2",
+ "g_geometry":"0.00080891",
+ "g_geomet_1":"3.62976e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000733637149556,
+ "Shape_Area":2.76468119741e-08,
+ "Shape_Le_3":0.000733636868138,
+ "Shape_Ar_2":2.76468119741e-08,
+ "building_height":6.935
+ }
+ },
+ {
+ "type":"Feature",
+ "id":641,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56245688519894,
+ 45.522121861684866
+ ],
+ [
+ -73.56237706946803,
+ 45.522082647646364
+ ],
+ [
+ -73.56230766878573,
+ 45.52215624816262
+ ],
+ [
+ -73.56216278440682,
+ 45.52230994949487
+ ],
+ [
+ -73.56224246344078,
+ 45.52234722909164
+ ],
+ [
+ -73.56225046111173,
+ 45.52233918465594
+ ],
+ [
+ -73.56245688519894,
+ 45.522121861684866
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":641,
+ "ID_UEV":"01040514",
+ "CIVIQUE_DE":" 2020",
+ "CIVIQUE_FI":" 2022",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1972,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Centre r\u00c3\u00a9cr\u00c3\u00a9atif en g\u00c3\u00a9n\u00c3\u00a9ral (activit\u00c3\u00a9s r\u00c3\u00a9cr\u00c3\u00a9atives diversifi\u00c3\u00a9es pour tous groupes d'\u00c3\u00a2ge)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-94-3278-6-000-0000",
+ "SUPERFICIE":254,
+ "SUPERFIC_1":510,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000800359078973,
+ "OBJECTID":84941,
+ "Join_Count":1,
+ "TARGET_FID":84941,
+ "feature_id":"ff14fa4c-78c6-410d-8420-9ac5ba70ba5a",
+ "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":3.02,
+ "heightmax":10.71,
+ "elevmin":26.86,
+ "elevmax":27.39,
+ "bldgarea":242.43,
+ "comment":" ",
+ "OBJECTID_2":84941,
+ "Shape_Le_1":0.000800359078973,
+ "Shape_Ar_1":2.62884104318e-08,
+ "OBJECTID_3":84941,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84940,
+ "g_objectid":"938577",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"1565460",
+ "g_nb_poly_":"1",
+ "g_utilisat":"7424",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994294327860000000",
+ "g_sup_tota":"254.2",
+ "g_geometry":"0.000836301",
+ "g_geomet_1":"2.97132e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000800359078973,
+ "Shape_Area":2.62884104318e-08,
+ "Shape_Le_3":0.000800359185903,
+ "Shape_Ar_2":2.62884104318e-08,
+ "building_height":3.8450000000000006
+ }
+ },
+ {
+ "type":"Feature",
+ "id":642,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56247930529754,
+ 45.52232013521636
+ ],
+ [
+ -73.5624326691542,
+ 45.522300247608634
+ ],
+ [
+ -73.56236226932512,
+ 45.52227014819908
+ ],
+ [
+ -73.56228023586604,
+ 45.52236490166917
+ ],
+ [
+ -73.56238861856174,
+ 45.52241560994274
+ ],
+ [
+ -73.56247930529754,
+ 45.52232013521636
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56245688519894,
+ 45.522121861684866
+ ],
+ [
+ -73.56225046111173,
+ 45.52233918465594
+ ],
+ [
+ -73.56239736896525,
+ 45.5221914476275
+ ],
+ [
+ -73.56246336931089,
+ 45.522125047982875
+ ],
+ [
+ -73.56245688519894,
+ 45.522121861684866
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":642,
+ "ID_UEV":"01040515",
+ "CIVIQUE_DE":" 2026",
+ "CIVIQUE_FI":" 2034",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-94-2384-3-000-0000",
+ "SUPERFICIE":426,
+ "SUPERFIC_1":356,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00111285773033,
+ "OBJECTID":84942,
+ "Join_Count":2,
+ "TARGET_FID":84942,
+ "feature_id":"85ad9e29-e225-4c2e-8303-979e1cd58de1",
+ "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.76,
+ "heightmax":14.78,
+ "elevmin":26.91,
+ "elevmax":27.8,
+ "bldgarea":340.12,
+ "comment":" ",
+ "OBJECTID_2":84942,
+ "Shape_Le_1":0.00111285773033,
+ "Shape_Ar_1":1.6101840073e-08,
+ "OBJECTID_3":84942,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84941,
+ "g_objectid":"938577",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"1565460",
+ "g_nb_poly_":"1",
+ "g_utilisat":"7424",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994294327860000000",
+ "g_sup_tota":"254.2",
+ "g_geometry":"0.000836301",
+ "g_geomet_1":"2.97132e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00111285773033,
+ "Shape_Area":1.6101840073e-08,
+ "Shape_Le_3":0.00111285815636,
+ "Shape_Ar_2":1.6101840073e-08,
+ "building_height":6.01
+ }
+ },
+ {
+ "type":"Feature",
+ "id":643,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55831324628113,
+ 45.501736689646805
+ ],
+ [
+ -73.55848786314621,
+ 45.50181546126482
+ ],
+ [
+ -73.55848890186317,
+ 45.50181432542108
+ ],
+ [
+ -73.55856959083579,
+ 45.50185086217784
+ ],
+ [
+ -73.55855378435152,
+ 45.50186916787809
+ ],
+ [
+ -73.55876028218312,
+ 45.501958216049125
+ ],
+ [
+ -73.55895041055484,
+ 45.50170269167617
+ ],
+ [
+ -73.5588534888193,
+ 45.50165986775899
+ ],
+ [
+ -73.5584997413918,
+ 45.501515858420426
+ ],
+ [
+ -73.55840780819564,
+ 45.501621860610676
+ ],
+ [
+ -73.55831324628113,
+ 45.501736689646805
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":643,
+ "ID_UEV":"01036623",
+ "CIVIQUE_DE":" 372",
+ "CIVIQUE_FI":" 396",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-22-1502-4-000-0000",
+ "SUPERFICIE":1289,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00162620615245,
+ "OBJECTID":84954,
+ "Join_Count":1,
+ "TARGET_FID":84954,
+ "feature_id":"989d1ad8-4826-406b-a6ac-8ca27bc35bff",
+ "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.06,
+ "heightmax":29.05,
+ "elevmin":16.84,
+ "elevmax":18.52,
+ "bldgarea":2916.69,
+ "comment":" ",
+ "OBJECTID_2":84954,
+ "Shape_Le_1":0.00162620615245,
+ "Shape_Ar_1":1.46001166324e-07,
+ "OBJECTID_3":84954,
+ "Join_Cou_1":5,
+ "TARGET_F_1":84953,
+ "g_objectid":"944912",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1179773",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"23",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004022150240000000",
+ "g_sup_tota":"1288.9",
+ "g_geometry":"0.0016394",
+ "g_geomet_1":"1.48412e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00162620615245,
+ "Shape_Area":1.46001166324e-07,
+ "Shape_Le_3":0.00162620735502,
+ "Shape_Ar_2":1.46001166324e-07,
+ "building_height":13.995000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":644,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57416178645913,
+ 45.50006455768349
+ ],
+ [
+ -73.57417937180242,
+ 45.50007174326663
+ ],
+ [
+ -73.5741847722313,
+ 45.50006524296688
+ ],
+ [
+ -73.57420740996584,
+ 45.50009464270389
+ ],
+ [
+ -73.57439701133485,
+ 45.50018704444684
+ ],
+ [
+ -73.57464075728696,
+ 45.499937847703805
+ ],
+ [
+ -73.57459297181005,
+ 45.499914642497046
+ ],
+ [
+ -73.5745994721098,
+ 45.49990794254781
+ ],
+ [
+ -73.5745940716809,
+ 45.49990544243252
+ ],
+ [
+ -73.5744046249953,
+ 45.499816287242155
+ ],
+ [
+ -73.57416178645913,
+ 45.50006455768349
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":644,
+ "ID_UEV":"01037512",
+ "CIVIQUE_DE":" 1445",
+ "CIVIQUE_FI":" 1445",
+ "NOM_RUE":"rue Stanley (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":18,
+ "NOMBRE_LOG":82,
+ "ANNEE_CONS":2003,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-90-8610-9-000-0000",
+ "SUPERFICIE":814,
+ "SUPERFIC_1":9754,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00124912951989,
+ "OBJECTID":84972,
+ "Join_Count":1,
+ "TARGET_FID":84972,
+ "feature_id":"f5222acb-0847-49df-b513-f4d55084c967",
+ "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,
+ "heightmax":103.62,
+ "elevmin":39.15,
+ "elevmax":42.95,
+ "bldgarea":3575.43,
+ "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_2":84972,
+ "Shape_Le_1":0.00124912951989,
+ "Shape_Ar_1":8.95814243182e-08,
+ "OBJECTID_3":84972,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84971,
+ "g_objectid":"945004",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338916",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"44",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984090553100000000",
+ "g_sup_tota":"1819.9",
+ "g_geometry":"0.00193387",
+ "g_geomet_1":"2.09774e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00124912951989,
+ "Shape_Area":8.95814243182e-08,
+ "Shape_Le_3":0.0012491290449,
+ "Shape_Ar_2":8.95814243182e-08,
+ "building_height":51.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":645,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5744046249953,
+ 45.499816287242155
+ ],
+ [
+ -73.57407857129088,
+ 45.49966284311601
+ ],
+ [
+ -73.57407697139696,
+ 45.49966454283468
+ ],
+ [
+ -73.57381563290697,
+ 45.499931218801
+ ],
+ [
+ -73.57388284913603,
+ 45.49996388217772
+ ],
+ [
+ -73.57389107073817,
+ 45.49995394287046
+ ],
+ [
+ -73.57416178645913,
+ 45.50006455768349
+ ],
+ [
+ -73.5744046249953,
+ 45.499816287242155
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5737683384599,
+ 45.49990846505391
+ ],
+ [
+ -73.5737715409457,
+ 45.499910002894616
+ ],
+ [
+ -73.57377507078473,
+ 45.49990644247863
+ ],
+ [
+ -73.57376387152729,
+ 45.499901142773815
+ ],
+ [
+ -73.57403197112042,
+ 45.49962264252123
+ ],
+ [
+ -73.57402391589285,
+ 45.49961880781203
+ ],
+ [
+ -73.57394641591621,
+ 45.49969804078225
+ ],
+ [
+ -73.57381827871244,
+ 45.49982904322606
+ ],
+ [
+ -73.57374945809286,
+ 45.499899400787015
+ ],
+ [
+ -73.5737683384599,
+ 45.49990846505391
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":645,
+ "ID_UEV":"01037514",
+ "CIVIQUE_DE":" 1425",
+ "CIVIQUE_FI":" 1439",
+ "NOM_RUE":"rue Stanley (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":32,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-09-1094-3-000-0000",
+ "SUPERFICIE":1419,
+ "SUPERFIC_1":3380,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00229333346172,
+ "OBJECTID":84973,
+ "Join_Count":2,
+ "TARGET_FID":84973,
+ "feature_id":"f5222acb-0847-49df-b513-f4d55084c967",
+ "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,
+ "heightmax":103.62,
+ "elevmin":39.15,
+ "elevmax":42.95,
+ "bldgarea":3575.43,
+ "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_2":84973,
+ "Shape_Le_1":0.00229333346172,
+ "Shape_Ar_1":1.26431725742e-07,
+ "OBJECTID_3":84973,
+ "Join_Cou_1":6,
+ "TARGET_F_1":84972,
+ "g_objectid":"938121",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340074",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5002",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993909336220000000",
+ "g_sup_tota":"401.8",
+ "g_geometry":"0.00108439",
+ "g_geomet_1":"4.62387e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00229333346172,
+ "Shape_Area":1.26431725742e-07,
+ "Shape_Le_3":0.00229333263728,
+ "Shape_Ar_2":1.26431725742e-07,
+ "building_height":51.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":646,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5803056974718,
+ 45.49994650547714
+ ],
+ [
+ -73.58032586656734,
+ 45.499956184880325
+ ],
+ [
+ -73.58034721917068,
+ 45.499934886236304
+ ],
+ [
+ -73.58034483956455,
+ 45.499933744097305
+ ],
+ [
+ -73.58033317445827,
+ 45.49994204304115
+ ],
+ [
+ -73.5803197745598,
+ 45.499932743151874
+ ],
+ [
+ -73.58031817376656,
+ 45.49993434304579
+ ],
+ [
+ -73.5803056974718,
+ 45.49994650547714
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5803859044078,
+ 45.499904528721316
+ ],
+ [
+ -73.58040282785007,
+ 45.49991278359838
+ ],
+ [
+ -73.58042410850764,
+ 45.49989145347809
+ ],
+ [
+ -73.58041435625938,
+ 45.49988669696379
+ ],
+ [
+ -73.5804226623978,
+ 45.49987837193961
+ ],
+ [
+ -73.58040317408906,
+ 45.49989224308285
+ ],
+ [
+ -73.5803859044078,
+ 45.499904528721316
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.58052203838321,
+ 45.49974084221639
+ ],
+ [
+ -73.58049307391808,
+ 45.49977164309715
+ ],
+ [
+ -73.58046697379365,
+ 45.49979934311549
+ ],
+ [
+ -73.58046697379365,
+ 45.49979944294024
+ ],
+ [
+ -73.58049575569642,
+ 45.499819427674744
+ ],
+ [
+ -73.5805005077141,
+ 45.499814664865184
+ ],
+ [
+ -73.58047166555677,
+ 45.4998005958711
+ ],
+ [
+ -73.5805048847145,
+ 45.499767296673696
+ ],
+ [
+ -73.58051129418273,
+ 45.49977042271713
+ ],
+ [
+ -73.5805345614427,
+ 45.49974699178054
+ ],
+ [
+ -73.58052203838321,
+ 45.49974084221639
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":646,
+ "ID_UEV":"01036543",
+ "CIVIQUE_DE":" 5",
+ "CIVIQUE_FI":" 9",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres immeubles r\u00c3\u00a9sidentiels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-59-1795-2-000-0000",
+ "SUPERFICIE":433,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477607561015,
+ "OBJECTID":84974,
+ "Join_Count":1,
+ "TARGET_FID":84974,
+ "feature_id":"d79fc7c8-21a3-4cd9-bd24-5b7e771ed72e",
+ "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":73.97,
+ "elevmin":58.73,
+ "elevmax":62.67,
+ "bldgarea":1130.72,
+ "comment":" ",
+ "OBJECTID_2":84974,
+ "Shape_Le_1":0.000477607561015,
+ "Shape_Ar_1":1.67957871406e-09,
+ "OBJECTID_3":84974,
+ "Join_Cou_1":6,
+ "TARGET_F_1":84973,
+ "g_objectid":"939919",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340951",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1990",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983959179520000000",
+ "g_sup_tota":"433.3",
+ "g_geometry":"0.00228172",
+ "g_geomet_1":"4.99478e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477607561015,
+ "Shape_Area":1.67957871406e-09,
+ "Shape_Le_3":0.000477605496677,
+ "Shape_Ar_2":1.67957871406e-09,
+ "building_height":36.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":647,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55520606522957,
+ 45.49977584383042
+ ],
+ [
+ -73.55504747698133,
+ 45.50000268072943
+ ],
+ [
+ -73.55554978791423,
+ 45.500185046153256
+ ],
+ [
+ -73.5557638391517,
+ 45.50025804142577
+ ],
+ [
+ -73.55577665898747,
+ 45.50024374850049
+ ],
+ [
+ -73.55593266528213,
+ 45.50001964374186
+ ],
+ [
+ -73.55599986532337,
+ 45.49992314378835
+ ],
+ [
+ -73.55599346484837,
+ 45.49992094404663
+ ],
+ [
+ -73.55530316503089,
+ 45.499685143604786
+ ],
+ [
+ -73.55531004034793,
+ 45.49967524116974
+ ],
+ [
+ -73.55507209232505,
+ 45.499594276105256
+ ],
+ [
+ -73.55506506502257,
+ 45.499604443840305
+ ],
+ [
+ -73.55437606472545,
+ 45.49936844374898
+ ],
+ [
+ -73.55437336496067,
+ 45.499372344108686
+ ],
+ [
+ -73.55420816489674,
+ 45.49960954389563
+ ],
+ [
+ -73.55414496503995,
+ 45.49958774342991
+ ],
+ [
+ -73.55411306518765,
+ 45.49963374375257
+ ],
+ [
+ -73.55411906546435,
+ 45.4996357438448
+ ],
+ [
+ -73.55417226485999,
+ 45.49965294427825
+ ],
+ [
+ -73.55414916307527,
+ 45.499688203997714
+ ],
+ [
+ -73.55461629522769,
+ 45.49984613843883
+ ],
+ [
+ -73.55490087040069,
+ 45.49994945525345
+ ],
+ [
+ -73.55490136502782,
+ 45.49994874388971
+ ],
+ [
+ -73.55492916487091,
+ 45.499917244235725
+ ],
+ [
+ -73.55496116544727,
+ 45.49993184382983
+ ],
+ [
+ -73.55496426541036,
+ 45.49992724379756
+ ],
+ [
+ -73.55506456499953,
+ 45.49977804357215
+ ],
+ [
+ -73.55506456499953,
+ 45.499777943747404
+ ],
+ [
+ -73.55501576508733,
+ 45.49976104368751
+ ],
+ [
+ -73.5550444651518,
+ 45.499719943770685
+ ],
+ [
+ -73.55520606522957,
+ 45.49977584383042
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":647,
+ "ID_UEV":"01036544",
+ "CIVIQUE_DE":" 105",
+ "CIVIQUE_FI":" 105",
+ "NOM_RUE":"rue McGill (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":8,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services divers",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0039-49-9688-8-000-0000",
+ "SUPERFICIE":6216,
+ "SUPERFIC_1":37002,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00504059160802,
+ "OBJECTID":84975,
+ "Join_Count":1,
+ "TARGET_FID":84975,
+ "feature_id":"e06671f8-c679-4b1d-a040-a4de98382dae",
+ "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":46.53,
+ "elevmin":13.42,
+ "elevmax":14.01,
+ "bldgarea":5591.22,
+ "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_2":84975,
+ "Shape_Le_1":0.00504059160802,
+ "Shape_Ar_1":6.27785079316e-07,
+ "OBJECTID_3":84975,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84974,
+ "g_objectid":"938442",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1179974",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6999",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023003949968880000000",
+ "g_sup_tota":"6216.2",
+ "g_geometry":"0.00447588",
+ "g_geomet_1":"7.15686e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00504059160802,
+ "Shape_Area":6.27785079316e-07,
+ "Shape_Le_3":0.00504059187819,
+ "Shape_Ar_2":6.27785079316e-07,
+ "building_height":23.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":648,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58089812586965,
+ 45.49974777688869
+ ],
+ [
+ -73.58093947399936,
+ 45.49970244296367
+ ],
+ [
+ -73.58104177368075,
+ 45.49974844328632
+ ],
+ [
+ -73.58104697446015,
+ 45.49975084267754
+ ],
+ [
+ -73.58127601110088,
+ 45.49985737366915
+ ],
+ [
+ -73.58128064350873,
+ 45.49985265312773
+ ],
+ [
+ -73.58120278650124,
+ 45.49981660200488
+ ],
+ [
+ -73.58112297526694,
+ 45.499779647063356
+ ],
+ [
+ -73.58104316403264,
+ 45.499742691222515
+ ],
+ [
+ -73.58096335369765,
+ 45.499705734482355
+ ],
+ [
+ -73.58095900547556,
+ 45.4997102886492
+ ],
+ [
+ -73.58088396334608,
+ 45.49967553884534
+ ],
+ [
+ -73.58087977430398,
+ 45.499679942825395
+ ],
+ [
+ -73.58088467381049,
+ 45.49968224329119
+ ],
+ [
+ -73.58092007382419,
+ 45.49969754255784
+ ],
+ [
+ -73.58088250554503,
+ 45.49974054364147
+ ],
+ [
+ -73.58089812586965,
+ 45.49974777688869
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":648,
+ "ID_UEV":"01036545",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-49-6486-4-000-0000",
+ "SUPERFICIE":227,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100148419594,
+ "OBJECTID":84976,
+ "Join_Count":1,
+ "TARGET_FID":84976,
+ "feature_id":"dc4ee5d2-23ed-4f64-937a-8e4dc3b17398",
+ "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.38,
+ "heightmax":80.62,
+ "elevmin":61.34,
+ "elevmax":67.3,
+ "bldgarea":906.84,
+ "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_2":84976,
+ "Shape_Le_1":0.00100148419594,
+ "Shape_Ar_1":3.44852569333e-09,
+ "OBJECTID_3":84976,
+ "Join_Cou_1":8,
+ "TARGET_F_1":84975,
+ "g_objectid":"939898",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340926",
+ "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":"66023983949468790000000",
+ "g_sup_tota":"90.8",
+ "g_geometry":"0.000427458",
+ "g_geomet_1":"1.03992e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100148419594,
+ "Shape_Area":3.44852569333e-09,
+ "Shape_Le_3":0.00100148334419,
+ "Shape_Ar_2":3.44852569333e-09,
+ "building_height":39.120000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":649,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56253012868433,
+ 45.51516043815399
+ ],
+ [
+ -73.56253746895088,
+ 45.51516364603573
+ ],
+ [
+ -73.56261236898749,
+ 45.51507894608679
+ ],
+ [
+ -73.56269067115939,
+ 45.515113178780474
+ ],
+ [
+ -73.56284730428152,
+ 45.51494368445377
+ ],
+ [
+ -73.56279376943876,
+ 45.51492434543249
+ ],
+ [
+ -73.56279926879307,
+ 45.51491684598595
+ ],
+ [
+ -73.56276634551229,
+ 45.51490483014409
+ ],
+ [
+ -73.56253012868433,
+ 45.51516043815399
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":649,
+ "ID_UEV":"01002875",
+ "CIVIQUE_DE":" 1611",
+ "CIVIQUE_FI":" 1615",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-96-0182-0-000-0000",
+ "SUPERFICIE":290,
+ "SUPERFIC_1":502,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000886633212136,
+ "OBJECTID":84979,
+ "Join_Count":1,
+ "TARGET_FID":84979,
+ "feature_id":"c8f2a3f1-9997-466b-9b02-4a713e354e52",
+ "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":20.81,
+ "elevmin":26.07,
+ "elevmax":28.29,
+ "bldgarea":3514.43,
+ "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_2":84979,
+ "Shape_Le_1":0.000886633212136,
+ "Shape_Ar_1":2.05723889617e-08,
+ "OBJECTID_3":84979,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84978,
+ "g_objectid":"943251",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161604",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"17",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994186958640000000",
+ "g_sup_tota":"290.3",
+ "g_geometry":"0.000969139",
+ "g_geomet_1":"3.38372e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000886633212136,
+ "Shape_Area":2.05723889617e-08,
+ "Shape_Le_3":0.000886632623143,
+ "Shape_Ar_2":2.05723889617e-08,
+ "building_height":10.149999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":650,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56362381311033,
+ 45.52194496863569
+ ],
+ [
+ -73.5636524241419,
+ 45.52195822554197
+ ],
+ [
+ -73.56377278131066,
+ 45.52183260554061
+ ],
+ [
+ -73.56370937550912,
+ 45.52180255289579
+ ],
+ [
+ -73.56364510186181,
+ 45.52186963512585
+ ],
+ [
+ -73.56370496973041,
+ 45.52189574694146
+ ],
+ [
+ -73.56366026982744,
+ 45.521946347296385
+ ],
+ [
+ -73.56365887048233,
+ 45.52194584727333
+ ],
+ [
+ -73.56362381311033,
+ 45.52194496863569
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":650,
+ "ID_UEV":"01040301",
+ "CIVIQUE_DE":" 2109",
+ "CIVIQUE_FI":" 2109",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-2541-9-000-0000",
+ "SUPERFICIE":105,
+ "SUPERFIC_1":93,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000537961482207,
+ "OBJECTID":84986,
+ "Join_Count":1,
+ "TARGET_FID":84986,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":84986,
+ "Shape_Le_1":0.000537961482207,
+ "Shape_Ar_1":6.62446397614e-09,
+ "OBJECTID_3":84986,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84985,
+ "g_objectid":"941527",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565355",
+ "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":"66023994284303850000000",
+ "g_sup_tota":"122.1",
+ "g_geometry":"0.000527858",
+ "g_geomet_1":"1.41337e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000537961482207,
+ "Shape_Area":6.62446397614e-09,
+ "Shape_Le_3":0.000537961658071,
+ "Shape_Ar_2":6.62446397614e-09,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":651,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56477325730182,
+ 45.51927930344739
+ ],
+ [
+ -73.5648343680335,
+ 45.51930821485253
+ ],
+ [
+ -73.56490707012703,
+ 45.51922992706977
+ ],
+ [
+ -73.56484331628786,
+ 45.5192040571718
+ ],
+ [
+ -73.56477325730182,
+ 45.51927930344739
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":651,
+ "ID_UEV":"01003773",
+ "CIVIQUE_DE":" 2072",
+ "CIVIQUE_FI":" 2072",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-3348-5-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":99,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000346058984684,
+ "OBJECTID":84996,
+ "Join_Count":1,
+ "TARGET_FID":84996,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":84996,
+ "Shape_Le_1":0.000346058984684,
+ "Shape_Ar_1":6.74793452791e-09,
+ "OBJECTID_3":84996,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84995,
+ "g_objectid":"943228",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161553",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271374520000000",
+ "g_sup_tota":"113.5",
+ "g_geometry":"0.00055064",
+ "g_geomet_1":"1.33269e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000346058984684,
+ "Shape_Area":6.74793452791e-09,
+ "Shape_Le_3":0.000346058092791,
+ "Shape_Ar_2":6.74793452791e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":652,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5648343680335,
+ 45.51930821485253
+ ],
+ [
+ -73.56483507040402,
+ 45.51930854670236
+ ],
+ [
+ -73.56489536185332,
+ 45.51933705071461
+ ],
+ [
+ -73.56497068277264,
+ 45.519255738511816
+ ],
+ [
+ -73.56490707012703,
+ 45.51922992706977
+ ],
+ [
+ -73.5648343680335,
+ 45.51930821485253
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5650186373221,
+ 45.51920397083688
+ ],
+ [
+ -73.56496807024209,
+ 45.51917804697958
+ ],
+ [
+ -73.56494266979023,
+ 45.51920254721008
+ ],
+ [
+ -73.56499504001093,
+ 45.519229445033154
+ ],
+ [
+ -73.5650186373221,
+ 45.51920397083688
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":652,
+ "ID_UEV":"01003775",
+ "CIVIQUE_DE":" 2076",
+ "CIVIQUE_FI":" 2076",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-71-2851-9-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":107,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000539506495493,
+ "OBJECTID":84997,
+ "Join_Count":2,
+ "TARGET_FID":84997,
+ "feature_id":"8041f196-99e8-4a20-8e5c-8586a9d03ca9",
+ "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.92,
+ "heightmax":10.36,
+ "elevmin":26.93,
+ "elevmax":31.29,
+ "bldgarea":1063.17,
+ "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_2":84997,
+ "Shape_Le_1":0.000539506495493,
+ "Shape_Ar_1":8.92718638994e-09,
+ "OBJECTID_3":84997,
+ "Join_Cou_1":3,
+ "TARGET_F_1":84996,
+ "g_objectid":"943177",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161460",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994271235440000000",
+ "g_sup_tota":"113.2",
+ "g_geometry":"0.000551704",
+ "g_geomet_1":"1.34835e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000539506495493,
+ "Shape_Area":8.92718638994e-09,
+ "Shape_Le_3":0.000539506695935,
+ "Shape_Ar_2":8.92718638994e-09,
+ "building_height":4.72
+ }
+ },
+ {
+ "type":"Feature",
+ "id":653,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56642140254753,
+ 45.51680577841424
+ ],
+ [
+ -73.56648171198327,
+ 45.51683323741427
+ ],
+ [
+ -73.5665239702269,
+ 45.51678844578044
+ ],
+ [
+ -73.56654509350311,
+ 45.51679827267244
+ ],
+ [
+ -73.56666153142638,
+ 45.51667361494567
+ ],
+ [
+ -73.56663086994054,
+ 45.51666024562413
+ ],
+ [
+ -73.56659267033731,
+ 45.51664354611306
+ ],
+ [
+ -73.5665783513317,
+ 45.51663732909975
+ ],
+ [
+ -73.56642140254753,
+ 45.51680577841424
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":653,
+ "ID_UEV":"01002934",
+ "CIVIQUE_DE":" 2087",
+ "CIVIQUE_FI":" 2091",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1956,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-0070-6-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":287,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000642708920201,
+ "OBJECTID":84998,
+ "Join_Count":1,
+ "TARGET_FID":84998,
+ "feature_id":"feba66bf-63e7-4484-bda9-577283e9d533",
+ "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":14.22,
+ "elevmin":28.68,
+ "elevmax":38.91,
+ "bldgarea":1994.63,
+ "comment":" ",
+ "OBJECTID_2":84998,
+ "Shape_Le_1":0.000642708920201,
+ "Shape_Ar_1":1.83703124947e-08,
+ "OBJECTID_3":84998,
+ "Join_Cou_1":4,
+ "TARGET_F_1":84997,
+ "g_objectid":"938316",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161289",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168007060000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000682089",
+ "g_geomet_1":"2.144e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000642708920201,
+ "Shape_Area":1.83703124947e-08,
+ "Shape_Le_3":0.000642707636454,
+ "Shape_Ar_2":1.83703124947e-08,
+ "building_height":6.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":654,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55909502423782,
+ 45.5287137987531
+ ],
+ [
+ -73.55917214649921,
+ 45.528751144899715
+ ],
+ [
+ -73.5592987917277,
+ 45.52861797149249
+ ],
+ [
+ -73.55925536886203,
+ 45.52859644891728
+ ],
+ [
+ -73.55920556890372,
+ 45.528646149050836
+ ],
+ [
+ -73.55917986897762,
+ 45.52863334900015
+ ],
+ [
+ -73.55922726954469,
+ 45.52858614898189
+ ],
+ [
+ -73.55922966893591,
+ 45.528583648866594
+ ],
+ [
+ -73.55922217938192,
+ 45.52858009474587
+ ],
+ [
+ -73.55909502423782,
+ 45.5287137987531
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":654,
+ "ID_UEV":"01035222",
+ "CIVIQUE_DE":" 2102",
+ "CIVIQUE_FI":" 2106",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-7594-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":301,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00068016067542,
+ "OBJECTID":85002,
+ "Join_Count":1,
+ "TARGET_FID":85002,
+ "feature_id":"2b11867f-eeef-499d-b5ab-ed48a9024a42",
+ "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.46,
+ "heightmax":40.27,
+ "elevmin":24.62,
+ "elevmax":26.52,
+ "bldgarea":1384.11,
+ "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_2":85002,
+ "Shape_Le_1":0.00068016067542,
+ "Shape_Ar_1":1.31222534637e-08,
+ "OBJECTID_3":85002,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85001,
+ "g_objectid":"943014",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885691",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311759420000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000698871",
+ "g_geomet_1":"2.15019e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00068016067542,
+ "Shape_Area":1.31222534637e-08,
+ "Shape_Le_3":0.000680160280027,
+ "Shape_Ar_2":1.31222534637e-08,
+ "building_height":18.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":655,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56181321522955,
+ 45.53052346493625
+ ],
+ [
+ -73.56187096969134,
+ 45.53055154896511
+ ],
+ [
+ -73.5618710704154,
+ 45.53055154896511
+ ],
+ [
+ -73.56189136991263,
+ 45.530528849177344
+ ],
+ [
+ -73.5619157505333,
+ 45.530539591579185
+ ],
+ [
+ -73.56200485176434,
+ 45.530448214164046
+ ],
+ [
+ -73.56192426441511,
+ 45.53040957659098
+ ],
+ [
+ -73.56181321522955,
+ 45.53052346493625
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":655,
+ "ID_UEV":"01022417",
+ "CIVIQUE_DE":" 2347",
+ "CIVIQUE_FI":" 2349",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-6500-8-000-0000",
+ "SUPERFICIE":216,
+ "SUPERFIC_1":190,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000497483335611,
+ "OBJECTID":85006,
+ "Join_Count":1,
+ "TARGET_FID":85006,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":85006,
+ "Shape_Le_1":0.000497483335611,
+ "Shape_Ar_1":1.27264311959e-08,
+ "OBJECTID_3":85006,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85005,
+ "g_objectid":"940336",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423664",
+ "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":"66023994394650080000000",
+ "g_sup_tota":"216",
+ "g_geometry":"0.000764719",
+ "g_geomet_1":"2.47862e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000497483335611,
+ "Shape_Area":1.27264311959e-08,
+ "Shape_Le_3":0.000497482503909,
+ "Shape_Ar_2":1.27264311959e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":656,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.560171750148,
+ 45.51723460484343
+ ],
+ [
+ -73.56028734540651,
+ 45.51728772150144
+ ],
+ [
+ -73.5603577946983,
+ 45.517210297967175
+ ],
+ [
+ -73.560241253353,
+ 45.517157975410534
+ ],
+ [
+ -73.560171750148,
+ 45.51723460484343
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":656,
+ "ID_UEV":"01003681",
+ "CIVIQUE_DE":" 1588",
+ "CIVIQUE_FI":" 1592",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-8920-6-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":348,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000463095803633,
+ "OBJECTID":85011,
+ "Join_Count":1,
+ "TARGET_FID":85011,
+ "feature_id":"b1ff6390-35ed-470e-b971-30b44ef50fd5",
+ "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":40.83,
+ "elevmin":25.14,
+ "elevmax":28.12,
+ "bldgarea":1941.5,
+ "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_2":85011,
+ "Shape_Le_1":0.000463095803633,
+ "Shape_Ar_1":1.26294764053e-08,
+ "OBJECTID_3":85011,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85010,
+ "g_objectid":"943407",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161987",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109802620000000",
+ "g_sup_tota":"226.1",
+ "g_geometry":"0.000687446",
+ "g_geomet_1":"2.61542e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000463095803633,
+ "Shape_Area":1.26294764053e-08,
+ "Shape_Le_3":0.0004630951638,
+ "Shape_Ar_2":1.26294764053e-08,
+ "building_height":20.16
+ }
+ },
+ {
+ "type":"Feature",
+ "id":657,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56028734540651,
+ 45.51728772150144
+ ],
+ [
+ -73.56033396806002,
+ 45.51730914694987
+ ],
+ [
+ -73.56040160337314,
+ 45.51734019064757
+ ],
+ [
+ -73.56047341243988,
+ 45.51726220413771
+ ],
+ [
+ -73.5603577946983,
+ 45.517210297967175
+ ],
+ [
+ -73.56028734540651,
+ 45.51728772150144
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":657,
+ "ID_UEV":"01003683",
+ "CIVIQUE_DE":" 1596",
+ "CIVIQUE_FI":" 1600",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-09-8026-2-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":346,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000463154230346,
+ "OBJECTID":85012,
+ "Join_Count":1,
+ "TARGET_FID":85012,
+ "feature_id":"b1ff6390-35ed-470e-b971-30b44ef50fd5",
+ "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":40.83,
+ "elevmin":25.14,
+ "elevmax":28.12,
+ "bldgarea":1941.5,
+ "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_2":85012,
+ "Shape_Le_1":0.000463154230346,
+ "Shape_Ar_1":1.26442044192e-08,
+ "OBJECTID_3":85012,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85011,
+ "g_objectid":"943407",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161987",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004109802620000000",
+ "g_sup_tota":"226.1",
+ "g_geometry":"0.000687446",
+ "g_geomet_1":"2.61542e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000463154230346,
+ "Shape_Area":1.26442044192e-08,
+ "Shape_Le_3":0.00046315387102,
+ "Shape_Ar_2":1.26442044192e-08,
+ "building_height":20.16
+ }
+ },
+ {
+ "type":"Feature",
+ "id":658,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56892093597426,
+ 45.508328977450645
+ ],
+ [
+ -73.56904773498682,
+ 45.50839393548203
+ ],
+ [
+ -73.56913603402259,
+ 45.50829844816515
+ ],
+ [
+ -73.56908057013405,
+ 45.50827144512139
+ ],
+ [
+ -73.56912686993094,
+ 45.50822434492787
+ ],
+ [
+ -73.56912126985257,
+ 45.50822164516309
+ ],
+ [
+ -73.56908907052603,
+ 45.508207444867985
+ ],
+ [
+ -73.56908886997721,
+ 45.50820754469273
+ ],
+ [
+ -73.56904977015262,
+ 45.50824504462341
+ ],
+ [
+ -73.5690187705217,
+ 45.50822904478488
+ ],
+ [
+ -73.56901866979761,
+ 45.50822904478488
+ ],
+ [
+ -73.56892093597426,
+ 45.508328977450645
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56892093597426,
+ 45.508328977450645
+ ],
+ [
+ -73.56892087032375,
+ 45.50832894507505
+ ],
+ [
+ -73.56892087032375,
+ 45.508329044899796
+ ],
+ [
+ -73.56892093597426,
+ 45.508328977450645
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":658,
+ "ID_UEV":"01000548",
+ "CIVIQUE_DE":" 2020",
+ "CIVIQUE_FI":" 2026",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-49-0125-0-000-0000",
+ "SUPERFICIE":529,
+ "SUPERFIC_1":537,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000671102518898,
+ "OBJECTID":85015,
+ "Join_Count":1,
+ "TARGET_FID":85015,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":85015,
+ "Shape_Le_1":0.000671102518898,
+ "Shape_Ar_1":2.03870987318e-08,
+ "OBJECTID_3":85015,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85014,
+ "g_objectid":"939787",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340588",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039923000000000",
+ "g_sup_tota":"319.4",
+ "g_geometry":"0.00104227",
+ "g_geomet_1":"3.70787e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000671102518898,
+ "Shape_Area":2.03870987318e-08,
+ "Shape_Le_3":0.000671100961368,
+ "Shape_Ar_2":2.03870987318e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":659,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56904773498682,
+ 45.50839393548203
+ ],
+ [
+ -73.56905106967297,
+ 45.508395645093245
+ ],
+ [
+ -73.5690637698989,
+ 45.50840204466892
+ ],
+ [
+ -73.56905797017103,
+ 45.50840774457205
+ ],
+ [
+ -73.56912462342447,
+ 45.50843756519178
+ ],
+ [
+ -73.56923035401947,
+ 45.50832322358819
+ ],
+ [
+ -73.56916047040123,
+ 45.50828794498297
+ ],
+ [
+ -73.56916026985242,
+ 45.50828784515822
+ ],
+ [
+ -73.56914527006,
+ 45.50830294477537
+ ],
+ [
+ -73.56913603402259,
+ 45.50829844816515
+ ],
+ [
+ -73.56904773498682,
+ 45.50839393548203
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":659,
+ "ID_UEV":"01000549",
+ "CIVIQUE_DE":" 2028",
+ "CIVIQUE_FI":" 2030",
+ "NOM_RUE":"rue Jeanne-Mance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-39-9230-0-000-0000",
+ "SUPERFICIE":319,
+ "SUPERFIC_1":203,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000494974542187,
+ "OBJECTID":85016,
+ "Join_Count":1,
+ "TARGET_FID":85016,
+ "feature_id":"15d5f259-0b59-4867-9251-997578eb036d",
+ "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":16.69,
+ "elevmin":33.11,
+ "elevmax":38.01,
+ "bldgarea":1818.42,
+ "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_2":85016,
+ "Shape_Le_1":0.000494974542187,
+ "Shape_Ar_1":1.32346699319e-08,
+ "OBJECTID_3":85016,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85015,
+ "g_objectid":"939787",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340588",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994039923000000000",
+ "g_sup_tota":"319.4",
+ "g_geometry":"0.00104227",
+ "g_geomet_1":"3.70787e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000494974542187,
+ "Shape_Area":1.32346699319e-08,
+ "Shape_Le_3":0.000494973805234,
+ "Shape_Ar_2":1.32346699319e-08,
+ "building_height":8.085
+ }
+ },
+ {
+ "type":"Feature",
+ "id":660,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55809589722972,
+ 45.502498447795425
+ ],
+ [
+ -73.55829137746694,
+ 45.5025909079943
+ ],
+ [
+ -73.5583508883047,
+ 45.502509977104054
+ ],
+ [
+ -73.55826776576662,
+ 45.50247364359407
+ ],
+ [
+ -73.55817290977382,
+ 45.50243213898232
+ ],
+ [
+ -73.55810612252138,
+ 45.50248691309086
+ ],
+ [
+ -73.55809589722972,
+ 45.502498447795425
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":660,
+ "ID_UEV":"01036612",
+ "CIVIQUE_DE":" 284",
+ "CIVIQUE_FI":" 288",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1872,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-22-4988-2-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":538,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000612744838917,
+ "OBJECTID":85026,
+ "Join_Count":1,
+ "TARGET_FID":85026,
+ "feature_id":"fdda976c-2296-4ac2-99ef-130112017c9d",
+ "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.15,
+ "heightmax":17.89,
+ "elevmin":18.32,
+ "elevmax":19.19,
+ "bldgarea":360.34,
+ "comment":" ",
+ "OBJECTID_2":85026,
+ "Shape_Le_1":0.000612744838917,
+ "Shape_Ar_1":1.96628099472e-08,
+ "OBJECTID_3":85026,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85025,
+ "g_objectid":"939533",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180721",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004022498820000000",
+ "g_sup_tota":"183.6",
+ "g_geometry":"0.000634548",
+ "g_geomet_1":"2.11357e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000612744838917,
+ "Shape_Area":1.96628099472e-08,
+ "Shape_Le_3":0.00061274495221,
+ "Shape_Ar_2":1.96628099472e-08,
+ "building_height":8.370000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":661,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57283445007165,
+ 45.49945559075321
+ ],
+ [
+ -73.57315791732587,
+ 45.499612579107534
+ ],
+ [
+ -73.5732693604145,
+ 45.49949905768566
+ ],
+ [
+ -73.57294117531683,
+ 45.49933974818113
+ ],
+ [
+ -73.57281946376908,
+ 45.49928149189763
+ ],
+ [
+ -73.57281253809,
+ 45.49928838789908
+ ],
+ [
+ -73.57281957078841,
+ 45.49929174326963
+ ],
+ [
+ -73.57273853917408,
+ 45.49937527140195
+ ],
+ [
+ -73.5728512503068,
+ 45.49943030181727
+ ],
+ [
+ -73.57284535794875,
+ 45.49943630119464
+ ],
+ [
+ -73.5728506711434,
+ 45.49943884267874
+ ],
+ [
+ -73.57283445007165,
+ 45.49945559075321
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":661,
+ "ID_UEV":"01039189",
+ "CIVIQUE_DE":" 1120",
+ "CIVIQUE_FI":" 1120",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2015,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Vente au d\u00c3\u00a9tail de m\u00c3\u00a9dicaments et d'articles divers (pharmacie)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-09-9450-9-000-0000",
+ "SUPERFICIE":615,
+ "SUPERFIC_1":477,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00131535603207,
+ "OBJECTID":85061,
+ "Join_Count":1,
+ "TARGET_FID":85061,
+ "feature_id":"b785841f-86db-4c3e-9d29-fd04c448a308",
+ "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.51,
+ "heightmax":64.13,
+ "elevmin":36.16,
+ "elevmax":37.65,
+ "bldgarea":2960.95,
+ "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_2":85061,
+ "Shape_Le_1":0.00131535603207,
+ "Shape_Ar_1":7.02110920968e-08,
+ "OBJECTID_3":85061,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85060,
+ "g_objectid":"938383",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"5636739",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993909945090000000",
+ "g_sup_tota":"615.1",
+ "g_geometry":"0.00131825",
+ "g_geomet_1":"7.13201e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00131535603207,
+ "Shape_Area":7.02110920968e-08,
+ "Shape_Le_3":0.0013153569141,
+ "Shape_Ar_2":7.02110920968e-08,
+ "building_height":30.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":662,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55677366809215,
+ 45.537568523618766
+ ],
+ [
+ -73.55693041722682,
+ 45.537624018084266
+ ],
+ [
+ -73.5569706178216,
+ 45.53756154757765
+ ],
+ [
+ -73.55676595370764,
+ 45.5374890280465
+ ],
+ [
+ -73.55676276830896,
+ 45.53749395003606
+ ],
+ [
+ -73.55681176787064,
+ 45.53750954967627
+ ],
+ [
+ -73.55677366809215,
+ 45.537568523618766
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":662,
+ "ID_UEV":"01025905",
+ "CIVIQUE_DE":" 2756",
+ "CIVIQUE_FI":" 2760",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-31-6184-9-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":281,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000585199474747,
+ "OBJECTID":85074,
+ "Join_Count":1,
+ "TARGET_FID":85074,
+ "feature_id":"b8745b4a-f98c-4834-a9bb-88a651a5c214",
+ "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.57,
+ "heightmax":37.82,
+ "elevmin":24,
+ "elevmax":25.79,
+ "bldgarea":848.63,
+ "comment":" ",
+ "OBJECTID_2":85074,
+ "Shape_Le_1":0.000585199474747,
+ "Shape_Ar_1":1.2270365477e-08,
+ "OBJECTID_3":85074,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85073,
+ "g_objectid":"943962",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361168",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431649180000000",
+ "g_sup_tota":"141.4",
+ "g_geometry":"0.000602245",
+ "g_geomet_1":"1.63493e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000585199474747,
+ "Shape_Area":1.2270365477e-08,
+ "Shape_Le_3":0.000585198883561,
+ "Shape_Ar_2":1.2270365477e-08,
+ "building_height":18.625
+ }
+ },
+ {
+ "type":"Feature",
+ "id":663,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55814814244467,
+ 45.50193727443596
+ ],
+ [
+ -73.55812066455887,
+ 45.50197065906896
+ ],
+ [
+ -73.5580988703884,
+ 45.501999173873074
+ ],
+ [
+ -73.55810516654205,
+ 45.502001943784975
+ ],
+ [
+ -73.55807894770712,
+ 45.50203201621487
+ ],
+ [
+ -73.5583068808797,
+ 45.50213942674345
+ ],
+ [
+ -73.55837967920068,
+ 45.50204408151944
+ ],
+ [
+ -73.55814814244467,
+ 45.50193727443596
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":663,
+ "ID_UEV":"01036462",
+ "CIVIQUE_DE":" 450",
+ "CIVIQUE_FI":" 450",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-22-4936-1-000-0000",
+ "SUPERFICIE":258,
+ "SUPERFIC_1":1324,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000752819740879,
+ "OBJECTID":85083,
+ "Join_Count":1,
+ "TARGET_FID":85083,
+ "feature_id":"989d1ad8-4826-406b-a6ac-8ca27bc35bff",
+ "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.06,
+ "heightmax":29.05,
+ "elevmin":16.84,
+ "elevmax":18.52,
+ "bldgarea":2916.69,
+ "comment":" ",
+ "OBJECTID_2":85083,
+ "Shape_Le_1":0.000752819740879,
+ "Shape_Ar_1":2.95285372927e-08,
+ "OBJECTID_3":85083,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85082,
+ "g_objectid":"937955",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180631",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004022304860000000",
+ "g_sup_tota":"268.6",
+ "g_geometry":"0.000751178",
+ "g_geomet_1":"3.04903e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000752819740879,
+ "Shape_Area":2.95285372927e-08,
+ "Shape_Le_3":0.000752821224183,
+ "Shape_Ar_2":2.95285372927e-08,
+ "building_height":13.995000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":664,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55774647913854,
+ 45.50187551709173
+ ],
+ [
+ -73.5577508462464,
+ 45.501877573841256
+ ],
+ [
+ -73.55775096585623,
+ 45.50187744343956
+ ],
+ [
+ -73.55795456607221,
+ 45.50165544399384
+ ],
+ [
+ -73.55793488530855,
+ 45.50164652271914
+ ],
+ [
+ -73.55774647913854,
+ 45.50187551709173
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5580155508988,
+ 45.50161886676758
+ ],
+ [
+ -73.55801016575839,
+ 45.50162524386021
+ ],
+ [
+ -73.55800826639023,
+ 45.50162724395244
+ ],
+ [
+ -73.55816121588924,
+ 45.501697034041186
+ ],
+ [
+ -73.55816854626325,
+ 45.50168747514716
+ ],
+ [
+ -73.5580155508988,
+ 45.50161886676758
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":664,
+ "ID_UEV":"01036464",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres espaces de terrain et \u00c3\u00a9tendues d'eau inexploit\u00c3\u00a9s",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-22-6908-8-000-0000",
+ "SUPERFICIE":663,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000983321780097,
+ "OBJECTID":85084,
+ "Join_Count":1,
+ "TARGET_FID":85084,
+ "feature_id":"f3bd0cb9-76c9-48c0-8355-7e01fabbc3d8",
+ "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.93,
+ "heightmax":30.73,
+ "elevmin":14.11,
+ "elevmax":17.9,
+ "bldgarea":4762.26,
+ "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_2":85084,
+ "Shape_Le_1":0.000983321780097,
+ "Shape_Ar_1":5.66528923079e-09,
+ "OBJECTID_3":85084,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85083,
+ "g_objectid":"942319",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1692936",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004021859950000000",
+ "g_sup_tota":"645.8",
+ "g_geometry":"0.00114413",
+ "g_geomet_1":"7.4054e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000983321780097,
+ "Shape_Area":5.66528923079e-09,
+ "Shape_Le_3":0.000983321839189,
+ "Shape_Ar_2":5.66528923079e-09,
+ "building_height":14.9
+ }
+ },
+ {
+ "type":"Feature",
+ "id":665,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56022076769612,
+ 45.52776564891586
+ ],
+ [
+ -73.56030252955993,
+ 45.527803039129246
+ ],
+ [
+ -73.56030720603458,
+ 45.527798083864774
+ ],
+ [
+ -73.56039218117607,
+ 45.52770805003677
+ ],
+ [
+ -73.56039576137714,
+ 45.52770425669638
+ ],
+ [
+ -73.56037226928665,
+ 45.52769324899454
+ ],
+ [
+ -73.56031460745501,
+ 45.52766622166909
+ ],
+ [
+ -73.56022076769612,
+ 45.52776564891586
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":665,
+ "ID_UEV":"01034665",
+ "CIVIQUE_DE":" 2130",
+ "CIVIQUE_FI":" 2136",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-00-8689-2-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":253,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000452077674464,
+ "OBJECTID":85085,
+ "Join_Count":1,
+ "TARGET_FID":85085,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":85085,
+ "Shape_Le_1":0.000452077674464,
+ "Shape_Ar_1":1.16001885119e-08,
+ "OBJECTID_3":85085,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85084,
+ "g_objectid":"942859",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004300928580000000",
+ "g_sup_tota":"176.5",
+ "g_geometry":"0.000657017",
+ "g_geomet_1":"2.03306e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000452077674464,
+ "Shape_Area":1.16001885119e-08,
+ "Shape_Le_3":0.000452079379567,
+ "Shape_Ar_2":1.16001885119e-08,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":666,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55742808945661,
+ 45.50172555424123
+ ],
+ [
+ -73.557552299321,
+ 45.50178405873761
+ ],
+ [
+ -73.55774141955271,
+ 45.50155882083321
+ ],
+ [
+ -73.55763276616108,
+ 45.50150954428034
+ ],
+ [
+ -73.55767226618399,
+ 45.50146644427128
+ ],
+ [
+ -73.5577129659025,
+ 45.501484843501025
+ ],
+ [
+ -73.55772027289413,
+ 45.501476892594816
+ ],
+ [
+ -73.55766521999576,
+ 45.50145041295649
+ ],
+ [
+ -73.55762621010336,
+ 45.501494092128944
+ ],
+ [
+ -73.5576217899355,
+ 45.501492277297054
+ ],
+ [
+ -73.55742808945661,
+ 45.50172555424123
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":666,
+ "ID_UEV":"01036468",
+ "CIVIQUE_DE":" 432",
+ "CIVIQUE_FI":" 434",
+ "NOM_RUE":"rue Saint-Pierre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-21-9790-9-000-0000",
+ "SUPERFICIE":417,
+ "SUPERFIC_1":1377,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00109228197095,
+ "OBJECTID":85109,
+ "Join_Count":1,
+ "TARGET_FID":85109,
+ "feature_id":"f3bd0cb9-76c9-48c0-8355-7e01fabbc3d8",
+ "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.93,
+ "heightmax":30.73,
+ "elevmin":14.11,
+ "elevmax":17.9,
+ "bldgarea":4762.26,
+ "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_2":85109,
+ "Shape_Le_1":0.00109228197095,
+ "Shape_Ar_1":4.07694215261e-08,
+ "OBJECTID_3":85109,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85108,
+ "g_objectid":"944921",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1179850",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004031068340000000",
+ "g_sup_tota":"346.9",
+ "g_geometry":"0.000959032",
+ "g_geomet_1":"3.91403e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00109228197095,
+ "Shape_Area":4.07694215261e-08,
+ "Shape_Le_3":0.00109228077935,
+ "Shape_Ar_2":4.07694215261e-08,
+ "building_height":14.9
+ }
+ },
+ {
+ "type":"Feature",
+ "id":667,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56240670752538,
+ 45.51858597741122
+ ],
+ [
+ -73.5624431687391,
+ 45.51860124700024
+ ],
+ [
+ -73.56240046892835,
+ 45.51865164680635
+ ],
+ [
+ -73.56240886949557,
+ 45.51865514696775
+ ],
+ [
+ -73.56242756909889,
+ 45.518663346986166
+ ],
+ [
+ -73.56241666931568,
+ 45.518675446464975
+ ],
+ [
+ -73.56241126888679,
+ 45.51867264687545
+ ],
+ [
+ -73.56238966896989,
+ 45.51869244724894
+ ],
+ [
+ -73.5623973950456,
+ 45.51869661920391
+ ],
+ [
+ -73.56256777520451,
+ 45.51851268446311
+ ],
+ [
+ -73.56254356905231,
+ 45.51850204728195
+ ],
+ [
+ -73.5625318688725,
+ 45.51851524663162
+ ],
+ [
+ -73.56250006884494,
+ 45.51850144653483
+ ],
+ [
+ -73.56250796938912,
+ 45.51849254684386
+ ],
+ [
+ -73.56250706916775,
+ 45.51849214664555
+ ],
+ [
+ -73.56249743832797,
+ 45.51848802954922
+ ],
+ [
+ -73.56240670752538,
+ 45.51858597741122
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":667,
+ "ID_UEV":"01039897",
+ "CIVIQUE_DE":" 1807",
+ "CIVIQUE_FI":" 1809",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1890,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-90-2684-4-000-0000",
+ "SUPERFICIE":284,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00068189474421,
+ "OBJECTID":85120,
+ "Join_Count":1,
+ "TARGET_FID":85120,
+ "feature_id":"9c2c8643-67b3-42a8-9304-bd9bf9656b83",
+ "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.05,
+ "heightmax":19.73,
+ "elevmin":23.37,
+ "elevmax":26.44,
+ "bldgarea":3104.74,
+ "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_2":85120,
+ "Shape_Le_1":0.00068189474421,
+ "Shape_Ar_1":1.1061045023e-08,
+ "OBJECTID_3":85120,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85119,
+ "g_objectid":"943305",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161698",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994290268440000000",
+ "g_sup_tota":"284.2",
+ "g_geometry":"0.00110193",
+ "g_geomet_1":"3.27351e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00068189474421,
+ "Shape_Area":1.1061045023e-08,
+ "Shape_Le_3":0.000681894327694,
+ "Shape_Ar_2":1.1061045023e-08,
+ "building_height":9.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":668,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56227243694525,
+ 45.51852975089758
+ ],
+ [
+ -73.56240670752538,
+ 45.51858597741122
+ ],
+ [
+ -73.56249743832797,
+ 45.51848802954922
+ ],
+ [
+ -73.56245396869754,
+ 45.51846944685778
+ ],
+ [
+ -73.5623640068153,
+ 45.51843089741828
+ ],
+ [
+ -73.56227243694525,
+ 45.51852975089758
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":668,
+ "ID_UEV":"01039898",
+ "CIVIQUE_DE":" 1795",
+ "CIVIQUE_FI":" 1805",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-90-2870-9-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":404,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000558977000538,
+ "OBJECTID":85121,
+ "Join_Count":1,
+ "TARGET_FID":85121,
+ "feature_id":"9c2c8643-67b3-42a8-9304-bd9bf9656b83",
+ "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.05,
+ "heightmax":19.73,
+ "elevmin":23.37,
+ "elevmax":26.44,
+ "bldgarea":3104.74,
+ "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_2":85121,
+ "Shape_Le_1":0.000558977000538,
+ "Shape_Ar_1":1.83353595743e-08,
+ "OBJECTID_3":85121,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85120,
+ "g_objectid":"943305",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161698",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994290268440000000",
+ "g_sup_tota":"284.2",
+ "g_geometry":"0.00110193",
+ "g_geomet_1":"3.27351e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000558977000538,
+ "Shape_Area":1.83353595743e-08,
+ "Shape_Le_3":0.000558977898959,
+ "Shape_Ar_2":1.83353595743e-08,
+ "building_height":9.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":669,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56105108925821,
+ 45.52178142152568
+ ],
+ [
+ -73.56108806938074,
+ 45.52179844749065
+ ],
+ [
+ -73.56115256875789,
+ 45.52182804777648
+ ],
+ [
+ -73.56115266948196,
+ 45.52182804777648
+ ],
+ [
+ -73.56125596920945,
+ 45.52172064714045
+ ],
+ [
+ -73.56121556896518,
+ 45.52170144661476
+ ],
+ [
+ -73.56124646877136,
+ 45.521669347112976
+ ],
+ [
+ -73.56125046895582,
+ 45.52166524710377
+ ],
+ [
+ -73.56118382379627,
+ 45.52163345517012
+ ],
+ [
+ -73.56105108925821,
+ 45.52178142152568
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56122154226222,
+ 45.52159140826717
+ ],
+ [
+ -73.56120007904227,
+ 45.52161533473021
+ ],
+ [
+ -73.5612198695232,
+ 45.52159484727468
+ ],
+ [
+ -73.56122266911274,
+ 45.52159194696108
+ ],
+ [
+ -73.56122154226222,
+ 45.52159140826717
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":669,
+ "ID_UEV":"01040510",
+ "CIVIQUE_DE":" 1908",
+ "CIVIQUE_FI":" 1910",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-04-1721-4-000-0000",
+ "SUPERFICIE":390,
+ "SUPERFIC_1":278,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000694335596463,
+ "OBJECTID":85132,
+ "Join_Count":1,
+ "TARGET_FID":85132,
+ "feature_id":"95756c3e-4f2f-42b4-9a57-aa59db567fda",
+ "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.51,
+ "heightmax":12,
+ "elevmin":24.96,
+ "elevmax":26.31,
+ "bldgarea":830.05,
+ "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_2":85132,
+ "Shape_Le_1":0.000694335596463,
+ "Shape_Ar_1":1.97022830982e-08,
+ "OBJECTID_3":85132,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85131,
+ "g_objectid":"941618",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565570",
+ "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":"66023004204172140000000",
+ "g_sup_tota":"390.3",
+ "g_geometry":"0.000960936",
+ "g_geomet_1":"4.53925e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000694335596463,
+ "Shape_Area":1.97022830982e-08,
+ "Shape_Le_3":0.000694334297999,
+ "Shape_Ar_2":1.97022830982e-08,
+ "building_height":4.745
+ }
+ },
+ {
+ "type":"Feature",
+ "id":670,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55526502927952,
+ 45.518908686536946
+ ],
+ [
+ -73.55551101274489,
+ 45.51902170343916
+ ],
+ [
+ -73.55570852544993,
+ 45.51880761263151
+ ],
+ [
+ -73.55537076706909,
+ 45.5186546469447
+ ],
+ [
+ -73.55536566701376,
+ 45.5186523464789
+ ],
+ [
+ -73.55535966673708,
+ 45.518659546451204
+ ],
+ [
+ -73.55521266715272,
+ 45.51859984675582
+ ],
+ [
+ -73.55507504479932,
+ 45.51876734368825
+ ],
+ [
+ -73.55519336950024,
+ 45.51882170141069
+ ],
+ [
+ -73.5551576655157,
+ 45.51885935872272
+ ],
+ [
+ -73.55526502927952,
+ 45.518908686536946
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":670,
+ "ID_UEV":"01040727",
+ "CIVIQUE_DE":" 1250",
+ "CIVIQUE_FI":" 1260",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-40-7796-4-000-0000",
+ "SUPERFICIE":1543,
+ "SUPERFIC_1":3532,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00162343904895,
+ "OBJECTID":85133,
+ "Join_Count":1,
+ "TARGET_FID":85133,
+ "feature_id":"7e903a48-47cb-4954-9e18-aece249d480c",
+ "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.49,
+ "heightmax":16.36,
+ "elevmin":19.71,
+ "elevmax":21.7,
+ "bldgarea":1992.53,
+ "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_2":85133,
+ "Shape_Le_1":0.00162343904895,
+ "Shape_Ar_1":1.36135001234e-07,
+ "OBJECTID_3":85133,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85132,
+ "g_objectid":"941822",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566621",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"15",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251000880000000",
+ "g_sup_tota":"312.2",
+ "g_geometry":"0.00080891",
+ "g_geomet_1":"3.62976e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00162343904895,
+ "Shape_Area":1.36135001234e-07,
+ "Shape_Le_3":0.00162343959183,
+ "Shape_Ar_2":1.36135001234e-07,
+ "building_height":6.935
+ }
+ },
+ {
+ "type":"Feature",
+ "id":671,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55489214787617,
+ 45.51860692981625
+ ],
+ [
+ -73.55489556619926,
+ 45.51860824642373
+ ],
+ [
+ -73.55489566602401,
+ 45.51860814659898
+ ],
+ [
+ -73.5550080659913,
+ 45.51848514722206
+ ],
+ [
+ -73.55500380140616,
+ 45.518483214578985
+ ],
+ [
+ -73.55489214787617,
+ 45.51860692981625
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":671,
+ "ID_UEV":"01040728",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-0575-8-000-0000",
+ "SUPERFICIE":166,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000341756877467,
+ "OBJECTID":85134,
+ "Join_Count":1,
+ "TARGET_FID":85134,
+ "feature_id":"2883b520-5e1d-4f32-8758-d295f5aa89e3",
+ "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.54,
+ "heightmax":9.34,
+ "elevmin":20.17,
+ "elevmax":21.26,
+ "bldgarea":72.29,
+ "comment":" ",
+ "OBJECTID_2":85134,
+ "Shape_Le_1":0.000341756877467,
+ "Shape_Ar_1":6.56668185956e-10,
+ "OBJECTID_3":85134,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85133,
+ "g_objectid":"945328",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1566622",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004250057580000000",
+ "g_sup_tota":"165.6",
+ "g_geometry":"0.000655172",
+ "g_geomet_1":"1.92294e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000341756877467,
+ "Shape_Area":6.56668185956e-10,
+ "Shape_Le_3":0.000341756726705,
+ "Shape_Ar_2":6.56668185956e-10,
+ "building_height":3.4
+ }
+ },
+ {
+ "type":"Feature",
+ "id":672,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56646400613083,
+ 45.517394587940174
+ ],
+ [
+ -73.56689565733056,
+ 45.51759020487435
+ ],
+ [
+ -73.5669361699901,
+ 45.51754234655235
+ ],
+ [
+ -73.56697667005912,
+ 45.51749434703678
+ ],
+ [
+ -73.56684517029022,
+ 45.51743944702316
+ ],
+ [
+ -73.5668826702209,
+ 45.51739514641917
+ ],
+ [
+ -73.56688277004565,
+ 45.51739494676967
+ ],
+ [
+ -73.56686496976438,
+ 45.51738674675126
+ ],
+ [
+ -73.56688157035003,
+ 45.51736894647
+ ],
+ [
+ -73.56696086987009,
+ 45.517405447253886
+ ],
+ [
+ -73.56696614529322,
+ 45.51739978242431
+ ],
+ [
+ -73.56667660496319,
+ 45.51726710993947
+ ],
+ [
+ -73.56665227020795,
+ 45.51727374693617
+ ],
+ [
+ -73.56657966973782,
+ 45.51729374695915
+ ],
+ [
+ -73.5665099704806,
+ 45.51731304641026
+ ],
+ [
+ -73.56650967010704,
+ 45.51731284676077
+ ],
+ [
+ -73.56646400613083,
+ 45.517394587940174
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":672,
+ "ID_UEV":"01040554",
+ "CIVIQUE_DE":" 434",
+ "CIVIQUE_FI":" 438",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-59-8545-8-000-0000",
+ "SUPERFICIE":1015,
+ "SUPERFIC_1":2028,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00152448495506,
+ "OBJECTID":85135,
+ "Join_Count":1,
+ "TARGET_FID":85135,
+ "feature_id":"105c8f0b-945d-445c-9d89-75d990a3463e",
+ "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":53.18,
+ "elevmin":37.35,
+ "elevmax":40.93,
+ "bldgarea":3148.65,
+ "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_2":85135,
+ "Shape_Le_1":0.00152448495506,
+ "Shape_Ar_1":8.17931009642e-08,
+ "OBJECTID_3":85135,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85134,
+ "g_objectid":"938318",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161301",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994159803010000000",
+ "g_sup_tota":"492.9",
+ "g_geometry":"0.00134832",
+ "g_geomet_1":"5.67736e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00152448495506,
+ "Shape_Area":8.17931009642e-08,
+ "Shape_Le_3":0.00152448598891,
+ "Shape_Ar_2":8.17931009642e-08,
+ "building_height":26.33
+ }
+ },
+ {
+ "type":"Feature",
+ "id":673,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5644007401239,
+ 45.52073429949862
+ ],
+ [
+ -73.56457714753917,
+ 45.5208152807509
+ ],
+ [
+ -73.56465634813381,
+ 45.52073103855688
+ ],
+ [
+ -73.56458987024816,
+ 45.5207044465033
+ ],
+ [
+ -73.56454377010076,
+ 45.52068594654949
+ ],
+ [
+ -73.56454327007769,
+ 45.52068644657255
+ ],
+ [
+ -73.56448457042843,
+ 45.52065894710302
+ ],
+ [
+ -73.56455616995312,
+ 45.520583246669794
+ ],
+ [
+ -73.56454685387605,
+ 45.52057888675651
+ ],
+ [
+ -73.5644007401239,
+ 45.52073429949862
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":673,
+ "ID_UEV":"01040056",
+ "CIVIQUE_DE":" 2126",
+ "CIVIQUE_FI":" 2136",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-73-5509-6-000-0000",
+ "SUPERFICIE":373,
+ "SUPERFIC_1":418,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000824331577937,
+ "OBJECTID":85156,
+ "Join_Count":1,
+ "TARGET_FID":85156,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":85156,
+ "Shape_Le_1":0.000824331577937,
+ "Shape_Ar_1":2.14402220102e-08,
+ "OBJECTID_3":85156,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85155,
+ "g_objectid":"941505",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565314",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994273550960000000",
+ "g_sup_tota":"372.7",
+ "g_geometry":"0.000861463",
+ "g_geomet_1":"4.35832e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000824331577937,
+ "Shape_Area":2.14402220102e-08,
+ "Shape_Le_3":0.000824331111016,
+ "Shape_Ar_2":2.14402220102e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":674,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55917529592502,
+ 45.52799104779891
+ ],
+ [
+ -73.55926396907876,
+ 45.52803254881337
+ ],
+ [
+ -73.55930542332847,
+ 45.52805195978041
+ ],
+ [
+ -73.5593916889971,
+ 45.52795894829712
+ ],
+ [
+ -73.55936696933202,
+ 45.527945948596944
+ ],
+ [
+ -73.55938516891226,
+ 45.52792894871231
+ ],
+ [
+ -73.55937846896302,
+ 45.5279254485509
+ ],
+ [
+ -73.55932846935522,
+ 45.527899248601734
+ ],
+ [
+ -73.55931406941062,
+ 45.52791284904904
+ ],
+ [
+ -73.55927616928163,
+ 45.52789304867555
+ ],
+ [
+ -73.55926216953534,
+ 45.527906248924545
+ ],
+ [
+ -73.55925635182102,
+ 45.527903159753315
+ ],
+ [
+ -73.55917529592502,
+ 45.52799104779891
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":674,
+ "ID_UEV":"01034981",
+ "CIVIQUE_DE":" 2070",
+ "CIVIQUE_FI":" 2076",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-11-6615-6-000-0000",
+ "SUPERFICIE":308,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000595332357928,
+ "OBJECTID":85179,
+ "Join_Count":1,
+ "TARGET_FID":85179,
+ "feature_id":"79707d52-4887-4528-bf65-1f81c2073eda",
+ "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.48,
+ "heightmax":35.93,
+ "elevmin":24.91,
+ "elevmax":26.52,
+ "bldgarea":1051.26,
+ "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_2":85179,
+ "Shape_Le_1":0.000595332357928,
+ "Shape_Ar_1":1.94535961706e-08,
+ "OBJECTID_3":85179,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85178,
+ "g_objectid":"942881",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884727",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004311582030000000",
+ "g_sup_tota":"154.2",
+ "g_geometry":"0.000665002",
+ "g_geomet_1":"1.79267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000595332357928,
+ "Shape_Area":1.94535961706e-08,
+ "Shape_Le_3":0.000595332628525,
+ "Shape_Ar_2":1.94535961706e-08,
+ "building_height":16.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":675,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55432722614242,
+ 45.502045349563524
+ ],
+ [
+ -73.55445381741158,
+ 45.50206022794746
+ ],
+ [
+ -73.5544709629864,
+ 45.50193846963496
+ ],
+ [
+ -73.55430921182251,
+ 45.501920229585224
+ ],
+ [
+ -73.55429081529074,
+ 45.501918154849264
+ ],
+ [
+ -73.55426756511788,
+ 45.502029143780256
+ ],
+ [
+ -73.55425516526552,
+ 45.502027944084645
+ ],
+ [
+ -73.55425386484583,
+ 45.50203104404774
+ ],
+ [
+ -73.55432710653258,
+ 45.50204533067777
+ ],
+ [
+ -73.55432722614242,
+ 45.502045349563524
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55395229338548,
+ 45.50202219741677
+ ],
+ [
+ -73.55418452172015,
+ 45.502047068167954
+ ],
+ [
+ -73.55420112590308,
+ 45.50204141682822
+ ],
+ [
+ -73.55421099776119,
+ 45.5019091535349
+ ],
+ [
+ -73.55396280915816,
+ 45.50188116393486
+ ],
+ [
+ -73.55395229338548,
+ 45.50202219741677
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":675,
+ "ID_UEV":"01000002",
+ "CIVIQUE_DE":" 215",
+ "CIVIQUE_FI":" 217",
+ "NOM_RUE":"rue de la Commune Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-52-6329-4-000-0000",
+ "SUPERFICIE":598,
+ "SUPERFIC_1":1778,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00141059215226,
+ "OBJECTID":85180,
+ "Join_Count":2,
+ "TARGET_FID":85180,
+ "feature_id":"2ed97c45-03b8-4956-a1d9-14e26fec8b97",
+ "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.96,
+ "heightmax":17.93,
+ "elevmin":11.82,
+ "elevmax":14.21,
+ "bldgarea":1493.41,
+ "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_2":85180,
+ "Shape_Le_1":0.00141059215226,
+ "Shape_Ar_1":5.76704094441e-08,
+ "OBJECTID_3":85180,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85179,
+ "g_objectid":"945256",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1181255",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004052474530000000",
+ "g_sup_tota":"405.2",
+ "g_geometry":"0.00101058",
+ "g_geomet_1":"4.73586e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00141059215226,
+ "Shape_Area":5.76704094441e-08,
+ "Shape_Le_3":0.0014105909794,
+ "Shape_Ar_2":5.76704094441e-08,
+ "building_height":8.485
+ }
+ },
+ {
+ "type":"Feature",
+ "id":676,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5628237582317,
+ 45.5034249869239
+ ],
+ [
+ -73.56292456773646,
+ 45.50346814359025
+ ],
+ [
+ -73.56306866790655,
+ 45.50330274387682
+ ],
+ [
+ -73.56327136790115,
+ 45.50339014359055
+ ],
+ [
+ -73.56327216829777,
+ 45.503389244268504
+ ],
+ [
+ -73.56329723510116,
+ 45.50336305601052
+ ],
+ [
+ -73.56333463071049,
+ 45.50331360858646
+ ],
+ [
+ -73.56256726798688,
+ 45.50295054418256
+ ],
+ [
+ -73.56256696851263,
+ 45.50295074383206
+ ],
+ [
+ -73.5623956449649,
+ 45.503148647742194
+ ],
+ [
+ -73.56235526180774,
+ 45.503202896646656
+ ],
+ [
+ -73.5628237582317,
+ 45.5034249869239
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":676,
+ "ID_UEV":"01000003",
+ "CIVIQUE_DE":" 1015",
+ "CIVIQUE_FI":" 1015",
+ "NOM_RUE":"rue Saint-Alexandre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":11,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1861,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-83-8871-0-000-0000",
+ "SUPERFICIE":2502,
+ "SUPERFIC_1":22283,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00234635576529,
+ "OBJECTID":85181,
+ "Join_Count":1,
+ "TARGET_FID":85181,
+ "feature_id":"5a9f365a-6194-4484-9753-7c62aac25880",
+ "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":9.77,
+ "heightmax":51.88,
+ "elevmin":14.62,
+ "elevmax":19.38,
+ "bldgarea":1988.78,
+ "comment":" ",
+ "OBJECTID_2":85181,
+ "Shape_Le_1":0.00234635576529,
+ "Shape_Ar_1":2.23310406779e-07,
+ "OBJECTID_3":85181,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85180,
+ "g_objectid":"945182",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"6189522",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994083887100000000",
+ "g_sup_tota":"2502.4",
+ "g_geometry":"0.00241508",
+ "g_geomet_1":"2.89526e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00234635576529,
+ "Shape_Area":2.23310406779e-07,
+ "Shape_Le_3":0.00234635453905,
+ "Shape_Ar_2":2.23310406779e-07,
+ "building_height":21.055
+ }
+ },
+ {
+ "type":"Feature",
+ "id":677,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55429081529074,
+ 45.501918154849264
+ ],
+ [
+ -73.55430921182251,
+ 45.501920229585224
+ ],
+ [
+ -73.55431343683749,
+ 45.50189020392007
+ ],
+ [
+ -73.55431029730423,
+ 45.501889984485494
+ ],
+ [
+ -73.55430816501165,
+ 45.501899743928334
+ ],
+ [
+ -73.55429496476266,
+ 45.50189834368391
+ ],
+ [
+ -73.55429081529074,
+ 45.501918154849264
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55396280915816,
+ 45.50188116393486
+ ],
+ [
+ -73.55421099776119,
+ 45.5019091535349
+ ],
+ [
+ -73.55421966542707,
+ 45.501793043864176
+ ],
+ [
+ -73.55397006488843,
+ 45.50178384379965
+ ],
+ [
+ -73.55396280915816,
+ 45.50188116393486
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":677,
+ "ID_UEV":"01000004",
+ "CIVIQUE_DE":" 221",
+ "CIVIQUE_FI":" 221",
+ "NOM_RUE":"rue de la Commune Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1967,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-52-7014-1-000-0000",
+ "SUPERFICIE":378,
+ "SUPERFIC_1":1493,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000809042247348,
+ "OBJECTID":85182,
+ "Join_Count":2,
+ "TARGET_FID":85182,
+ "feature_id":"2ed97c45-03b8-4956-a1d9-14e26fec8b97",
+ "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.96,
+ "heightmax":17.93,
+ "elevmin":11.82,
+ "elevmax":14.21,
+ "bldgarea":1493.41,
+ "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_2":85182,
+ "Shape_Le_1":0.000809042247348,
+ "Shape_Ar_1":2.71043828329e-08,
+ "OBJECTID_3":85182,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85181,
+ "g_objectid":"939502",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180458",
+ "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":"66023004052491780000000",
+ "g_sup_tota":"187",
+ "g_geometry":"0.000612349",
+ "g_geomet_1":"2.13116e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000809042247348,
+ "Shape_Area":2.71043828329e-08,
+ "Shape_Le_3":0.000809041747192,
+ "Shape_Ar_2":2.71043828329e-08,
+ "building_height":8.485
+ }
+ },
+ {
+ "type":"Feature",
+ "id":678,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56525122268762,
+ 45.51628570317296
+ ],
+ [
+ -73.56543057897989,
+ 45.51636987072325
+ ],
+ [
+ -73.56561432486305,
+ 45.516456096821706
+ ],
+ [
+ -73.5656146702027,
+ 45.516455718207126
+ ],
+ [
+ -73.56561572151018,
+ 45.51645456527626
+ ],
+ [
+ -73.5657164923441,
+ 45.51634394326866
+ ],
+ [
+ -73.56571750947732,
+ 45.51634282721
+ ],
+ [
+ -73.5655329452111,
+ 45.516259865650575
+ ],
+ [
+ -73.56560501508123,
+ 45.51618075588747
+ ],
+ [
+ -73.56551807042446,
+ 45.5161431462395
+ ],
+ [
+ -73.5653442701438,
+ 45.51606804565408
+ ],
+ [
+ -73.5653440704943,
+ 45.51606824620289
+ ],
+ [
+ -73.56525211751305,
+ 45.51628333166072
+ ],
+ [
+ -73.56525122268762,
+ 45.51628570317296
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":678,
+ "ID_UEV":"01040598",
+ "CIVIQUE_DE":" 403",
+ "CIVIQUE_FI":" 415",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-68-8517-8-000-0000",
+ "SUPERFICIE":804,
+ "SUPERFIC_1":1500,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00138448220985,
+ "OBJECTID":85184,
+ "Join_Count":1,
+ "TARGET_FID":85184,
+ "feature_id":"38a5e889-9a8e-4542-a891-83e5040ba34b",
+ "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":15.27,
+ "elevmin":26.03,
+ "elevmax":29.22,
+ "bldgarea":973.3,
+ "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_2":85184,
+ "Shape_Le_1":0.00138448220985,
+ "Shape_Ar_1":8.72871825097e-08,
+ "OBJECTID_3":85184,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85183,
+ "g_objectid":"945147",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"2161378",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168896830000000",
+ "g_sup_tota":"3500",
+ "g_geometry":"0.00270209",
+ "g_geomet_1":"4.03347e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00138448220985,
+ "Shape_Area":8.72871825097e-08,
+ "Shape_Le_3":0.00138448299647,
+ "Shape_Ar_2":8.72871825097e-08,
+ "building_height":7.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":679,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56475297039512,
+ 45.517320946954435
+ ],
+ [
+ -73.56469139201597,
+ 45.517412776728555
+ ],
+ [
+ -73.56495543117006,
+ 45.517533739141044
+ ],
+ [
+ -73.56503450855757,
+ 45.51744616405952
+ ],
+ [
+ -73.5648204699106,
+ 45.51734984666838
+ ],
+ [
+ -73.56475386971717,
+ 45.517319747258824
+ ],
+ [
+ -73.56475297039512,
+ 45.517320946954435
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":679,
+ "ID_UEV":"01040599",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-79-3147-6-000-0000",
+ "SUPERFICIE":315,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000828283728245,
+ "OBJECTID":85185,
+ "Join_Count":1,
+ "TARGET_FID":85185,
+ "feature_id":"48f13026-84e2-4350-b1ab-4af9d53ce936",
+ "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.54,
+ "heightmax":33.03,
+ "elevmin":25.31,
+ "elevmax":27.69,
+ "bldgarea":482.04,
+ "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_2":85185,
+ "Shape_Le_1":0.000828283728245,
+ "Shape_Ar_1":3.33377418796e-08,
+ "OBJECTID_3":85185,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85184,
+ "g_objectid":"945475",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2161386",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994179314760000000",
+ "g_sup_tota":"314.8",
+ "g_geometry":"0.000853708",
+ "g_geomet_1":"3.62655e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000828283728245,
+ "Shape_Area":3.33377418796e-08,
+ "Shape_Le_3":0.000828284417229,
+ "Shape_Ar_2":3.33377418796e-08,
+ "building_height":16.245
+ }
+ },
+ {
+ "type":"Feature",
+ "id":680,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56463253768331,
+ 45.51786611777741
+ ],
+ [
+ -73.56466326571898,
+ 45.517879094095214
+ ],
+ [
+ -73.56470199951951,
+ 45.517835637954626
+ ],
+ [
+ -73.56468077012329,
+ 45.51782624723382
+ ],
+ [
+ -73.56472997023378,
+ 45.51777144704494
+ ],
+ [
+ -73.56475886994774,
+ 45.51778434692037
+ ],
+ [
+ -73.56475896977248,
+ 45.51778424709562
+ ],
+ [
+ -73.56476274152914,
+ 45.51778053559354
+ ],
+ [
+ -73.5645417079553,
+ 45.5176783357369
+ ],
+ [
+ -73.56450464869243,
+ 45.517739863754
+ ],
+ [
+ -73.56467931951683,
+ 45.51781363064483
+ ],
+ [
+ -73.56463253768331,
+ 45.51786611777741
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56485118535576,
+ 45.51770096178026
+ ],
+ [
+ -73.56489456325534,
+ 45.51772271817919
+ ],
+ [
+ -73.56490092685813,
+ 45.51771533564452
+ ],
+ [
+ -73.56485691673517,
+ 45.5176949507117
+ ],
+ [
+ -73.56485118535576,
+ 45.51770096178026
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":680,
+ "ID_UEV":"01040602",
+ "CIVIQUE_DE":" 539",
+ "CIVIQUE_FI":" 541",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Centre commercial r\u00c3\u00a9gional (100 \u00c3\u00a0 199 magasins)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-79-4487-5-000-0000",
+ "SUPERFICIE":227,
+ "SUPERFIC_1":322,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000915849947207,
+ "OBJECTID":85186,
+ "Join_Count":1,
+ "TARGET_FID":85186,
+ "feature_id":"02437dd3-64c3-49ff-b65a-5082346d0b17",
+ "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":19.57,
+ "elevmin":24.38,
+ "elevmax":38.3,
+ "bldgarea":3609.32,
+ "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_2":85186,
+ "Shape_Le_1":0.000915849947207,
+ "Shape_Ar_1":1.64914236747e-08,
+ "OBJECTID_3":85186,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85185,
+ "g_objectid":"943208",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161506",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994179558970000000",
+ "g_sup_tota":"114.8",
+ "g_geometry":"0.00051974",
+ "g_geomet_1":"1.30202e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000915849947207,
+ "Shape_Area":1.64914236747e-08,
+ "Shape_Le_3":0.000915853457692,
+ "Shape_Ar_2":1.64914236747e-08,
+ "building_height":9.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":681,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57136595609585,
+ 45.5009488736419
+ ],
+ [
+ -73.57168986491718,
+ 45.50110972908103
+ ],
+ [
+ -73.57175257194548,
+ 45.501046021107285
+ ],
+ [
+ -73.5714296200028,
+ 45.5008856405102
+ ],
+ [
+ -73.57136595609585,
+ 45.5009488736419
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":681,
+ "ID_UEV":"01039170",
+ "CIVIQUE_DE":" 960",
+ "CIVIQUE_FI":" 960",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-21-0821-3-000-0000",
+ "SUPERFICIE":270,
+ "SUPERFIC_1":937,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000901355349079,
+ "OBJECTID":85195,
+ "Join_Count":1,
+ "TARGET_FID":85195,
+ "feature_id":"11f566cc-d7b2-462d-b701-6e0cafbd581f",
+ "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":133.49,
+ "elevmin":34,
+ "elevmax":36.33,
+ "bldgarea":12074.39,
+ "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_2":85195,
+ "Shape_Le_1":0.000901355349079,
+ "Shape_Ar_1":3.06769926108e-08,
+ "OBJECTID_3":85195,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85194,
+ "g_objectid":"938247",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1341215",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994021122800000000",
+ "g_sup_tota":"250.6",
+ "g_geometry":"0.000903085",
+ "g_geomet_1":"2.90823e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000901355349079,
+ "Shape_Area":3.06769926108e-08,
+ "Shape_Le_3":0.000901355626551,
+ "Shape_Ar_2":3.06769926108e-08,
+ "building_height":66.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":682,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5714296200028,
+ 45.5008856405102
+ ],
+ [
+ -73.57175257194548,
+ 45.501046021107285
+ ],
+ [
+ -73.5718130639436,
+ 45.500984563237296
+ ],
+ [
+ -73.57149103650397,
+ 45.5008246430931
+ ],
+ [
+ -73.5714296200028,
+ 45.5008856405102
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":682,
+ "ID_UEV":"01039172",
+ "CIVIQUE_DE":" 962",
+ "CIVIQUE_FI":" 962",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-21-0314-9-000-0000",
+ "SUPERFICIE":260,
+ "SUPERFIC_1":829,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000892927479778,
+ "OBJECTID":85196,
+ "Join_Count":1,
+ "TARGET_FID":85196,
+ "feature_id":"11f566cc-d7b2-462d-b701-6e0cafbd581f",
+ "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":133.49,
+ "elevmin":34,
+ "elevmax":36.33,
+ "bldgarea":12074.39,
+ "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_2":85196,
+ "Shape_Le_1":0.000892927479778,
+ "Shape_Ar_1":2.95072008181e-08,
+ "OBJECTID_3":85196,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85195,
+ "g_objectid":"938143",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340240",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994021031490000000",
+ "g_sup_tota":"260.1",
+ "g_geometry":"0.000907627",
+ "g_geomet_1":"3.01172e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000892927479778,
+ "Shape_Area":2.95072008181e-08,
+ "Shape_Le_3":0.000892927107004,
+ "Shape_Ar_2":2.95072008181e-08,
+ "building_height":66.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":683,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56387576717476,
+ 45.520493305471966
+ ],
+ [
+ -73.56389821245439,
+ 45.52050360900465
+ ],
+ [
+ -73.56405328345411,
+ 45.52057062198691
+ ],
+ [
+ -73.56419009012241,
+ 45.52042510808257
+ ],
+ [
+ -73.56401867034721,
+ 45.52035804653691
+ ],
+ [
+ -73.56400716711892,
+ 45.52035354273211
+ ],
+ [
+ -73.56387576717476,
+ 45.520493305471966
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56417309743235,
+ 45.52038165194198
+ ],
+ [
+ -73.56416626977938,
+ 45.52038894724242
+ ],
+ [
+ -73.56417246970555,
+ 45.52039174683195
+ ],
+ [
+ -73.56420680132467,
+ 45.52040733388165
+ ],
+ [
+ -73.56421348868341,
+ 45.52040022024426
+ ],
+ [
+ -73.56417309743235,
+ 45.52038165194198
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":683,
+ "ID_UEV":"01040053",
+ "CIVIQUE_DE":" 2080",
+ "CIVIQUE_FI":" 2080",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":14,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-72-9682-9-000-0000",
+ "SUPERFICIE":373,
+ "SUPERFIC_1":869,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000890327797305,
+ "OBJECTID":85197,
+ "Join_Count":1,
+ "TARGET_FID":85197,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":85197,
+ "Shape_Le_1":0.000890327797305,
+ "Shape_Ar_1":3.6151539389e-08,
+ "OBJECTID_3":85197,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85196,
+ "g_objectid":"941510",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565320",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"14",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994272968290000000",
+ "g_sup_tota":"372.7",
+ "g_geometry":"0.000860471",
+ "g_geomet_1":"4.33749e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000890327797305,
+ "Shape_Area":3.6151539389e-08,
+ "Shape_Le_3":0.000890327628666,
+ "Shape_Ar_2":3.6151539389e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":684,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56100476787758,
+ 45.51850224693145
+ ],
+ [
+ -73.56100056804362,
+ 45.518506946788456
+ ],
+ [
+ -73.5611523691084,
+ 45.518573947180215
+ ],
+ [
+ -73.5612620693109,
+ 45.51845994641969
+ ],
+ [
+ -73.56127108231644,
+ 45.518450584477186
+ ],
+ [
+ -73.56111343026244,
+ 45.51837793544366
+ ],
+ [
+ -73.56100476787758,
+ 45.51850224693145
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56113796376786,
+ 45.5183498837904
+ ],
+ [
+ -73.561297330829,
+ 45.51842332152936
+ ],
+ [
+ -73.56142766867382,
+ 45.518287946581765
+ ],
+ [
+ -73.56150846916236,
+ 45.518203846480624
+ ],
+ [
+ -73.56151196932377,
+ 45.51820024649447
+ ],
+ [
+ -73.56150206868736,
+ 45.518195546637465
+ ],
+ [
+ -73.56154656894086,
+ 45.51814914701582
+ ],
+ [
+ -73.56140346881688,
+ 45.51808114657795
+ ],
+ [
+ -73.56139676886764,
+ 45.51807804661485
+ ],
+ [
+ -73.56128786906176,
+ 45.518192946697425
+ ],
+ [
+ -73.56127756912636,
+ 45.518203846480624
+ ],
+ [
+ -73.56124246948622,
+ 45.51824274665573
+ ],
+ [
+ -73.56123976882212,
+ 45.518241646784865
+ ],
+ [
+ -73.56118276889151,
+ 45.51831344685838
+ ],
+ [
+ -73.56117316952799,
+ 45.518309647222736
+ ],
+ [
+ -73.56117236913137,
+ 45.51831054654478
+ ],
+ [
+ -73.56113796376786,
+ 45.5183498837904
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56070906809086,
+ 45.518317746517084
+ ],
+ [
+ -73.56070536827997,
+ 45.5183216468768
+ ],
+ [
+ -73.56075936807223,
+ 45.5183467469551
+ ],
+ [
+ -73.56077576810905,
+ 45.51835444695046
+ ],
+ [
+ -73.56086846842692,
+ 45.51839854700564
+ ],
+ [
+ -73.56093776838514,
+ 45.51832634673381
+ ],
+ [
+ -73.56100256813586,
+ 45.518258947043066
+ ],
+ [
+ -73.56099426829269,
+ 45.518254946858605
+ ],
+ [
+ -73.56096366796075,
+ 45.51824094711232
+ ],
+ [
+ -73.5607750684365,
+ 45.51815454654538
+ ],
+ [
+ -73.56050976843291,
+ 45.518032946513564
+ ],
+ [
+ -73.56047436841921,
+ 45.51801674702555
+ ],
+ [
+ -73.56044016810112,
+ 45.518053647108424
+ ],
+ [
+ -73.56034606843815,
+ 45.51815584696506
+ ],
+ [
+ -73.56039016849333,
+ 45.51817464729243
+ ],
+ [
+ -73.56048016814708,
+ 45.51821314726923
+ ],
+ [
+ -73.56047426769514,
+ 45.518219947043214
+ ],
+ [
+ -73.56053896852043,
+ 45.51824804725987
+ ],
+ [
+ -73.56054046769027,
+ 45.51824874693242
+ ],
+ [
+ -73.56054716853885,
+ 45.51824174660961
+ ],
+ [
+ -73.56061456822958,
+ 45.51827404666022
+ ],
+ [
+ -73.5606089681512,
+ 45.51827984728742
+ ],
+ [
+ -73.56061436768077,
+ 45.5182825470522
+ ],
+ [
+ -73.56063876808652,
+ 45.51829414650795
+ ],
+ [
+ -73.56064516856152,
+ 45.51828744655871
+ ],
+ [
+ -73.56070906809086,
+ 45.518317746517084
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56063906846009,
+ 45.517693146671675
+ ],
+ [
+ -73.56054951397074,
+ 45.51778540092581
+ ],
+ [
+ -73.56084878676394,
+ 45.51792199175681
+ ],
+ [
+ -73.56094346828827,
+ 45.51783274663425
+ ],
+ [
+ -73.56087806779044,
+ 45.51779864704022
+ ],
+ [
+ -73.56086146810412,
+ 45.517790546846555
+ ],
+ [
+ -73.56074606799848,
+ 45.517735547008186
+ ],
+ [
+ -73.56073806852888,
+ 45.51773184719728
+ ],
+ [
+ -73.56064296792047,
+ 45.51768894683772
+ ],
+ [
+ -73.56063906846009,
+ 45.517693146671675
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":684,
+ "ID_UEV":"01040547",
+ "CIVIQUE_DE":" 920",
+ "CIVIQUE_FI":" 950",
+ "NOM_RUE":"rue Robin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":9,
+ "NOMBRE_LOG":145,
+ "ANNEE_CONS":1971,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-00-6130-1-000-0000",
+ "SUPERFICIE":6576,
+ "SUPERFIC_1":11828,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00430105471757,
+ "OBJECTID":85201,
+ "Join_Count":3,
+ "TARGET_FID":85201,
+ "feature_id":"a2762265-d21d-4a0b-9c47-b6947c2416bb",
+ "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.62,
+ "heightmax":31.66,
+ "elevmin":23.9,
+ "elevmax":27.05,
+ "bldgarea":902.81,
+ "comment":" ",
+ "OBJECTID_2":85201,
+ "Shape_Le_1":0.00430105471757,
+ "Shape_Ar_1":2.34737797146e-07,
+ "OBJECTID_3":85201,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85200,
+ "g_objectid":"944832",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"145",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004200613010000000",
+ "g_sup_tota":"6576.1",
+ "g_geometry":"0.00705847",
+ "g_geomet_1":"7.60317e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00430105471757,
+ "Shape_Area":2.34737797146e-07,
+ "Shape_Le_3":0.0043010573772,
+ "Shape_Ar_2":2.34737797146e-07,
+ "building_height":14.52
+ }
+ },
+ {
+ "type":"Feature",
+ "id":685,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56673611849891,
+ 45.51693381399461
+ ],
+ [
+ -73.56715656054868,
+ 45.51712521310839
+ ],
+ [
+ -73.56718117049647,
+ 45.5170966461436
+ ],
+ [
+ -73.56718416973548,
+ 45.517093145982194
+ ],
+ [
+ -73.56716647017831,
+ 45.51708514561327
+ ],
+ [
+ -73.56725988096058,
+ 45.51698297903155
+ ],
+ [
+ -73.56727989897,
+ 45.516938559717055
+ ],
+ [
+ -73.5669851704511,
+ 45.51680534584033
+ ],
+ [
+ -73.56690086980115,
+ 45.51676724606185
+ ],
+ [
+ -73.56676258644605,
+ 45.516905612154574
+ ],
+ [
+ -73.5667368397552,
+ 45.51693304417494
+ ],
+ [
+ -73.56673611849891,
+ 45.51693381399461
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":685,
+ "ID_UEV":"01040550",
+ "CIVIQUE_DE":" 400",
+ "CIVIQUE_FI":" 410",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":24,
+ "ANNEE_CONS":1908,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-58-6394-5-000-0000",
+ "SUPERFICIE":890,
+ "SUPERFIC_1":2989,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0013610962762,
+ "OBJECTID":85202,
+ "Join_Count":1,
+ "TARGET_FID":85202,
+ "feature_id":"105c8f0b-945d-445c-9d89-75d990a3463e",
+ "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":53.18,
+ "elevmin":37.35,
+ "elevmax":40.93,
+ "bldgarea":3148.65,
+ "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_2":85202,
+ "Shape_Le_1":0.0013610962762,
+ "Shape_Ar_1":9.67406989964e-08,
+ "OBJECTID_3":85202,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85201,
+ "g_objectid":"943108",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161283",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"24",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994158639450000000",
+ "g_sup_tota":"890",
+ "g_geometry":"0.00137895",
+ "g_geomet_1":"1.02816e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0013610962762,
+ "Shape_Area":9.67406989964e-08,
+ "Shape_Le_3":0.00136109498761,
+ "Shape_Ar_2":9.67406989964e-08,
+ "building_height":26.33
+ }
+ },
+ {
+ "type":"Feature",
+ "id":686,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55614187187173,
+ 45.5201997208907
+ ],
+ [
+ -73.55639229439072,
+ 45.520314145231914
+ ],
+ [
+ -73.55648113841565,
+ 45.52021898616757
+ ],
+ [
+ -73.55621877649719,
+ 45.5200989176812
+ ],
+ [
+ -73.55621298486321,
+ 45.5201051059162
+ ],
+ [
+ -73.55621586719036,
+ 45.52010644680537
+ ],
+ [
+ -73.5561451669877,
+ 45.520181846865036
+ ],
+ [
+ -73.5561423844853,
+ 45.52018055453926
+ ],
+ [
+ -73.55613367634993,
+ 45.52018986072379
+ ],
+ [
+ -73.55614486751347,
+ 45.52019764705406
+ ],
+ [
+ -73.55614187187173,
+ 45.5201997208907
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":686,
+ "ID_UEV":"01022328",
+ "CIVIQUE_DE":" 1320",
+ "CIVIQUE_FI":" 1320",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-42-0155-6-000-0000",
+ "SUPERFICIE":308,
+ "SUPERFIC_1":770,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000842147421493,
+ "OBJECTID":85211,
+ "Join_Count":1,
+ "TARGET_FID":85211,
+ "feature_id":"211958cf-542a-49df-b678-d8f003531624",
+ "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.51,
+ "heightmax":14.57,
+ "elevmin":22.45,
+ "elevmax":25.92,
+ "bldgarea":1418.25,
+ "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_2":85211,
+ "Shape_Le_1":0.000842147421493,
+ "Shape_Ar_1":3.53005286583e-08,
+ "OBJECTID_3":85211,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85210,
+ "g_objectid":"942140",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567444",
+ "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":"66023004242193840000000",
+ "g_sup_tota":"129.3",
+ "g_geometry":"0.000704666",
+ "g_geomet_1":"1.51624e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000842147421493,
+ "Shape_Area":3.53005286583e-08,
+ "Shape_Le_3":0.000842149934898,
+ "Shape_Ar_2":3.53005286583e-08,
+ "building_height":6.03
+ }
+ },
+ {
+ "type":"Feature",
+ "id":687,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55735256978711,
+ 45.51650715223359
+ ],
+ [
+ -73.55768778218724,
+ 45.51666023842955
+ ],
+ [
+ -73.55778354649532,
+ 45.516556795709846
+ ],
+ [
+ -73.5574478286762,
+ 45.51640348018675
+ ],
+ [
+ -73.55735256978711,
+ 45.51650715223359
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":687,
+ "ID_UEV":"01040713",
+ "CIVIQUE_DE":" 914",
+ "CIVIQUE_FI":" 916",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1934,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-38-0247-1-000-0000",
+ "SUPERFICIE":443,
+ "SUPERFIC_1":2239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00101933932307,
+ "OBJECTID":85214,
+ "Join_Count":1,
+ "TARGET_FID":85214,
+ "feature_id":"cfbd7540-b6e3-4630-a4f7-004326d9346b",
+ "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.54,
+ "heightmax":47,
+ "elevmin":20.15,
+ "elevmax":23.93,
+ "bldgarea":3749.21,
+ "comment":" ",
+ "OBJECTID_2":85214,
+ "Shape_Le_1":0.00101933932307,
+ "Shape_Ar_1":4.93723700138e-08,
+ "OBJECTID_3":85214,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85213,
+ "g_objectid":"943453",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162116",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004138024710000000",
+ "g_sup_tota":"443.1",
+ "g_geometry":"0.00104002",
+ "g_geomet_1":"5.07452e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00101933932307,
+ "Shape_Area":4.93723700138e-08,
+ "Shape_Le_3":0.00101933986311,
+ "Shape_Ar_2":4.93723700138e-08,
+ "building_height":23.23
+ }
+ },
+ {
+ "type":"Feature",
+ "id":688,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55721218381707,
+ 45.51658572510143
+ ],
+ [
+ -73.5573025449983,
+ 45.51662699319148
+ ],
+ [
+ -73.55730149818744,
+ 45.516628123639286
+ ],
+ [
+ -73.55759389386496,
+ 45.51676165677534
+ ],
+ [
+ -73.55768778218724,
+ 45.51666023842955
+ ],
+ [
+ -73.55735256978711,
+ 45.51650715223359
+ ],
+ [
+ -73.5573458671399,
+ 45.5165144466347
+ ],
+ [
+ -73.55734576731516,
+ 45.51651454645945
+ ],
+ [
+ -73.55738676740724,
+ 45.51653224691596
+ ],
+ [
+ -73.55734686718601,
+ 45.51657794686505
+ ],
+ [
+ -73.5572997669925,
+ 45.516557646468506
+ ],
+ [
+ -73.55726256743539,
+ 45.516544947141895
+ ],
+ [
+ -73.55723086723258,
+ 45.516591047289296
+ ],
+ [
+ -73.5572129149659,
+ 45.516584935496674
+ ],
+ [
+ -73.55721218381707,
+ 45.51658572510143
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55729281883038,
+ 45.51649862216398
+ ],
+ [
+ -73.55729576680804,
+ 45.51649974721585
+ ],
+ [
+ -73.55729946751826,
+ 45.51650144693453
+ ],
+ [
+ -73.55731157149367,
+ 45.51648843014723
+ ],
+ [
+ -73.55730502622782,
+ 45.51648544080075
+ ],
+ [
+ -73.55730467549222,
+ 45.516485815818044
+ ],
+ [
+ -73.55729281883038,
+ 45.51649862216398
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":688,
+ "ID_UEV":"01040714",
+ "CIVIQUE_DE":" 922",
+ "CIVIQUE_FI":" 928",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-38-1157-1-000-0000",
+ "SUPERFICIE":482,
+ "SUPERFIC_1":872,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00126116181691,
+ "OBJECTID":85215,
+ "Join_Count":2,
+ "TARGET_FID":85215,
+ "feature_id":"cfbd7540-b6e3-4630-a4f7-004326d9346b",
+ "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.54,
+ "heightmax":47,
+ "elevmin":20.15,
+ "elevmax":23.93,
+ "bldgarea":3749.21,
+ "comment":" ",
+ "OBJECTID_2":85215,
+ "Shape_Le_1":0.00126116181691,
+ "Shape_Ar_1":4.81215238199e-08,
+ "OBJECTID_3":85215,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85214,
+ "g_objectid":"938354",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2162118",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004138196400000000",
+ "g_sup_tota":"265",
+ "g_geometry":"0.00108914",
+ "g_geomet_1":"3.03472e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00126116181691,
+ "Shape_Area":4.81215238199e-08,
+ "Shape_Le_3":0.00126116345763,
+ "Shape_Ar_2":4.81215238199e-08,
+ "building_height":23.23
+ }
+ },
+ {
+ "type":"Feature",
+ "id":689,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55492170229657,
+ 45.52512644268148
+ ],
+ [
+ -73.55481366673918,
+ 45.52507104804073
+ ],
+ [
+ -73.55481346708967,
+ 45.52507094821598
+ ],
+ [
+ -73.5547926675694,
+ 45.52509474787461
+ ],
+ [
+ -73.55470626700246,
+ 45.525057247943934
+ ],
+ [
+ -73.55466081526626,
+ 45.525110164053125
+ ],
+ [
+ -73.55481647442261,
+ 45.52518255588055
+ ],
+ [
+ -73.55485541236924,
+ 45.52519864565127
+ ],
+ [
+ -73.55492170229657,
+ 45.52512644268148
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55458826515816,
+ 45.525076423288596
+ ],
+ [
+ -73.55458835149307,
+ 45.52507646285877
+ ],
+ [
+ -73.55468526693336,
+ 45.5249774475015
+ ],
+ [
+ -73.5546811354479,
+ 45.52497546269774
+ ],
+ [
+ -73.55458826515816,
+ 45.525076423288596
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":689,
+ "ID_UEV":"01034612",
+ "CIVIQUE_DE":" 1680",
+ "CIVIQUE_FI":" 1680",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-57-2197-4-000-0000",
+ "SUPERFICIE":398,
+ "SUPERFIC_1":565,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000909412693359,
+ "OBJECTID":85220,
+ "Join_Count":2,
+ "TARGET_FID":85220,
+ "feature_id":"66b89592-2232-4b52-a663-e04272421ab4",
+ "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.29,
+ "heightmax":35.8,
+ "elevmin":24.99,
+ "elevmax":26.11,
+ "bldgarea":368.69,
+ "comment":" ",
+ "OBJECTID_2":85220,
+ "Shape_Le_1":0.000909412693359,
+ "Shape_Ar_1":1.85096602815e-08,
+ "OBJECTID_3":85220,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85219,
+ "g_objectid":"941267",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425240",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257219740000000",
+ "g_sup_tota":"398.4",
+ "g_geometry":"0.000914473",
+ "g_geomet_1":"4.58567e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000909412693359,
+ "Shape_Area":1.85096602815e-08,
+ "Shape_Le_3":0.000909412394876,
+ "Shape_Ar_2":1.85096602815e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":690,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56718847748809,
+ 45.51202155420166
+ ],
+ [
+ -73.56718958635217,
+ 45.51202206951319
+ ],
+ [
+ -73.5673327701131,
+ 45.511876145517995
+ ],
+ [
+ -73.5673267248703,
+ 45.51187321462745
+ ],
+ [
+ -73.56730905678938,
+ 45.511892170537536
+ ],
+ [
+ -73.56718847748809,
+ 45.51202155420166
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":690,
+ "ID_UEV":"01020672",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Dominique (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-53-3942-5-000-0000",
+ "SUPERFICIE":264,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00041515386353,
+ "OBJECTID":85221,
+ "Join_Count":1,
+ "TARGET_FID":85221,
+ "feature_id":"b5328d34-31ff-42c5-b29a-48bf2dbdb909",
+ "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.66,
+ "heightmax":16.32,
+ "elevmin":24.57,
+ "elevmax":30.55,
+ "bldgarea":1907.72,
+ "comment":" ",
+ "OBJECTID_2":85221,
+ "Shape_Le_1":0.00041515386353,
+ "Shape_Ar_1":7.68925584791e-10,
+ "OBJECTID_3":85221,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85220,
+ "g_objectid":"945470",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2161223",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994153394250000000",
+ "g_sup_tota":"264.2",
+ "g_geometry":"0.000721689",
+ "g_geomet_1":"3.04704e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00041515386353,
+ "Shape_Area":7.68925584791e-10,
+ "Shape_Le_3":0.000415153448716,
+ "Shape_Ar_2":7.68925584791e-10,
+ "building_height":7.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":691,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55457009435621,
+ 45.518135911693264
+ ],
+ [
+ -73.55474252227143,
+ 45.51821867809981
+ ],
+ [
+ -73.55485411914412,
+ 45.518097983685294
+ ],
+ [
+ -73.5547213657203,
+ 45.518039046615
+ ],
+ [
+ -73.55467755524683,
+ 45.51801958348728
+ ],
+ [
+ -73.55457009435621,
+ 45.518135911693264
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":691,
+ "ID_UEV":"01040360",
+ "CIVIQUE_DE":" 1240",
+ "CIVIQUE_FI":" 1240",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":24,
+ "ANNEE_CONS":1964,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-2422-1-000-0000",
+ "SUPERFICIE":368,
+ "SUPERFIC_1":963,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000707198061382,
+ "OBJECTID":85238,
+ "Join_Count":1,
+ "TARGET_FID":85238,
+ "feature_id":"1efe8ed3-0696-41c8-bbfe-c2ee261ba8ec",
+ "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.95,
+ "heightmax":17.26,
+ "elevmin":19.7,
+ "elevmax":22.3,
+ "bldgarea":4107.29,
+ "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_2":85238,
+ "Shape_Le_1":0.000707198061382,
+ "Shape_Ar_1":2.9505029493e-08,
+ "OBJECTID_3":85238,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85237,
+ "g_objectid":"941827",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566627",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"24",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004250242210000000",
+ "g_sup_tota":"367.8",
+ "g_geometry":"0.000847946",
+ "g_geomet_1":"4.23449e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000707198061382,
+ "Shape_Area":2.9505029493e-08,
+ "Shape_Le_3":0.000707198442485,
+ "Shape_Ar_2":2.9505029493e-08,
+ "building_height":8.155000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":692,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5619286324223,
+ 45.52209758898284
+ ],
+ [
+ -73.56214499491743,
+ 45.522190658022744
+ ],
+ [
+ -73.56214536903539,
+ 45.52219044758139
+ ],
+ [
+ -73.5621385692614,
+ 45.522184048005705
+ ],
+ [
+ -73.5621801692013,
+ 45.5221626477383
+ ],
+ [
+ -73.5621805693996,
+ 45.52216294811186
+ ],
+ [
+ -73.56224298414824,
+ 45.522119619675
+ ],
+ [
+ -73.56198245684675,
+ 45.52201167225117
+ ],
+ [
+ -73.56196386875938,
+ 45.522041348080045
+ ],
+ [
+ -73.5619286324223,
+ 45.52209758898284
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":692,
+ "ID_UEV":"01040626",
+ "CIVIQUE_DE":" 1277",
+ "CIVIQUE_FI":" 1283",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-94-4768-5-000-0000",
+ "SUPERFICIE":308,
+ "SUPERFIC_1":449,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000751949613246,
+ "OBJECTID":85242,
+ "Join_Count":1,
+ "TARGET_FID":85242,
+ "feature_id":"dd03c7d1-17bd-4640-9f1a-bcf931ff5316",
+ "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.91,
+ "heightmax":12.93,
+ "elevmin":26.35,
+ "elevmax":27.26,
+ "bldgarea":1615.78,
+ "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_2":85242,
+ "Shape_Le_1":0.000751949613246,
+ "Shape_Ar_1":2.6032425253e-08,
+ "OBJECTID_3":85242,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85241,
+ "g_objectid":"941622",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565583",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994294476850000000",
+ "g_sup_tota":"308.3",
+ "g_geometry":"0.000903924",
+ "g_geomet_1":"3.53659e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000751949613246,
+ "Shape_Area":2.6032425253e-08,
+ "Shape_Le_3":0.00075194904816,
+ "Shape_Ar_2":2.6032425253e-08,
+ "building_height":5.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":693,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56155411785011,
+ 45.52183806442543
+ ],
+ [
+ -73.56177083647677,
+ 45.521923807587946
+ ],
+ [
+ -73.56184933110359,
+ 45.52179024027766
+ ],
+ [
+ -73.56163803089225,
+ 45.5217052624382
+ ],
+ [
+ -73.56159656944797,
+ 45.521761346858966
+ ],
+ [
+ -73.5615816694803,
+ 45.521755746780585
+ ],
+ [
+ -73.56156976875167,
+ 45.52177044709875
+ ],
+ [
+ -73.56150306873349,
+ 45.52174354657771
+ ],
+ [
+ -73.56146116931936,
+ 45.52179484660518
+ ],
+ [
+ -73.5614229688168,
+ 45.52177934678972
+ ],
+ [
+ -73.56141818981945,
+ 45.521784284967076
+ ],
+ [
+ -73.56155411785011,
+ 45.52183806442543
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56148128355623,
+ 45.521705698609395
+ ],
+ [
+ -73.5614853691763,
+ 45.5217075467162
+ ],
+ [
+ -73.56148876951295,
+ 45.52170374708056
+ ],
+ [
+ -73.56152086901474,
+ 45.52166624714988
+ ],
+ [
+ -73.56151885273471,
+ 45.52166539369326
+ ],
+ [
+ -73.56148128355623,
+ 45.521705698609395
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":693,
+ "ID_UEV":"01040629",
+ "CIVIQUE_DE":" 1272",
+ "CIVIQUE_FI":" 1282",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-94-8431-6-000-0000",
+ "SUPERFICIE":497,
+ "SUPERFIC_1":1055,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00116898149211,
+ "OBJECTID":85243,
+ "Join_Count":2,
+ "TARGET_FID":85243,
+ "feature_id":"ab51ff69-b620-43ab-be1f-88d7c67f38ec",
+ "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":5.36,
+ "heightmax":7.44,
+ "elevmin":25.55,
+ "elevmax":26.84,
+ "bldgarea":59.51,
+ "comment":" ",
+ "OBJECTID_2":85243,
+ "Shape_Le_1":0.00116898149211,
+ "Shape_Ar_1":4.33130329095e-08,
+ "OBJECTID_3":85243,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85242,
+ "g_objectid":"941628",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565590",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994294742180000000",
+ "g_sup_tota":"221",
+ "g_geometry":"0.000689728",
+ "g_geomet_1":"2.57819e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00116898149211,
+ "Shape_Area":4.33130329095e-08,
+ "Shape_Le_3":0.00116898187344,
+ "Shape_Ar_2":4.33130329095e-08,
+ "building_height":1.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":694,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55544668244029,
+ 45.51855197584331
+ ],
+ [
+ -73.55545386712411,
+ 45.518555846525395
+ ],
+ [
+ -73.55544214625989,
+ 45.51856658622927
+ ],
+ [
+ -73.55578530327098,
+ 45.51872424547784
+ ],
+ [
+ -73.55602855639461,
+ 45.51846020722308
+ ],
+ [
+ -73.55568193069838,
+ 45.51829726445748
+ ],
+ [
+ -73.55559066300054,
+ 45.51839598483713
+ ],
+ [
+ -73.55544668244029,
+ 45.51855197584331
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":694,
+ "ID_UEV":"01040726",
+ "CIVIQUE_DE":" 1208",
+ "CIVIQUE_FI":" 1224",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1940,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-40-4567-2-000-0000",
+ "SUPERFICIE":1144,
+ "SUPERFIC_1":2004,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00149045103259,
+ "OBJECTID":85244,
+ "Join_Count":1,
+ "TARGET_FID":85244,
+ "feature_id":"1efe8ed3-0696-41c8-bbfe-c2ee261ba8ec",
+ "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.95,
+ "heightmax":17.26,
+ "elevmin":19.7,
+ "elevmax":22.3,
+ "bldgarea":4107.29,
+ "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_2":85244,
+ "Shape_Le_1":0.00149045103259,
+ "Shape_Ar_1":1.31782403772e-07,
+ "OBJECTID_3":85244,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85243,
+ "g_objectid":"941814",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566612",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004240456720000000",
+ "g_sup_tota":"1144.3",
+ "g_geometry":"0.00148927",
+ "g_geomet_1":"1.31896e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00149045103259,
+ "Shape_Area":1.31782403772e-07,
+ "Shape_Le_3":0.00149045094655,
+ "Shape_Ar_2":1.31782403772e-07,
+ "building_height":8.155000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":695,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.560876748485,
+ 45.52086543054548
+ ],
+ [
+ -73.56102248991782,
+ 45.520932617096896
+ ],
+ [
+ -73.56107739442805,
+ 45.52087471154899
+ ],
+ [
+ -73.56093596884173,
+ 45.520814746553604
+ ],
+ [
+ -73.56098156896608,
+ 45.52076154715797
+ ],
+ [
+ -73.5609770660606,
+ 45.520759629803365
+ ],
+ [
+ -73.560876748485,
+ 45.52086543054548
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":695,
+ "ID_UEV":"01040389",
+ "CIVIQUE_DE":" 1856",
+ "CIVIQUE_FI":" 1860",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-03-3325-4-000-0000",
+ "SUPERFICIE":238,
+ "SUPERFIC_1":291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000614653814433,
+ "OBJECTID":85249,
+ "Join_Count":1,
+ "TARGET_FID":85249,
+ "feature_id":"17208e37-06da-42f6-9c87-7a55e1172c6a",
+ "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.45,
+ "heightmax":13.18,
+ "elevmin":24.76,
+ "elevmax":26.28,
+ "bldgarea":2107.14,
+ "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_2":85249,
+ "Shape_Le_1":0.000614653814433,
+ "Shape_Ar_1":1.21776204626e-08,
+ "OBJECTID_3":85249,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85248,
+ "g_objectid":"941890",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566805",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004203441860000000",
+ "g_sup_tota":"225.9",
+ "g_geometry":"0.000669007",
+ "g_geomet_1":"2.63082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000614653814433,
+ "Shape_Area":1.21776204626e-08,
+ "Shape_Le_3":0.000614654011661,
+ "Shape_Ar_2":1.21776204626e-08,
+ "building_height":5.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":696,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55902606782062,
+ 45.520830046719574
+ ],
+ [
+ -73.55902326823109,
+ 45.520833246507415
+ ],
+ [
+ -73.55908114769865,
+ 45.52085487250466
+ ],
+ [
+ -73.55917090723342,
+ 45.52076144193729
+ ],
+ [
+ -73.55914696817989,
+ 45.52075044682596
+ ],
+ [
+ -73.55917796781081,
+ 45.52071724655398
+ ],
+ [
+ -73.55914666780632,
+ 45.52070284660938
+ ],
+ [
+ -73.55914126827676,
+ 45.52070044721816
+ ],
+ [
+ -73.55902606782062,
+ 45.520830046719574
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55915151605147,
+ 45.520669480862146
+ ],
+ [
+ -73.55920946836412,
+ 45.520695746461826
+ ],
+ [
+ -73.55921148554347,
+ 45.52069354761942
+ ],
+ [
+ -73.55915401436812,
+ 45.52066680447974
+ ],
+ [
+ -73.55915151605147,
+ 45.520669480862146
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":696,
+ "ID_UEV":"01040500",
+ "CIVIQUE_DE":" 1738",
+ "CIVIQUE_FI":" 1742",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-13-8118-7-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":254,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000614788875145,
+ "OBJECTID":85260,
+ "Join_Count":2,
+ "TARGET_FID":85260,
+ "feature_id":"5d06b65d-bbed-479c-9159-7d70fe4925cf",
+ "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":11.09,
+ "elevmin":25.93,
+ "elevmax":26.77,
+ "bldgarea":307.64,
+ "comment":" ",
+ "OBJECTID_2":85260,
+ "Shape_Le_1":0.000614788875145,
+ "Shape_Ar_1":9.74837824129e-09,
+ "OBJECTID_3":85260,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85259,
+ "g_objectid":"941954",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566974",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004213811870000000",
+ "g_sup_tota":"156.1",
+ "g_geometry":"0.000637918",
+ "g_geomet_1":"1.81838e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000614788875145,
+ "Shape_Area":9.74837824129e-09,
+ "Shape_Le_3":0.000614788118484,
+ "Shape_Ar_2":9.74837824129e-09,
+ "building_height":4.285
+ }
+ },
+ {
+ "type":"Feature",
+ "id":697,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56002044101238,
+ 45.52121861050077
+ ],
+ [
+ -73.55989246838455,
+ 45.52115524696737
+ ],
+ [
+ -73.5599170684398,
+ 45.52113064691212
+ ],
+ [
+ -73.55991976820458,
+ 45.52112784642327
+ ],
+ [
+ -73.55980906795597,
+ 45.52107584672324
+ ],
+ [
+ -73.55980496794676,
+ 45.521080046557195
+ ],
+ [
+ -73.55971336839907,
+ 45.52117514716561
+ ],
+ [
+ -73.5597289680393,
+ 45.52118264661215
+ ],
+ [
+ -73.55984686826021,
+ 45.52123924724376
+ ],
+ [
+ -73.55992461015448,
+ 45.52127665814155
+ ],
+ [
+ -73.55995157003078,
+ 45.52128929001901
+ ],
+ [
+ -73.55995468887963,
+ 45.521285976916595
+ ],
+ [
+ -73.56002044101238,
+ 45.52121861050077
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":697,
+ "ID_UEV":"01040504",
+ "CIVIQUE_DE":" 1796",
+ "CIVIQUE_FI":" 1814",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-13-1960-9-000-0000",
+ "SUPERFICIE":533,
+ "SUPERFIC_1":691,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000804519495362,
+ "OBJECTID":85261,
+ "Join_Count":1,
+ "TARGET_FID":85261,
+ "feature_id":"7c1352a2-2f8e-4373-a75f-026d3c4f92fe",
+ "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.98,
+ "heightmax":12.27,
+ "elevmin":25.94,
+ "elevmax":26.56,
+ "bldgarea":394.28,
+ "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_2":85261,
+ "Shape_Le_1":0.000804519495362,
+ "Shape_Ar_1":2.94917981449e-08,
+ "OBJECTID_3":85261,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85260,
+ "g_objectid":"944721",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004213196090000000",
+ "g_sup_tota":"532.9",
+ "g_geometry":"0.00102033",
+ "g_geomet_1":"6.13413e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000804519495362,
+ "Shape_Area":2.94917981449e-08,
+ "Shape_Le_3":0.000804519297304,
+ "Shape_Ar_2":2.94917981449e-08,
+ "building_height":4.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":698,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55995468887963,
+ 45.521285976916595
+ ],
+ [
+ -73.56007435806701,
+ 45.52134149746243
+ ],
+ [
+ -73.56015421156945,
+ 45.521257858713504
+ ],
+ [
+ -73.56004396817643,
+ 45.521203347207006
+ ],
+ [
+ -73.56002596824568,
+ 45.521221347137754
+ ],
+ [
+ -73.56002044101238,
+ 45.52121861050077
+ ],
+ [
+ -73.55995468887963,
+ 45.521285976916595
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":698,
+ "ID_UEV":"01040505",
+ "CIVIQUE_DE":" 1816",
+ "CIVIQUE_FI":" 1820",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-13-0265-4-000-0000",
+ "SUPERFICIE":346,
+ "SUPERFIC_1":336,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00049630125681,
+ "OBJECTID":85262,
+ "Join_Count":1,
+ "TARGET_FID":85262,
+ "feature_id":"7c1352a2-2f8e-4373-a75f-026d3c4f92fe",
+ "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.98,
+ "heightmax":12.27,
+ "elevmin":25.94,
+ "elevmax":26.56,
+ "bldgarea":394.28,
+ "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_2":85262,
+ "Shape_Le_1":0.00049630125681,
+ "Shape_Ar_1":1.44256085963e-08,
+ "OBJECTID_3":85262,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85261,
+ "g_objectid":"944721",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004213196090000000",
+ "g_sup_tota":"532.9",
+ "g_geometry":"0.00102033",
+ "g_geomet_1":"6.13413e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00049630125681,
+ "Shape_Area":1.44256085963e-08,
+ "Shape_Le_3":0.000496302318584,
+ "Shape_Ar_2":1.44256085963e-08,
+ "building_height":4.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":699,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56082326580292,
+ 45.52167665770189
+ ],
+ [
+ -73.56096056889699,
+ 45.52173974784139
+ ],
+ [
+ -73.56096628139062,
+ 45.52174237655973
+ ],
+ [
+ -73.56101266122718,
+ 45.52169067363597
+ ],
+ [
+ -73.56106380836991,
+ 45.52163365571893
+ ],
+ [
+ -73.56104846953309,
+ 45.52162634692866
+ ],
+ [
+ -73.5610576686983,
+ 45.521616646841075
+ ],
+ [
+ -73.56105366941316,
+ 45.521615046947154
+ ],
+ [
+ -73.56097546886464,
+ 45.521586046509135
+ ],
+ [
+ -73.56097016915983,
+ 45.521584046416905
+ ],
+ [
+ -73.56093076896167,
+ 45.52156724708108
+ ],
+ [
+ -73.5610004691182,
+ 45.52148684679084
+ ],
+ [
+ -73.56099643745746,
+ 45.521485119193194
+ ],
+ [
+ -73.56082326580292,
+ 45.52167665770189
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":699,
+ "ID_UEV":"01040508",
+ "CIVIQUE_DE":" 1890",
+ "CIVIQUE_FI":" 1890",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-04-3510-9-000-0000",
+ "SUPERFICIE":435,
+ "SUPERFIC_1":522,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000839024232821,
+ "OBJECTID":85263,
+ "Join_Count":1,
+ "TARGET_FID":85263,
+ "feature_id":"95756c3e-4f2f-42b4-9a57-aa59db567fda",
+ "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.51,
+ "heightmax":12,
+ "elevmin":24.96,
+ "elevmax":26.31,
+ "bldgarea":830.05,
+ "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_2":85263,
+ "Shape_Le_1":0.000839024232821,
+ "Shape_Ar_1":2.36009765637e-08,
+ "OBJECTID_3":85263,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85262,
+ "g_objectid":"941908",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566826",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004204351090000000",
+ "g_sup_tota":"435.1",
+ "g_geometry":"0.00098136",
+ "g_geomet_1":"4.98966e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000839024232821,
+ "Shape_Area":2.36009765637e-08,
+ "Shape_Le_3":0.000839023394012,
+ "Shape_Ar_2":2.36009765637e-08,
+ "building_height":4.745
+ }
+ },
+ {
+ "type":"Feature",
+ "id":700,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5574625595713,
+ 45.517217834285916
+ ],
+ [
+ -73.55743026671529,
+ 45.51725204719452
+ ],
+ [
+ -73.55724625643144,
+ 45.51744696805343
+ ],
+ [
+ -73.5578211975121,
+ 45.517710292246484
+ ],
+ [
+ -73.55798172829597,
+ 45.51753421758037
+ ],
+ [
+ -73.55801605631778,
+ 45.51749765923988
+ ],
+ [
+ -73.55790736695327,
+ 45.51744884673718
+ ],
+ [
+ -73.55791856711002,
+ 45.51743644688481
+ ],
+ [
+ -73.55791826673646,
+ 45.51743634706006
+ ],
+ [
+ -73.55784136750695,
+ 45.517400447023306
+ ],
+ [
+ -73.55794736699923,
+ 45.51728804705602
+ ],
+ [
+ -73.5579370652652,
+ 45.51728324017969
+ ],
+ [
+ -73.55784105724085,
+ 45.51738781154856
+ ],
+ [
+ -73.5574625595713,
+ 45.517217834285916
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":700,
+ "ID_UEV":"01040742",
+ "CIVIQUE_DE":" 1015",
+ "CIVIQUE_FI":" 1021",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-29-9249-7-000-0000",
+ "SUPERFICIE":1923,
+ "SUPERFIC_1":2879,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0021796749488,
+ "OBJECTID":85270,
+ "Join_Count":1,
+ "TARGET_FID":85270,
+ "feature_id":"227d9e40-e18c-47d8-9d3a-14e2a9f08220",
+ "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":41.6,
+ "elevmin":23.09,
+ "elevmax":26.89,
+ "bldgarea":3164.53,
+ "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_2":85270,
+ "Shape_Le_1":0.0021796749488,
+ "Shape_Ar_1":1.8631154714e-07,
+ "OBJECTID_3":85270,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85269,
+ "g_objectid":"941727",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566409",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004129912670000000",
+ "g_sup_tota":"535.3",
+ "g_geometry":"0.00114931",
+ "g_geomet_1":"6.14249e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0021796749488,
+ "Shape_Area":1.8631154714e-07,
+ "Shape_Le_3":0.0021796733434,
+ "Shape_Ar_2":1.8631154714e-07,
+ "building_height":20.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":701,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5577876743835,
+ 45.516852843534195
+ ],
+ [
+ -73.55766521190185,
+ 45.51698496653327
+ ],
+ [
+ -73.5576433322958,
+ 45.51700874820546
+ ],
+ [
+ -73.5580336587482,
+ 45.517187841895684
+ ],
+ [
+ -73.55811976703546,
+ 45.51709724689073
+ ],
+ [
+ -73.55813856736283,
+ 45.51710604675695
+ ],
+ [
+ -73.55812786722913,
+ 45.51711734673846
+ ],
+ [
+ -73.55813669497434,
+ 45.517121456640204
+ ],
+ [
+ -73.5582054949095,
+ 45.51704663574394
+ ],
+ [
+ -73.5577876743835,
+ 45.516852843534195
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":701,
+ "ID_UEV":"01040744",
+ "CIVIQUE_DE":" 929",
+ "CIVIQUE_FI":" 935",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1939,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-29-7402-4-000-0000",
+ "SUPERFICIE":806,
+ "SUPERFIC_1":1550,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00137518227859,
+ "OBJECTID":85271,
+ "Join_Count":1,
+ "TARGET_FID":85271,
+ "feature_id":"c42ee2e8-8c36-4bfa-af83-3c636f09436b",
+ "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":66.24,
+ "elevmin":23.23,
+ "elevmax":27.73,
+ "bldgarea":6512.52,
+ "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_2":85271,
+ "Shape_Le_1":0.00137518227859,
+ "Shape_Ar_1":8.91931360638e-08,
+ "OBJECTID_3":85271,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85270,
+ "g_objectid":"945156",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"2162113",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"11",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004128477820000000",
+ "g_sup_tota":"3128",
+ "g_geometry":"0.00310796",
+ "g_geomet_1":"3.58317e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00137518227859,
+ "Shape_Area":8.91931360638e-08,
+ "Shape_Le_3":0.00137518199158,
+ "Shape_Ar_2":8.91931360638e-08,
+ "building_height":32.87
+ }
+ },
+ {
+ "type":"Feature",
+ "id":702,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55360941246626,
+ 45.51795921379698
+ ],
+ [
+ -73.553674103399,
+ 45.517997433185286
+ ],
+ [
+ -73.55374848542611,
+ 45.517916102996054
+ ],
+ [
+ -73.5537310664574,
+ 45.51790854689222
+ ],
+ [
+ -73.55367720606006,
+ 45.517885102465804
+ ],
+ [
+ -73.55360941246626,
+ 45.51795921379698
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":702,
+ "ID_UEV":"01040460",
+ "CIVIQUE_DE":" 1165",
+ "CIVIQUE_FI":" 1169",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-60-0807-4-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":150,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000363521608766,
+ "OBJECTID":85288,
+ "Join_Count":1,
+ "TARGET_FID":85288,
+ "feature_id":"450c52b7-2133-4553-b861-84373bef9a1e",
+ "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.1,
+ "heightmax":30.87,
+ "elevmin":18.06,
+ "elevmax":20.78,
+ "bldgarea":3183.14,
+ "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_2":85288,
+ "Shape_Le_1":0.000363521608766,
+ "Shape_Ar_1":7.74344589289e-09,
+ "OBJECTID_3":85288,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85287,
+ "g_objectid":"943619",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3069105",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004260080740000000",
+ "g_sup_tota":"148.9",
+ "g_geometry":"0.000620313",
+ "g_geomet_1":"1.71267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000363521608766,
+ "Shape_Area":7.74344589289e-09,
+ "Shape_Le_3":0.000363522423564,
+ "Shape_Ar_2":7.74344589289e-09,
+ "building_height":14.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":703,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55349531997489,
+ 45.517974976214475
+ ],
+ [
+ -73.55354946635663,
+ 45.518006146716594
+ ],
+ [
+ -73.55355266614447,
+ 45.51800344695181
+ ],
+ [
+ -73.55359596580303,
+ 45.51796654686894
+ ],
+ [
+ -73.55358326647641,
+ 45.51795924707189
+ ],
+ [
+ -73.55359406643487,
+ 45.517950146832106
+ ],
+ [
+ -73.55360941246626,
+ 45.51795921379698
+ ],
+ [
+ -73.55367720606006,
+ 45.517885102465804
+ ],
+ [
+ -73.55366076645305,
+ 45.51787794656028
+ ],
+ [
+ -73.55366446626395,
+ 45.517873846551076
+ ],
+ [
+ -73.55363456650389,
+ 45.517859246956974
+ ],
+ [
+ -73.55361150069204,
+ 45.51784794247886
+ ],
+ [
+ -73.55349531997489,
+ 45.517974976214475
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":703,
+ "ID_UEV":"01040461",
+ "CIVIQUE_DE":" 1157",
+ "CIVIQUE_FI":" 1159",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1946,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-60-1403-1-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":280,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000525153720404,
+ "OBJECTID":85289,
+ "Join_Count":1,
+ "TARGET_FID":85289,
+ "feature_id":"450c52b7-2133-4553-b861-84373bef9a1e",
+ "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.1,
+ "heightmax":30.87,
+ "elevmin":18.06,
+ "elevmax":20.78,
+ "bldgarea":3183.14,
+ "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_2":85289,
+ "Shape_Le_1":0.000525153720404,
+ "Shape_Ar_1":1.20062872368e-08,
+ "OBJECTID_3":85289,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85288,
+ "g_objectid":"943619",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3069105",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004260080740000000",
+ "g_sup_tota":"148.9",
+ "g_geometry":"0.000620313",
+ "g_geomet_1":"1.71267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000525153720404,
+ "Shape_Area":1.20062872368e-08,
+ "Shape_Le_3":0.000525153079639,
+ "Shape_Ar_2":1.20062872368e-08,
+ "building_height":14.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":704,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55335664181742,
+ 45.51812680066162
+ ],
+ [
+ -73.55331566600702,
+ 45.5181090471451
+ ],
+ [
+ -73.55333956638972,
+ 45.51808174642575
+ ],
+ [
+ -73.55334316637587,
+ 45.518077747140616
+ ],
+ [
+ -73.55325016568445,
+ 45.51803624702548
+ ],
+ [
+ -73.55318386586457,
+ 45.5181098466424
+ ],
+ [
+ -73.55314991286004,
+ 45.51814756241037
+ ],
+ [
+ -73.55328230745437,
+ 45.51820821448781
+ ],
+ [
+ -73.55335664181742,
+ 45.51812680066162
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":704,
+ "ID_UEV":"01040463",
+ "CIVIQUE_DE":" 1150",
+ "CIVIQUE_FI":" 1158",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1964,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-60-3822-0-000-0000",
+ "SUPERFICIE":208,
+ "SUPERFIC_1":443,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000593838076831,
+ "OBJECTID":85290,
+ "Join_Count":1,
+ "TARGET_FID":85290,
+ "feature_id":"450c52b7-2133-4553-b861-84373bef9a1e",
+ "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.1,
+ "heightmax":30.87,
+ "elevmin":18.06,
+ "elevmax":20.78,
+ "bldgarea":3183.14,
+ "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_2":85290,
+ "Shape_Le_1":0.000593838076831,
+ "Shape_Ar_1":1.92245091578e-08,
+ "OBJECTID_3":85290,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85289,
+ "g_objectid":"941862",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566702",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004260222730000000",
+ "g_sup_tota":"485.3",
+ "g_geometry":"0.000973326",
+ "g_geomet_1":"5.58407e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000593838076831,
+ "Shape_Area":1.92245091578e-08,
+ "Shape_Le_3":0.000593838081825,
+ "Shape_Ar_2":1.92245091578e-08,
+ "building_height":14.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":705,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55348353435947,
+ 45.5182979299558
+ ],
+ [
+ -73.55352546614918,
+ 45.518315146577045
+ ],
+ [
+ -73.55359286583993,
+ 45.51834284659539
+ ],
+ [
+ -73.5535902658999,
+ 45.51834604728255
+ ],
+ [
+ -73.55358646626425,
+ 45.51834444648931
+ ],
+ [
+ -73.55358422605303,
+ 45.518346938510696
+ ],
+ [
+ -73.553615647466,
+ 45.51836137622683
+ ],
+ [
+ -73.55378732984325,
+ 45.518180564831496
+ ],
+ [
+ -73.55379977286307,
+ 45.51816745991064
+ ],
+ [
+ -73.55370461289941,
+ 45.51812369440327
+ ],
+ [
+ -73.55366288075919,
+ 45.518104501971486
+ ],
+ [
+ -73.55366043999915,
+ 45.51810713428711
+ ],
+ [
+ -73.55366366586733,
+ 45.51810874677154
+ ],
+ [
+ -73.55360712009436,
+ 45.51816464053603
+ ],
+ [
+ -73.55348353435947,
+ 45.5182979299558
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":705,
+ "ID_UEV":"01040465",
+ "CIVIQUE_DE":" 1180",
+ "CIVIQUE_FI":" 1192",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-60-0835-5-000-0000",
+ "SUPERFICIE":321,
+ "SUPERFIC_1":616,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000850928795702,
+ "OBJECTID":85292,
+ "Join_Count":1,
+ "TARGET_FID":85292,
+ "feature_id":"450c52b7-2133-4553-b861-84373bef9a1e",
+ "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.1,
+ "heightmax":30.87,
+ "elevmin":18.06,
+ "elevmax":20.78,
+ "bldgarea":3183.14,
+ "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_2":85292,
+ "Shape_Le_1":0.000850928795702,
+ "Shape_Ar_1":3.70226178473e-08,
+ "OBJECTID_3":85292,
+ "Join_Cou_1":7,
+ "TARGET_F_1":85291,
+ "g_objectid":"941861",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004260083550000000",
+ "g_sup_tota":"321.4",
+ "g_geometry":"0.00083184",
+ "g_geomet_1":"3.77192e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000850928795702,
+ "Shape_Area":3.70226178473e-08,
+ "Shape_Le_3":0.000850928880671,
+ "Shape_Ar_2":3.70226178473e-08,
+ "building_height":14.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":706,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56136268815938,
+ 45.52076909606723
+ ],
+ [
+ -73.56130469897452,
+ 45.52083357386064
+ ],
+ [
+ -73.56136976942116,
+ 45.520772847139476
+ ],
+ [
+ -73.56136268815938,
+ 45.52076909606723
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":706,
+ "ID_UEV":"01040312",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-03-0225-9-000-0000",
+ "SUPERFICIE":229,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000183736777298,
+ "OBJECTID":85293,
+ "Join_Count":1,
+ "TARGET_FID":85293,
+ "feature_id":"d6ff67ae-d9aa-4128-bd02-658c006792fd",
+ "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.67,
+ "heightmax":11.29,
+ "elevmin":23.99,
+ "elevmax":25.78,
+ "bldgarea":805.13,
+ "comment":" ",
+ "OBJECTID_2":85293,
+ "Shape_Le_1":0.000183736777298,
+ "Shape_Ar_1":3.37042728142e-10,
+ "OBJECTID_3":85293,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85292,
+ "g_objectid":"945360",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565565",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004203022590000000",
+ "g_sup_tota":"228.6",
+ "g_geometry":"0.000668041",
+ "g_geomet_1":"2.646e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000183736777298,
+ "Shape_Area":3.37042728142e-10,
+ "Shape_Le_3":0.000183737148657,
+ "Shape_Ar_2":3.37042728142e-10,
+ "building_height":4.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":707,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56116016802918,
+ 45.520773536919485
+ ],
+ [
+ -73.56125756910338,
+ 45.52082514721307
+ ],
+ [
+ -73.5612933693154,
+ 45.52084414718993
+ ],
+ [
+ -73.56130469897452,
+ 45.52083357386064
+ ],
+ [
+ -73.56136268815938,
+ 45.52076909606723
+ ],
+ [
+ -73.56129766897409,
+ 45.520734646636924
+ ],
+ [
+ -73.56123276939863,
+ 45.52070034649409
+ ],
+ [
+ -73.56126086871596,
+ 45.520674046720174
+ ],
+ [
+ -73.56126076889122,
+ 45.52067394689543
+ ],
+ [
+ -73.56125302392975,
+ 45.520670331620806
+ ],
+ [
+ -73.56116016802918,
+ 45.520773536919485
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":707,
+ "ID_UEV":"01040313",
+ "CIVIQUE_DE":" 1865",
+ "CIVIQUE_FI":" 1871",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-03-1317-3-000-0000",
+ "SUPERFICIE":229,
+ "SUPERFIC_1":241,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000585967684668,
+ "OBJECTID":85301,
+ "Join_Count":1,
+ "TARGET_FID":85301,
+ "feature_id":"d6ff67ae-d9aa-4128-bd02-658c006792fd",
+ "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.67,
+ "heightmax":11.29,
+ "elevmin":23.99,
+ "elevmax":25.78,
+ "bldgarea":805.13,
+ "comment":" ",
+ "OBJECTID_2":85301,
+ "Shape_Le_1":0.000585967684668,
+ "Shape_Ar_1":1.52596548038e-08,
+ "OBJECTID_3":85301,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85300,
+ "g_objectid":"945360",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565565",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004203022590000000",
+ "g_sup_tota":"228.6",
+ "g_geometry":"0.000668041",
+ "g_geomet_1":"2.646e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000585967684668,
+ "Shape_Area":1.52596548038e-08,
+ "Shape_Le_3":0.000585967402194,
+ "Shape_Ar_2":1.52596548038e-08,
+ "building_height":4.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":708,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55370461289941,
+ 45.51812369440327
+ ],
+ [
+ -73.55379977286307,
+ 45.51816745991064
+ ],
+ [
+ -73.55383019692789,
+ 45.5181332982634
+ ],
+ [
+ -73.55382596651698,
+ 45.51813144655931
+ ],
+ [
+ -73.55384696568676,
+ 45.51810774672543
+ ],
+ [
+ -73.5539224664705,
+ 45.51802274640292
+ ],
+ [
+ -73.55392926624448,
+ 45.51801494658282
+ ],
+ [
+ -73.55383826744394,
+ 45.51797646099517
+ ],
+ [
+ -73.55378975171752,
+ 45.51802990500641
+ ],
+ [
+ -73.55379576638336,
+ 45.51803264703933
+ ],
+ [
+ -73.55375706585775,
+ 45.5180744466287
+ ],
+ [
+ -73.55375686620826,
+ 45.51807474700227
+ ],
+ [
+ -73.55377376626814,
+ 45.51808184714982
+ ],
+ [
+ -73.55373696601002,
+ 45.51812524663312
+ ],
+ [
+ -73.55371836623146,
+ 45.518117446813015
+ ],
+ [
+ -73.5537285663421,
+ 45.51810524661014
+ ],
+ [
+ -73.55373096573332,
+ 45.518101746448735
+ ],
+ [
+ -73.55372602845529,
+ 45.51810010428668
+ ],
+ [
+ -73.55370461289941,
+ 45.51812369440327
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":708,
+ "ID_UEV":"01040458",
+ "CIVIQUE_DE":" 1179",
+ "CIVIQUE_FI":" 1183",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-9416-6-000-0000",
+ "SUPERFICIE":197,
+ "SUPERFIC_1":405,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000698338412509,
+ "OBJECTID":85323,
+ "Join_Count":1,
+ "TARGET_FID":85323,
+ "feature_id":"450c52b7-2133-4553-b861-84373bef9a1e",
+ "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.1,
+ "heightmax":30.87,
+ "elevmin":18.06,
+ "elevmax":20.78,
+ "bldgarea":3183.14,
+ "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_2":85323,
+ "Shape_Le_1":0.000698338412509,
+ "Shape_Ar_1":1.75165464594e-08,
+ "OBJECTID_3":85323,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85322,
+ "g_objectid":"941861",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004260083550000000",
+ "g_sup_tota":"321.4",
+ "g_geometry":"0.00083184",
+ "g_geomet_1":"3.77192e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000698338412509,
+ "Shape_Area":1.75165464594e-08,
+ "Shape_Le_3":0.000698337257313,
+ "Shape_Ar_2":1.75165464594e-08,
+ "building_height":14.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":709,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55347299790238,
+ 45.499772965999874
+ ],
+ [
+ -73.55339537471862,
+ 45.49993233396034
+ ],
+ [
+ -73.553440997326,
+ 45.499874530035825
+ ],
+ [
+ -73.55347299790238,
+ 45.499772965999874
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55326506475278,
+ 45.4998084442546
+ ],
+ [
+ -73.5533086647849,
+ 45.499837143419725
+ ],
+ [
+ -73.55330936535677,
+ 45.499836543571924
+ ],
+ [
+ -73.55343036554078,
+ 45.49972834343859
+ ],
+ [
+ -73.5533967650705,
+ 45.499709743660034
+ ],
+ [
+ -73.55335566515367,
+ 45.49968704387227
+ ],
+ [
+ -73.55337746472007,
+ 45.49966754387235
+ ],
+ [
+ -73.55337826511669,
+ 45.49966774352184
+ ],
+ [
+ -73.5534677647474,
+ 45.49967134350799
+ ],
+ [
+ -73.55347606548987,
+ 45.499569444024914
+ ],
+ [
+ -73.55348156484419,
+ 45.49956964367441
+ ],
+ [
+ -73.55348966503786,
+ 45.49953864404348
+ ],
+ [
+ -73.55344566480743,
+ 45.499532944140356
+ ],
+ [
+ -73.55335606535198,
+ 45.49952144361003
+ ],
+ [
+ -73.55334786533356,
+ 45.49955294416334
+ ],
+ [
+ -73.55336656493687,
+ 45.499555343554555
+ ],
+ [
+ -73.55335926513982,
+ 45.49958414344376
+ ],
+ [
+ -73.55334976470172,
+ 45.49958294374815
+ ],
+ [
+ -73.55334986542579,
+ 45.499584343992574
+ ],
+ [
+ -73.55335676502453,
+ 45.49964174412149
+ ],
+ [
+ -73.55331866524605,
+ 45.49964394386321
+ ],
+ [
+ -73.55331426486327,
+ 45.4996075438034
+ ],
+ [
+ -73.55330926553202,
+ 45.49956534401571
+ ],
+ [
+ -73.55313196419064,
+ 45.499575643951104
+ ],
+ [
+ -73.55312386399697,
+ 45.49957614397416
+ ],
+ [
+ -73.55313996455956,
+ 45.49970254368774
+ ],
+ [
+ -73.55314676433355,
+ 45.49975674402881
+ ],
+ [
+ -73.55319926405663,
+ 45.4997534435169
+ ],
+ [
+ -73.55320296386753,
+ 45.49978304380272
+ ],
+ [
+ -73.55323236450387,
+ 45.49978124425931
+ ],
+ [
+ -73.5532357639412,
+ 45.49981004414851
+ ],
+ [
+ -73.55326516547684,
+ 45.499808343530525
+ ],
+ [
+ -73.55326506475278,
+ 45.4998084442546
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55352949780992,
+ 45.49959364657982
+ ],
+ [
+ -73.55352916506077,
+ 45.499594143904915
+ ],
+ [
+ -73.55352686549429,
+ 45.49959764406631
+ ],
+ [
+ -73.55352810835736,
+ 45.49959805865378
+ ],
+ [
+ -73.55352949780992,
+ 45.49959364657982
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":709,
+ "ID_UEV":"01000012",
+ "CIVIQUE_DE":" 357",
+ "CIVIQUE_FI":" 357",
+ "NOM_RUE":"rue de la Commune Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0039-69-3575-1-000-0000",
+ "SUPERFICIE":1326,
+ "SUPERFIC_1":1437,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00186851473415,
+ "OBJECTID":85336,
+ "Join_Count":2,
+ "TARGET_FID":85336,
+ "feature_id":"81b28e2e-d1de-4ca4-832b-3485d6f3a4d0",
+ "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":17.67,
+ "elevmin":13.19,
+ "elevmax":14.65,
+ "bldgarea":918.07,
+ "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_2":85336,
+ "Shape_Le_1":0.00186851473415,
+ "Shape_Ar_1":6.85502838792e-08,
+ "OBJECTID_3":85336,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85335,
+ "g_objectid":"944932",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180167",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023003969098480000000",
+ "g_sup_tota":"1029.3",
+ "g_geometry":"0.00149902",
+ "g_geomet_1":"1.18515e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00186851473415,
+ "Shape_Area":6.85502838792e-08,
+ "Shape_Le_3":0.00186851579835,
+ "Shape_Ar_2":6.85502838792e-08,
+ "building_height":8.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":710,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55837220943177,
+ 45.51990788818878
+ ],
+ [
+ -73.55840729108546,
+ 45.51992414613273
+ ],
+ [
+ -73.55841766836255,
+ 45.519913946921406
+ ],
+ [
+ -73.55844955202704,
+ 45.519930025000946
+ ],
+ [
+ -73.5585317599546,
+ 45.519842159438404
+ ],
+ [
+ -73.55851936819613,
+ 45.51983694696782
+ ],
+ [
+ -73.55858376774853,
+ 45.51976154690816
+ ],
+ [
+ -73.55853416833904,
+ 45.519741447060426
+ ],
+ [
+ -73.55849556853751,
+ 45.51978434652067
+ ],
+ [
+ -73.55849007547845,
+ 45.51978191205589
+ ],
+ [
+ -73.55837220943177,
+ 45.51990788818878
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":710,
+ "ID_UEV":"01040376",
+ "CIVIQUE_DE":" 1630",
+ "CIVIQUE_FI":" 1634",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-22-3014-4-000-0000",
+ "SUPERFICIE":153,
+ "SUPERFIC_1":343,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000611607199969,
+ "OBJECTID":85342,
+ "Join_Count":1,
+ "TARGET_FID":85342,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":85342,
+ "Shape_Le_1":0.000611607199969,
+ "Shape_Ar_1":1.43721184738e-08,
+ "OBJECTID_3":85342,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85341,
+ "g_objectid":"941748",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566445",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222390950000000",
+ "g_sup_tota":"314",
+ "g_geometry":"0.000800662",
+ "g_geomet_1":"3.615e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000611607199969,
+ "Shape_Area":1.43721184738e-08,
+ "Shape_Le_3":0.00061160545984,
+ "Shape_Ar_2":1.43721184738e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":711,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57491896705852,
+ 45.498183373813944
+ ],
+ [
+ -73.5752832419499,
+ 45.49835778293563
+ ],
+ [
+ -73.57545658087835,
+ 45.498180942047135
+ ],
+ [
+ -73.57509867228774,
+ 45.4980063431685
+ ],
+ [
+ -73.57509450303074,
+ 45.49800429181491
+ ],
+ [
+ -73.57491896705852,
+ 45.498183373813944
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":711,
+ "ID_UEV":"01039216",
+ "CIVIQUE_DE":" 1251",
+ "CIVIQUE_FI":" 1263",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9839-98-2409-7-000-0000",
+ "SUPERFICIE":831,
+ "SUPERFIC_1":2464,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00130513890713,
+ "OBJECTID":85343,
+ "Join_Count":1,
+ "TARGET_FID":85343,
+ "feature_id":"f2e80963-d889-4bdc-8185-0dc0f5ea7d13",
+ "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.17,
+ "heightmax":68.57,
+ "elevmin":39.22,
+ "elevmax":41.55,
+ "bldgarea":3018.94,
+ "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_2":85343,
+ "Shape_Le_1":0.00130513890713,
+ "Shape_Ar_1":9.52472778064e-08,
+ "OBJECTID_3":85343,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85342,
+ "g_objectid":"938090",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338868",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983998240970000000",
+ "g_sup_tota":"830.7",
+ "g_geometry":"0.00131215",
+ "g_geomet_1":"9.65143e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00130513890713,
+ "Shape_Area":9.52472778064e-08,
+ "Shape_Le_3":0.00130513867737,
+ "Shape_Ar_2":9.52472778064e-08,
+ "building_height":33.199999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":712,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5609011875616,
+ 45.51670241123758
+ ],
+ [
+ -73.56091037323698,
+ 45.516706565206114
+ ],
+ [
+ -73.56090492604335,
+ 45.51671273365603
+ ],
+ [
+ -73.56095984224477,
+ 45.51673685617127
+ ],
+ [
+ -73.560965321814,
+ 45.5167311220939
+ ],
+ [
+ -73.56097188596561,
+ 45.51673409345395
+ ],
+ [
+ -73.56111181597937,
+ 45.516583580218345
+ ],
+ [
+ -73.56104136848622,
+ 45.51655239083047
+ ],
+ [
+ -73.5609011875616,
+ 45.51670241123758
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":712,
+ "ID_UEV":"01003404",
+ "CIVIQUE_DE":" 1587",
+ "CIVIQUE_FI":" 1589",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1905,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-08-3258-8-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":371,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000581304070815,
+ "OBJECTID":85350,
+ "Join_Count":1,
+ "TARGET_FID":85350,
+ "feature_id":"8108d360-ee77-4078-895b-8d6c3a07566d",
+ "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":46.93,
+ "elevmin":23.63,
+ "elevmax":28.19,
+ "bldgarea":5755.48,
+ "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_2":85350,
+ "Shape_Le_1":0.000581304070815,
+ "Shape_Ar_1":1.54678261168e-08,
+ "OBJECTID_3":85350,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85349,
+ "g_objectid":"938347",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161959",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004108385440000000",
+ "g_sup_tota":"152.2",
+ "g_geometry":"0.000646645",
+ "g_geomet_1":"1.7771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000581304070815,
+ "Shape_Area":1.54678261168e-08,
+ "Shape_Le_3":0.000581302891204,
+ "Shape_Ar_2":1.54678261168e-08,
+ "building_height":23.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":713,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55789733951245,
+ 45.53469803153922
+ ],
+ [
+ -73.5579306692868,
+ 45.53471315004214
+ ],
+ [
+ -73.55795196883014,
+ 45.53472274940565
+ ],
+ [
+ -73.55797041122734,
+ 45.534731029463735
+ ],
+ [
+ -73.55806006014551,
+ 45.5346267206969
+ ],
+ [
+ -73.5579833533709,
+ 45.534597949586
+ ],
+ [
+ -73.55789733951245,
+ 45.53469803153922
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":713,
+ "ID_UEV":"01023587",
+ "CIVIQUE_DE":" 2361",
+ "CIVIQUE_FI":" 2363",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-7466-7-000-0000",
+ "SUPERFICIE":165,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000431607908607,
+ "OBJECTID":85360,
+ "Join_Count":1,
+ "TARGET_FID":85360,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":85360,
+ "Shape_Le_1":0.000431607908607,
+ "Shape_Ar_1":1.03687810394e-08,
+ "OBJECTID_3":85360,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85359,
+ "g_objectid":"941169",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425096",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328806310000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654864",
+ "g_geomet_1":"1.88329e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000431607908607,
+ "Shape_Area":1.03687810394e-08,
+ "Shape_Le_3":0.00043160708917,
+ "Shape_Ar_2":1.03687810394e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":714,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55768305355193,
+ 45.534658277907496
+ ],
+ [
+ -73.55778885789132,
+ 45.534707558956974
+ ],
+ [
+ -73.55789838092738,
+ 45.53458012502305
+ ],
+ [
+ -73.55779045508727,
+ 45.53453331261258
+ ],
+ [
+ -73.55768305355193,
+ 45.534658277907496
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":714,
+ "ID_UEV":"01023591",
+ "CIVIQUE_DE":" 2343",
+ "CIVIQUE_FI":" 2353",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-8759-4-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":417,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000567168692249,
+ "OBJECTID":85361,
+ "Join_Count":1,
+ "TARGET_FID":85361,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":85361,
+ "Shape_Le_1":0.000567168692249,
+ "Shape_Ar_1":1.86976161728e-08,
+ "OBJECTID_3":85361,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85360,
+ "g_objectid":"941169",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425096",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328806310000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654864",
+ "g_geomet_1":"1.88329e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000567168692249,
+ "Shape_Area":1.86976161728e-08,
+ "Shape_Le_3":0.000567168025092,
+ "Shape_Ar_2":1.86976161728e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":715,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5485222651123,
+ 45.53034674905352
+ ],
+ [
+ -73.54863066489511,
+ 45.53038844881815
+ ],
+ [
+ -73.54863216496429,
+ 45.530389148490706
+ ],
+ [
+ -73.54876176536503,
+ 45.53024624891555
+ ],
+ [
+ -73.54865716521785,
+ 45.530199349270845
+ ],
+ [
+ -73.54865286555915,
+ 45.530197349178614
+ ],
+ [
+ -73.5486185654163,
+ 45.530232749192315
+ ],
+ [
+ -73.54857926504289,
+ 45.53027334908609
+ ],
+ [
+ -73.54857936486763,
+ 45.53027334908609
+ ],
+ [
+ -73.5485222651123,
+ 45.53034674905352
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54796376543727,
+ 45.5301084484964
+ ],
+ [
+ -73.54797636493913,
+ 45.53009454857485
+ ],
+ [
+ -73.54800226541406,
+ 45.53006594923446
+ ],
+ [
+ -73.54806076541384,
+ 45.53009224900838
+ ],
+ [
+ -73.54809916556589,
+ 45.53004904917457
+ ],
+ [
+ -73.54817426525199,
+ 45.52996474852462
+ ],
+ [
+ -73.54823746510877,
+ 45.52989364902298
+ ],
+ [
+ -73.54818576488299,
+ 45.529871248709455
+ ],
+ [
+ -73.54821986537632,
+ 45.52983324875572
+ ],
+ [
+ -73.54822336553774,
+ 45.529829548944825
+ ],
+ [
+ -73.54811646492476,
+ 45.52978214927706
+ ],
+ [
+ -73.54807696490185,
+ 45.529825748409856
+ ],
+ [
+ -73.54802036516956,
+ 45.52980024903256
+ ],
+ [
+ -73.54801486491593,
+ 45.52979744854371
+ ],
+ [
+ -73.54799826522961,
+ 45.52981834878806
+ ],
+ [
+ -73.54799606548788,
+ 45.52982244879727
+ ],
+ [
+ -73.54799606548788,
+ 45.529820948728094
+ ],
+ [
+ -73.54797936507748,
+ 45.529840048529714
+ ],
+ [
+ -73.54793306528059,
+ 45.52989204912906
+ ],
+ [
+ -73.54784486517023,
+ 45.52999154922092
+ ],
+ [
+ -73.54784786530858,
+ 45.529992649091774
+ ],
+ [
+ -73.54790006555743,
+ 45.53001724914703
+ ],
+ [
+ -73.54786256472742,
+ 45.53005644879637
+ ],
+ [
+ -73.54785926511484,
+ 45.53005964858421
+ ],
+ [
+ -73.54796376543727,
+ 45.5301084484964
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54825816480431,
+ 45.52985184853428
+ ],
+ [
+ -73.54825726548226,
+ 45.52985304912921
+ ],
+ [
+ -73.54827026518244,
+ 45.529858548483524
+ ],
+ [
+ -73.5483660654634,
+ 45.52989924910136
+ ],
+ [
+ -73.54839586539872,
+ 45.52991184860323
+ ],
+ [
+ -73.54839616487295,
+ 45.52991194842797
+ ],
+ [
+ -73.54851636555966,
+ 45.529965648745986
+ ],
+ [
+ -73.54851656520916,
+ 45.529965849294804
+ ],
+ [
+ -73.54853606520909,
+ 45.529974248962716
+ ],
+ [
+ -73.54865496547612,
+ 45.530025648814934
+ ],
+ [
+ -73.54866086502874,
+ 45.53002814893022
+ ],
+ [
+ -73.54872226534212,
+ 45.5300541492299
+ ],
+ [
+ -73.54872646517607,
+ 45.53004944847356
+ ],
+ [
+ -73.54880276545711,
+ 45.52996154873678
+ ],
+ [
+ -73.54872306483942,
+ 45.52992734841869
+ ],
+ [
+ -73.54872316556349,
+ 45.52992724859394
+ ],
+ [
+ -73.54863926511185,
+ 45.529899149276616
+ ],
+ [
+ -73.54864496501497,
+ 45.52989074870938
+ ],
+ [
+ -73.54858696503825,
+ 45.52987144925827
+ ],
+ [
+ -73.5485911648722,
+ 45.52986514860802
+ ],
+ [
+ -73.54858966480303,
+ 45.529864548760216
+ ],
+ [
+ -73.54852906488628,
+ 45.52984094875108
+ ],
+ [
+ -73.54850326513542,
+ 45.52983084846518
+ ],
+ [
+ -73.54845736553683,
+ 45.52981284853443
+ ],
+ [
+ -73.54832916538052,
+ 45.529762348903574
+ ],
+ [
+ -73.54825816480431,
+ 45.52985184853428
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":715,
+ "ID_UEV":"01019369",
+ "CIVIQUE_DE":" 2485",
+ "CIVIQUE_FI":" 2485",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":10,
+ "NOMBRE_LOG":84,
+ "ANNEE_CONS":1974,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-03-2345-9-000-0000",
+ "SUPERFICIE":4858,
+ "SUPERFIC_1":7447,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00314944063318,
+ "OBJECTID":85367,
+ "Join_Count":3,
+ "TARGET_FID":85367,
+ "feature_id":"92efd996-564e-463c-885c-68e4b3e85cc9",
+ "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,
+ "heightmax":28.76,
+ "elevmin":20.74,
+ "elevmax":21.74,
+ "bldgarea":194.88,
+ "comment":" ",
+ "OBJECTID_2":85367,
+ "Shape_Le_1":0.00314944063318,
+ "Shape_Ar_1":1.54117839996e-07,
+ "OBJECTID_3":85367,
+ "Join_Cou_1":1,
+ "TARGET_F_1":85366,
+ "g_objectid":"940700",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424292",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"84",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014303234590000000",
+ "g_sup_tota":"4858.3",
+ "g_geometry":"0.00360999",
+ "g_geomet_1":"5.59584e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00314944063318,
+ "Shape_Area":1.54117839996e-07,
+ "Shape_Le_3":0.00314944248397,
+ "Shape_Ar_2":1.54117839996e-07,
+ "building_height":14.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":716,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55249300756809,
+ 45.52978637519136
+ ],
+ [
+ -73.55253594390054,
+ 45.52980591656009
+ ],
+ [
+ -73.55254779156917,
+ 45.52979307154331
+ ],
+ [
+ -73.55250766651744,
+ 45.52977264883897
+ ],
+ [
+ -73.55250486602858,
+ 45.529775448428495
+ ],
+ [
+ -73.55249300756809,
+ 45.52978637519136
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55229762535697,
+ 45.5296974484288
+ ],
+ [
+ -73.55243845289414,
+ 45.52976154490967
+ ],
+ [
+ -73.55249217029926,
+ 45.5297124805968
+ ],
+ [
+ -73.5523663380579,
+ 45.52965521086958
+ ],
+ [
+ -73.55236026583545,
+ 45.52966074889474
+ ],
+ [
+ -73.55234176588164,
+ 45.52965064860884
+ ],
+ [
+ -73.55229762535697,
+ 45.5296974484288
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":716,
+ "ID_UEV":"01019192",
+ "CIVIQUE_DE":" 2327",
+ "CIVIQUE_FI":" 2327",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-73-0413-2-000-0000",
+ "SUPERFICIE":157,
+ "SUPERFIC_1":162,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000589116991409,
+ "OBJECTID":85369,
+ "Join_Count":2,
+ "TARGET_FID":85369,
+ "feature_id":"3a8c55ac-ae15-45a4-8785-fdf662e6aaf7",
+ "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.57,
+ "heightmax":32.95,
+ "elevmin":18.56,
+ "elevmax":19.82,
+ "bldgarea":813.05,
+ "comment":" ",
+ "OBJECTID_2":85369,
+ "Shape_Le_1":0.000589116991409,
+ "Shape_Ar_1":1.12104199657e-08,
+ "OBJECTID_3":85369,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85368,
+ "g_objectid":"940810",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424470",
+ "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":"66023004373041320000000",
+ "g_sup_tota":"156.7",
+ "g_geometry":"0.000681647",
+ "g_geomet_1":"1.80915e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000589116991409,
+ "Shape_Area":1.12104199657e-08,
+ "Shape_Le_3":0.000589116891067,
+ "Shape_Ar_2":1.12104199657e-08,
+ "building_height":15.190000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":717,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54806223940267,
+ 45.529119276983344
+ ],
+ [
+ -73.5480404650173,
+ 45.52913244845403
+ ],
+ [
+ -73.54800166556626,
+ 45.52910074915055
+ ],
+ [
+ -73.54800146501744,
+ 45.52910074915055
+ ],
+ [
+ -73.54798586537723,
+ 45.52911794868468
+ ],
+ [
+ -73.54795906468094,
+ 45.52910604885537
+ ],
+ [
+ -73.54792716482864,
+ 45.52914144886906
+ ],
+ [
+ -73.5479268653544,
+ 45.52914184906738
+ ],
+ [
+ -73.54793986505457,
+ 45.52914794916882
+ ],
+ [
+ -73.54790436521613,
+ 45.529185248550675
+ ],
+ [
+ -73.54809200336511,
+ 45.52927329397763
+ ],
+ [
+ -73.54818309029922,
+ 45.52917319853458
+ ],
+ [
+ -73.54806223940267,
+ 45.529119276983344
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":717,
+ "ID_UEV":"01019385",
+ "CIVIQUE_DE":" 2418",
+ "CIVIQUE_FI":" 2426",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1968,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-5051-2-000-0000",
+ "SUPERFICIE":362,
+ "SUPERFIC_1":563,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000717239789811,
+ "OBJECTID":85372,
+ "Join_Count":1,
+ "TARGET_FID":85372,
+ "feature_id":"b7ee2925-24ee-4e61-bf72-aa7a709947a5",
+ "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.49,
+ "heightmax":13.14,
+ "elevmin":18.81,
+ "elevmax":19.73,
+ "bldgarea":1083.09,
+ "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_2":85372,
+ "Shape_Le_1":0.000717239789811,
+ "Shape_Ar_1":2.5669076263e-08,
+ "OBJECTID_3":85372,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85371,
+ "g_objectid":"940759",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424388",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014302394240000000",
+ "g_sup_tota":"188",
+ "g_geometry":"0.000629303",
+ "g_geomet_1":"2.16982e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000717239789811,
+ "Shape_Area":2.5669076263e-08,
+ "Shape_Le_3":0.00071723879848,
+ "Shape_Ar_2":2.5669076263e-08,
+ "building_height":5.325
+ }
+ },
+ {
+ "type":"Feature",
+ "id":718,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56079892655106,
+ 45.53047555805086
+ ],
+ [
+ -73.5608670888669,
+ 45.53050787878587
+ ],
+ [
+ -73.5609684874276,
+ 45.530399508680674
+ ],
+ [
+ -73.56095596886472,
+ 45.53039354887348
+ ],
+ [
+ -73.56090018931413,
+ 45.530366988296166
+ ],
+ [
+ -73.56079892655106,
+ 45.53047555805086
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":718,
+ "ID_UEV":"01022519",
+ "CIVIQUE_DE":" 2286",
+ "CIVIQUE_FI":" 2290",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-4289-9-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":241,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000447957657116,
+ "OBJECTID":85375,
+ "Join_Count":1,
+ "TARGET_FID":85375,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":85375,
+ "Shape_Le_1":0.000447957657116,
+ "Shape_Ar_1":1.06861775778e-08,
+ "OBJECTID_3":85375,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85374,
+ "g_objectid":"940360",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423692",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303428990000000",
+ "g_sup_tota":"180.7",
+ "g_geometry":"0.000735109",
+ "g_geomet_1":"2.10258e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000447957657116,
+ "Shape_Area":1.06861775778e-08,
+ "Shape_Le_3":0.000447956882094,
+ "Shape_Ar_2":1.06861775778e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":719,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5608670888669,
+ 45.53050787878587
+ ],
+ [
+ -73.56087946893419,
+ 45.530513748660866
+ ],
+ [
+ -73.5609354580268,
+ 45.53054024178902
+ ],
+ [
+ -73.56103661736785,
+ 45.530431945428234
+ ],
+ [
+ -73.5609684874276,
+ 45.530399508680674
+ ],
+ [
+ -73.5608670888669,
+ 45.53050787878587
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":719,
+ "ID_UEV":"01022521",
+ "CIVIQUE_DE":" 2292",
+ "CIVIQUE_FI":" 2296",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-3692-5-000-0000",
+ "SUPERFICIE":183,
+ "SUPERFIC_1":244,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000447702745615,
+ "OBJECTID":85376,
+ "Join_Count":1,
+ "TARGET_FID":85376,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":85376,
+ "Shape_Le_1":0.000447702745615,
+ "Shape_Ar_1":1.06754325284e-08,
+ "OBJECTID_3":85376,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85375,
+ "g_objectid":"940360",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423692",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303428990000000",
+ "g_sup_tota":"180.7",
+ "g_geometry":"0.000735109",
+ "g_geomet_1":"2.10258e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000447702745615,
+ "Shape_Area":1.06754325284e-08,
+ "Shape_Le_3":0.000447703685292,
+ "Shape_Ar_2":1.06754325284e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":720,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54587390018219,
+ 45.527464129616185
+ ],
+ [
+ -73.5458664636882,
+ 45.527471848497306
+ ],
+ [
+ -73.54584876413101,
+ 45.5274632491799
+ ],
+ [
+ -73.54584846375744,
+ 45.52746364847889
+ ],
+ [
+ -73.54571302046136,
+ 45.52761615551146
+ ],
+ [
+ -73.54585965851827,
+ 45.52768198588524
+ ],
+ [
+ -73.54595310347479,
+ 45.52758065117641
+ ],
+ [
+ -73.5459335639047,
+ 45.52759954863056
+ ],
+ [
+ -73.54588816432917,
+ 45.52757644864448
+ ],
+ [
+ -73.54596246451797,
+ 45.52750454874622
+ ],
+ [
+ -73.54599386434721,
+ 45.52752054858475
+ ],
+ [
+ -73.54599584735232,
+ 45.52751862043828
+ ],
+ [
+ -73.54587390018219,
+ 45.527464129616185
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":720,
+ "ID_UEV":"01018508",
+ "CIVIQUE_DE":" 554",
+ "CIVIQUE_FI":" 562",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-20-1873-5-000-0000",
+ "SUPERFICIE":303,
+ "SUPERFIC_1":639,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000886535556516,
+ "OBJECTID":85381,
+ "Join_Count":1,
+ "TARGET_FID":85381,
+ "feature_id":"b00ab300-31ea-4632-8583-3f8d837da58b",
+ "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.16,
+ "heightmax":13.72,
+ "elevmin":19.27,
+ "elevmax":21.01,
+ "bldgarea":1205.67,
+ "comment":" ",
+ "OBJECTID_2":85381,
+ "Shape_Le_1":0.000886535556516,
+ "Shape_Ar_1":2.8287419161e-08,
+ "OBJECTID_3":85381,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85380,
+ "g_objectid":"940943",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424716",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014320187350000000",
+ "g_sup_tota":"302.7",
+ "g_geometry":"0.000772417",
+ "g_geomet_1":"3.48617e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000886535556516,
+ "Shape_Area":2.8287419161e-08,
+ "Shape_Le_3":0.000886533972855,
+ "Shape_Ar_2":2.8287419161e-08,
+ "building_height":6.28
+ }
+ },
+ {
+ "type":"Feature",
+ "id":721,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55015073409095,
+ 45.530350591856624
+ ],
+ [
+ -73.55029870943973,
+ 45.5304165121626
+ ],
+ [
+ -73.55037489730552,
+ 45.53033202355434
+ ],
+ [
+ -73.55023836582977,
+ 45.53027174919217
+ ],
+ [
+ -73.55025186645231,
+ 45.530256748500435
+ ],
+ [
+ -73.55024004486403,
+ 45.530251552217656
+ ],
+ [
+ -73.55015073409095,
+ 45.530350591856624
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":721,
+ "ID_UEV":"01018716",
+ "CIVIQUE_DE":" 1680",
+ "CIVIQUE_FI":" 1686",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-7076-9-000-0000",
+ "SUPERFICIE":313,
+ "SUPERFIC_1":419,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000591459840294,
+ "OBJECTID":85389,
+ "Join_Count":1,
+ "TARGET_FID":85389,
+ "feature_id":"16cb361e-6d2c-4f37-bd8c-6dbc953e0ff8",
+ "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.44,
+ "heightmax":34.14,
+ "elevmin":20.45,
+ "elevmax":22.01,
+ "bldgarea":1494.3,
+ "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_2":85389,
+ "Shape_Le_1":0.000591459840294,
+ "Shape_Ar_1":1.7727978902e-08,
+ "OBJECTID_3":85389,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85388,
+ "g_objectid":"940685",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424271",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383628240000000",
+ "g_sup_tota":"155",
+ "g_geometry":"0.000624466",
+ "g_geomet_1":"1.77063e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000591459840294,
+ "Shape_Area":1.7727978902e-08,
+ "Shape_Le_3":0.000591461583326,
+ "Shape_Ar_2":1.7727978902e-08,
+ "building_height":15.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":722,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56165434009756,
+ 45.512522156422676
+ ],
+ [
+ -73.56176032070408,
+ 45.51256851197754
+ ],
+ [
+ -73.56175950052237,
+ 45.51256944547382
+ ],
+ [
+ -73.5619437868981,
+ 45.51266232115949
+ ],
+ [
+ -73.56203712753326,
+ 45.51255605726652
+ ],
+ [
+ -73.56198043786875,
+ 45.51253039511194
+ ],
+ [
+ -73.56198002148265,
+ 45.51253020895228
+ ],
+ [
+ -73.56174388019775,
+ 45.51242330743998
+ ],
+ [
+ -73.56171586811466,
+ 45.51245424591701
+ ],
+ [
+ -73.56165434009756,
+ 45.512522156422676
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":722,
+ "ID_UEV":"01021659",
+ "CIVIQUE_DE":" 263",
+ "CIVIQUE_FI":" 269",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-94-6704-0-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":641,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000920009027444,
+ "OBJECTID":85391,
+ "Join_Count":1,
+ "TARGET_FID":85391,
+ "feature_id":"e7f1740f-b567-47da-8fe0-1b455b1e0fdf",
+ "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":32.53,
+ "elevmin":25.02,
+ "elevmax":26.47,
+ "bldgarea":3711.13,
+ "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_2":85391,
+ "Shape_Le_1":0.000920009027444,
+ "Shape_Ar_1":4.17657283246e-08,
+ "OBJECTID_3":85391,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85390,
+ "g_objectid":"938342",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161732",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994194741520000000",
+ "g_sup_tota":"360.9",
+ "g_geometry":"0.000916715",
+ "g_geomet_1":"4.16854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000920009027444,
+ "Shape_Area":4.17657283246e-08,
+ "Shape_Le_3":0.000920008608981,
+ "Shape_Ar_2":4.17657283246e-08,
+ "building_height":16.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":723,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55368661386798,
+ 45.52061583360413
+ ],
+ [
+ -73.55373046571027,
+ 45.52057204741235
+ ],
+ [
+ -73.55379276624501,
+ 45.52060284829311
+ ],
+ [
+ -73.55372336016679,
+ 45.520672253472014
+ ],
+ [
+ -73.55391178792053,
+ 45.52076000841795
+ ],
+ [
+ -73.55398418154658,
+ 45.52068121251824
+ ],
+ [
+ -73.55373541018288,
+ 45.52056272144274
+ ],
+ [
+ -73.55368661386798,
+ 45.52061583360413
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":723,
+ "ID_UEV":"01022443",
+ "CIVIQUE_DE":" 1460",
+ "CIVIQUE_FI":" 1464",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1945,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-9406-1-000-0000",
+ "SUPERFICIE":248,
+ "SUPERFIC_1":400,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000892158508234,
+ "OBJECTID":85395,
+ "Join_Count":1,
+ "TARGET_FID":85395,
+ "feature_id":"6a0bf45d-7d5d-4756-afea-8bbfada8c802",
+ "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.59,
+ "heightmax":19.85,
+ "elevmin":16.96,
+ "elevmax":18.25,
+ "bldgarea":1586.6,
+ "comment":" ",
+ "OBJECTID_2":85395,
+ "Shape_Le_1":0.000892158508234,
+ "Shape_Ar_1":2.20181786026e-08,
+ "OBJECTID_3":85395,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85394,
+ "g_objectid":"938384",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"5665076",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004252869450000000",
+ "g_sup_tota":"485.8",
+ "g_geometry":"0.000989685",
+ "g_geomet_1":"5.58911e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000892158508234,
+ "Shape_Area":2.20181786026e-08,
+ "Shape_Le_3":0.000892159672713,
+ "Shape_Ar_2":2.20181786026e-08,
+ "building_height":8.63
+ }
+ },
+ {
+ "type":"Feature",
+ "id":724,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55655573088411,
+ 45.53071976445586
+ ],
+ [
+ -73.5564685676921,
+ 45.53068084899228
+ ],
+ [
+ -73.55641936848092,
+ 45.530735348807596
+ ],
+ [
+ -73.55650501811394,
+ 45.530773632947096
+ ],
+ [
+ -73.55655573088411,
+ 45.53071976445586
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55635724241465,
+ 45.53071898744161
+ ],
+ [
+ -73.55636255740794,
+ 45.53072143000029
+ ],
+ [
+ -73.55641636834257,
+ 45.530662948886274
+ ],
+ [
+ -73.55641956813041,
+ 45.53065934890013
+ ],
+ [
+ -73.55641524598866,
+ 45.53065737668688
+ ],
+ [
+ -73.55635724241465,
+ 45.53071898744161
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":724,
+ "ID_UEV":"01023027",
+ "CIVIQUE_DE":" 2061",
+ "CIVIQUE_FI":" 2061",
+ "NOM_RUE":"rue Harmony (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-34-9023-2-000-0000",
+ "SUPERFICIE":116,
+ "SUPERFIC_1":110,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000516185524262,
+ "OBJECTID":85401,
+ "Join_Count":2,
+ "TARGET_FID":85401,
+ "feature_id":"83ff7d6a-86db-4472-ac12-909db444e70e",
+ "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.59,
+ "heightmax":27.73,
+ "elevmin":19.18,
+ "elevmax":20.22,
+ "bldgarea":58.3,
+ "comment":" ",
+ "OBJECTID_2":85401,
+ "Shape_Le_1":0.000516185524262,
+ "Shape_Ar_1":7.03838489695e-09,
+ "OBJECTID_3":85401,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85400,
+ "g_objectid":"940496",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423984",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004334843830000000",
+ "g_sup_tota":"346.2",
+ "g_geometry":"0.000861213",
+ "g_geomet_1":"4.02628e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000516185524262,
+ "Shape_Area":7.03838489695e-09,
+ "Shape_Le_3":0.000516184599857,
+ "Shape_Ar_2":7.03838489695e-09,
+ "building_height":12.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":725,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55766591607102,
+ 45.50694078753761
+ ],
+ [
+ -73.55775643193563,
+ 45.50698177144189
+ ],
+ [
+ -73.558000131123,
+ 45.50671808392273
+ ],
+ [
+ -73.557920667027,
+ 45.50668234486462
+ ],
+ [
+ -73.5579092159594,
+ 45.50667719894387
+ ],
+ [
+ -73.55781579528457,
+ 45.506778410445584
+ ],
+ [
+ -73.55766591607102,
+ 45.50694078753761
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":725,
+ "ID_UEV":"01058679",
+ "CIVIQUE_DE":" 904",
+ "CIVIQUE_FI":" 906",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-27-8068-8-000-0000",
+ "SUPERFICIE":298,
+ "SUPERFIC_1":853,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000916813998221,
+ "OBJECTID":85402,
+ "Join_Count":1,
+ "TARGET_FID":85402,
+ "feature_id":"2c568911-3697-4d60-86ca-0131a07cc633",
+ "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.97,
+ "heightmax":26.01,
+ "elevmin":14.79,
+ "elevmax":15.67,
+ "bldgarea":1474.99,
+ "comment":" ",
+ "OBJECTID_2":85402,
+ "Shape_Le_1":0.000916813998221,
+ "Shape_Ar_1":3.38837255928e-08,
+ "OBJECTID_3":85402,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85401,
+ "g_objectid":"939537",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180849",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004027956780000000",
+ "g_sup_tota":"396.1",
+ "g_geometry":"0.000858362",
+ "g_geomet_1":"4.56094e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000916813998221,
+ "Shape_Area":3.38837255928e-08,
+ "Shape_Le_3":0.000916813375839,
+ "Shape_Ar_2":3.38837255928e-08,
+ "building_height":12.520000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":726,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55775643193563,
+ 45.50698177144189
+ ],
+ [
+ -73.55793387986651,
+ 45.507062114175525
+ ],
+ [
+ -73.55817683081793,
+ 45.506797555213296
+ ],
+ [
+ -73.558000131123,
+ 45.50671808392273
+ ],
+ [
+ -73.55775643193563,
+ 45.50698177144189
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":726,
+ "ID_UEV":"01058680",
+ "CIVIQUE_DE":" 908",
+ "CIVIQUE_FI":" 914",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Fondations et organismes de charit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-27-7075-4-000-0000",
+ "SUPERFICIE":582,
+ "SUPERFIC_1":2521,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00110678128559,
+ "OBJECTID":85403,
+ "Join_Count":1,
+ "TARGET_FID":85403,
+ "feature_id":"2c568911-3697-4d60-86ca-0131a07cc633",
+ "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.97,
+ "heightmax":26.01,
+ "elevmin":14.79,
+ "elevmax":15.67,
+ "bldgarea":1474.99,
+ "comment":" ",
+ "OBJECTID_2":85403,
+ "Shape_Le_1":0.00110678128559,
+ "Shape_Ar_1":6.62126537515e-08,
+ "OBJECTID_3":85403,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85402,
+ "g_objectid":"938452",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1180846",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6920",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004027707540000000",
+ "g_sup_tota":"581.5",
+ "g_geometry":"0.0011146",
+ "g_geomet_1":"6.69676e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00110678128559,
+ "Shape_Area":6.62126537515e-08,
+ "Shape_Le_3":0.00110678107949,
+ "Shape_Ar_2":6.62126537515e-08,
+ "building_height":12.520000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":727,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55081894655898,
+ 45.523087587872176
+ ],
+ [
+ -73.55089963822957,
+ 45.523126129217786
+ ],
+ [
+ -73.55099274594032,
+ 45.52302647983847
+ ],
+ [
+ -73.55091205067245,
+ 45.522987942989474
+ ],
+ [
+ -73.55081894655898,
+ 45.523087587872176
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":727,
+ "ID_UEV":"01022134",
+ "CIVIQUE_DE":" 1283",
+ "CIVIQUE_FI":" 1289",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-85-2272-6-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00045159998694,
+ "OBJECTID":85412,
+ "Join_Count":1,
+ "TARGET_FID":85412,
+ "feature_id":"9eeb7926-ecc8-4733-8a07-4fbf93032822",
+ "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.51,
+ "heightmax":29.65,
+ "elevmin":16.2,
+ "elevmax":17.71,
+ "bldgarea":1649.56,
+ "comment":" ",
+ "OBJECTID_2":85412,
+ "Shape_Le_1":0.00045159998694,
+ "Shape_Ar_1":1.16290966018e-08,
+ "OBJECTID_3":85412,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85411,
+ "g_objectid":"942309",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567835",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004285227260000000",
+ "g_sup_tota":"159.3",
+ "g_geometry":"0.000607802",
+ "g_geomet_1":"1.82707e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00045159998694,
+ "Shape_Area":1.16290966018e-08,
+ "Shape_Le_3":0.00045159940394,
+ "Shape_Ar_2":1.16290966018e-08,
+ "building_height":13.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":728,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56062626571143,
+ 45.53508617983363
+ ],
+ [
+ -73.56063097006506,
+ 45.53508834989773
+ ],
+ [
+ -73.56061616992216,
+ 45.5351042499115
+ ],
+ [
+ -73.56061637047097,
+ 45.535104349736244
+ ],
+ [
+ -73.56073116982947,
+ 45.53516294956077
+ ],
+ [
+ -73.56073387049358,
+ 45.535160249795986
+ ],
+ [
+ -73.56080496999522,
+ 45.53508815024823
+ ],
+ [
+ -73.56080861045086,
+ 45.535089914718085
+ ],
+ [
+ -73.56088357433933,
+ 45.535008174438
+ ],
+ [
+ -73.56085507032708,
+ 45.53499535010562
+ ],
+ [
+ -73.56075067072872,
+ 45.534948437870405
+ ],
+ [
+ -73.56062626571143,
+ 45.53508617983363
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":728,
+ "ID_UEV":"01023316",
+ "CIVIQUE_DE":" 2607",
+ "CIVIQUE_FI":" 2617",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-5506-2-000-0000",
+ "SUPERFICIE":352,
+ "SUPERFIC_1":664,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000707368165458,
+ "OBJECTID":85413,
+ "Join_Count":1,
+ "TARGET_FID":85413,
+ "feature_id":"51400be0-ba4f-4c2c-8c00-6c8b36a42429",
+ "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.46,
+ "heightmax":52.45,
+ "elevmin":30.1,
+ "elevmax":40.83,
+ "bldgarea":2250.42,
+ "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_2":85413,
+ "Shape_Le_1":0.000707368165458,
+ "Shape_Ar_1":2.83474360845e-08,
+ "OBJECTID_3":85413,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85412,
+ "g_objectid":"941440",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425467",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004309461370000000",
+ "g_sup_tota":"332.8",
+ "g_geometry":"0.000838845",
+ "g_geomet_1":"3.7921e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000707368165458,
+ "Shape_Area":2.83474360845e-08,
+ "Shape_Le_3":0.000707368687489,
+ "Shape_Ar_2":2.83474360845e-08,
+ "building_height":24.995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":729,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56042677000129,
+ 45.53499415760459
+ ],
+ [
+ -73.56052559470228,
+ 45.5350397442391
+ ],
+ [
+ -73.56065159421755,
+ 45.53490391783184
+ ],
+ [
+ -73.5605527470335,
+ 45.5348595012153
+ ],
+ [
+ -73.56042677000129,
+ 45.53499415760459
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":729,
+ "ID_UEV":"01023321",
+ "CIVIQUE_DE":" 2589",
+ "CIVIQUE_FI":" 2597",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-7295-2-000-0000",
+ "SUPERFICIE":256,
+ "SUPERFIC_1":418,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000586866996508,
+ "OBJECTID":85414,
+ "Join_Count":1,
+ "TARGET_FID":85414,
+ "feature_id":"51400be0-ba4f-4c2c-8c00-6c8b36a42429",
+ "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.46,
+ "heightmax":52.45,
+ "elevmin":30.1,
+ "elevmax":40.83,
+ "bldgarea":2250.42,
+ "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_2":85414,
+ "Shape_Le_1":0.000586866996508,
+ "Shape_Ar_1":1.90363778833e-08,
+ "OBJECTID_3":85414,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85413,
+ "g_objectid":"941437",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425462",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308729520000000",
+ "g_sup_tota":"255.9",
+ "g_geometry":"0.000793904",
+ "g_geomet_1":"2.96674e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000586866996508,
+ "Shape_Area":1.90363778833e-08,
+ "Shape_Le_3":0.000586867226437,
+ "Shape_Ar_2":1.90363778833e-08,
+ "building_height":24.995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":730,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56032880775012,
+ 45.53494897116838
+ ],
+ [
+ -73.56042677000129,
+ 45.53499415760459
+ ],
+ [
+ -73.5605527470335,
+ 45.5348595012153
+ ],
+ [
+ -73.56054707051274,
+ 45.53485694983866
+ ],
+ [
+ -73.56045361026774,
+ 45.53481495059979
+ ],
+ [
+ -73.56032880775012,
+ 45.53494897116838
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":730,
+ "ID_UEV":"01023324",
+ "CIVIQUE_DE":" 2579",
+ "CIVIQUE_FI":" 2587",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-8090-6-000-0000",
+ "SUPERFICIE":259,
+ "SUPERFIC_1":461,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000584097494864,
+ "OBJECTID":85415,
+ "Join_Count":1,
+ "TARGET_FID":85415,
+ "feature_id":"51400be0-ba4f-4c2c-8c00-6c8b36a42429",
+ "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.46,
+ "heightmax":52.45,
+ "elevmin":30.1,
+ "elevmax":40.83,
+ "bldgarea":2250.42,
+ "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_2":85415,
+ "Shape_Le_1":0.000584097494864,
+ "Shape_Ar_1":1.88650248571e-08,
+ "OBJECTID_3":85415,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85414,
+ "g_objectid":"941437",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425462",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308729520000000",
+ "g_sup_tota":"255.9",
+ "g_geometry":"0.000793904",
+ "g_geomet_1":"2.96674e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000584097494864,
+ "Shape_Area":1.88650248571e-08,
+ "Shape_Le_3":0.00058409787028,
+ "Shape_Ar_2":1.88650248571e-08,
+ "building_height":24.995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":731,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54538846412817,
+ 45.52897114874981
+ ],
+ [
+ -73.54533513433083,
+ 45.52903291868454
+ ],
+ [
+ -73.54560429602328,
+ 45.529146704507106
+ ],
+ [
+ -73.54564556411334,
+ 45.529098848883066
+ ],
+ [
+ -73.54566296419628,
+ 45.529078149187534
+ ],
+ [
+ -73.54539196428956,
+ 45.528966849091105
+ ],
+ [
+ -73.54538846412817,
+ 45.52897114874981
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":731,
+ "ID_UEV":"05064250",
+ "CIVIQUE_DE":" 554",
+ "CIVIQUE_FI":" 576",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-22-4235-0-000-0000",
+ "SUPERFICIE":535,
+ "SUPERFIC_1":712,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000762574945479,
+ "OBJECTID":85416,
+ "Join_Count":1,
+ "TARGET_FID":85416,
+ "feature_id":"84b173de-ed72-4144-9a30-a8af1406b469",
+ "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.55,
+ "heightmax":10.41,
+ "elevmin":19.1,
+ "elevmax":19.69,
+ "bldgarea":229.61,
+ "comment":" ",
+ "OBJECTID_2":85416,
+ "Shape_Le_1":0.000762574945479,
+ "Shape_Ar_1":2.46834226663e-08,
+ "OBJECTID_3":85416,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85415,
+ "g_objectid":"940729",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424334",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014322423500000000",
+ "g_sup_tota":"534.7",
+ "g_geometry":"0.00106134",
+ "g_geomet_1":"6.11532e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000762574945479,
+ "Shape_Area":2.46834226663e-08,
+ "Shape_Le_3":0.00076257379314,
+ "Shape_Ar_2":2.46834226663e-08,
+ "building_height":4.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":732,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55777666937963,
+ 45.53507901583421
+ ],
+ [
+ -73.55785017276911,
+ 45.535110185437006
+ ],
+ [
+ -73.55794791018975,
+ 45.53499634655444
+ ],
+ [
+ -73.55794536870565,
+ 45.53499525028087
+ ],
+ [
+ -73.55787556872436,
+ 45.5349655501703
+ ],
+ [
+ -73.55793336905158,
+ 45.53489874942804
+ ],
+ [
+ -73.55793336905158,
+ 45.53489864960329
+ ],
+ [
+ -73.55793199848479,
+ 45.53489809741956
+ ],
+ [
+ -73.55777666937963,
+ 45.53507901583421
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":732,
+ "ID_UEV":"01023712",
+ "CIVIQUE_DE":" 2384",
+ "CIVIQUE_FI":" 2386",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-7899-9-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":161,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000636866045789,
+ "OBJECTID":85418,
+ "Join_Count":1,
+ "TARGET_FID":85418,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":85418,
+ "Shape_Le_1":0.000636866045789,
+ "Shape_Ar_1":1.15334448186e-08,
+ "OBJECTID_3":85418,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85417,
+ "g_objectid":"941143",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425065",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328789990000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654751",
+ "g_geomet_1":"1.88311e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000636866045789,
+ "Shape_Area":1.15334448186e-08,
+ "Shape_Le_3":0.000636866346374,
+ "Shape_Ar_2":1.15334448186e-08,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":733,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55792367885654,
+ 45.5351413550398
+ ],
+ [
+ -73.55799718404465,
+ 45.53517252464259
+ ],
+ [
+ -73.55811595750728,
+ 45.53503418193225
+ ],
+ [
+ -73.55808756950758,
+ 45.53501824954288
+ ],
+ [
+ -73.5580874687835,
+ 45.535018350266945
+ ],
+ [
+ -73.55805646915258,
+ 45.535054149579636
+ ],
+ [
+ -73.55801686930492,
+ 45.535037249519746
+ ],
+ [
+ -73.55808236872818,
+ 45.53496124961227
+ ],
+ [
+ -73.5580793919722,
+ 45.534959986964125
+ ],
+ [
+ -73.55792367885654,
+ 45.5351413550398
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":733,
+ "ID_UEV":"01023717",
+ "CIVIQUE_DE":" 2396",
+ "CIVIQUE_FI":" 2398",
+ "NOM_RUE":"rue Frontenac (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-6606-7-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":203,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000727887803819,
+ "OBJECTID":85419,
+ "Join_Count":1,
+ "TARGET_FID":85419,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":85419,
+ "Shape_Le_1":0.000727887803819,
+ "Shape_Ar_1":1.23099404571e-08,
+ "OBJECTID_3":85419,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85418,
+ "g_objectid":"941142",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425064",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329720320000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654733",
+ "g_geomet_1":"1.88304e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000727887803819,
+ "Shape_Area":1.23099404571e-08,
+ "Shape_Le_3":0.000727887563954,
+ "Shape_Ar_2":1.23099404571e-08,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":734,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55799718404465,
+ 45.53517252464259
+ ],
+ [
+ -73.55807068743412,
+ 45.53520369514471
+ ],
+ [
+ -73.55814719635787,
+ 45.53511457952452
+ ],
+ [
+ -73.55812856870033,
+ 45.5351050494088
+ ],
+ [
+ -73.55811656904626,
+ 45.53511664976387
+ ],
+ [
+ -73.5580932694107,
+ 45.53510465010981
+ ],
+ [
+ -73.55814736902771,
+ 45.535052750234534
+ ],
+ [
+ -73.55817246910601,
+ 45.535065650109956
+ ],
+ [
+ -73.5581726687555,
+ 45.53506555028521
+ ],
+ [
+ -73.5582175692073,
+ 45.53502344942295
+ ],
+ [
+ -73.55821286935029,
+ 45.535020950206984
+ ],
+ [
+ -73.55816206934587,
+ 45.53499504973205
+ ],
+ [
+ -73.55816196952112,
+ 45.53499504973205
+ ],
+ [
+ -73.55811696924458,
+ 45.53503474940446
+ ],
+ [
+ -73.55811595750728,
+ 45.53503418193225
+ ],
+ [
+ -73.55799718404465,
+ 45.53517252464259
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":734,
+ "ID_UEV":"01023719",
+ "CIVIQUE_DE":" 2402",
+ "CIVIQUE_FI":" 2404",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-6110-0-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":143,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000732026658415,
+ "OBJECTID":85420,
+ "Join_Count":1,
+ "TARGET_FID":85420,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":85420,
+ "Shape_Le_1":0.000732026658415,
+ "Shape_Ar_1":1.43117614578e-08,
+ "OBJECTID_3":85420,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85419,
+ "g_objectid":"941139",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425061",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329531490000000",
+ "g_sup_tota":"245.3",
+ "g_geometry":"0.000734525",
+ "g_geomet_1":"2.82431e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000732026658415,
+ "Shape_Area":1.43117614578e-08,
+ "Shape_Le_3":0.000732027099958,
+ "Shape_Ar_2":1.43117614578e-08,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":735,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55282784135365,
+ 45.522243995913975
+ ],
+ [
+ -73.55315393552755,
+ 45.52239334812481
+ ],
+ [
+ -73.5531969330139,
+ 45.52234723268893
+ ],
+ [
+ -73.55315676569403,
+ 45.52232914822191
+ ],
+ [
+ -73.55316184506495,
+ 45.522323578720474
+ ],
+ [
+ -73.55314994073902,
+ 45.52231812703023
+ ],
+ [
+ -73.55287514389462,
+ 45.52219226780921
+ ],
+ [
+ -73.55282784135365,
+ 45.522243995913975
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":735,
+ "ID_UEV":"01022375",
+ "CIVIQUE_DE":" 1673",
+ "CIVIQUE_FI":" 1675",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-64-5886-5-000-0000",
+ "SUPERFICIE":208,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000858744105955,
+ "OBJECTID":85421,
+ "Join_Count":1,
+ "TARGET_FID":85421,
+ "feature_id":"e223d38a-7ae9-49e7-8208-e6439ccb9f9c",
+ "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.44,
+ "heightmax":32.61,
+ "elevmin":16.81,
+ "elevmax":18.55,
+ "bldgarea":2327.6,
+ "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_2":85421,
+ "Shape_Le_1":0.000858744105955,
+ "Shape_Ar_1":2.3647040976e-08,
+ "OBJECTID_3":85421,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85420,
+ "g_objectid":"938285",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567770",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004264567940000000",
+ "g_sup_tota":"193.6",
+ "g_geometry":"0.000765452",
+ "g_geomet_1":"2.23086e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000858744105955,
+ "Shape_Area":2.3647040976e-08,
+ "Shape_Le_3":0.000858744899019,
+ "Shape_Ar_2":2.3647040976e-08,
+ "building_height":15.084999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":736,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55278052802079,
+ 45.522295733911285
+ ],
+ [
+ -73.55310516709163,
+ 45.52244565269501
+ ],
+ [
+ -73.55315393552755,
+ 45.52239334812481
+ ],
+ [
+ -73.55282784135365,
+ 45.522243995913975
+ ],
+ [
+ -73.55278052802079,
+ 45.522295733911285
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":736,
+ "ID_UEV":"01022376",
+ "CIVIQUE_DE":" 1677",
+ "CIVIQUE_FI":" 1679",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-64-6292-5-000-0000",
+ "SUPERFICIE":208,
+ "SUPERFIC_1":347,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000857875271768,
+ "OBJECTID":85422,
+ "Join_Count":1,
+ "TARGET_FID":85422,
+ "feature_id":"e223d38a-7ae9-49e7-8208-e6439ccb9f9c",
+ "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.44,
+ "heightmax":32.61,
+ "elevmin":16.81,
+ "elevmax":18.55,
+ "bldgarea":2327.6,
+ "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_2":85422,
+ "Shape_Le_1":0.000857875271768,
+ "Shape_Ar_1":2.41146176183e-08,
+ "OBJECTID_3":85422,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85421,
+ "g_objectid":"938286",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567773",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004264659850000000",
+ "g_sup_tota":"208.3",
+ "g_geometry":"0.000863787",
+ "g_geomet_1":"2.43508e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000857875271768,
+ "Shape_Area":2.41146176183e-08,
+ "Shape_Le_3":0.000857875696919,
+ "Shape_Ar_2":2.41146176183e-08,
+ "building_height":15.084999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":737,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55268590585172,
+ 45.52239920720794
+ ],
+ [
+ -73.55300837036185,
+ 45.522549467734045
+ ],
+ [
+ -73.55305632311267,
+ 45.5224980382042
+ ],
+ [
+ -73.55273321198999,
+ 45.52234747550588
+ ],
+ [
+ -73.55268696615241,
+ 45.522398047981824
+ ],
+ [
+ -73.55268590585172,
+ 45.52239920720794
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":737,
+ "ID_UEV":"01022378",
+ "CIVIQUE_DE":" 1685",
+ "CIVIQUE_FI":" 1687",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1951,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-65-6904-2-000-0000",
+ "SUPERFICIE":208,
+ "SUPERFIC_1":259,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00085263995824,
+ "OBJECTID":85423,
+ "Join_Count":1,
+ "TARGET_FID":85423,
+ "feature_id":"e223d38a-7ae9-49e7-8208-e6439ccb9f9c",
+ "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.44,
+ "heightmax":32.61,
+ "elevmin":16.81,
+ "elevmax":18.55,
+ "bldgarea":2327.6,
+ "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_2":85423,
+ "Shape_Le_1":0.00085263995824,
+ "Shape_Ar_1":2.38135615834e-08,
+ "OBJECTID_3":85423,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85422,
+ "g_objectid":"938286",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567773",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004264659850000000",
+ "g_sup_tota":"208.3",
+ "g_geometry":"0.000863787",
+ "g_geomet_1":"2.43508e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00085263995824,
+ "Shape_Area":2.38135615834e-08,
+ "Shape_Le_3":0.0008526407242,
+ "Shape_Ar_2":2.38135615834e-08,
+ "building_height":15.084999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":738,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55252096569185,
+ 45.52286084809995
+ ],
+ [
+ -73.55248726629615,
+ 45.52289384782311
+ ],
+ [
+ -73.55249226652673,
+ 45.5228963479384
+ ],
+ [
+ -73.55258996617584,
+ 45.52294424762922
+ ],
+ [
+ -73.5525933665125,
+ 45.522940747467814
+ ],
+ [
+ -73.55262626641091,
+ 45.52290794829347
+ ],
+ [
+ -73.55252426620376,
+ 45.5228574477633
+ ],
+ [
+ -73.55252096569185,
+ 45.52286084809995
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":738,
+ "ID_UEV":"01022381",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-65-9754-8-000-0000",
+ "SUPERFICIE":674,
+ "SUPERFIC_1":158,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000331458575296,
+ "OBJECTID":85424,
+ "Join_Count":1,
+ "TARGET_FID":85424,
+ "feature_id":"e2d9ea42-a68b-469e-9676-aa9c156c0bee",
+ "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.79,
+ "heightmax":22.1,
+ "elevmin":17.64,
+ "elevmax":18.17,
+ "bldgarea":48.36,
+ "comment":" ",
+ "OBJECTID_2":85424,
+ "Shape_Le_1":0.000331458575296,
+ "Shape_Ar_1":5.56713500074e-09,
+ "OBJECTID_3":85424,
+ "Join_Cou_1":1,
+ "TARGET_F_1":85423,
+ "g_objectid":"938287",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567784",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004265975480000000",
+ "g_sup_tota":"673.5",
+ "g_geometry":"0.00126128",
+ "g_geomet_1":"7.81287e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000331458575296,
+ "Shape_Area":5.56713500074e-09,
+ "Shape_Le_3":0.000331458470913,
+ "Shape_Ar_2":5.56713500074e-09,
+ "building_height":9.655000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":739,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5549630675134,
+ 45.52968898670767
+ ],
+ [
+ -73.55505889477402,
+ 45.52973525862558
+ ],
+ [
+ -73.55510346697326,
+ 45.52969454901452
+ ],
+ [
+ -73.55511176681642,
+ 45.52969904922204
+ ],
+ [
+ -73.55511536680258,
+ 45.529695549060634
+ ],
+ [
+ -73.55511878242771,
+ 45.52969219728737
+ ],
+ [
+ -73.55501124149744,
+ 45.52964069401311
+ ],
+ [
+ -73.5549630675134,
+ 45.52968898670767
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":739,
+ "ID_UEV":"01018372",
+ "CIVIQUE_DE":" 2247",
+ "CIVIQUE_FI":" 2247",
+ "NOM_RUE":"rue Coupal (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-43-9513-3-000-0000",
+ "SUPERFICIE":146,
+ "SUPERFIC_1":109,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000373477814152,
+ "OBJECTID":85429,
+ "Join_Count":1,
+ "TARGET_FID":85429,
+ "feature_id":"27fedf68-4ae9-480c-bc9b-60e9a84a5396",
+ "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.45,
+ "heightmax":34.81,
+ "elevmin":18.8,
+ "elevmax":21.06,
+ "bldgarea":1672.46,
+ "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_2":85429,
+ "Shape_Le_1":0.000373477814152,
+ "Shape_Ar_1":7.07106656472e-09,
+ "OBJECTID_3":85429,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85428,
+ "g_objectid":"940867",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424551",
+ "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":"66023004343991840000000",
+ "g_sup_tota":"146.3",
+ "g_geometry":"0.000671615",
+ "g_geomet_1":"1.7255e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000373477814152,
+ "Shape_Area":7.07106656472e-09,
+ "Shape_Le_3":0.000373477176477,
+ "Shape_Ar_2":7.07106656472e-09,
+ "building_height":16.18
+ }
+ },
+ {
+ "type":"Feature",
+ "id":740,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55374796471864,
+ 45.53030949104048
+ ],
+ [
+ -73.55389223306194,
+ 45.53037963186481
+ ],
+ [
+ -73.55393494276524,
+ 45.53033581329744
+ ],
+ [
+ -73.55380936683066,
+ 45.530275248454245
+ ],
+ [
+ -73.55380916718117,
+ 45.530275248454245
+ ],
+ [
+ -73.55378426675236,
+ 45.53030284864784
+ ],
+ [
+ -73.55376256701071,
+ 45.53029324928432
+ ],
+ [
+ -73.55374796471864,
+ 45.53030949104048
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":740,
+ "ID_UEV":"01018387",
+ "CIVIQUE_DE":" 2318",
+ "CIVIQUE_FI":" 2320",
+ "NOM_RUE":"rue Coupal (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-53-9777-3-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":172,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000443964879332,
+ "OBJECTID":85430,
+ "Join_Count":1,
+ "TARGET_FID":85430,
+ "feature_id":"f9dffb6a-2571-438d-9a1a-6b3e22917edc",
+ "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.42,
+ "heightmax":25.37,
+ "elevmin":17.23,
+ "elevmax":18.05,
+ "bldgarea":485.77,
+ "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_2":85430,
+ "Shape_Le_1":0.000443964879332,
+ "Shape_Ar_1":8.49952765878e-09,
+ "OBJECTID_3":85430,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85429,
+ "g_objectid":"940853",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424528",
+ "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":"66023004353977730000000",
+ "g_sup_tota":"149.9",
+ "g_geometry":"0.000661596",
+ "g_geomet_1":"1.71347e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000443964879332,
+ "Shape_Area":8.49952765878e-09,
+ "Shape_Le_3":0.00044396450235,
+ "Shape_Ar_2":8.49952765878e-09,
+ "building_height":11.475000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":741,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56215680931115,
+ 45.53153545584691
+ ],
+ [
+ -73.56216887011911,
+ 45.531540349058155
+ ],
+ [
+ -73.56224487002657,
+ 45.53157114903959
+ ],
+ [
+ -73.56225237037243,
+ 45.531562048799806
+ ],
+ [
+ -73.56226605175873,
+ 45.531567458221915
+ ],
+ [
+ -73.5623596621905,
+ 45.53146935028059
+ ],
+ [
+ -73.56226516232923,
+ 45.531420935278234
+ ],
+ [
+ -73.56215680931115,
+ 45.53153545584691
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":741,
+ "ID_UEV":"01022668",
+ "CIVIQUE_DE":" 2437",
+ "CIVIQUE_FI":" 2447",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-95-4014-9-000-0000",
+ "SUPERFICIE":298,
+ "SUPERFIC_1":335,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000520963178237,
+ "OBJECTID":85438,
+ "Join_Count":1,
+ "TARGET_FID":85438,
+ "feature_id":"837da3f2-1bc4-49ab-aa6a-c9875db4f7b6",
+ "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":20.74,
+ "elevmin":38.17,
+ "elevmax":43.69,
+ "bldgarea":1935.12,
+ "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_2":85438,
+ "Shape_Le_1":0.000520963178237,
+ "Shape_Ar_1":1.53489311209e-08,
+ "OBJECTID_3":85438,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85437,
+ "g_objectid":"943579",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2379909",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994395401490000000",
+ "g_sup_tota":"298",
+ "g_geometry":"0.000990356",
+ "g_geomet_1":"3.41292e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000520963178237,
+ "Shape_Area":1.53489311209e-08,
+ "Shape_Le_3":0.000520962808869,
+ "Shape_Ar_2":1.53489311209e-08,
+ "building_height":9.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":742,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56197510938563,
+ 45.5316036694241
+ ],
+ [
+ -73.56198597049799,
+ 45.53160804912246
+ ],
+ [
+ -73.56207347003645,
+ 45.53150164853255
+ ],
+ [
+ -73.56215680931115,
+ 45.53153545584691
+ ],
+ [
+ -73.56226516232923,
+ 45.531420935278234
+ ],
+ [
+ -73.56225387044161,
+ 45.53141514904019
+ ],
+ [
+ -73.56222147056626,
+ 45.53139854845454
+ ],
+ [
+ -73.56221687053399,
+ 45.531402849012565
+ ],
+ [
+ -73.56218225293047,
+ 45.53138473576724
+ ],
+ [
+ -73.56197510938563,
+ 45.5316036694241
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":742,
+ "ID_UEV":"01022669",
+ "CIVIQUE_DE":" 2427",
+ "CIVIQUE_FI":" 2435",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-95-4812-6-000-0000",
+ "SUPERFICIE":287,
+ "SUPERFIC_1":314,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000792916583058,
+ "OBJECTID":85439,
+ "Join_Count":1,
+ "TARGET_FID":85439,
+ "feature_id":"837da3f2-1bc4-49ab-aa6a-c9875db4f7b6",
+ "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":20.74,
+ "elevmin":38.17,
+ "elevmax":43.69,
+ "bldgarea":1935.12,
+ "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_2":85439,
+ "Shape_Le_1":0.000792916583058,
+ "Shape_Ar_1":1.44103368717e-08,
+ "OBJECTID_3":85439,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85438,
+ "g_objectid":"943579",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2379909",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994395401490000000",
+ "g_sup_tota":"298",
+ "g_geometry":"0.000990356",
+ "g_geomet_1":"3.41292e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000792916583058,
+ "Shape_Area":1.44103368717e-08,
+ "Shape_Le_3":0.000792917838346,
+ "Shape_Ar_2":1.44103368717e-08,
+ "building_height":9.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":743,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55781486718422,
+ 45.51235324575598
+ ],
+ [
+ -73.55777525924266,
+ 45.51240301603666
+ ],
+ [
+ -73.5580701073714,
+ 45.5125356678371
+ ],
+ [
+ -73.55880266723115,
+ 45.511725545947485
+ ],
+ [
+ -73.55863176726409,
+ 45.5116491458417
+ ],
+ [
+ -73.55862506731485,
+ 45.51164614570336
+ ],
+ [
+ -73.55827636688267,
+ 45.512030545623475
+ ],
+ [
+ -73.55821086745941,
+ 45.512001145886465
+ ],
+ [
+ -73.55828226733462,
+ 45.51192234549015
+ ],
+ [
+ -73.55822696712268,
+ 45.5118975457854
+ ],
+ [
+ -73.55847796700641,
+ 45.51162064542674
+ ],
+ [
+ -73.55796926728969,
+ 45.51139264570433
+ ],
+ [
+ -73.5579949672158,
+ 45.511364246013436
+ ],
+ [
+ -73.55799836755247,
+ 45.511360245828975
+ ],
+ [
+ -73.55789626752058,
+ 45.511317546018226
+ ],
+ [
+ -73.55790347918406,
+ 45.51130902763981
+ ],
+ [
+ -73.55782654308234,
+ 45.51127426704409
+ ],
+ [
+ -73.55781906701817,
+ 45.511281945455714
+ ],
+ [
+ -73.55766766705104,
+ 45.51120914623541
+ ],
+ [
+ -73.55738645804045,
+ 45.511073993420354
+ ],
+ [
+ -73.55693836903235,
+ 45.510868817592154
+ ],
+ [
+ -73.55692796747357,
+ 45.51087964542959
+ ],
+ [
+ -73.55680536739564,
+ 45.51082104560506
+ ],
+ [
+ -73.55680056681456,
+ 45.5108259460109
+ ],
+ [
+ -73.55677576710981,
+ 45.51085554629672
+ ],
+ [
+ -73.55673216617838,
+ 45.5108374456419
+ ],
+ [
+ -73.55676056586927,
+ 45.51080354569737
+ ],
+ [
+ -73.55670836651974,
+ 45.510781945780465
+ ],
+ [
+ -73.55670456598477,
+ 45.510786545812735
+ ],
+ [
+ -73.55666136615098,
+ 45.510838045489706
+ ],
+ [
+ -73.55647666608712,
+ 45.51105894596388
+ ],
+ [
+ -73.55645976602723,
+ 45.51105194564107
+ ],
+ [
+ -73.55645686571363,
+ 45.51105504560417
+ ],
+ [
+ -73.55607626632847,
+ 45.51146694589313
+ ],
+ [
+ -73.55608126655905,
+ 45.511469145634855
+ ],
+ [
+ -73.55625756605568,
+ 45.5115503454224
+ ],
+ [
+ -73.55626056619401,
+ 45.51154714563456
+ ],
+ [
+ -73.5562877661893,
+ 45.511516245828375
+ ],
+ [
+ -73.55638916654864,
+ 45.5115604457083
+ ],
+ [
+ -73.55650256656205,
+ 45.51143154587943
+ ],
+ [
+ -73.55652246586095,
+ 45.51144024592091
+ ],
+ [
+ -73.55639136629037,
+ 45.5115892455975
+ ],
+ [
+ -73.55629846632301,
+ 45.511548846252545
+ ],
+ [
+ -73.55629466578804,
+ 45.51154714563456
+ ],
+ [
+ -73.55627886649833,
+ 45.511564545717505
+ ],
+ [
+ -73.55634136578325,
+ 45.51159264593416
+ ],
+ [
+ -73.5562347439601,
+ 45.5117099597971
+ ],
+ [
+ -73.55626947128091,
+ 45.51172557742375
+ ],
+ [
+ -73.55640053847591,
+ 45.51178454776896
+ ],
+ [
+ -73.55656159896047,
+ 45.51185700254892
+ ],
+ [
+ -73.55665517341936,
+ 45.51189916276645
+ ],
+ [
+ -73.5568762150871,
+ 45.5119985405505
+ ],
+ [
+ -73.5568852667635,
+ 45.51198864620935
+ ],
+ [
+ -73.55694286744122,
+ 45.5120146456097
+ ],
+ [
+ -73.55743326685362,
+ 45.511476945454966
+ ],
+ [
+ -73.5574339674255,
+ 45.51147724582853
+ ],
+ [
+ -73.55751226689944,
+ 45.51153014574992
+ ],
+ [
+ -73.5574586673055,
+ 45.511565145565314
+ ],
+ [
+ -73.55736936732428,
+ 45.51162364556509
+ ],
+ [
+ -73.55736926749954,
+ 45.51162374628915
+ ],
+ [
+ -73.55739286750867,
+ 45.5116347458971
+ ],
+ [
+ -73.55732446687249,
+ 45.51170774566622
+ ],
+ [
+ -73.55730426720001,
+ 45.5116983459522
+ ],
+ [
+ -73.55730076703861,
+ 45.51170214558785
+ ],
+ [
+ -73.55707286714095,
+ 45.51195244579903
+ ],
+ [
+ -73.5570727673162,
+ 45.511952645448524
+ ],
+ [
+ -73.55709506690566,
+ 45.511962645909676
+ ],
+ [
+ -73.55700878235128,
+ 45.51205816919944
+ ],
+ [
+ -73.55710350704307,
+ 45.51210079346714
+ ],
+ [
+ -73.55745371383966,
+ 45.51225835199165
+ ],
+ [
+ -73.55746886741615,
+ 45.512238845696466
+ ],
+ [
+ -73.55755636695461,
+ 45.512272446166754
+ ],
+ [
+ -73.55755666732819,
+ 45.5122725459915
+ ],
+ [
+ -73.55756926683004,
+ 45.51225664597772
+ ],
+ [
+ -73.55781486718422,
+ 45.51235324575598
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55873721996858,
+ 45.51084601797964
+ ],
+ [
+ -73.55824906706263,
+ 45.51063644626528
+ ],
+ [
+ -73.55815936688312,
+ 45.510739646168034
+ ],
+ [
+ -73.55798080469222,
+ 45.51094515024878
+ ],
+ [
+ -73.55788075151732,
+ 45.51108376185642
+ ],
+ [
+ -73.55833967645675,
+ 45.51129165273788
+ ],
+ [
+ -73.55873721996858,
+ 45.51084601797964
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":743,
+ "ID_UEV":"01021215",
+ "CIVIQUE_DE":" 1000",
+ "CIVIQUE_FI":" 1000",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":22,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Service d'h\u00c3\u00b4pital (inclus h\u00c3\u00b4pitaux psychiatriques)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-33-1605-0-000-0000",
+ "SUPERFICIE":23965,
+ "SUPERFIC_1":43026,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0125106961574,
+ "OBJECTID":85441,
+ "Join_Count":2,
+ "TARGET_FID":85441,
+ "feature_id":"023e5e6d-d213-4490-81b2-9b21dff19f26",
+ "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":129.7,
+ "elevmin":15.49,
+ "elevmax":22.69,
+ "bldgarea":19285.56,
+ "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_2":85441,
+ "Shape_Le_1":0.0125106961574,
+ "Shape_Ar_1":2.49646268032e-06,
+ "OBJECTID_3":85441,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85440,
+ "g_objectid":"938475",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1181931",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6513",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004122015680000000",
+ "g_sup_tota":"6092.3",
+ "g_geometry":"0.00364686",
+ "g_geomet_1":"7.01625e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0125106961574,
+ "Shape_Area":2.49646268032e-06,
+ "Shape_Le_3":0.0125106904332,
+ "Shape_Ar_2":2.49646268032e-06,
+ "building_height":64.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":744,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56269575772488,
+ 45.52170401417921
+ ],
+ [
+ -73.56283421644778,
+ 45.52176815742482
+ ],
+ [
+ -73.56289545398386,
+ 45.52170223172291
+ ],
+ [
+ -73.56279086912515,
+ 45.52165494716837
+ ],
+ [
+ -73.56282886907888,
+ 45.52161334722849
+ ],
+ [
+ -73.56285426953076,
+ 45.52162484685949
+ ],
+ [
+ -73.56286796890349,
+ 45.52160994689183
+ ],
+ [
+ -73.56287146906489,
+ 45.52160634690568
+ ],
+ [
+ -73.56281293219291,
+ 45.521577868074445
+ ],
+ [
+ -73.56269575772488,
+ 45.52170401417921
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":744,
+ "ID_UEV":"01040397",
+ "CIVIQUE_DE":" 2030",
+ "CIVIQUE_FI":" 2042",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-9118-9-000-0000",
+ "SUPERFICIE":227,
+ "SUPERFIC_1":271,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000704106224385,
+ "OBJECTID":85460,
+ "Join_Count":1,
+ "TARGET_FID":85460,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":85460,
+ "Shape_Le_1":0.000704106224385,
+ "Shape_Ar_1":1.6616269675e-08,
+ "OBJECTID_3":85460,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85459,
+ "g_objectid":"941556",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565423",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994294021100000000",
+ "g_sup_tota":"229.7",
+ "g_geometry":"0.000667922",
+ "g_geomet_1":"2.6343e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000704106224385,
+ "Shape_Area":1.6616269675e-08,
+ "Shape_Le_3":0.000704105761241,
+ "Shape_Ar_2":1.6616269675e-08,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":745,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54710849848027,
+ 45.529622936899315
+ ],
+ [
+ -73.54725644595007,
+ 45.529685773429996
+ ],
+ [
+ -73.5472723648496,
+ 45.52966594877481
+ ],
+ [
+ -73.54724436535702,
+ 45.529654848442796
+ ],
+ [
+ -73.54726656512173,
+ 45.52962714842445
+ ],
+ [
+ -73.54729586503399,
+ 45.529638748779526
+ ],
+ [
+ -73.5472991655459,
+ 45.52963464877032
+ ],
+ [
+ -73.5473176654997,
+ 45.52960974924083
+ ],
+ [
+ -73.54729586503399,
+ 45.52960184869666
+ ],
+ [
+ -73.54730116473881,
+ 45.52959472966334
+ ],
+ [
+ -73.54717519490117,
+ 45.529540546409386
+ ],
+ [
+ -73.54710849848027,
+ 45.529622936899315
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":745,
+ "ID_UEV":"01018986",
+ "CIVIQUE_DE":" 2477",
+ "CIVIQUE_FI":" 2479",
+ "NOM_RUE":"rue Champagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-13-1001-8-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":143,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000594772764051,
+ "OBJECTID":85463,
+ "Join_Count":1,
+ "TARGET_FID":85463,
+ "feature_id":"35fa112d-1d89-4070-8a01-6da95ca71f3a",
+ "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.19,
+ "heightmax":11.4,
+ "elevmin":19.23,
+ "elevmax":20.01,
+ "bldgarea":440.7,
+ "comment":" ",
+ "OBJECTID_2":85463,
+ "Shape_Le_1":0.000594772764051,
+ "Shape_Ar_1":1.51244745646e-08,
+ "OBJECTID_3":85463,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85462,
+ "g_objectid":"940716",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424312",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014313100180000000",
+ "g_sup_tota":"236.6",
+ "g_geometry":"0.000751127",
+ "g_geomet_1":"2.72577e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000594772764051,
+ "Shape_Area":1.51244745646e-08,
+ "Shape_Le_3":0.000594771692123,
+ "Shape_Ar_2":1.51244745646e-08,
+ "building_height":5.105
+ }
+ },
+ {
+ "type":"Feature",
+ "id":746,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54786015094706,
+ 45.52930171615157
+ ],
+ [
+ -73.54800565405954,
+ 45.52936817784942
+ ],
+ [
+ -73.54803565544299,
+ 45.52933521140118
+ ],
+ [
+ -73.54789426493022,
+ 45.52926684853652
+ ],
+ [
+ -73.54786015094706,
+ 45.52930171615157
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54774959099268,
+ 45.52925121472208
+ ],
+ [
+ -73.54781833876717,
+ 45.52928261724928
+ ],
+ [
+ -73.54783416503653,
+ 45.52926424859649
+ ],
+ [
+ -73.54777756530424,
+ 45.52924034911312
+ ],
+ [
+ -73.54779606525805,
+ 45.529219048670456
+ ],
+ [
+ -73.5477838497667,
+ 45.52921263740359
+ ],
+ [
+ -73.54774959099268,
+ 45.52925121472208
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":746,
+ "ID_UEV":"01019383",
+ "CIVIQUE_DE":" 2436",
+ "CIVIQUE_FI":" 2440",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-5762-4-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":288,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000665232617476,
+ "OBJECTID":85464,
+ "Join_Count":2,
+ "TARGET_FID":85464,
+ "feature_id":"760ee761-144c-413c-ab94-f888b1edf9db",
+ "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":12.32,
+ "elevmin":18.54,
+ "elevmax":19.41,
+ "bldgarea":114.33,
+ "comment":" ",
+ "OBJECTID_2":85464,
+ "Shape_Le_1":0.000665232617476,
+ "Shape_Ar_1":9.09078104506e-09,
+ "OBJECTID_3":85464,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85463,
+ "g_objectid":"942416",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729380",
+ "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":"66023014302705100000000",
+ "g_sup_tota":"145",
+ "g_geometry":"0.000550138",
+ "g_geomet_1":"1.6706e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000665232617476,
+ "Shape_Area":9.09078104506e-09,
+ "Shape_Le_3":0.000665235202079,
+ "Shape_Ar_2":9.09078104506e-09,
+ "building_height":4.9
+ }
+ },
+ {
+ "type":"Feature",
+ "id":747,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55505433790921,
+ 45.51982844747516
+ ],
+ [
+ -73.55532663283968,
+ 45.519954128630424
+ ],
+ [
+ -73.55540932280385,
+ 45.519865318779736
+ ],
+ [
+ -73.5554146647768,
+ 45.51985958110508
+ ],
+ [
+ -73.55538831823814,
+ 45.51984735122458
+ ],
+ [
+ -73.55539153421378,
+ 45.51984401294114
+ ],
+ [
+ -73.55514910127185,
+ 45.51972856067483
+ ],
+ [
+ -73.55505433790921,
+ 45.51982844747516
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":747,
+ "ID_UEV":"01022355",
+ "CIVIQUE_DE":" 1327",
+ "CIVIQUE_FI":" 1331",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"B",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-42-8414-9-000-0000",
+ "SUPERFICIE":333,
+ "SUPERFIC_1":907,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000868974427864,
+ "OBJECTID":85469,
+ "Join_Count":1,
+ "TARGET_FID":85469,
+ "feature_id":"a9065364-40fe-46db-838d-433b0b248164",
+ "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.51,
+ "heightmax":21.84,
+ "elevmin":18.94,
+ "elevmax":24.49,
+ "bldgarea":4449.93,
+ "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_2":85469,
+ "Shape_Le_1":0.000868974427864,
+ "Shape_Ar_1":3.83637939686e-08,
+ "OBJECTID_3":85469,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85468,
+ "g_objectid":"944414",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"5533453",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004242691080000000",
+ "g_sup_tota":"478.3",
+ "g_geometry":"0.00116675",
+ "g_geomet_1":"5.42432e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000868974427864,
+ "Shape_Area":3.83637939686e-08,
+ "Shape_Le_3":0.000868973924929,
+ "Shape_Ar_2":3.83637939686e-08,
+ "building_height":9.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":748,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55913723481738,
+ 45.534390246662845
+ ],
+ [
+ -73.5592386019018,
+ 45.534435040994644
+ ],
+ [
+ -73.55935230678537,
+ 45.5343111638794
+ ],
+ [
+ -73.55925423841421,
+ 45.534264372153345
+ ],
+ [
+ -73.55913723481738,
+ 45.534390246662845
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":748,
+ "ID_UEV":"01023343",
+ "CIVIQUE_DE":" 2415",
+ "CIVIQUE_FI":" 2425",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-18-7430-4-000-0000",
+ "SUPERFICIE":282,
+ "SUPERFIC_1":401,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000559488236955,
+ "OBJECTID":85471,
+ "Join_Count":1,
+ "TARGET_FID":85471,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":85471,
+ "Shape_Le_1":0.000559488236955,
+ "Shape_Ar_1":1.77347906901e-08,
+ "OBJECTID_3":85471,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85470,
+ "g_objectid":"941367",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425374",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004318822570000000",
+ "g_sup_tota":"280.1",
+ "g_geometry":"0.000846522",
+ "g_geomet_1":"3.24127e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000559488236955,
+ "Shape_Area":1.77347906901e-08,
+ "Shape_Le_3":0.000559487816016,
+ "Shape_Ar_2":1.77347906901e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":749,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55903762141095,
+ 45.534346227546656
+ ],
+ [
+ -73.55913723481738,
+ 45.534390246662845
+ ],
+ [
+ -73.55925423841421,
+ 45.534264372153345
+ ],
+ [
+ -73.55919466912053,
+ 45.534235949979404
+ ],
+ [
+ -73.55915688140679,
+ 45.53421792576695
+ ],
+ [
+ -73.55903762141095,
+ 45.534346227546656
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":749,
+ "ID_UEV":"01023345",
+ "CIVIQUE_DE":" 2403",
+ "CIVIQUE_FI":" 2413",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-18-8225-7-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":401,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000563799708784,
+ "OBJECTID":85472,
+ "Join_Count":1,
+ "TARGET_FID":85472,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":85472,
+ "Shape_Le_1":0.000563799708784,
+ "Shape_Ar_1":1.78599269771e-08,
+ "OBJECTID_3":85472,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85471,
+ "g_objectid":"941367",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425374",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004318822570000000",
+ "g_sup_tota":"280.1",
+ "g_geometry":"0.000846522",
+ "g_geomet_1":"3.24127e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000563799708784,
+ "Shape_Area":1.78599269771e-08,
+ "Shape_Le_3":0.000563799268755,
+ "Shape_Ar_2":1.78599269771e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":750,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55883875522622,
+ 45.5342583044275
+ ],
+ [
+ -73.55887586934773,
+ 45.53427474943044
+ ],
+ [
+ -73.5589385053296,
+ 45.53430242876437
+ ],
+ [
+ -73.55906002172446,
+ 45.5341716970165
+ ],
+ [
+ -73.55900196868775,
+ 45.534143950233414
+ ],
+ [
+ -73.55900016914434,
+ 45.534143149836794
+ ],
+ [
+ -73.55899566893682,
+ 45.53414805024262
+ ],
+ [
+ -73.55895747922614,
+ 45.5341305818112
+ ],
+ [
+ -73.55883875522622,
+ 45.5342583044275
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":750,
+ "ID_UEV":"01023350",
+ "CIVIQUE_DE":" 2379",
+ "CIVIQUE_FI":" 2389",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-18-9715-6-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":404,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000576900885756,
+ "OBJECTID":85473,
+ "Join_Count":1,
+ "TARGET_FID":85473,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":85473,
+ "Shape_Le_1":0.000576900885756,
+ "Shape_Ar_1":1.82938723505e-08,
+ "OBJECTID_3":85473,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85472,
+ "g_objectid":"941370",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425377",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328051090000000",
+ "g_sup_tota":"278.7",
+ "g_geometry":"0.00084623",
+ "g_geomet_1":"3.24328e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000576900885756,
+ "Shape_Area":1.82938723505e-08,
+ "Shape_Le_3":0.000576900277839,
+ "Shape_Ar_2":1.82938723505e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":751,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55863674501161,
+ 45.534198835857886
+ ],
+ [
+ -73.55868246924241,
+ 45.534220950187
+ ],
+ [
+ -73.5586826688919,
+ 45.534220950187
+ ],
+ [
+ -73.55870296928845,
+ 45.53419824949991
+ ],
+ [
+ -73.558739044693,
+ 45.53421413962114
+ ],
+ [
+ -73.55885854570717,
+ 45.53408557883669
+ ],
+ [
+ -73.55881086904822,
+ 45.534064049966226
+ ],
+ [
+ -73.55877645019487,
+ 45.53404854025822
+ ],
+ [
+ -73.55863674501161,
+ 45.534198835857886
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":751,
+ "ID_UEV":"01023355",
+ "CIVIQUE_DE":" 2361",
+ "CIVIQUE_FI":" 2365",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-1205-5-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":401,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000591650522932,
+ "OBJECTID":85474,
+ "Join_Count":1,
+ "TARGET_FID":85474,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":85474,
+ "Shape_Le_1":0.000591650522932,
+ "Shape_Ar_1":1.64588879031e-08,
+ "OBJECTID_3":85474,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85473,
+ "g_objectid":"941371",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425378",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328120550000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000808648",
+ "g_geomet_1":"2.68393e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000591650522932,
+ "Shape_Area":1.64588879031e-08,
+ "Shape_Le_3":0.000591649869414,
+ "Shape_Ar_2":1.64588879031e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":752,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55857349389348,
+ 45.53414152386253
+ ],
+ [
+ -73.5586153690259,
+ 45.534162249638406
+ ],
+ [
+ -73.55859766946871,
+ 45.53417995009492
+ ],
+ [
+ -73.55860306899828,
+ 45.53418255003495
+ ],
+ [
+ -73.55863674501161,
+ 45.534198835857886
+ ],
+ [
+ -73.55877645019487,
+ 45.53404854025822
+ ],
+ [
+ -73.55875516953729,
+ 45.53403894988792
+ ],
+ [
+ -73.55869431870968,
+ 45.53401153765264
+ ],
+ [
+ -73.55857349389348,
+ 45.53414152386253
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":752,
+ "ID_UEV":"01023357",
+ "CIVIQUE_DE":" 2351",
+ "CIVIQUE_FI":" 2359",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-1801-1-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":394,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000587903837678,
+ "OBJECTID":85475,
+ "Join_Count":1,
+ "TARGET_FID":85475,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":85475,
+ "Shape_Le_1":0.000587903837678,
+ "Shape_Ar_1":1.62982648072e-08,
+ "OBJECTID_3":85475,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85474,
+ "g_objectid":"941371",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425378",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328120550000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000808648",
+ "g_geomet_1":"2.68393e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000587903837678,
+ "Shape_Area":1.62982648072e-08,
+ "Shape_Le_3":0.000587903903084,
+ "Shape_Ar_2":1.62982648072e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":753,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55500689597332,
+ 45.51987845517686
+ ],
+ [
+ -73.55526684591005,
+ 45.519998204403905
+ ],
+ [
+ -73.5552795668204,
+ 45.51998534679661
+ ],
+ [
+ -73.55529195228361,
+ 45.51999137675093
+ ],
+ [
+ -73.55532663283968,
+ 45.519954128630424
+ ],
+ [
+ -73.55505433790921,
+ 45.51982844747516
+ ],
+ [
+ -73.55500689597332,
+ 45.51987845517686
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":753,
+ "ID_UEV":"01022356",
+ "CIVIQUE_DE":" 1331",
+ "CIVIQUE_FI":" 1333",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-42-9022-9-000-0000",
+ "SUPERFICIE":172,
+ "SUPERFIC_1":464,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000737793650991,
+ "OBJECTID":85477,
+ "Join_Count":1,
+ "TARGET_FID":85477,
+ "feature_id":"a9065364-40fe-46db-838d-433b0b248164",
+ "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.51,
+ "heightmax":21.84,
+ "elevmin":18.94,
+ "elevmax":24.49,
+ "bldgarea":4449.93,
+ "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_2":85477,
+ "Shape_Le_1":0.000737793650991,
+ "Shape_Ar_1":1.93293279829e-08,
+ "OBJECTID_3":85477,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85476,
+ "g_objectid":"941836",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566642",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004242841490000000",
+ "g_sup_tota":"333.4",
+ "g_geometry":"0.000879411",
+ "g_geomet_1":"3.90751e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000737793650991,
+ "Shape_Area":1.93293279829e-08,
+ "Shape_Le_3":0.00073779357689,
+ "Shape_Ar_2":1.93293279829e-08,
+ "building_height":9.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":754,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5548227238115,
+ 45.52008288276912
+ ],
+ [
+ -73.55505597467534,
+ 45.52019151097974
+ ],
+ [
+ -73.55510526741601,
+ 45.52013864703123
+ ],
+ [
+ -73.5548757667251,
+ 45.52003294701319
+ ],
+ [
+ -73.55487096704334,
+ 45.52003074727146
+ ],
+ [
+ -73.5548227238115,
+ 45.52008288276912
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":754,
+ "ID_UEV":"01022358",
+ "CIVIQUE_DE":" 1351",
+ "CIVIQUE_FI":" 1351",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-42-9948-5-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":506,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00065856814285,
+ "OBJECTID":85478,
+ "Join_Count":1,
+ "TARGET_FID":85478,
+ "feature_id":"82ac10f1-21bb-49dc-b7ec-2951ff8cc948",
+ "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.47,
+ "heightmax":16.78,
+ "elevmin":17.7,
+ "elevmax":22.04,
+ "bldgarea":1080.14,
+ "comment":" ",
+ "OBJECTID_2":85478,
+ "Shape_Le_1":0.00065856814285,
+ "Shape_Ar_1":1.75542083693e-08,
+ "OBJECTID_3":85478,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85477,
+ "g_objectid":"942195",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567614",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004252035440000000",
+ "g_sup_tota":"278.7",
+ "g_geometry":"0.00102552",
+ "g_geomet_1":"3.23893e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00065856814285,
+ "Shape_Area":1.75542083693e-08,
+ "Shape_Le_3":0.000658568602675,
+ "Shape_Ar_2":1.75542083693e-08,
+ "building_height":7.155
+ }
+ },
+ {
+ "type":"Feature",
+ "id":755,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55476953700638,
+ 45.520140362937695
+ ],
+ [
+ -73.55501210394729,
+ 45.52025332857855
+ ],
+ [
+ -73.5550554674577,
+ 45.52020574724773
+ ],
+ [
+ -73.55505906744385,
+ 45.52020194671277
+ ],
+ [
+ -73.55505006702882,
+ 45.52019784670356
+ ],
+ [
+ -73.55505597467534,
+ 45.52019151097974
+ ],
+ [
+ -73.5548227238115,
+ 45.52008288276912
+ ],
+ [
+ -73.55476953700638,
+ 45.520140362937695
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":755,
+ "ID_UEV":"01022359",
+ "CIVIQUE_DE":" 1355",
+ "CIVIQUE_FI":" 1357",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2005,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-52-0354-4-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000691364020818,
+ "OBJECTID":85479,
+ "Join_Count":1,
+ "TARGET_FID":85479,
+ "feature_id":"82ac10f1-21bb-49dc-b7ec-2951ff8cc948",
+ "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.47,
+ "heightmax":16.78,
+ "elevmin":17.7,
+ "elevmax":22.04,
+ "bldgarea":1080.14,
+ "comment":" ",
+ "OBJECTID_2":85479,
+ "Shape_Le_1":0.000691364020818,
+ "Shape_Ar_1":1.98485097621e-08,
+ "OBJECTID_3":85479,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85478,
+ "g_objectid":"942196",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567615",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004252086180000000",
+ "g_sup_tota":"291.9",
+ "g_geometry":"0.00103143",
+ "g_geomet_1":"3.35934e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000691364020818,
+ "Shape_Area":1.98485097621e-08,
+ "Shape_Le_3":0.00069136393909,
+ "Shape_Ar_2":1.98485097621e-08,
+ "building_height":7.155
+ }
+ },
+ {
+ "type":"Feature",
+ "id":756,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5547131989768,
+ 45.52020124883886
+ ],
+ [
+ -73.55488073188212,
+ 45.520277781144976
+ ],
+ [
+ -73.55492996706617,
+ 45.52022384700323
+ ],
+ [
+ -73.5550023669875,
+ 45.52025644652808
+ ],
+ [
+ -73.55500716756858,
+ 45.520258746993875
+ ],
+ [
+ -73.55501210394729,
+ 45.52025332857855
+ ],
+ [
+ -73.55476953700638,
+ 45.520140362937695
+ ],
+ [
+ -73.5547131989768,
+ 45.52020124883886
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":756,
+ "ID_UEV":"01022360",
+ "CIVIQUE_DE":" 1359",
+ "CIVIQUE_FI":" 1361",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1949,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-52-0861-8-000-0000",
+ "SUPERFICIE":292,
+ "SUPERFIC_1":298,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000699800770359,
+ "OBJECTID":85480,
+ "Join_Count":1,
+ "TARGET_FID":85480,
+ "feature_id":"82ac10f1-21bb-49dc-b7ec-2951ff8cc948",
+ "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.47,
+ "heightmax":16.78,
+ "elevmin":17.7,
+ "elevmax":22.04,
+ "bldgarea":1080.14,
+ "comment":" ",
+ "OBJECTID_2":85480,
+ "Shape_Le_1":0.000699800770359,
+ "Shape_Ar_1":1.49914496844e-08,
+ "OBJECTID_3":85480,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85479,
+ "g_objectid":"942197",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567616",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004252126770000000",
+ "g_sup_tota":"284.2",
+ "g_geometry":"0.00102838",
+ "g_geomet_1":"3.29472e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000699800770359,
+ "Shape_Area":1.49914496844e-08,
+ "Shape_Le_3":0.000699801129629,
+ "Shape_Ar_2":1.49914496844e-08,
+ "building_height":7.155
+ }
+ },
+ {
+ "type":"Feature",
+ "id":757,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55929387513407,
+ 45.512727155084434
+ ],
+ [
+ -73.55944245932389,
+ 45.5127952121796
+ ],
+ [
+ -73.5594451357063,
+ 45.51279223182633
+ ],
+ [
+ -73.55947151192258,
+ 45.512762867162884
+ ],
+ [
+ -73.55928966720622,
+ 45.512679245501076
+ ],
+ [
+ -73.55927552087044,
+ 45.51269040698699
+ ],
+ [
+ -73.55930586579491,
+ 45.5127042034865
+ ],
+ [
+ -73.55930260305453,
+ 45.51270844378995
+ ],
+ [
+ -73.55930756731223,
+ 45.51271044568082
+ ],
+ [
+ -73.55929387513407,
+ 45.512727155084434
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":757,
+ "ID_UEV":"01021332",
+ "CIVIQUE_DE":" 354",
+ "CIVIQUE_FI":" 356",
+ "NOM_RUE":"rue Christin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-14-6124-7-000-0000",
+ "SUPERFICIE":107,
+ "SUPERFIC_1":171,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000490714376653,
+ "OBJECTID":85483,
+ "Join_Count":1,
+ "TARGET_FID":85483,
+ "feature_id":"b7c9e4c5-bdcb-4030-85a1-cca025c923ac",
+ "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.98,
+ "heightmax":33.29,
+ "elevmin":22.2,
+ "elevmax":22.99,
+ "bldgarea":158.57,
+ "comment":" ",
+ "OBJECTID_2":85483,
+ "Shape_Le_1":0.000490714376653,
+ "Shape_Ar_1":7.45992237751e-09,
+ "OBJECTID_3":85483,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85482,
+ "g_objectid":"943419",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162021",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004114632920000000",
+ "g_sup_tota":"76.4",
+ "g_geometry":"0.000446141",
+ "g_geomet_1":"8.79443e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000490714376653,
+ "Shape_Area":7.45992237751e-09,
+ "Shape_Le_3":0.000490715346066,
+ "Shape_Ar_2":7.45992237751e-09,
+ "building_height":16.155
+ }
+ },
+ {
+ "type":"Feature",
+ "id":758,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56166047347392,
+ 45.53131789005887
+ ],
+ [
+ -73.5617408467845,
+ 45.53135676865025
+ ],
+ [
+ -73.5618522682894,
+ 45.531237534734736
+ ],
+ [
+ -73.56183537002815,
+ 45.53122964857971
+ ],
+ [
+ -73.5618455701388,
+ 45.531218648971766
+ ],
+ [
+ -73.56184466991743,
+ 45.5312183485982
+ ],
+ [
+ -73.56177123667507,
+ 45.53119935851388
+ ],
+ [
+ -73.56166047347392,
+ 45.53131789005887
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":758,
+ "ID_UEV":"01022674",
+ "CIVIQUE_DE":" 2391",
+ "CIVIQUE_FI":" 2395",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-8091-6-000-0000",
+ "SUPERFICIE":287,
+ "SUPERFIC_1":314,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000525150146193,
+ "OBJECTID":85484,
+ "Join_Count":1,
+ "TARGET_FID":85484,
+ "feature_id":"f2d1679d-a0c9-42b5-b05d-d62424c38ede",
+ "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.32,
+ "heightmax":47.19,
+ "elevmin":34.82,
+ "elevmax":38.85,
+ "bldgarea":911.34,
+ "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_2":85484,
+ "Shape_Le_1":0.000525150146193,
+ "Shape_Ar_1":1.43808674131e-08,
+ "OBJECTID_3":85484,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85483,
+ "g_objectid":"940367",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394809160000000",
+ "g_sup_tota":"286.8",
+ "g_geometry":"0.000954195",
+ "g_geomet_1":"3.30363e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000525150146193,
+ "Shape_Area":1.43808674131e-08,
+ "Shape_Le_3":0.000525150157476,
+ "Shape_Ar_2":1.43808674131e-08,
+ "building_height":22.935
+ }
+ },
+ {
+ "type":"Feature",
+ "id":759,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.58027146208016,
+ 45.499979882016234
+ ],
+ [
+ -73.58039211782382,
+ 45.50003778396685
+ ],
+ [
+ -73.58039756591678,
+ 45.50003234846441
+ ],
+ [
+ -73.5804471833127,
+ 45.49998285787289
+ ],
+ [
+ -73.58034721917068,
+ 45.499934886236304
+ ],
+ [
+ -73.58032586656734,
+ 45.499956184880325
+ ],
+ [
+ -73.5803056974718,
+ 45.49994650547714
+ ],
+ [
+ -73.58027146208016,
+ 45.499979882016234
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":759,
+ "ID_UEV":"01036505",
+ "CIVIQUE_DE":" 5",
+ "CIVIQUE_FI":" 5",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-50-1809-8-000-0000",
+ "SUPERFICIE":83,
+ "SUPERFIC_1":180,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000422827251037,
+ "OBJECTID":85507,
+ "Join_Count":1,
+ "TARGET_FID":85507,
+ "feature_id":"d79fc7c8-21a3-4cd9-bd24-5b7e771ed72e",
+ "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":73.97,
+ "elevmin":58.73,
+ "elevmax":62.67,
+ "bldgarea":1130.72,
+ "comment":" ",
+ "OBJECTID_2":85507,
+ "Shape_Le_1":0.000422827251037,
+ "Shape_Ar_1":9.14972547566e-09,
+ "OBJECTID_3":85507,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85506,
+ "g_objectid":"939923",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340955",
+ "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":"66023984050231550000000",
+ "g_sup_tota":"91.2",
+ "g_geometry":"0.000441643",
+ "g_geomet_1":"1.04916e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000422827251037,
+ "Shape_Area":9.14972547566e-09,
+ "Shape_Le_3":0.000422827767193,
+ "Shape_Ar_2":9.14972547566e-09,
+ "building_height":36.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":760,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5804471833127,
+ 45.49998285787289
+ ],
+ [
+ -73.58046635236212,
+ 45.4999920570381
+ ],
+ [
+ -73.58052294310119,
+ 45.49994042606011
+ ],
+ [
+ -73.58052345481543,
+ 45.49993991254722
+ ],
+ [
+ -73.58042410850764,
+ 45.49989145347809
+ ],
+ [
+ -73.58040282785007,
+ 45.49991278359838
+ ],
+ [
+ -73.5803859044078,
+ 45.499904528721316
+ ],
+ [
+ -73.58034483956455,
+ 45.499933744097305
+ ],
+ [
+ -73.58034721917068,
+ 45.499934886236304
+ ],
+ [
+ -73.5804471833127,
+ 45.49998285787289
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":760,
+ "ID_UEV":"01036506",
+ "CIVIQUE_DE":" 6",
+ "CIVIQUE_FI":" 6",
+ "NOM_RUE":"place De Richelieu (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-50-1305-7-000-0000",
+ "SUPERFICIE":83,
+ "SUPERFIC_1":180,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000422002476329,
+ "OBJECTID":85508,
+ "Join_Count":1,
+ "TARGET_FID":85508,
+ "feature_id":"d79fc7c8-21a3-4cd9-bd24-5b7e771ed72e",
+ "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":73.97,
+ "elevmin":58.73,
+ "elevmax":62.67,
+ "bldgarea":1130.72,
+ "comment":" ",
+ "OBJECTID_2":85508,
+ "Shape_Le_1":0.000422002476329,
+ "Shape_Ar_1":8.87691866399e-09,
+ "OBJECTID_3":85508,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85507,
+ "g_objectid":"939919",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340951",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1990",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023983959179520000000",
+ "g_sup_tota":"433.3",
+ "g_geometry":"0.00228172",
+ "g_geomet_1":"4.99478e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000422002476329,
+ "Shape_Area":8.87691866399e-09,
+ "Shape_Le_3":0.000422001714879,
+ "Shape_Ar_2":8.87691866399e-09,
+ "building_height":36.725
+ }
+ },
+ {
+ "type":"Feature",
+ "id":761,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56069532914796,
+ 45.512039049612746
+ ],
+ [
+ -73.56070726854745,
+ 45.512038345443585
+ ],
+ [
+ -73.56070746819694,
+ 45.51203824561883
+ ],
+ [
+ -73.56074976780938,
+ 45.512064945591064
+ ],
+ [
+ -73.56081526813196,
+ 45.51201354573884
+ ],
+ [
+ -73.56079836807207,
+ 45.51200284560514
+ ],
+ [
+ -73.56082886767994,
+ 45.51197904594651
+ ],
+ [
+ -73.56084928408903,
+ 45.51199199528465
+ ],
+ [
+ -73.56094225330419,
+ 45.511886088422536
+ ],
+ [
+ -73.56089526822389,
+ 45.511864446237496
+ ],
+ [
+ -73.5608620427709,
+ 45.511849138876954
+ ],
+ [
+ -73.56069532914796,
+ 45.512039049612746
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":761,
+ "ID_UEV":"01020995",
+ "CIVIQUE_DE":" 1241",
+ "CIVIQUE_FI":" 1245",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-4739-7-000-0000",
+ "SUPERFICIE":233,
+ "SUPERFIC_1":399,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000710270421647,
+ "OBJECTID":85510,
+ "Join_Count":1,
+ "TARGET_FID":85510,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":85510,
+ "Shape_Le_1":0.000710270421647,
+ "Shape_Ar_1":1.87841764747e-08,
+ "OBJECTID_3":85510,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85509,
+ "g_objectid":"943384",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161931",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103543510000000",
+ "g_sup_tota":"232.9",
+ "g_geometry":"0.00082382",
+ "g_geomet_1":"2.73867e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000710270421647,
+ "Shape_Area":1.87841764747e-08,
+ "Shape_Le_3":0.000710271024779,
+ "Shape_Ar_2":1.87841764747e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":762,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5635339042881,
+ 45.520336366580345
+ ],
+ [
+ -73.56370262969445,
+ 45.52041382428885
+ ],
+ [
+ -73.56386760492786,
+ 45.52024121381126
+ ],
+ [
+ -73.564016296137,
+ 45.52008563829187
+ ],
+ [
+ -73.56392697007546,
+ 45.52004064700855
+ ],
+ [
+ -73.56384564528214,
+ 45.51999966760087
+ ],
+ [
+ -73.56369294849263,
+ 45.520164590673616
+ ],
+ [
+ -73.5635339042881,
+ 45.520336366580345
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":762,
+ "ID_UEV":"01040051",
+ "CIVIQUE_DE":" 2050",
+ "CIVIQUE_FI":" 2050",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Mus\u00c3\u00a9e",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-82-1755-0-000-0000",
+ "SUPERFICIE":735,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00128956829107,
+ "OBJECTID":85541,
+ "Join_Count":1,
+ "TARGET_FID":85541,
+ "feature_id":"af85fea1-16ec-4691-9435-b0a97055aa23",
+ "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":17.13,
+ "elevmin":26,
+ "elevmax":36,
+ "bldgarea":7195.82,
+ "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_2":85541,
+ "Shape_Le_1":0.00128956829107,
+ "Shape_Ar_1":8.19630997616e-08,
+ "OBJECTID_3":85541,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85540,
+ "g_objectid":"938576",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"1565323",
+ "g_nb_poly_":"1",
+ "g_utilisat":"7112",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994282175500000000",
+ "g_sup_tota":"735.2",
+ "g_geometry":"0.00132486",
+ "g_geomet_1":"8.49729e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00128956829107,
+ "Shape_Area":8.19630997616e-08,
+ "Shape_Le_3":0.00128956851279,
+ "Shape_Ar_2":8.19630997616e-08,
+ "building_height":8.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":763,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5573139178249,
+ 45.51814981251413
+ ],
+ [
+ -73.55738074194953,
+ 45.51818070692438
+ ],
+ [
+ -73.55747208968704,
+ 45.518083267179335
+ ],
+ [
+ -73.55745526696884,
+ 45.51807794679011
+ ],
+ [
+ -73.55739817530738,
+ 45.518059936966814
+ ],
+ [
+ -73.5573139178249,
+ 45.51814981251413
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":763,
+ "ID_UEV":"01040153",
+ "CIVIQUE_DE":" 1438",
+ "CIVIQUE_FI":" 1440",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"B",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-30-1319-2-000-0000",
+ "SUPERFICIE":124,
+ "SUPERFIC_1":211,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000407886811078,
+ "OBJECTID":85548,
+ "Join_Count":1,
+ "TARGET_FID":85548,
+ "feature_id":"50d4dd71-90f9-4ec4-b4eb-26d82cb3672b",
+ "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,
+ "heightmax":37.73,
+ "elevmin":22.71,
+ "elevmax":26.77,
+ "bldgarea":2585.63,
+ "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_2":85548,
+ "Shape_Le_1":0.000407886811078,
+ "Shape_Ar_1":8.97154161885e-09,
+ "OBJECTID_3":85548,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85547,
+ "g_objectid":"941734",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566417",
+ "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":"66023004230191650000000",
+ "g_sup_tota":"128.9",
+ "g_geometry":"0.000562272",
+ "g_geomet_1":"1.4837e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000407886811078,
+ "Shape_Area":8.97154161885e-09,
+ "Shape_Le_3":0.000407886203223,
+ "Shape_Ar_2":8.97154161885e-09,
+ "building_height":18.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":764,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55744107926424,
+ 45.51469932876131
+ ],
+ [
+ -73.55750764618277,
+ 45.51472963411562
+ ],
+ [
+ -73.55763027413968,
+ 45.51459219792189
+ ],
+ [
+ -73.55756656706527,
+ 45.51456614546154
+ ],
+ [
+ -73.55750936748517,
+ 45.514625545682684
+ ],
+ [
+ -73.5575081408099,
+ 45.514624962922
+ ],
+ [
+ -73.55744107926424,
+ 45.51469932876131
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":764,
+ "ID_UEV":"01002994",
+ "CIVIQUE_DE":" 1192",
+ "CIVIQUE_FI":" 1196",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-36-0033-9-000-0000",
+ "SUPERFICIE":126,
+ "SUPERFIC_1":269,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000510118377661,
+ "OBJECTID":85549,
+ "Join_Count":1,
+ "TARGET_FID":85549,
+ "feature_id":"0591afc8-69a4-42ca-8e62-0e54191ab04d",
+ "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":60.45,
+ "elevmin":22.35,
+ "elevmax":24.48,
+ "bldgarea":1843.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_2":85549,
+ "Shape_Le_1":0.000510118377661,
+ "Shape_Ar_1":1.24565983858e-08,
+ "OBJECTID_3":85549,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85548,
+ "g_objectid":"943441",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162089",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004136003390000000",
+ "g_sup_tota":"126.3",
+ "g_geometry":"0.000572695",
+ "g_geomet_1":"1.48003e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000510118377661,
+ "Shape_Area":1.24565983858e-08,
+ "Shape_Le_3":0.000510118760863,
+ "Shape_Ar_2":1.24565983858e-08,
+ "building_height":29.970000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":765,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55005346611641,
+ 45.529822548622015
+ ],
+ [
+ -73.55014259612575,
+ 45.529861305804914
+ ],
+ [
+ -73.55021399330299,
+ 45.52978226798757
+ ],
+ [
+ -73.550123666296,
+ 45.5297429487284
+ ],
+ [
+ -73.55005346611641,
+ 45.529822548622015
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":765,
+ "ID_UEV":"01018578",
+ "CIVIQUE_DE":" 1657",
+ "CIVIQUE_FI":" 1661",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-8524-7-000-0000",
+ "SUPERFICIE":162,
+ "SUPERFIC_1":254,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000408349262499,
+ "OBJECTID":85558,
+ "Join_Count":1,
+ "TARGET_FID":85558,
+ "feature_id":"7cb535d8-f978-436f-a579-8a6cff663a9a",
+ "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":3.67,
+ "heightmax":32.19,
+ "elevmin":20.28,
+ "elevmax":20.95,
+ "bldgarea":89.49,
+ "comment":" ",
+ "OBJECTID_2":85558,
+ "Shape_Le_1":0.000408349262499,
+ "Shape_Ar_1":9.88100673116e-09,
+ "OBJECTID_3":85558,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85557,
+ "g_objectid":"940773",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424406",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383852470000000",
+ "g_sup_tota":"162.3",
+ "g_geometry":"0.000582862",
+ "g_geomet_1":"1.86989e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000408349262499,
+ "Shape_Area":9.88100673116e-09,
+ "Shape_Le_3":0.000408349476233,
+ "Shape_Ar_2":9.88100673116e-09,
+ "building_height":14.259999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":766,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55897795139319,
+ 45.518892741557075
+ ],
+ [
+ -73.55904636641851,
+ 45.518924422874115
+ ],
+ [
+ -73.55912223412565,
+ 45.51884164027977
+ ],
+ [
+ -73.55905383348947,
+ 45.518809944573576
+ ],
+ [
+ -73.55897795139319,
+ 45.518892741557075
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":766,
+ "ID_UEV":"01040165",
+ "CIVIQUE_DE":" 1640",
+ "CIVIQUE_FI":" 1640",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-8405-2-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":209,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000375380944279,
+ "OBJECTID":85561,
+ "Join_Count":1,
+ "TARGET_FID":85561,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":85561,
+ "Shape_Le_1":0.000375380944279,
+ "Shape_Ar_1":8.06782532021e-09,
+ "OBJECTID_3":85561,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85560,
+ "g_objectid":"941693",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566362",
+ "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":"66023004211790860000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.00056409",
+ "g_geomet_1":"1.48395e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000375380944279,
+ "Shape_Area":8.06782532021e-09,
+ "Shape_Le_3":0.000375380623214,
+ "Shape_Ar_2":8.06782532021e-09,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":767,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55911478144385,
+ 45.518956105090474
+ ],
+ [
+ -73.55911616819844,
+ 45.51895674720642
+ ],
+ [
+ -73.55910576843831,
+ 45.51896784663911
+ ],
+ [
+ -73.55911096831838,
+ 45.51897024692965
+ ],
+ [
+ -73.55923036770915,
+ 45.519025869098876
+ ],
+ [
+ -73.5593155290103,
+ 45.51893294664846
+ ],
+ [
+ -73.55930946847903,
+ 45.51893054725725
+ ],
+ [
+ -73.55931086782414,
+ 45.518929047188074
+ ],
+ [
+ -73.55919063745979,
+ 45.518873335985965
+ ],
+ [
+ -73.55911478144385,
+ 45.518956105090474
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":767,
+ "ID_UEV":"01040167",
+ "CIVIQUE_DE":" 1652",
+ "CIVIQUE_FI":" 1652",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-7113-3-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":399,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00053358275751,
+ "OBJECTID":85562,
+ "Join_Count":1,
+ "TARGET_FID":85562,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":85562,
+ "Shape_Le_1":0.00053358275751,
+ "Shape_Ar_1":1.68494120998e-08,
+ "OBJECTID_3":85562,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85561,
+ "g_objectid":"941693",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566362",
+ "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":"66023004211790860000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.00056409",
+ "g_geomet_1":"1.48395e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00053358275751,
+ "Shape_Area":1.68494120998e-08,
+ "Shape_Le_3":0.000533580613192,
+ "Shape_Ar_2":1.68494120998e-08,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":768,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55923036770915,
+ 45.519025869098876
+ ],
+ [
+ -73.5593561792661,
+ 45.51908447791662
+ ],
+ [
+ -73.55943795282111,
+ 45.51899524988117
+ ],
+ [
+ -73.55943386810037,
+ 45.51899354656522
+ ],
+ [
+ -73.55944236849236,
+ 45.51898344717864
+ ],
+ [
+ -73.55938446834038,
+ 45.518960246468495
+ ],
+ [
+ -73.5593155290103,
+ 45.51893294664846
+ ],
+ [
+ -73.55923036770915,
+ 45.519025869098876
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":768,
+ "ID_UEV":"01040168",
+ "CIVIQUE_DE":" 1654",
+ "CIVIQUE_FI":" 1654",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-11-6220-7-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":397,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000540016715001,
+ "OBJECTID":85563,
+ "Join_Count":1,
+ "TARGET_FID":85563,
+ "feature_id":"8a4e057d-9d76-4d58-8806-1f7318eeec52",
+ "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.46,
+ "heightmax":14.36,
+ "elevmin":24.75,
+ "elevmax":27.63,
+ "bldgarea":2139.34,
+ "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_2":85563,
+ "Shape_Le_1":0.000540016715001,
+ "Shape_Ar_1":1.71916219984e-08,
+ "OBJECTID_3":85563,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85562,
+ "g_objectid":"941690",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566358",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004211622070000000",
+ "g_sup_tota":"237.1",
+ "g_geometry":"0.000691251",
+ "g_geomet_1":"2.73375e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000540016715001,
+ "Shape_Area":1.71916219984e-08,
+ "Shape_Le_3":0.000540017696718,
+ "Shape_Ar_2":1.71916219984e-08,
+ "building_height":5.949999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":769,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56120001878769,
+ 45.51220387196142
+ ],
+ [
+ -73.56151625729129,
+ 45.5123507294529
+ ],
+ [
+ -73.56155257731145,
+ 45.51230860790623
+ ],
+ [
+ -73.56126288769396,
+ 45.51217407922068
+ ],
+ [
+ -73.56125516791352,
+ 45.512182646162486
+ ],
+ [
+ -73.56122966853621,
+ 45.51217104580741
+ ],
+ [
+ -73.56122966853621,
+ 45.51217084615792
+ ],
+ [
+ -73.56120001878769,
+ 45.51220387196142
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":769,
+ "ID_UEV":"01021597",
+ "CIVIQUE_DE":" 260",
+ "CIVIQUE_FI":" 262",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-0472-9-000-0000",
+ "SUPERFICIE":169,
+ "SUPERFIC_1":355,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000807823736035,
+ "OBJECTID":85573,
+ "Join_Count":1,
+ "TARGET_FID":85573,
+ "feature_id":"0d9fe1a0-95a1-4b25-8ddc-b64b3e41c30b",
+ "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.55,
+ "heightmax":42.82,
+ "elevmin":24.11,
+ "elevmax":25.47,
+ "bldgarea":1968.1,
+ "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_2":85573,
+ "Shape_Le_1":0.000807823736035,
+ "Shape_Ar_1":1.83105960581e-08,
+ "OBJECTID_3":85573,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85572,
+ "g_objectid":"938343",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161736",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994193986250000000",
+ "g_sup_tota":"524.9",
+ "g_geometry":"0.00106985",
+ "g_geomet_1":"6.04662e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000807823736035,
+ "Shape_Area":1.83105960581e-08,
+ "Shape_Le_3":0.000807823469377,
+ "Shape_Ar_2":1.83105960581e-08,
+ "building_height":21.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":770,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55186335353278,
+ 45.531418036763284
+ ],
+ [
+ -73.55193769419108,
+ 45.53144821980979
+ ],
+ [
+ -73.55202308931597,
+ 45.531349747643034
+ ],
+ [
+ -73.55200546620115,
+ 45.531341848897505
+ ],
+ [
+ -73.55195072626685,
+ 45.53131728391582
+ ],
+ [
+ -73.55186335353278,
+ 45.531418036763284
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":770,
+ "ID_UEV":"01018767",
+ "CIVIQUE_DE":" 1861",
+ "CIVIQUE_FI":" 1863",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-75-4400-0-000-0000",
+ "SUPERFICIE":135,
+ "SUPERFIC_1":147,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000423249358952,
+ "OBJECTID":85593,
+ "Join_Count":1,
+ "TARGET_FID":85593,
+ "feature_id":"32bde229-c231-4ab1-9b7f-8fae3afc6f61",
+ "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.51,
+ "heightmax":32.73,
+ "elevmin":19.16,
+ "elevmax":21.85,
+ "bldgarea":1317.59,
+ "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_2":85593,
+ "Shape_Le_1":0.000423249358952,
+ "Shape_Ar_1":1.00123664549e-08,
+ "OBJECTID_3":85593,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85592,
+ "g_objectid":"941275",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425250",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004374509680000000",
+ "g_sup_tota":"140.1",
+ "g_geometry":"0.00057543",
+ "g_geomet_1":"1.61349e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000423249358952,
+ "Shape_Area":1.00123664549e-08,
+ "Shape_Le_3":0.000423248911504,
+ "Shape_Ar_2":1.00123664549e-08,
+ "building_height":15.11
+ }
+ },
+ {
+ "type":"Feature",
+ "id":771,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55195106351262,
+ 45.52925439472483
+ ],
+ [
+ -73.55199946592445,
+ 45.52928434844422
+ ],
+ [
+ -73.55200396613198,
+ 45.52928714893307
+ ],
+ [
+ -73.55201836607658,
+ 45.529276048601055
+ ],
+ [
+ -73.5520365935358,
+ 45.52928768223104
+ ],
+ [
+ -73.55213532290867,
+ 45.529180528009256
+ ],
+ [
+ -73.55205471217707,
+ 45.529141904825345
+ ],
+ [
+ -73.55195106351262,
+ 45.52925439472483
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":771,
+ "ID_UEV":"01018434",
+ "CIVIQUE_DE":" 1729",
+ "CIVIQUE_FI":" 1733",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-72-3659-9-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":305,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000490077313977,
+ "OBJECTID":85594,
+ "Join_Count":1,
+ "TARGET_FID":85594,
+ "feature_id":"ef9f99e9-b72a-459d-a003-11d6da78defc",
+ "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.48,
+ "heightmax":34.11,
+ "elevmin":18.43,
+ "elevmax":20.99,
+ "bldgarea":2146.82,
+ "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_2":85594,
+ "Shape_Le_1":0.000490077313977,
+ "Shape_Ar_1":1.30961855034e-08,
+ "OBJECTID_3":85594,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85593,
+ "g_objectid":"940819",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424479",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004372365990000000",
+ "g_sup_tota":"225.8",
+ "g_geometry":"0.000787773",
+ "g_geomet_1":"2.60038e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000490077313977,
+ "Shape_Area":1.30961855034e-08,
+ "Shape_Le_3":0.000490077259666,
+ "Shape_Ar_2":1.30961855034e-08,
+ "building_height":15.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":772,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55954947055346,
+ 45.52077586616359
+ ],
+ [
+ -73.55955406788777,
+ 45.52077124724556
+ ],
+ [
+ -73.55957106777241,
+ 45.52077954708872
+ ],
+ [
+ -73.55957126832122,
+ 45.5207793465399
+ ],
+ [
+ -73.55961932629272,
+ 45.52074465159469
+ ],
+ [
+ -73.55947520993483,
+ 45.52067731485649
+ ],
+ [
+ -73.55947096783274,
+ 45.52068234656334
+ ],
+ [
+ -73.55945966785123,
+ 45.520677646706325
+ ],
+ [
+ -73.55945926855225,
+ 45.52067814672938
+ ],
+ [
+ -73.55942361852702,
+ 45.52071656306923
+ ],
+ [
+ -73.55954947055346,
+ 45.52077586616359
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":772,
+ "ID_UEV":"01040542",
+ "CIVIQUE_DE":" 1275",
+ "CIVIQUE_FI":" 1279",
+ "NOM_RUE":"rue Robin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-13-4815-2-000-0000",
+ "SUPERFICIE":122,
+ "SUPERFIC_1":213,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000455056423871,
+ "OBJECTID":85595,
+ "Join_Count":1,
+ "TARGET_FID":85595,
+ "feature_id":"baafc41c-197d-4fc6-af0b-125b209fe093",
+ "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.7,
+ "heightmax":11.77,
+ "elevmin":25.36,
+ "elevmax":26.83,
+ "bldgarea":611.72,
+ "comment":" ",
+ "OBJECTID_2":85595,
+ "Shape_Le_1":0.000455056423871,
+ "Shape_Ar_1":9.26343857137e-09,
+ "OBJECTID_3":85595,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85594,
+ "g_objectid":"941953",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566948",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004213511980000000",
+ "g_sup_tota":"122",
+ "g_geometry":"0.000606481",
+ "g_geomet_1":"1.40213e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000455056423871,
+ "Shape_Area":9.26343857137e-09,
+ "Shape_Le_3":0.000455056338475,
+ "Shape_Ar_2":9.26343857137e-09,
+ "building_height":4.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":773,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55947520993483,
+ 45.52067731485649
+ ],
+ [
+ -73.55961932629272,
+ 45.52074465159469
+ ],
+ [
+ -73.55971476774418,
+ 45.52067574643884
+ ],
+ [
+ -73.55971316785026,
+ 45.52067474729205
+ ],
+ [
+ -73.55966836812253,
+ 45.52065544694162
+ ],
+ [
+ -73.55968457750309,
+ 45.52063681658611
+ ],
+ [
+ -73.5595591931241,
+ 45.52057823205006
+ ],
+ [
+ -73.55954306827982,
+ 45.5205968471171
+ ],
+ [
+ -73.55952406830295,
+ 45.52061934725537
+ ],
+ [
+ -73.55947520993483,
+ 45.52067731485649
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":773,
+ "ID_UEV":"01040543",
+ "CIVIQUE_DE":" 1261",
+ "CIVIQUE_FI":" 1271",
+ "NOM_RUE":"rue Robin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-13-4009-2-000-0000",
+ "SUPERFICIE":328,
+ "SUPERFIC_1":425,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000620433153951,
+ "OBJECTID":85596,
+ "Join_Count":1,
+ "TARGET_FID":85596,
+ "feature_id":"baafc41c-197d-4fc6-af0b-125b209fe093",
+ "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.7,
+ "heightmax":11.77,
+ "elevmin":25.36,
+ "elevmax":26.83,
+ "bldgarea":611.72,
+ "comment":" ",
+ "OBJECTID_2":85596,
+ "Shape_Le_1":0.000620433153951,
+ "Shape_Ar_1":2.09654462111e-08,
+ "OBJECTID_3":85596,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85595,
+ "g_objectid":"941951",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566946",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004213400920000000",
+ "g_sup_tota":"327.8",
+ "g_geometry":"0.000871716",
+ "g_geomet_1":"3.80444e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000620433153951,
+ "Shape_Area":2.09654462111e-08,
+ "Shape_Le_3":0.000620432996971,
+ "Shape_Ar_2":2.09654462111e-08,
+ "building_height":4.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":774,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55968457750309,
+ 45.52063681658611
+ ],
+ [
+ -73.55971856827915,
+ 45.520597746439144
+ ],
+ [
+ -73.5598618752472,
+ 45.5206595541454
+ ],
+ [
+ -73.55991760443574,
+ 45.520601251097155
+ ],
+ [
+ -73.55992116844901,
+ 45.520597146591335
+ ],
+ [
+ -73.5598085679329,
+ 45.52054874687746
+ ],
+ [
+ -73.5597159683391,
+ 45.52050894648099
+ ],
+ [
+ -73.55964546778596,
+ 45.520478747246685
+ ],
+ [
+ -73.55956896785543,
+ 45.520566946457706
+ ],
+ [
+ -73.5595591931241,
+ 45.52057823205006
+ ],
+ [
+ -73.55968457750309,
+ 45.52063681658611
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":774,
+ "ID_UEV":"01040544",
+ "CIVIQUE_DE":" 1251",
+ "CIVIQUE_FI":" 1259",
+ "NOM_RUE":"rue Robin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-12-3399-0-000-0000",
+ "SUPERFICIE":367,
+ "SUPERFIC_1":730,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000864070724486,
+ "OBJECTID":85597,
+ "Join_Count":1,
+ "TARGET_FID":85597,
+ "feature_id":"baafc41c-197d-4fc6-af0b-125b209fe093",
+ "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.7,
+ "heightmax":11.77,
+ "elevmin":25.36,
+ "elevmax":26.83,
+ "bldgarea":611.72,
+ "comment":" ",
+ "OBJECTID_2":85597,
+ "Shape_Le_1":0.000864070724486,
+ "Shape_Ar_1":3.0617011973e-08,
+ "OBJECTID_3":85597,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85596,
+ "g_objectid":"941951",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566946",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004213400920000000",
+ "g_sup_tota":"327.8",
+ "g_geometry":"0.000871716",
+ "g_geomet_1":"3.80444e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000864070724486,
+ "Shape_Area":3.0617011973e-08,
+ "Shape_Le_3":0.000864071623184,
+ "Shape_Ar_2":3.0617011973e-08,
+ "building_height":4.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":775,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55932277484803,
+ 45.52132658760223
+ ],
+ [
+ -73.55932826790708,
+ 45.52132934672227
+ ],
+ [
+ -73.5593284684559,
+ 45.521329446547014
+ ],
+ [
+ -73.55934626783784,
+ 45.521310647118966
+ ],
+ [
+ -73.55943458935666,
+ 45.52135188283342
+ ],
+ [
+ -73.55952752799486,
+ 45.521252864778184
+ ],
+ [
+ -73.55943331681597,
+ 45.521208815085046
+ ],
+ [
+ -73.55932277484803,
+ 45.52132658760223
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":775,
+ "ID_UEV":"01032201",
+ "CIVIQUE_DE":" 1729",
+ "CIVIQUE_FI":" 1733",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-13-6283-1-000-0000",
+ "SUPERFICIE":328,
+ "SUPERFIC_1":175,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000531060171028,
+ "OBJECTID":85599,
+ "Join_Count":1,
+ "TARGET_FID":85599,
+ "feature_id":"0e817458-cfe2-4f7e-9d31-0f4c2f6ab02c",
+ "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.93,
+ "heightmax":25.6,
+ "elevmin":26.03,
+ "elevmax":27,
+ "bldgarea":1163.73,
+ "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_2":85599,
+ "Shape_Le_1":0.000531060171028,
+ "Shape_Ar_1":1.35843082738e-08,
+ "OBJECTID_3":85599,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85598,
+ "g_objectid":"941966",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566988",
+ "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":"66023004213508360000000",
+ "g_sup_tota":"306.6",
+ "g_geometry":"0.000802254",
+ "g_geomet_1":"3.51149e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000531060171028,
+ "Shape_Area":1.35843082738e-08,
+ "Shape_Le_3":0.000531059650457,
+ "Shape_Ar_2":1.35843082738e-08,
+ "building_height":11.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":776,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56098801980312,
+ 45.53163351882213
+ ],
+ [
+ -73.56107266219544,
+ 45.53167275084707
+ ],
+ [
+ -73.56121163712919,
+ 45.53152603454915
+ ],
+ [
+ -73.56116057002613,
+ 45.53151844876769
+ ],
+ [
+ -73.56113236908541,
+ 45.531514149108986
+ ],
+ [
+ -73.56110542809488,
+ 45.53150957155977
+ ],
+ [
+ -73.56098801980312,
+ 45.53163351882213
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":776,
+ "ID_UEV":"01022700",
+ "CIVIQUE_DE":" 2350",
+ "CIVIQUE_FI":" 2350",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1961,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-05-2314-2-000-0000",
+ "SUPERFICIE":300,
+ "SUPERFIC_1":393,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000573588023371,
+ "OBJECTID":85600,
+ "Join_Count":1,
+ "TARGET_FID":85600,
+ "feature_id":"da1a3347-13c1-4911-b6cc-5b657497e24b",
+ "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.65,
+ "heightmax":50.46,
+ "elevmin":30.06,
+ "elevmax":43.72,
+ "bldgarea":3391.1,
+ "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_2":85600,
+ "Shape_Le_1":0.000573588023371,
+ "Shape_Ar_1":1.64597667372e-08,
+ "OBJECTID_3":85600,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85599,
+ "g_objectid":"943545",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2379260",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004305301050000000",
+ "g_sup_tota":"282.2",
+ "g_geometry":"0.000956393",
+ "g_geomet_1":"3.26576e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000573588023371,
+ "Shape_Area":1.64597667372e-08,
+ "Shape_Le_3":0.00057358899412,
+ "Shape_Ar_2":1.64597667372e-08,
+ "building_height":24.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":777,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56107266219544,
+ 45.53167275084707
+ ],
+ [
+ -73.56109336908555,
+ 45.53168234841195
+ ],
+ [
+ -73.56115527481792,
+ 45.531711033187925
+ ],
+ [
+ -73.5612689023598,
+ 45.53159078483714
+ ],
+ [
+ -73.5612472700673,
+ 45.53157864848613
+ ],
+ [
+ -73.56127347001647,
+ 45.531555649224124
+ ],
+ [
+ -73.5612474697168,
+ 45.53154104873071
+ ],
+ [
+ -73.5612396698967,
+ 45.531536048500136
+ ],
+ [
+ -73.56121446999364,
+ 45.531556048523115
+ ],
+ [
+ -73.56121377032109,
+ 45.53155584887362
+ ],
+ [
+ -73.56121577041331,
+ 45.531526648786105
+ ],
+ [
+ -73.56121163712919,
+ 45.53152603454915
+ ],
+ [
+ -73.56107266219544,
+ 45.53167275084707
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":777,
+ "ID_UEV":"01022701",
+ "CIVIQUE_DE":" 2354",
+ "CIVIQUE_FI":" 2358",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1994,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-05-1718-5-000-0000",
+ "SUPERFICIE":289,
+ "SUPERFIC_1":346,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000623678285744,
+ "OBJECTID":85601,
+ "Join_Count":1,
+ "TARGET_FID":85601,
+ "feature_id":"da1a3347-13c1-4911-b6cc-5b657497e24b",
+ "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.65,
+ "heightmax":50.46,
+ "elevmin":30.06,
+ "elevmax":43.72,
+ "bldgarea":3391.1,
+ "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_2":85601,
+ "Shape_Le_1":0.000623678285744,
+ "Shape_Ar_1":1.63300525324e-08,
+ "OBJECTID_3":85601,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85600,
+ "g_objectid":"941457",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425512",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004305171850000000",
+ "g_sup_tota":"289",
+ "g_geometry":"0.000961189",
+ "g_geomet_1":"3.35738e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000623678285744,
+ "Shape_Area":1.63300525324e-08,
+ "Shape_Le_3":0.000623679198698,
+ "Shape_Ar_2":1.63300525324e-08,
+ "building_height":24.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":778,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5613987788524,
+ 45.531823859433864
+ ],
+ [
+ -73.56145897047695,
+ 45.53185174920915
+ ],
+ [
+ -73.56148065313148,
+ 45.531861780247255
+ ],
+ [
+ -73.56156888202014,
+ 45.531772950611476
+ ],
+ [
+ -73.56156577036586,
+ 45.53177124909416
+ ],
+ [
+ -73.56158787030581,
+ 45.531751249071185
+ ],
+ [
+ -73.56158966984923,
+ 45.531749048430136
+ ],
+ [
+ -73.56150459668163,
+ 45.53171393170288
+ ],
+ [
+ -73.5613987788524,
+ 45.531823859433864
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":778,
+ "ID_UEV":"01022705",
+ "CIVIQUE_DE":" 2384",
+ "CIVIQUE_FI":" 2394",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-95-9235-5-000-0000",
+ "SUPERFICIE":299,
+ "SUPERFIC_1":292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000496243532779,
+ "OBJECTID":85602,
+ "Join_Count":1,
+ "TARGET_FID":85602,
+ "feature_id":"da1a3347-13c1-4911-b6cc-5b657497e24b",
+ "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.65,
+ "heightmax":50.46,
+ "elevmin":30.06,
+ "elevmax":43.72,
+ "bldgarea":3391.1,
+ "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_2":85602,
+ "Shape_Le_1":0.000496243532779,
+ "Shape_Ar_1":1.32988236795e-08,
+ "OBJECTID_3":85602,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85601,
+ "g_objectid":"940383",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423731",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994395853910000000",
+ "g_sup_tota":"301.5",
+ "g_geometry":"0.00097692",
+ "g_geomet_1":"3.47255e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000496243532779,
+ "Shape_Area":1.32988236795e-08,
+ "Shape_Le_3":0.000496243882069,
+ "Shape_Ar_2":1.32988236795e-08,
+ "building_height":24.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":779,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56303570055898,
+ 45.522415348240024
+ ],
+ [
+ -73.5630338695393,
+ 45.522414547843404
+ ],
+ [
+ -73.56294186889397,
+ 45.522373848124886
+ ],
+ [
+ -73.5627440693052,
+ 45.52257404800421
+ ],
+ [
+ -73.56274726909304,
+ 45.52257554807338
+ ],
+ [
+ -73.5628201600442,
+ 45.52260818087314
+ ],
+ [
+ -73.56292076630217,
+ 45.52250546750362
+ ],
+ [
+ -73.56289396920316,
+ 45.522493247515655
+ ],
+ [
+ -73.5629245695351,
+ 45.52246014796775
+ ],
+ [
+ -73.56294176906923,
+ 45.52244154818919
+ ],
+ [
+ -73.56297048352285,
+ 45.52245470976734
+ ],
+ [
+ -73.56298067643891,
+ 45.52244430371194
+ ],
+ [
+ -73.5629988409456,
+ 45.52245274564799
+ ],
+ [
+ -73.56303570055898,
+ 45.522415348240024
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":779,
+ "ID_UEV":"01040526",
+ "CIVIQUE_DE":" 2062",
+ "CIVIQUE_FI":" 2066",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-85-8709-3-000-0000",
+ "SUPERFICIE":234,
+ "SUPERFIC_1":379,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000829761086178,
+ "OBJECTID":85621,
+ "Join_Count":1,
+ "TARGET_FID":85621,
+ "feature_id":"dbe42acc-1f36-42b4-b829-7e0d9dba660f",
+ "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.94,
+ "heightmax":15.12,
+ "elevmin":27.51,
+ "elevmax":31.13,
+ "bldgarea":1700.65,
+ "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_2":85621,
+ "Shape_Le_1":0.000829761086178,
+ "Shape_Ar_1":2.07835783581e-08,
+ "OBJECTID_3":85621,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85620,
+ "g_objectid":"941566",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565447",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994285870930000000",
+ "g_sup_tota":"234.4",
+ "g_geometry":"0.000826839",
+ "g_geomet_1":"2.71693e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000829761086178,
+ "Shape_Area":2.07835783581e-08,
+ "Shape_Le_3":0.000829760771471,
+ "Shape_Ar_2":2.07835783581e-08,
+ "building_height":6.59
+ }
+ },
+ {
+ "type":"Feature",
+ "id":780,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56283421644778,
+ 45.52176815742482
+ ],
+ [
+ -73.56297408620696,
+ 45.52183295627621
+ ],
+ [
+ -73.5630450634008,
+ 45.521759971795554
+ ],
+ [
+ -73.56295096913377,
+ 45.52172254650861
+ ],
+ [
+ -73.56296956891232,
+ 45.52169944652253
+ ],
+ [
+ -73.56296946908758,
+ 45.52169944652253
+ ],
+ [
+ -73.56292286891711,
+ 45.52167834662869
+ ],
+ [
+ -73.5628994694568,
+ 45.5217040465548
+ ],
+ [
+ -73.56289545398386,
+ 45.52170223172291
+ ],
+ [
+ -73.56283421644778,
+ 45.52176815742482
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":780,
+ "ID_UEV":"01040398",
+ "CIVIQUE_DE":" 2046",
+ "CIVIQUE_FI":" 2064",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-8125-5-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":352,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000567274559723,
+ "OBJECTID":85639,
+ "Join_Count":1,
+ "TARGET_FID":85639,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":85639,
+ "Shape_Le_1":0.000567274559723,
+ "Shape_Ar_1":1.57894745203e-08,
+ "OBJECTID_3":85639,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85638,
+ "g_objectid":"941564",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565444",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994284733100000000",
+ "g_sup_tota":"106",
+ "g_geometry":"0.000505017",
+ "g_geomet_1":"1.22229e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000567274559723,
+ "Shape_Area":1.57894745203e-08,
+ "Shape_Le_3":0.00056727472908,
+ "Shape_Ar_2":1.57894745203e-08,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":781,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55882639674266,
+ 45.53336570301508
+ ],
+ [
+ -73.55883426940785,
+ 45.53336954941547
+ ],
+ [
+ -73.55882396947246,
+ 45.53338004989968
+ ],
+ [
+ -73.55882436877144,
+ 45.533380249549175
+ ],
+ [
+ -73.55889878047618,
+ 45.53341317822589
+ ],
+ [
+ -73.55901599271574,
+ 45.5332872101869
+ ],
+ [
+ -73.55894676919988,
+ 45.53325454950815
+ ],
+ [
+ -73.55893499347701,
+ 45.53324899529519
+ ],
+ [
+ -73.55882639674266,
+ 45.53336570301508
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":781,
+ "ID_UEV":"01023191",
+ "CIVIQUE_DE":" 2321",
+ "CIVIQUE_FI":" 2327",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-0017-7-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":278,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000526334246325,
+ "OBJECTID":85650,
+ "Join_Count":1,
+ "TARGET_FID":85650,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":85650,
+ "Shape_Le_1":0.000526334246325,
+ "Shape_Ar_1":1.46596084942e-08,
+ "OBJECTID_3":85650,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85649,
+ "g_objectid":"941333",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425339",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327001770000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000807684",
+ "g_geomet_1":"2.67931e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000526334246325,
+ "Shape_Area":1.46596084942e-08,
+ "Shape_Le_3":0.000526334086809,
+ "Shape_Ar_2":1.46596084942e-08,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":782,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55356365496056,
+ 45.530174936274584
+ ],
+ [
+ -73.55367523474614,
+ 45.53022878677938
+ ],
+ [
+ -73.55369446674808,
+ 45.530213048643574
+ ],
+ [
+ -73.55372826686786,
+ 45.53018534862523
+ ],
+ [
+ -73.55371986719996,
+ 45.530180449118724
+ ],
+ [
+ -73.55361876721418,
+ 45.53012414886068
+ ],
+ [
+ -73.55361676712195,
+ 45.53012314881456
+ ],
+ [
+ -73.55356365496056,
+ 45.530174936274584
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":782,
+ "ID_UEV":"01018483",
+ "CIVIQUE_DE":" 2313",
+ "CIVIQUE_FI":" 2317",
+ "NOM_RUE":"avenue Lalonde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-0963-7-000-0000",
+ "SUPERFICIE":104,
+ "SUPERFIC_1":174,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000394306871422,
+ "OBJECTID":85656,
+ "Join_Count":1,
+ "TARGET_FID":85656,
+ "feature_id":"3def3a69-504e-4170-be2c-f8c0fc73d2c7",
+ "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.5,
+ "heightmax":25.64,
+ "elevmin":16.92,
+ "elevmax":17.61,
+ "bldgarea":267.89,
+ "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_2":85656,
+ "Shape_Le_1":0.000394306871422,
+ "Shape_Ar_1":8.40830358659e-09,
+ "OBJECTID_3":85656,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85655,
+ "g_objectid":"940843",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424513",
+ "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":"66023004363147020000000",
+ "g_sup_tota":"129.5",
+ "g_geometry":"0.000507464",
+ "g_geomet_1":"1.49167e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000394306871422,
+ "Shape_Area":8.40830358659e-09,
+ "Shape_Le_3":0.000394306772349,
+ "Shape_Ar_2":8.40830358659e-09,
+ "building_height":11.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":783,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56220628731215,
+ 45.51925323929585
+ ],
+ [
+ -73.5621352687495,
+ 45.51922104716389
+ ],
+ [
+ -73.56202736898973,
+ 45.51933874683599
+ ],
+ [
+ -73.56203326944167,
+ 45.51934144660078
+ ],
+ [
+ -73.56208126895724,
+ 45.51937174655915
+ ],
+ [
+ -73.56209736951983,
+ 45.51935764698811
+ ],
+ [
+ -73.56211726881875,
+ 45.51933964705736
+ ],
+ [
+ -73.56212280774322,
+ 45.5193426876652
+ ],
+ [
+ -73.56220628731215,
+ 45.51925323929585
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":783,
+ "ID_UEV":"01040005",
+ "CIVIQUE_DE":" 1837",
+ "CIVIQUE_FI":" 1847",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-4855-6-000-0000",
+ "SUPERFICIE":173,
+ "SUPERFIC_1":312,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477803919155,
+ "OBJECTID":85658,
+ "Join_Count":1,
+ "TARGET_FID":85658,
+ "feature_id":"6d102e70-d394-4982-8b23-57d85734502a",
+ "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.53,
+ "heightmax":10.05,
+ "elevmin":23.81,
+ "elevmax":24.94,
+ "bldgarea":294.24,
+ "comment":" ",
+ "OBJECTID_2":85658,
+ "Shape_Le_1":0.000477803919155,
+ "Shape_Ar_1":1.16540392267e-08,
+ "OBJECTID_3":85658,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85657,
+ "g_objectid":"941447",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565249",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994291386230000000",
+ "g_sup_tota":"346.1",
+ "g_geometry":"0.000826716",
+ "g_geomet_1":"3.98891e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477803919155,
+ "Shape_Area":1.16540392267e-08,
+ "Shape_Le_3":0.000477803209678,
+ "Shape_Ar_2":1.16540392267e-08,
+ "building_height":3.7600000000000007
+ }
+ },
+ {
+ "type":"Feature",
+ "id":784,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56193463269898,
+ 45.519294591022856
+ ],
+ [
+ -73.56195186910531,
+ 45.51930304644873
+ ],
+ [
+ -73.56196476898074,
+ 45.5192858469146
+ ],
+ [
+ -73.56197256880085,
+ 45.5192763464765
+ ],
+ [
+ -73.56203096897588,
+ 45.51920364708094
+ ],
+ [
+ -73.56202258999238,
+ 45.519200333079205
+ ],
+ [
+ -73.56193463269898,
+ 45.519294591022856
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":784,
+ "ID_UEV":"01040006",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-5451-3-000-0000",
+ "SUPERFICIE":166,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000284174977761,
+ "OBJECTID":85659,
+ "Join_Count":1,
+ "TARGET_FID":85659,
+ "feature_id":"f57eac9c-b69c-4212-b473-1cf5e454e35e",
+ "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.54,
+ "heightmax":10.3,
+ "elevmin":22.96,
+ "elevmax":25.18,
+ "bldgarea":535.47,
+ "comment":" ",
+ "OBJECTID_2":85659,
+ "Shape_Le_1":0.000284174977761,
+ "Shape_Ar_1":1.69870264018e-09,
+ "OBJECTID_3":85659,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85658,
+ "g_objectid":"945385",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565253",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994291545130000000",
+ "g_sup_tota":"166.2",
+ "g_geometry":"0.000634011",
+ "g_geomet_1":"1.91382e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000284174977761,
+ "Shape_Area":1.69870264018e-09,
+ "Shape_Le_3":0.000284174649366,
+ "Shape_Ar_2":1.69870264018e-09,
+ "building_height":3.8800000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":785,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56189095352653,
+ 45.519251397484304
+ ],
+ [
+ -73.56189726946526,
+ 45.519254546910105
+ ],
+ [
+ -73.56188256914709,
+ 45.519269046679455
+ ],
+ [
+ -73.56193463269898,
+ 45.519294591022856
+ ],
+ [
+ -73.56202258999238,
+ 45.519200333079205
+ ],
+ [
+ -73.56199556896219,
+ 45.51918964643533
+ ],
+ [
+ -73.5620037689806,
+ 45.519180646919615
+ ],
+ [
+ -73.56197606896225,
+ 45.51917024715947
+ ],
+ [
+ -73.56197326937273,
+ 45.519169646412344
+ ],
+ [
+ -73.56196956956182,
+ 45.51917434716868
+ ],
+ [
+ -73.56196495603973,
+ 45.51917209256831
+ ],
+ [
+ -73.56189095352653,
+ 45.519251397484304
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":785,
+ "ID_UEV":"01040007",
+ "CIVIQUE_DE":" 1827",
+ "CIVIQUE_FI":" 1827",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (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\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-6047-8-000-0000",
+ "SUPERFICIE":122,
+ "SUPERFIC_1":108,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000407890709667,
+ "OBJECTID":85660,
+ "Join_Count":1,
+ "TARGET_FID":85660,
+ "feature_id":"f57eac9c-b69c-4212-b473-1cf5e454e35e",
+ "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.54,
+ "heightmax":10.3,
+ "elevmin":22.96,
+ "elevmax":25.18,
+ "bldgarea":535.47,
+ "comment":" ",
+ "OBJECTID_2":85660,
+ "Shape_Le_1":0.000407890709667,
+ "Shape_Ar_1":7.99639007458e-09,
+ "OBJECTID_3":85660,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85659,
+ "g_objectid":"945385",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565253",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994291545130000000",
+ "g_sup_tota":"166.2",
+ "g_geometry":"0.000634011",
+ "g_geomet_1":"1.91382e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000407890709667,
+ "Shape_Area":7.99639007458e-09,
+ "Shape_Le_3":0.00040789124135,
+ "Shape_Ar_2":7.99639007458e-09,
+ "building_height":3.8800000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":786,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5506497220289,
+ 45.53205783065466
+ ],
+ [
+ -73.55071159268769,
+ 45.5320840297045
+ ],
+ [
+ -73.55072344575227,
+ 45.53208904882084
+ ],
+ [
+ -73.55079731606513,
+ 45.53212032904025
+ ],
+ [
+ -73.55095792509002,
+ 45.531933203504835
+ ],
+ [
+ -73.55082106626105,
+ 45.5318755497671
+ ],
+ [
+ -73.55076266608602,
+ 45.53193094980379
+ ],
+ [
+ -73.550759772967,
+ 45.53192945243258
+ ],
+ [
+ -73.5506497220289,
+ 45.53205783065466
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":786,
+ "ID_UEV":"01019029",
+ "CIVIQUE_DE":" 1840",
+ "CIVIQUE_FI":" 1840",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1912,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-85-3165-9-000-0000",
+ "SUPERFICIE":327,
+ "SUPERFIC_1":407,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000808233166673,
+ "OBJECTID":85665,
+ "Join_Count":1,
+ "TARGET_FID":85665,
+ "feature_id":"bdf1f075-d706-43d6-bd43-be32017d6e46",
+ "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.7,
+ "heightmax":35.59,
+ "elevmin":20.02,
+ "elevmax":23.88,
+ "bldgarea":1603.76,
+ "comment":" ",
+ "OBJECTID_2":85665,
+ "Shape_Le_1":0.000808233166673,
+ "Shape_Ar_1":3.70853103666e-08,
+ "OBJECTID_3":85665,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85664,
+ "g_objectid":"942418",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729410",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004385237060000000",
+ "g_sup_tota":"164.3",
+ "g_geometry":"0.00065558",
+ "g_geomet_1":"1.89141e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000808233166673,
+ "Shape_Area":3.70853103666e-08,
+ "Shape_Le_3":0.000808234070119,
+ "Shape_Ar_2":3.70853103666e-08,
+ "building_height":16.445
+ }
+ },
+ {
+ "type":"Feature",
+ "id":787,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56146299854039,
+ 45.52043170191181
+ ],
+ [
+ -73.56154985056699,
+ 45.52045888661862
+ ],
+ [
+ -73.56168103827115,
+ 45.52031684499669
+ ],
+ [
+ -73.56164716890356,
+ 45.520302646500234
+ ],
+ [
+ -73.56165476907418,
+ 45.520293746809266
+ ],
+ [
+ -73.56165406940163,
+ 45.52029354715977
+ ],
+ [
+ -73.56156804744927,
+ 45.5202642184692
+ ],
+ [
+ -73.56142831078975,
+ 45.520415517712266
+ ],
+ [
+ -73.56142865702874,
+ 45.52041595298414
+ ],
+ [
+ -73.56145670328607,
+ 45.520428815987366
+ ],
+ [
+ -73.56146299854039,
+ 45.52043170191181
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":787,
+ "ID_UEV":"01040205",
+ "CIVIQUE_DE":" 1859",
+ "CIVIQUE_FI":" 1869",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-92-8972-3-000-0000",
+ "SUPERFICIE":234,
+ "SUPERFIC_1":500,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000668693433467,
+ "OBJECTID":85666,
+ "Join_Count":1,
+ "TARGET_FID":85666,
+ "feature_id":"cc53003b-a4db-481d-ad17-8c51ba839fa3",
+ "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.5,
+ "heightmax":15.32,
+ "elevmin":24.37,
+ "elevmax":26.24,
+ "bldgarea":2675.11,
+ "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_2":85666,
+ "Shape_Le_1":0.000668693433467,
+ "Shape_Ar_1":2.43446221769e-08,
+ "OBJECTID_3":85666,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85665,
+ "g_objectid":"941606",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565540",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994292897230000000",
+ "g_sup_tota":"234.1",
+ "g_geometry":"0.000700692",
+ "g_geomet_1":"2.67645e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000668693433467,
+ "Shape_Area":2.43446221769e-08,
+ "Shape_Le_3":0.000668694488812,
+ "Shape_Ar_2":2.43446221769e-08,
+ "building_height":6.41
+ }
+ },
+ {
+ "type":"Feature",
+ "id":788,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56121192401292,
+ 45.52011513875295
+ ],
+ [
+ -73.56115406882707,
+ 45.520089446920736
+ ],
+ [
+ -73.56113746914073,
+ 45.52008204729894
+ ],
+ [
+ -73.56097846900299,
+ 45.52001144692103
+ ],
+ [
+ -73.56087416922936,
+ 45.51996514712413
+ ],
+ [
+ -73.56078906908212,
+ 45.52004644673642
+ ],
+ [
+ -73.56079286871777,
+ 45.52004844682865
+ ],
+ [
+ -73.56083086957082,
+ 45.52006564726211
+ ],
+ [
+ -73.56089956878192,
+ 45.52009684654253
+ ],
+ [
+ -73.56108706933463,
+ 45.52018194668978
+ ],
+ [
+ -73.56113088970065,
+ 45.52020190804192
+ ],
+ [
+ -73.56121192401292,
+ 45.52011513875295
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":788,
+ "ID_UEV":"01040209",
+ "CIVIQUE_DE":" 1793",
+ "CIVIQUE_FI":" 1819",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-3941-0-000-0000",
+ "SUPERFICIE":883,
+ "SUPERFIC_1":699,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000981499026769,
+ "OBJECTID":85667,
+ "Join_Count":1,
+ "TARGET_FID":85667,
+ "feature_id":"61ade7ae-45af-4e6b-be7b-bd1af757d54c",
+ "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.54,
+ "heightmax":7.96,
+ "elevmin":24.27,
+ "elevmax":24.98,
+ "bldgarea":360.83,
+ "comment":" ",
+ "OBJECTID_2":85667,
+ "Shape_Le_1":0.000981499026769,
+ "Shape_Ar_1":4.12759027595e-08,
+ "OBJECTID_3":85667,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85666,
+ "g_objectid":"945358",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1565542",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004202106680000000",
+ "g_sup_tota":"791.3",
+ "g_geometry":"0.00165206",
+ "g_geomet_1":"9.1149e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000981499026769,
+ "Shape_Area":4.12759027595e-08,
+ "Shape_Le_3":0.000981498734643,
+ "Shape_Ar_2":4.12759027595e-08,
+ "building_height":2.71
+ }
+ },
+ {
+ "type":"Feature",
+ "id":789,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56056942855813,
+ 45.51992388712798
+ ],
+ [
+ -73.56057586770397,
+ 45.519927046446334
+ ],
+ [
+ -73.56056706783775,
+ 45.51993594703662
+ ],
+ [
+ -73.56067986800335,
+ 45.51999294696722
+ ],
+ [
+ -73.56068206774508,
+ 45.51999064650143
+ ],
+ [
+ -73.56077466913752,
+ 45.51989014726278
+ ],
+ [
+ -73.5606526572162,
+ 45.51983457545559
+ ],
+ [
+ -73.56056942855813,
+ 45.51992388712798
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":789,
+ "ID_UEV":"01040210",
+ "CIVIQUE_DE":" 1775",
+ "CIVIQUE_FI":" 1775",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2004,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison pour personnes en difficult\u00c3\u00a9 (s\u00c3\u00a9jours p\u00c3\u00a9riodes limit\u00c3\u00a9es)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-6126-5-000-0000",
+ "SUPERFICIE":294,
+ "SUPERFIC_1":296,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000542064276734,
+ "OBJECTID":85668,
+ "Join_Count":1,
+ "TARGET_FID":85668,
+ "feature_id":"62372416-e58b-49b0-a25a-3f35cd0f44ab",
+ "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.72,
+ "heightmax":8.27,
+ "elevmin":24.42,
+ "elevmax":25.71,
+ "bldgarea":417.95,
+ "comment":" ",
+ "OBJECTID_2":85668,
+ "Shape_Le_1":0.000542064276734,
+ "Shape_Ar_1":1.74201016257e-08,
+ "OBJECTID_3":85668,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85667,
+ "g_objectid":"945109",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1566810",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6542",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004202612650000000",
+ "g_sup_tota":"294.3",
+ "g_geometry":"0.000765803",
+ "g_geomet_1":"3.3729e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000542064276734,
+ "Shape_Area":1.74201016257e-08,
+ "Shape_Le_3":0.000542064037753,
+ "Shape_Ar_2":1.74201016257e-08,
+ "building_height":2.7749999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":790,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5606526572162,
+ 45.51983457545559
+ ],
+ [
+ -73.56040426806436,
+ 45.51972144703745
+ ],
+ [
+ -73.56040206832265,
+ 45.519723947152734
+ ],
+ [
+ -73.56032316810158,
+ 45.519803047023295
+ ],
+ [
+ -73.56032726811078,
+ 45.519805047115526
+ ],
+ [
+ -73.56056942855813,
+ 45.51992388712798
+ ],
+ [
+ -73.5606526572162,
+ 45.51983457545559
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":790,
+ "ID_UEV":"01040211",
+ "CIVIQUE_DE":" 1755",
+ "CIVIQUE_FI":" 1767",
+ "NOM_RUE":"rue Wolfe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-02-7815-2-000-0000",
+ "SUPERFICIE":589,
+ "SUPERFIC_1":569,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000784381904311,
+ "OBJECTID":85669,
+ "Join_Count":1,
+ "TARGET_FID":85669,
+ "feature_id":"62372416-e58b-49b0-a25a-3f35cd0f44ab",
+ "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.72,
+ "heightmax":8.27,
+ "elevmin":24.42,
+ "elevmax":25.71,
+ "bldgarea":417.95,
+ "comment":" ",
+ "OBJECTID_2":85669,
+ "Shape_Le_1":0.000784381904311,
+ "Shape_Ar_1":3.07341347554e-08,
+ "OBJECTID_3":85669,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85668,
+ "g_objectid":"945109",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1566810",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6542",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004202612650000000",
+ "g_sup_tota":"294.3",
+ "g_geometry":"0.000765803",
+ "g_geomet_1":"3.3729e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000784381904311,
+ "Shape_Area":3.07341347554e-08,
+ "Shape_Le_3":0.000784382496406,
+ "Shape_Ar_2":3.07341347554e-08,
+ "building_height":2.7749999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":791,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5597781933308,
+ 45.51860528405691
+ ],
+ [
+ -73.55985976543766,
+ 45.518642876617754
+ ],
+ [
+ -73.55993888149602,
+ 45.51855830707051
+ ],
+ [
+ -73.55991716826455,
+ 45.518548446903594
+ ],
+ [
+ -73.55991776811236,
+ 45.51854774723105
+ ],
+ [
+ -73.55994856809379,
+ 45.518488247185154
+ ],
+ [
+ -73.55990921735834,
+ 45.51846522903738
+ ],
+ [
+ -73.5597781933308,
+ 45.51860528405691
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":791,
+ "ID_UEV":"01040032",
+ "CIVIQUE_DE":" 1630",
+ "CIVIQUE_FI":" 1632",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-10-2070-2-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":160,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000534770305504,
+ "OBJECTID":85719,
+ "Join_Count":1,
+ "TARGET_FID":85719,
+ "feature_id":"54e6f7e1-8ef1-49c1-b9b7-5a24ea7f0370",
+ "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.11,
+ "heightmax":38.68,
+ "elevmin":22.45,
+ "elevmax":27.17,
+ "bldgarea":3072.24,
+ "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_2":85719,
+ "Shape_Le_1":0.000534770305504,
+ "Shape_Ar_1":1.38000575197e-08,
+ "OBJECTID_3":85719,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85718,
+ "g_objectid":"941665",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566294",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004210137490000000",
+ "g_sup_tota":"177.7",
+ "g_geometry":"0.000652375",
+ "g_geomet_1":"2.01516e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000534770305504,
+ "Shape_Area":1.38000575197e-08,
+ "Shape_Le_3":0.000534769771725,
+ "Shape_Ar_2":1.38000575197e-08,
+ "building_height":18.285
+ }
+ },
+ {
+ "type":"Feature",
+ "id":792,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55477354888203,
+ 45.528716804287384
+ ],
+ [
+ -73.55488681669507,
+ 45.528770425465055
+ ],
+ [
+ -73.55498647596694,
+ 45.52866528212736
+ ],
+ [
+ -73.5548736695061,
+ 45.528611172617815
+ ],
+ [
+ -73.55477354888203,
+ 45.528716804287384
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":792,
+ "ID_UEV":"01018354",
+ "CIVIQUE_DE":" 1890",
+ "CIVIQUE_FI":" 1900",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-51-1196-8-000-0000",
+ "SUPERFICIE":250,
+ "SUPERFIC_1":439,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000540841811929,
+ "OBJECTID":85721,
+ "Join_Count":1,
+ "TARGET_FID":85721,
+ "feature_id":"c21a4142-d19f-4c22-b0f3-0156b8343836",
+ "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":3.13,
+ "heightmax":31.13,
+ "elevmin":12.92,
+ "elevmax":20.47,
+ "bldgarea":893.89,
+ "comment":" ",
+ "OBJECTID_2":85721,
+ "Shape_Le_1":0.000540841811929,
+ "Shape_Ar_1":1.72933373929e-08,
+ "OBJECTID_3":85721,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85720,
+ "g_objectid":"940902",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424615",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004351209020000000",
+ "g_sup_tota":"250.4",
+ "g_geometry":"0.00073526",
+ "g_geomet_1":"2.88375e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000540841811929,
+ "Shape_Area":1.72933373929e-08,
+ "Shape_Le_3":0.000540841646996,
+ "Shape_Ar_2":1.72933373929e-08,
+ "building_height":14.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":793,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55500008630678,
+ 45.52882404754205
+ ],
+ [
+ -73.5551114106849,
+ 45.52887674871328
+ ],
+ [
+ -73.55521016523878,
+ 45.52877255775763
+ ],
+ [
+ -73.55509928152847,
+ 45.528719389838265
+ ],
+ [
+ -73.55500008630678,
+ 45.52882404754205
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":793,
+ "ID_UEV":"01018357",
+ "CIVIQUE_DE":" 1914",
+ "CIVIQUE_FI":" 1924",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-42-9408-8-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":401,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000533894000491,
+ "OBJECTID":85722,
+ "Join_Count":1,
+ "TARGET_FID":85722,
+ "feature_id":"c21a4142-d19f-4c22-b0f3-0156b8343836",
+ "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":3.13,
+ "heightmax":31.13,
+ "elevmin":12.92,
+ "elevmax":20.47,
+ "bldgarea":893.89,
+ "comment":" ",
+ "OBJECTID_2":85722,
+ "Shape_Le_1":0.000533894000491,
+ "Shape_Ar_1":1.68411975321e-08,
+ "OBJECTID_3":85722,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85721,
+ "g_objectid":"944683",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004352020230000000",
+ "g_sup_tota":"250.4",
+ "g_geometry":"0.000735262",
+ "g_geomet_1":"2.88375e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000533894000491,
+ "Shape_Area":1.68411975321e-08,
+ "Shape_Le_3":0.000533893501956,
+ "Shape_Ar_2":1.68411975321e-08,
+ "building_height":14.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":794,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55124560832002,
+ 45.530408286063846
+ ],
+ [
+ -73.55132100028578,
+ 45.53044250077109
+ ],
+ [
+ -73.55143056469065,
+ 45.53032404207118
+ ],
+ [
+ -73.55136434850772,
+ 45.530295009257564
+ ],
+ [
+ -73.55130655897236,
+ 45.530357487858076
+ ],
+ [
+ -73.55129674287222,
+ 45.53035300473768
+ ],
+ [
+ -73.55128610928836,
+ 45.53036450077139
+ ],
+ [
+ -73.55124560832002,
+ 45.530408286063846
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5510593848046,
+ 45.53040835621096
+ ],
+ [
+ -73.55109206616777,
+ 45.53042333981558
+ ],
+ [
+ -73.55113061111066,
+ 45.53038166792992
+ ],
+ [
+ -73.55111086649514,
+ 45.53037514874441
+ ],
+ [
+ -73.5511185871749,
+ 45.53036346655104
+ ],
+ [
+ -73.55110581230524,
+ 45.53035761016587
+ ],
+ [
+ -73.5510593848046,
+ 45.53040835621096
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":794,
+ "ID_UEV":"01019238",
+ "CIVIQUE_DE":" 2404",
+ "CIVIQUE_FI":" 2406",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-73-8984-4-000-0000",
+ "SUPERFICIE":128,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000698004339236,
+ "OBJECTID":85731,
+ "Join_Count":1,
+ "TARGET_FID":85731,
+ "feature_id":"79f0d101-b467-4fe9-8aca-3a38a1db9545",
+ "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.56,
+ "heightmax":31.65,
+ "elevmin":19.81,
+ "elevmax":21.09,
+ "bldgarea":1473.85,
+ "comment":" ",
+ "OBJECTID_2":85731,
+ "Shape_Le_1":0.000698004339236,
+ "Shape_Ar_1":1.38615471843e-08,
+ "OBJECTID_3":85731,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85730,
+ "g_objectid":"944688",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004373977970000000",
+ "g_sup_tota":"235.2",
+ "g_geometry":"0.000811301",
+ "g_geomet_1":"2.7088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000698004339236,
+ "Shape_Area":1.38615471843e-08,
+ "Shape_Le_3":0.00069800260339,
+ "Shape_Ar_2":1.38615471843e-08,
+ "building_height":14.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":795,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55029812398108,
+ 45.53844003862718
+ ],
+ [
+ -73.55023506621718,
+ 45.53841755107941
+ ],
+ [
+ -73.55023236645239,
+ 45.53842135071506
+ ],
+ [
+ -73.5501693662451,
+ 45.53850865060404
+ ],
+ [
+ -73.55017436647567,
+ 45.53851035122203
+ ],
+ [
+ -73.55023298788393,
+ 45.53853093310637
+ ],
+ [
+ -73.55029812398108,
+ 45.53844003862718
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":795,
+ "ID_UEV":"01025633",
+ "CIVIQUE_DE":" 3009",
+ "CIVIQUE_FI":" 3009",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-7782-2-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000358502074166,
+ "OBJECTID":85743,
+ "Join_Count":1,
+ "TARGET_FID":85743,
+ "feature_id":"fb799dfc-15ad-4735-937b-a4d19bbcca51",
+ "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,
+ "heightmax":32.29,
+ "elevmin":21.17,
+ "elevmax":21.89,
+ "bldgarea":541.06,
+ "comment":" ",
+ "OBJECTID_2":85743,
+ "Shape_Le_1":0.000358502074166,
+ "Shape_Ar_1":7.2246606071e-09,
+ "OBJECTID_3":85743,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85742,
+ "g_objectid":"944273",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361946",
+ "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":"66023004482778220000000",
+ "g_sup_tota":"260.5",
+ "g_geometry":"0.00083206",
+ "g_geomet_1":"3.00186e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000358502074166,
+ "Shape_Area":7.2246606071e-09,
+ "Shape_Le_3":0.000358501564743,
+ "Shape_Ar_2":7.2246606071e-09,
+ "building_height":15.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":796,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5602802632454,
+ 45.51174080024803
+ ],
+ [
+ -73.56032976822607,
+ 45.51176714588737
+ ],
+ [
+ -73.56027086802798,
+ 45.5118218462515
+ ],
+ [
+ -73.56030573924032,
+ 45.511840370487
+ ],
+ [
+ -73.56046046220241,
+ 45.51166412045309
+ ],
+ [
+ -73.56040386786606,
+ 45.511638045509685
+ ],
+ [
+ -73.56038135423795,
+ 45.511627663735986
+ ],
+ [
+ -73.5602802632454,
+ 45.51174080024803
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":796,
+ "ID_UEV":"01021007",
+ "CIVIQUE_DE":" 1209",
+ "CIVIQUE_FI":" 1211",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-8515-7-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":342,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000649300305079,
+ "OBJECTID":85758,
+ "Join_Count":1,
+ "TARGET_FID":85758,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":85758,
+ "Shape_Le_1":0.000649300305079,
+ "Shape_Ar_1":1.56357471474e-08,
+ "OBJECTID_3":85758,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85757,
+ "g_objectid":"943378",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161917",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103851570000000",
+ "g_sup_tota":"232",
+ "g_geometry":"0.000820144",
+ "g_geomet_1":"2.71853e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000649300305079,
+ "Shape_Area":1.56357471474e-08,
+ "Shape_Le_3":0.000649300567106,
+ "Shape_Ar_2":1.56357471474e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":797,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56014118848691,
+ 45.511768014632466
+ ],
+ [
+ -73.56018406816206,
+ 45.51179104627006
+ ],
+ [
+ -73.5602191678022,
+ 45.511758746219456
+ ],
+ [
+ -73.56025366849386,
+ 45.51172664581834
+ ],
+ [
+ -73.5602802632454,
+ 45.51174080024803
+ ],
+ [
+ -73.56038135423795,
+ 45.511627663735986
+ ],
+ [
+ -73.56030200795315,
+ 45.51159107391922
+ ],
+ [
+ -73.56014118848691,
+ 45.511768014632466
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":797,
+ "ID_UEV":"01021009",
+ "CIVIQUE_DE":" 1205",
+ "CIVIQUE_FI":" 1207",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-9111-4-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":326,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000651826378324,
+ "OBJECTID":85759,
+ "Join_Count":1,
+ "TARGET_FID":85759,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":85759,
+ "Shape_Le_1":0.000651826378324,
+ "Shape_Ar_1":1.72958505685e-08,
+ "OBJECTID_3":85759,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85758,
+ "g_objectid":"943378",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161917",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103851570000000",
+ "g_sup_tota":"232",
+ "g_geometry":"0.000820144",
+ "g_geomet_1":"2.71853e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000651826378324,
+ "Shape_Area":1.72958505685e-08,
+ "Shape_Le_3":0.000651826913122,
+ "Shape_Ar_2":1.72958505685e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":798,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55876180023874,
+ 45.51285529858346
+ ],
+ [
+ -73.558834602157,
+ 45.51288840172865
+ ],
+ [
+ -73.55893357074953,
+ 45.51278279254214
+ ],
+ [
+ -73.55893016681559,
+ 45.51278124570822
+ ],
+ [
+ -73.5588597669865,
+ 45.51274884583287
+ ],
+ [
+ -73.55902203795853,
+ 45.512575112102034
+ ],
+ [
+ -73.5590186304273,
+ 45.51257356167083
+ ],
+ [
+ -73.55885094553655,
+ 45.51275266705224
+ ],
+ [
+ -73.55885360213388,
+ 45.51275387484175
+ ],
+ [
+ -73.55876180023874,
+ 45.51285529858346
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":798,
+ "ID_UEV":"01021219",
+ "CIVIQUE_DE":" 1184",
+ "CIVIQUE_FI":" 1186",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-14-9524-5-000-0000",
+ "SUPERFICIE":262,
+ "SUPERFIC_1":372,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000932489673664,
+ "OBJECTID":85774,
+ "Join_Count":1,
+ "TARGET_FID":85774,
+ "feature_id":"59c7237c-4bcf-4193-a1c1-ffc685ffba64",
+ "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":76.26,
+ "elevmin":22.18,
+ "elevmax":23.46,
+ "bldgarea":1632.91,
+ "comment":" ",
+ "OBJECTID_2":85774,
+ "Shape_Le_1":0.000932489673664,
+ "Shape_Ar_1":1.20565204533e-08,
+ "OBJECTID_3":85774,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85773,
+ "g_objectid":"943421",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162026",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004114952450000000",
+ "g_sup_tota":"261.6",
+ "g_geometry":"0.000933524",
+ "g_geomet_1":"3.04493e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000932489673664,
+ "Shape_Area":1.20565204533e-08,
+ "Shape_Le_3":0.000932488204857,
+ "Shape_Ar_2":1.20565204533e-08,
+ "building_height":37.88
+ }
+ },
+ {
+ "type":"Feature",
+ "id":799,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55575339802274,
+ 45.53174595656094
+ ],
+ [
+ -73.5558822322011,
+ 45.53180355274206
+ ],
+ [
+ -73.55593472742757,
+ 45.53174240783615
+ ],
+ [
+ -73.55580696434177,
+ 45.53168599876013
+ ],
+ [
+ -73.55575339802274,
+ 45.53174595656094
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":799,
+ "ID_UEV":"01023093",
+ "CIVIQUE_DE":" 2351",
+ "CIVIQUE_FI":" 2353",
+ "NOM_RUE":"place Larivi\u00c3\u00a8re (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-45-3340-2-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":144,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000441772670557,
+ "OBJECTID":85796,
+ "Join_Count":1,
+ "TARGET_FID":85796,
+ "feature_id":"06d69728-84a0-4028-9167-9b680f4c2f16",
+ "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.46,
+ "heightmax":30.8,
+ "elevmin":18.27,
+ "elevmax":18.95,
+ "bldgarea":405.25,
+ "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_2":85796,
+ "Shape_Le_1":0.000441772670557,
+ "Shape_Ar_1":1.07915376963e-08,
+ "OBJECTID_3":85796,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85795,
+ "g_objectid":"940574",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424090",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004345334020000000",
+ "g_sup_tota":"193.4",
+ "g_geometry":"0.000741252",
+ "g_geomet_1":"2.23141e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000441772670557,
+ "Shape_Area":1.07915376963e-08,
+ "Shape_Le_3":0.000441773156639,
+ "Shape_Ar_2":1.07915376963e-08,
+ "building_height":14.17
+ }
+ },
+ {
+ "type":"Feature",
+ "id":800,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56297408620696,
+ 45.52183295627621
+ ],
+ [
+ -73.56304022055158,
+ 45.52186359348035
+ ],
+ [
+ -73.56311456840446,
+ 45.52178451789148
+ ],
+ [
+ -73.56305156909649,
+ 45.521757346674505
+ ],
+ [
+ -73.5630482694839,
+ 45.52176124703422
+ ],
+ [
+ -73.5630450634008,
+ 45.521759971795554
+ ],
+ [
+ -73.56297408620696,
+ 45.52183295627621
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":800,
+ "ID_UEV":"01040399",
+ "CIVIQUE_DE":" 2060",
+ "CIVIQUE_FI":" 2062",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-7331-0-000-0000",
+ "SUPERFICIE":106,
+ "SUPERFIC_1":168,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000360398129622,
+ "OBJECTID":85807,
+ "Join_Count":1,
+ "TARGET_FID":85807,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":85807,
+ "Shape_Le_1":0.000360398129622,
+ "Shape_Ar_1":7.3239382885e-09,
+ "OBJECTID_3":85807,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85806,
+ "g_objectid":"941562",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565441",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994284673460000000",
+ "g_sup_tota":"117.5",
+ "g_geometry":"0.000519418",
+ "g_geomet_1":"1.35473e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000360398129622,
+ "Shape_Area":7.3239382885e-09,
+ "Shape_Le_3":0.000360398745793,
+ "Shape_Ar_2":7.3239382885e-09,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":801,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55363064905706,
+ 45.519483497215916
+ ],
+ [
+ -73.55360436637025,
+ 45.51947114682626
+ ],
+ [
+ -73.5536042665455,
+ 45.51947104700151
+ ],
+ [
+ -73.55355476606145,
+ 45.51945044713072
+ ],
+ [
+ -73.55344946624172,
+ 45.519575546424626
+ ],
+ [
+ -73.55351386669344,
+ 45.51960909113694
+ ],
+ [
+ -73.55363064905706,
+ 45.519483497215916
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":801,
+ "ID_UEV":"01021961",
+ "CIVIQUE_DE":" 1249",
+ "CIVIQUE_FI":" 1255",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-61-2083-8-000-0000",
+ "SUPERFICIE":239,
+ "SUPERFIC_1":334,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000490426875771,
+ "OBJECTID":85819,
+ "Join_Count":1,
+ "TARGET_FID":85819,
+ "feature_id":"d598d463-63c0-4208-981f-88adf2020e72",
+ "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.37,
+ "heightmax":28.06,
+ "elevmin":16.9,
+ "elevmax":18.74,
+ "bldgarea":2761.84,
+ "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_2":85819,
+ "Shape_Le_1":0.000490426875771,
+ "Shape_Ar_1":1.25251174021e-08,
+ "OBJECTID_3":85819,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85818,
+ "g_objectid":"941873",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566758",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004261148720000000",
+ "g_sup_tota":"229.7",
+ "g_geometry":"0.000820868",
+ "g_geomet_1":"2.65636e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000490426875771,
+ "Shape_Area":1.25251174021e-08,
+ "Shape_Le_3":0.000490426283786,
+ "Shape_Ar_2":1.25251174021e-08,
+ "building_height":12.844999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":802,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56835681373781,
+ 45.511070050792505
+ ],
+ [
+ -73.56835356988319,
+ 45.51107354465866
+ ],
+ [
+ -73.56835356988319,
+ 45.5110736444834
+ ],
+ [
+ -73.56839237023354,
+ 45.51109344485689
+ ],
+ [
+ -73.56837887051032,
+ 45.51110654528114
+ ],
+ [
+ -73.56834497056579,
+ 45.51108924502294
+ ],
+ [
+ -73.56834486984171,
+ 45.51108934484768
+ ],
+ [
+ -73.56819671013191,
+ 45.51124414065486
+ ],
+ [
+ -73.56833250146562,
+ 45.51130655450418
+ ],
+ [
+ -73.568491743521,
+ 45.51113213459063
+ ],
+ [
+ -73.56835681373781,
+ 45.511070050792505
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":802,
+ "ID_UEV":"01058582",
+ "CIVIQUE_DE":" 2060",
+ "CIVIQUE_FI":" 2060",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-42-6053-1-000-0000",
+ "SUPERFICIE":307,
+ "SUPERFIC_1":637,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000853866814607,
+ "OBJECTID":85820,
+ "Join_Count":1,
+ "TARGET_FID":85820,
+ "feature_id":"8684383e-34aa-4fdd-92b2-f96540e42367",
+ "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":19.68,
+ "elevmin":33.51,
+ "elevmax":39.85,
+ "bldgarea":2546.53,
+ "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_2":85820,
+ "Shape_Le_1":0.000853866814607,
+ "Shape_Ar_1":3.23048272692e-08,
+ "OBJECTID_3":85820,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85819,
+ "g_objectid":"943073",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160983",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994142504330000000",
+ "g_sup_tota":"1525.6",
+ "g_geometry":"0.00237507",
+ "g_geomet_1":"1.76784e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000853866814607,
+ "Shape_Area":3.23048272692e-08,
+ "Shape_Le_3":0.000853867979332,
+ "Shape_Ar_2":3.23048272692e-08,
+ "building_height":9.584999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":803,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56706482880065,
+ 45.51151752196636
+ ],
+ [
+ -73.56702307327805,
+ 45.51149801207389
+ ],
+ [
+ -73.56694767052042,
+ 45.511471346275904
+ ],
+ [
+ -73.56688097050223,
+ 45.51144784609152
+ ],
+ [
+ -73.56678744370741,
+ 45.51157904368821
+ ],
+ [
+ -73.56677310941332,
+ 45.5116254082363
+ ],
+ [
+ -73.56677028284412,
+ 45.51163455703947
+ ],
+ [
+ -73.56690878743244,
+ 45.511683358750304
+ ],
+ [
+ -73.56706482880065,
+ 45.51151752196636
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":803,
+ "ID_UEV":"01020611",
+ "CIVIQUE_DE":" 2001",
+ "CIVIQUE_FI":" 2003",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1962,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-52-7295-6-000-0000",
+ "SUPERFICIE":397,
+ "SUPERFIC_1":922,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000790571719701,
+ "OBJECTID":85832,
+ "Join_Count":1,
+ "TARGET_FID":85832,
+ "feature_id":"b5328d34-31ff-42c5-b29a-48bf2dbdb909",
+ "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.66,
+ "heightmax":16.32,
+ "elevmin":24.57,
+ "elevmax":30.55,
+ "bldgarea":1907.72,
+ "comment":" ",
+ "OBJECTID_2":85832,
+ "Shape_Le_1":0.000790571719701,
+ "Shape_Ar_1":3.81249353237e-08,
+ "OBJECTID_3":85832,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85831,
+ "g_objectid":"945144",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"2161217",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6299",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994152729560000000",
+ "g_sup_tota":"397.3",
+ "g_geometry":"0.000867747",
+ "g_geomet_1":"4.51768e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000790571719701,
+ "Shape_Area":3.81249353237e-08,
+ "Shape_Le_3":0.00079057132084,
+ "Shape_Ar_2":3.81249353237e-08,
+ "building_height":7.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":804,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56698583325145,
+ 45.51177112179013
+ ],
+ [
+ -73.56704611300955,
+ 45.51179915995356
+ ],
+ [
+ -73.5670960820404,
+ 45.511745396683004
+ ],
+ [
+ -73.56709480320445,
+ 45.51174479863384
+ ],
+ [
+ -73.56723301011716,
+ 45.511596100230136
+ ],
+ [
+ -73.56706482880065,
+ 45.51151752196636
+ ],
+ [
+ -73.56690878743244,
+ 45.511683358750304
+ ],
+ [
+ -73.56691187030842,
+ 45.51168444603066
+ ],
+ [
+ -73.56694546987937,
+ 45.51169634585997
+ ],
+ [
+ -73.56702046974073,
+ 45.51172304583219
+ ],
+ [
+ -73.56698583325145,
+ 45.51177112179013
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":804,
+ "ID_UEV":"01020613",
+ "CIVIQUE_DE":" 2011",
+ "CIVIQUE_FI":" 2019",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1889,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-53-6006-6-000-0000",
+ "SUPERFICIE":426,
+ "SUPERFIC_1":799,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000935420271172,
+ "OBJECTID":85833,
+ "Join_Count":1,
+ "TARGET_FID":85833,
+ "feature_id":"b5328d34-31ff-42c5-b29a-48bf2dbdb909",
+ "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.66,
+ "heightmax":16.32,
+ "elevmin":24.57,
+ "elevmax":30.55,
+ "bldgarea":1907.72,
+ "comment":" ",
+ "OBJECTID_2":85833,
+ "Shape_Le_1":0.000935420271172,
+ "Shape_Ar_1":4.29433787497e-08,
+ "OBJECTID_3":85833,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85832,
+ "g_objectid":"945144",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"2161217",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6299",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994152729560000000",
+ "g_sup_tota":"397.3",
+ "g_geometry":"0.000867747",
+ "g_geomet_1":"4.51768e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000935420271172,
+ "Shape_Area":4.29433787497e-08,
+ "Shape_Le_3":0.00093541856652,
+ "Shape_Ar_2":4.29433787497e-08,
+ "building_height":7.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":805,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55654989878064,
+ 45.5214722166198
+ ],
+ [
+ -73.55668069707835,
+ 45.5215328839857
+ ],
+ [
+ -73.55677427153725,
+ 45.52143261227553
+ ],
+ [
+ -73.55672046689787,
+ 45.5214141482946
+ ],
+ [
+ -73.55672016742363,
+ 45.5214141482946
+ ],
+ [
+ -73.55670046687489,
+ 45.52143354757046
+ ],
+ [
+ -73.55662836732714,
+ 45.52139754770896
+ ],
+ [
+ -73.55665636681972,
+ 45.521369847690615
+ ],
+ [
+ -73.55665626699498,
+ 45.52136974786587
+ ],
+ [
+ -73.5566489582047,
+ 45.521366067840056
+ ],
+ [
+ -73.55654989878064,
+ 45.5214722166198
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55676678288256,
+ 45.52123981021936
+ ],
+ [
+ -73.5567722669484,
+ 45.521242248281425
+ ],
+ [
+ -73.55672076727144,
+ 45.52129914748796
+ ],
+ [
+ -73.55684635399788,
+ 45.52135536860567
+ ],
+ [
+ -73.55686260744523,
+ 45.52133795323425
+ ],
+ [
+ -73.5568994301864,
+ 45.52129849547948
+ ],
+ [
+ -73.55676866606294,
+ 45.52123779214069
+ ],
+ [
+ -73.55676678288256,
+ 45.52123981021936
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":805,
+ "ID_UEV":"01021979",
+ "CIVIQUE_DE":" 1600",
+ "CIVIQUE_FI":" 1610",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-6786-1-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":350,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00108471943676,
+ "OBJECTID":85835,
+ "Join_Count":2,
+ "TARGET_FID":85835,
+ "feature_id":"4d9b7d78-fb48-450c-a6d5-807d5a5f21a4",
+ "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.44,
+ "heightmax":14.23,
+ "elevmin":25.27,
+ "elevmax":27.82,
+ "bldgarea":1882.83,
+ "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_2":85835,
+ "Shape_Le_1":0.00108471943676,
+ "Shape_Ar_1":2.6507638022e-08,
+ "OBJECTID_3":85835,
+ "Join_Cou_1":7,
+ "TARGET_F_1":85834,
+ "g_objectid":"942149",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567464",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004233787930000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.00093205",
+ "g_geomet_1":"4.4297e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00108471943676,
+ "Shape_Area":2.6507638022e-08,
+ "Shape_Le_3":0.00108471812198,
+ "Shape_Ar_2":2.6507638022e-08,
+ "building_height":5.8950000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":806,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54984836583127,
+ 45.535903849733174
+ ],
+ [
+ -73.54984676593735,
+ 45.535906449673206
+ ],
+ [
+ -73.54988456624159,
+ 45.53591684943335
+ ],
+ [
+ -73.54990956649515,
+ 45.53587185005613
+ ],
+ [
+ -73.54995936645345,
+ 45.53588544960411
+ ],
+ [
+ -73.5499594662782,
+ 45.53588544960411
+ ],
+ [
+ -73.55007356596414,
+ 45.53566915006152
+ ],
+ [
+ -73.5501014665313,
+ 45.535616349964876
+ ],
+ [
+ -73.55015516594999,
+ 45.535514549407225
+ ],
+ [
+ -73.55019416594985,
+ 45.53552464969312
+ ],
+ [
+ -73.55019426577459,
+ 45.53552464969312
+ ],
+ [
+ -73.55028246588493,
+ 45.53543344944443
+ ],
+ [
+ -73.55029496646138,
+ 45.535439449721125
+ ],
+ [
+ -73.55029546648444,
+ 45.535438650223824
+ ],
+ [
+ -73.55030946623073,
+ 45.53541465001638
+ ],
+ [
+ -73.5502965663553,
+ 45.53541095020548
+ ],
+ [
+ -73.5503045658249,
+ 45.53539644953681
+ ],
+ [
+ -73.55038726568161,
+ 45.53541904949983
+ ],
+ [
+ -73.55041146643786,
+ 45.53537534964297
+ ],
+ [
+ -73.55047876630387,
+ 45.53539374977203
+ ],
+ [
+ -73.55049276605016,
+ 45.53536864969372
+ ],
+ [
+ -73.55049046648368,
+ 45.53536795002117
+ ],
+ [
+ -73.5503955664241,
+ 45.53533765006279
+ ],
+ [
+ -73.55041476605045,
+ 45.53530794995223
+ ],
+ [
+ -73.55041576609658,
+ 45.53530625023355
+ ],
+ [
+ -73.55031826609695,
+ 45.53527714997079
+ ],
+ [
+ -73.5503457664658,
+ 45.53523164967119
+ ],
+ [
+ -73.55032536624451,
+ 45.535225449745006
+ ],
+ [
+ -73.55038346604597,
+ 45.53512975018812
+ ],
+ [
+ -73.55038126630424,
+ 45.53512914944099
+ ],
+ [
+ -73.55033226584324,
+ 45.53511164953329
+ ],
+ [
+ -73.55023186642934,
+ 45.53525095002162
+ ],
+ [
+ -73.55018706580229,
+ 45.5352349501831
+ ],
+ [
+ -73.55018696597755,
+ 45.5352349501831
+ ],
+ [
+ -73.55005686645308,
+ 45.535430149831846
+ ],
+ [
+ -73.55014036580708,
+ 45.53545854952274
+ ],
+ [
+ -73.55010096650824,
+ 45.5355158498269
+ ],
+ [
+ -73.55006156631008,
+ 45.535502449928416
+ ],
+ [
+ -73.55006146648533,
+ 45.53550254975316
+ ],
+ [
+ -73.54998186569239,
+ 45.53562555002941
+ ],
+ [
+ -73.54997916592761,
+ 45.535629650038615
+ ],
+ [
+ -73.5500170660566,
+ 45.53564164969267
+ ],
+ [
+ -73.54984836583127,
+ 45.535903849733174
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":806,
+ "ID_UEV":"01019127",
+ "CIVIQUE_DE":" 2800",
+ "CIVIQUE_FI":" 2800",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1965,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Entreposage frigorifique (sauf les armoires frigorifiques)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-89-8979-0-000-0000",
+ "SUPERFICIE":4297,
+ "SUPERFIC_1":501,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00267713296289,
+ "OBJECTID":85843,
+ "Join_Count":1,
+ "TARGET_FID":85843,
+ "feature_id":"01fe8cfb-8985-4009-afbd-287f8d93f503",
+ "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.44,
+ "heightmax":33.57,
+ "elevmin":22.74,
+ "elevmax":25.79,
+ "bldgarea":916.67,
+ "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_2":85843,
+ "Shape_Le_1":0.00267713296289,
+ "Shape_Ar_1":1.05636715004e-07,
+ "OBJECTID_3":85843,
+ "Join_Cou_1":1,
+ "TARGET_F_1":85842,
+ "g_objectid":"945170",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"3362041",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6373",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004389897900000000",
+ "g_sup_tota":"4296.8",
+ "g_geometry":"0.00477352",
+ "g_geomet_1":"4.94968e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00267713296289,
+ "Shape_Area":1.05636715004e-07,
+ "Shape_Le_3":0.00267713228982,
+ "Shape_Ar_2":1.05636715004e-07,
+ "building_height":15.565
+ }
+ },
+ {
+ "type":"Feature",
+ "id":807,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55941441576452,
+ 45.51885027017413
+ ],
+ [
+ -73.55948312486817,
+ 45.51888163223184
+ ],
+ [
+ -73.55961871475373,
+ 45.51873422795256
+ ],
+ [
+ -73.55955016752806,
+ 45.51870269412433
+ ],
+ [
+ -73.55941441576452,
+ 45.51885027017413
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":807,
+ "ID_UEV":"01040104",
+ "CIVIQUE_DE":" 1629",
+ "CIVIQUE_FI":" 1631",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-10-4998-2-000-0000",
+ "SUPERFICIE":131,
+ "SUPERFIC_1":176,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000551779717911,
+ "OBJECTID":85848,
+ "Join_Count":1,
+ "TARGET_FID":85848,
+ "feature_id":"5bc2a66b-543a-4d85-bee9-4514aa409042",
+ "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.41,
+ "heightmax":13.62,
+ "elevmin":25.25,
+ "elevmax":27.33,
+ "bldgarea":3572.3,
+ "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_2":85848,
+ "Shape_Le_1":0.000551779717911,
+ "Shape_Ar_1":1.43885833456e-08,
+ "OBJECTID_3":85848,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85847,
+ "g_objectid":"941687",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566354",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004210499820000000",
+ "g_sup_tota":"130.5",
+ "g_geometry":"0.000569762",
+ "g_geomet_1":"1.5036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000551779717911,
+ "Shape_Area":1.43885833456e-08,
+ "Shape_Le_3":0.000551779742598,
+ "Shape_Ar_2":1.43885833456e-08,
+ "building_height":5.6049999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":808,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55728582750078,
+ 45.519669192829284
+ ],
+ [
+ -73.55749991201317,
+ 45.51976841323198
+ ],
+ [
+ -73.55757346036874,
+ 45.51968998245702
+ ],
+ [
+ -73.55736586716289,
+ 45.51958874667361
+ ],
+ [
+ -73.5573637672459,
+ 45.5195877466275
+ ],
+ [
+ -73.55728582750078,
+ 45.519669192829284
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":808,
+ "ID_UEV":"01040666",
+ "CIVIQUE_DE":" 1251",
+ "CIVIQUE_FI":" 1257",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-1396-8-000-0000",
+ "SUPERFICIE":247,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00068949825852,
+ "OBJECTID":85861,
+ "Join_Count":1,
+ "TARGET_FID":85861,
+ "feature_id":"294007ab-9c02-4ebc-b079-db9bd5d39949",
+ "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.51,
+ "heightmax":13.75,
+ "elevmin":25.63,
+ "elevmax":26.99,
+ "bldgarea":701.7,
+ "comment":" ",
+ "OBJECTID_2":85861,
+ "Shape_Le_1":0.00068949825852,
+ "Shape_Ar_1":2.45700258128e-08,
+ "OBJECTID_3":85861,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85860,
+ "g_objectid":"941765",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566478",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004231139680000000",
+ "g_sup_tota":"247.1",
+ "g_geometry":"0.000737089",
+ "g_geomet_1":"2.84523e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00068949825852,
+ "Shape_Area":2.45700258128e-08,
+ "Shape_Le_3":0.000689498798476,
+ "Shape_Ar_2":2.45700258128e-08,
+ "building_height":5.62
+ }
+ },
+ {
+ "type":"Feature",
+ "id":809,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5573198821287,
+ 45.519812767795294
+ ],
+ [
+ -73.55736451278388,
+ 45.519833453101676
+ ],
+ [
+ -73.5574419668951,
+ 45.51975064712496
+ ],
+ [
+ -73.5574940511314,
+ 45.519774662620875
+ ],
+ [
+ -73.55749991201317,
+ 45.51976841323198
+ ],
+ [
+ -73.55728582750078,
+ 45.519669192829284
+ ],
+ [
+ -73.55726146756452,
+ 45.51969464724047
+ ],
+ [
+ -73.55722026692362,
+ 45.51973754670072
+ ],
+ [
+ -73.5572188666792,
+ 45.519739046769885
+ ],
+ [
+ -73.55722446675757,
+ 45.519742246557726
+ ],
+ [
+ -73.55720484984579,
+ 45.51975945508508
+ ],
+ [
+ -73.55727285927688,
+ 45.51979097452415
+ ],
+ [
+ -73.5573198821287,
+ 45.519812767795294
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":809,
+ "ID_UEV":"01040667",
+ "CIVIQUE_DE":" 1259",
+ "CIVIQUE_FI":" 1267",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-1806-4-000-0000",
+ "SUPERFICIE":244,
+ "SUPERFIC_1":423,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000720552134184,
+ "OBJECTID":85862,
+ "Join_Count":1,
+ "TARGET_FID":85862,
+ "feature_id":"294007ab-9c02-4ebc-b079-db9bd5d39949",
+ "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.51,
+ "heightmax":13.75,
+ "elevmin":25.63,
+ "elevmax":26.99,
+ "bldgarea":701.7,
+ "comment":" ",
+ "OBJECTID_2":85862,
+ "Shape_Le_1":0.000720552134184,
+ "Shape_Ar_1":2.11406486276e-08,
+ "OBJECTID_3":85862,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85861,
+ "g_objectid":"941788",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566534",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232341780000000",
+ "g_sup_tota":"178.8",
+ "g_geometry":"0.000671057",
+ "g_geomet_1":"2.10413e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000720552134184,
+ "Shape_Area":2.11406486276e-08,
+ "Shape_Le_3":0.000720552116996,
+ "Shape_Ar_2":2.11406486276e-08,
+ "building_height":5.62
+ }
+ },
+ {
+ "type":"Feature",
+ "id":810,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55720484984579,
+ 45.51975945508508
+ ],
+ [
+ -73.55713896731133,
+ 45.51981724641908
+ ],
+ [
+ -73.55710166703015,
+ 45.51985024704156
+ ],
+ [
+ -73.55711446708084,
+ 45.51985694699081
+ ],
+ [
+ -73.55703072850716,
+ 45.519935210491866
+ ],
+ [
+ -73.55710581380411,
+ 45.51996989104793
+ ],
+ [
+ -73.55718648299164,
+ 45.51988348868235
+ ],
+ [
+ -73.55718116709903,
+ 45.519880146801626
+ ],
+ [
+ -73.55720916749094,
+ 45.51985814668642
+ ],
+ [
+ -73.55721490696423,
+ 45.51985304573177
+ ],
+ [
+ -73.55727285927688,
+ 45.51979097452415
+ ],
+ [
+ -73.55720484984579,
+ 45.51975945508508
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":810,
+ "ID_UEV":"01040668",
+ "CIVIQUE_DE":" 1277",
+ "CIVIQUE_FI":" 1285",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1919,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-3417-8-000-0000",
+ "SUPERFICIE":179,
+ "SUPERFIC_1":511,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000676866278219,
+ "OBJECTID":85863,
+ "Join_Count":1,
+ "TARGET_FID":85863,
+ "feature_id":"294007ab-9c02-4ebc-b079-db9bd5d39949",
+ "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.51,
+ "heightmax":13.75,
+ "elevmin":25.63,
+ "elevmax":26.99,
+ "bldgarea":701.7,
+ "comment":" ",
+ "OBJECTID_2":85863,
+ "Shape_Le_1":0.000676866278219,
+ "Shape_Ar_1":1.86050411642e-08,
+ "OBJECTID_3":85863,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85862,
+ "g_objectid":"941788",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566534",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232341780000000",
+ "g_sup_tota":"178.8",
+ "g_geometry":"0.000671057",
+ "g_geomet_1":"2.10413e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000676866278219,
+ "Shape_Area":1.86050411642e-08,
+ "Shape_Le_3":0.000676865792873,
+ "Shape_Ar_2":1.86050411642e-08,
+ "building_height":5.62
+ }
+ },
+ {
+ "type":"Feature",
+ "id":811,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55644036135544,
+ 45.50110096248972
+ ],
+ [
+ -73.5563312717926,
+ 45.50122346544087
+ ],
+ [
+ -73.55653563283504,
+ 45.50132052117541
+ ],
+ [
+ -73.5565577660499,
+ 45.5012955434049
+ ],
+ [
+ -73.55657266601757,
+ 45.501302143529394
+ ],
+ [
+ -73.5565752659576,
+ 45.50129834389375
+ ],
+ [
+ -73.5566201664094,
+ 45.501233843617285
+ ],
+ [
+ -73.55662346602199,
+ 45.50123514403696
+ ],
+ [
+ -73.55665601878209,
+ 45.50125053953107
+ ],
+ [
+ -73.55668863089744,
+ 45.50121670883434
+ ],
+ [
+ -73.55644036135544,
+ 45.50110096248972
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":811,
+ "ID_UEV":"01000259",
+ "CIVIQUE_DE":" 351",
+ "CIVIQUE_FI":" 355",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-31-8345-2-000-0000",
+ "SUPERFICIE":370,
+ "SUPERFIC_1":1210,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000883606478977,
+ "OBJECTID":85869,
+ "Join_Count":1,
+ "TARGET_FID":85869,
+ "feature_id":"b1687429-bb54-469f-ba3f-2d9124402e3d",
+ "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.93,
+ "heightmax":29.6,
+ "elevmin":12.78,
+ "elevmax":15.03,
+ "bldgarea":4189.6,
+ "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_2":85869,
+ "Shape_Le_1":0.000883606478977,
+ "Shape_Ar_1":3.87515742854e-08,
+ "OBJECTID_3":85869,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85868,
+ "g_objectid":"939494",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179930",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004031834520000000",
+ "g_sup_tota":"369.9",
+ "g_geometry":"0.000872531",
+ "g_geomet_1":"4.27562e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000883606478977,
+ "Shape_Area":3.87515742854e-08,
+ "Shape_Le_3":0.000883607013194,
+ "Shape_Ar_2":3.87515742854e-08,
+ "building_height":14.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":812,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55703268723057,
+ 45.50357744629241
+ ],
+ [
+ -73.55703616580826,
+ 45.50357894366361
+ ],
+ [
+ -73.55699870994435,
+ 45.503621855714364
+ ],
+ [
+ -73.55719553017143,
+ 45.50372399261846
+ ],
+ [
+ -73.55730242628779,
+ 45.503634227687755
+ ],
+ [
+ -73.55709168095815,
+ 45.5035360657871
+ ],
+ [
+ -73.55705796627397,
+ 45.50356894410179
+ ],
+ [
+ -73.55704799189316,
+ 45.50356388091866
+ ],
+ [
+ -73.55703268723057,
+ 45.50357744629241
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":812,
+ "ID_UEV":"01000413",
+ "CIVIQUE_DE":" 480",
+ "CIVIQUE_FI":" 480",
+ "NOM_RUE":"rue Saint-Fran\u00c3\u00a7ois-Xavier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1905,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-34-3413-7-000-0000",
+ "SUPERFICIE":253,
+ "SUPERFIC_1":862,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0007332912367,
+ "OBJECTID":85870,
+ "Join_Count":1,
+ "TARGET_FID":85870,
+ "feature_id":"45c9a329-c525-4e17-b254-202d281bab20",
+ "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.96,
+ "heightmax":23.25,
+ "elevmin":19.64,
+ "elevmax":21.09,
+ "bldgarea":1787.28,
+ "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_2":85870,
+ "Shape_Le_1":0.0007332912367,
+ "Shape_Ar_1":2.82342403737e-08,
+ "OBJECTID_3":85870,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85869,
+ "g_objectid":"937971",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180888",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004034341370000000",
+ "g_sup_tota":"252.7",
+ "g_geometry":"0.000741222",
+ "g_geomet_1":"2.90962e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0007332912367,
+ "Shape_Area":2.82342403737e-08,
+ "Shape_Le_3":0.000733291418988,
+ "Shape_Ar_2":2.82342403737e-08,
+ "building_height":11.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":813,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55713485021501,
+ 45.534414731604876
+ ],
+ [
+ -73.55714176780019,
+ 45.534418349577464
+ ],
+ [
+ -73.55712436771724,
+ 45.5344347496143
+ ],
+ [
+ -73.55712476791555,
+ 45.534434849439045
+ ],
+ [
+ -73.55716756845037,
+ 45.53444155028761
+ ],
+ [
+ -73.55720687601836,
+ 45.534447621610745
+ ],
+ [
+ -73.55730417906645,
+ 45.53433440685769
+ ],
+ [
+ -73.55722575009014,
+ 45.53430896863429
+ ],
+ [
+ -73.55713485021501,
+ 45.534414731604876
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":813,
+ "ID_UEV":"01023607",
+ "CIVIQUE_DE":" 2295",
+ "CIVIQUE_FI":" 2299",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-3131-0-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":264,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000486418229719,
+ "OBJECTID":85876,
+ "Join_Count":1,
+ "TARGET_FID":85876,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":85876,
+ "Shape_Le_1":0.000486418229719,
+ "Shape_Ar_1":1.17893324174e-08,
+ "OBJECTID_3":85876,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85875,
+ "g_objectid":"941176",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425104",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338313100000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000655008",
+ "g_geomet_1":"1.88384e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000486418229719,
+ "Shape_Area":1.17893324174e-08,
+ "Shape_Le_3":0.000486418001007,
+ "Shape_Ar_2":1.17893324174e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":814,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55706565367882,
+ 45.53437855008032
+ ],
+ [
+ -73.55713485021501,
+ 45.534414731604876
+ ],
+ [
+ -73.55722575009014,
+ 45.53430896863429
+ ],
+ [
+ -73.55715816783702,
+ 45.53428704945806
+ ],
+ [
+ -73.55717776856102,
+ 45.53425714969799
+ ],
+ [
+ -73.55717726853796,
+ 45.5342569500485
+ ],
+ [
+ -73.55717208304704,
+ 45.534254717031864
+ ],
+ [
+ -73.55706565367882,
+ 45.53437855008032
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":814,
+ "ID_UEV":"01023610",
+ "CIVIQUE_DE":" 2289",
+ "CIVIQUE_FI":" 2293",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-3728-3-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":230,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00049381035261,
+ "OBJECTID":85877,
+ "Join_Count":1,
+ "TARGET_FID":85877,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":85877,
+ "Shape_Le_1":0.00049381035261,
+ "Shape_Ar_1":1.03772545886e-08,
+ "OBJECTID_3":85877,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85876,
+ "g_objectid":"941176",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425104",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338313100000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000655008",
+ "g_geomet_1":"1.88384e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00049381035261,
+ "Shape_Area":1.03772545886e-08,
+ "Shape_Le_3":0.000493811620641,
+ "Shape_Ar_2":1.03772545886e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":815,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55695435807901,
+ 45.53427465949823
+ ],
+ [
+ -73.55700106796675,
+ 45.534300149882306
+ ],
+ [
+ -73.55702258154875,
+ 45.53431197416857
+ ],
+ [
+ -73.55709888003113,
+ 45.53422319759279
+ ],
+ [
+ -73.5570256761159,
+ 45.534191679952364
+ ],
+ [
+ -73.55695435807901,
+ 45.53427465949823
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":815,
+ "ID_UEV":"01023614",
+ "CIVIQUE_DE":" 2277",
+ "CIVIQUE_FI":" 2279",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-4921-3-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":114,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000383936385941,
+ "OBJECTID":85878,
+ "Join_Count":1,
+ "TARGET_FID":85878,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":85878,
+ "Shape_Le_1":0.000383936385941,
+ "Shape_Ar_1":8.61096095121e-09,
+ "OBJECTID_3":85878,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85877,
+ "g_objectid":"941180",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425108",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338541890000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000655065",
+ "g_geomet_1":"1.88403e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000383936385941,
+ "Shape_Area":8.61096095121e-09,
+ "Shape_Le_3":0.000383936678154,
+ "Shape_Ar_2":8.61096095121e-09,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":816,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56304022055158,
+ 45.52186359348035
+ ],
+ [
+ -73.56311189741798,
+ 45.52189679914826
+ ],
+ [
+ -73.56322739375106,
+ 45.52177395445473
+ ],
+ [
+ -73.56316776869942,
+ 45.52174824643472
+ ],
+ [
+ -73.56313016894399,
+ 45.52179124661903
+ ],
+ [
+ -73.56311456840446,
+ 45.52178451789148
+ ],
+ [
+ -73.56304022055158,
+ 45.52186359348035
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":816,
+ "ID_UEV":"01040400",
+ "CIVIQUE_DE":" 2068",
+ "CIVIQUE_FI":" 2070",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-84-6734-6-000-0000",
+ "SUPERFICIE":118,
+ "SUPERFIC_1":243,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000495187891373,
+ "OBJECTID":85883,
+ "Join_Count":1,
+ "TARGET_FID":85883,
+ "feature_id":"ff4c8ce2-bdbf-4094-b977-ae5f432b06b4",
+ "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.63,
+ "heightmax":14.06,
+ "elevmin":26.21,
+ "elevmax":29.12,
+ "bldgarea":3816.06,
+ "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_2":85883,
+ "Shape_Le_1":0.000495187891373,
+ "Shape_Ar_1":1.16915772033e-08,
+ "OBJECTID_3":85883,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85882,
+ "g_objectid":"941562",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565441",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994284673460000000",
+ "g_sup_tota":"117.5",
+ "g_geometry":"0.000519418",
+ "g_geomet_1":"1.35473e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000495187891373,
+ "Shape_Area":1.16915772033e-08,
+ "Shape_Le_3":0.000495187201418,
+ "Shape_Ar_2":1.16915772033e-08,
+ "building_height":6.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":817,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55621305770829,
+ 45.52122456671068
+ ],
+ [
+ -73.55615556674785,
+ 45.52119484771435
+ ],
+ [
+ -73.55608916080797,
+ 45.5212585152186
+ ],
+ [
+ -73.55615353068274,
+ 45.5212883718112
+ ],
+ [
+ -73.55621305770829,
+ 45.52122456671068
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":817,
+ "ID_UEV":"01097373",
+ "CIVIQUE_DE":" 1560",
+ "CIVIQUE_FI":" 1562",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-43-1367-4-000-0000",
+ "SUPERFICIE":133,
+ "SUPERFIC_1":163,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000314932635997,
+ "OBJECTID":85887,
+ "Join_Count":1,
+ "TARGET_FID":85887,
+ "feature_id":"4d9b7d78-fb48-450c-a6d5-807d5a5f21a4",
+ "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.44,
+ "heightmax":14.23,
+ "elevmin":25.27,
+ "elevmax":27.82,
+ "bldgarea":1882.83,
+ "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_2":85887,
+ "Shape_Le_1":0.000314932635997,
+ "Shape_Ar_1":5.75911245021e-09,
+ "OBJECTID_3":85887,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85886,
+ "g_objectid":"942153",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567487",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004243136740000000",
+ "g_sup_tota":"132.5",
+ "g_geometry":"0.000508427",
+ "g_geomet_1":"1.53176e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000314932635997,
+ "Shape_Area":5.75911245021e-09,
+ "Shape_Le_3":0.000314932710715,
+ "Shape_Ar_2":5.75911245021e-09,
+ "building_height":5.8950000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":818,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55594518834161,
+ 45.528756859191994
+ ],
+ [
+ -73.55539426725348,
+ 45.52850584851639
+ ],
+ [
+ -73.5553915674887,
+ 45.52850884865474
+ ],
+ [
+ -73.55528456705098,
+ 45.528619048880294
+ ],
+ [
+ -73.55528936673274,
+ 45.528621248622024
+ ],
+ [
+ -73.55539416742873,
+ 45.52866984888471
+ ],
+ [
+ -73.55525766742926,
+ 45.52881524857516
+ ],
+ [
+ -73.55551546708698,
+ 45.52893474869
+ ],
+ [
+ -73.55541846711041,
+ 45.52903794859275
+ ],
+ [
+ -73.55558166708211,
+ 45.52911364902598
+ ],
+ [
+ -73.55568066715091,
+ 45.52900814865743
+ ],
+ [
+ -73.55569786038978,
+ 45.529016112154146
+ ],
+ [
+ -73.55594518834161,
+ 45.528756859191994
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5551114106849,
+ 45.52887674871328
+ ],
+ [
+ -73.5551124673883,
+ 45.528877248736336
+ ],
+ [
+ -73.55511586682564,
+ 45.52887354892544
+ ],
+ [
+ -73.55521306735102,
+ 45.52877394900884
+ ],
+ [
+ -73.55521016523878,
+ 45.52877255775763
+ ],
+ [
+ -73.5551114106849,
+ 45.52887674871328
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":818,
+ "ID_UEV":"01018358",
+ "CIVIQUE_DE":" 1960",
+ "CIVIQUE_FI":" 1960",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-42-7800-8-000-0000",
+ "SUPERFICIE":4096,
+ "SUPERFIC_1":2273,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00250302681657,
+ "OBJECTID":85892,
+ "Join_Count":2,
+ "TARGET_FID":85892,
+ "feature_id":"6f67c12d-c670-47bc-8e58-7bb96797377d",
+ "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.38,
+ "heightmax":34.15,
+ "elevmin":20.19,
+ "elevmax":23.22,
+ "bldgarea":2539.89,
+ "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_2":85892,
+ "Shape_Le_1":0.00250302681657,
+ "Shape_Ar_1":2.0717533893e-07,
+ "OBJECTID_3":85892,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85891,
+ "g_objectid":"938251",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1424612",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"9",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004342780080000000",
+ "g_sup_tota":"4095.8",
+ "g_geometry":"0.0036829",
+ "g_geomet_1":"4.717e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00250302681657,
+ "Shape_Area":2.0717533893e-07,
+ "Shape_Le_3":0.00250302918782,
+ "Shape_Ar_2":2.0717533893e-07,
+ "building_height":15.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":819,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56145576978979,
+ 45.53242654909626
+ ],
+ [
+ -73.56137497020056,
+ 45.532510948671636
+ ],
+ [
+ -73.56142186984526,
+ 45.53253294878685
+ ],
+ [
+ -73.56146856984047,
+ 45.532554448879004
+ ],
+ [
+ -73.56164597010728,
+ 45.53263564866655
+ ],
+ [
+ -73.56164947026868,
+ 45.53263164848209
+ ],
+ [
+ -73.56172747026838,
+ 45.53255004849623
+ ],
+ [
+ -73.56145886975288,
+ 45.5324233484091
+ ],
+ [
+ -73.56145576978979,
+ 45.53242654909626
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56132322141139,
+ 45.53250581174411
+ ],
+ [
+ -73.56132457039445,
+ 45.53250644846412
+ ],
+ [
+ -73.5613275705328,
+ 45.53250324867628
+ ],
+ [
+ -73.56143926992821,
+ 45.532386148851984
+ ],
+ [
+ -73.56143511056375,
+ 45.53238419102789
+ ],
+ [
+ -73.56132322141139,
+ 45.53250581174411
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":819,
+ "ID_UEV":"01022752",
+ "CIVIQUE_DE":" 2350",
+ "CIVIQUE_FI":" 2370",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1971,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-96-9122-3-000-0000",
+ "SUPERFICIE":792,
+ "SUPERFIC_1":872,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00117236043759,
+ "OBJECTID":85898,
+ "Join_Count":2,
+ "TARGET_FID":85898,
+ "feature_id":"1b17288f-ea54-4447-af76-414127a5346d",
+ "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.38,
+ "heightmax":48.29,
+ "elevmin":36.21,
+ "elevmax":39.03,
+ "bldgarea":293.54,
+ "comment":" ",
+ "OBJECTID_2":85898,
+ "Shape_Le_1":0.00117236043759,
+ "Shape_Ar_1":3.42933403007e-08,
+ "OBJECTID_3":85898,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85897,
+ "g_objectid":"940429",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423879",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306071190000000",
+ "g_sup_tota":"198.1",
+ "g_geometry":"0.000701611",
+ "g_geomet_1":"2.28854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00117236043759,
+ "Shape_Area":3.42933403007e-08,
+ "Shape_Le_3":0.00117235947366,
+ "Shape_Ar_2":3.42933403007e-08,
+ "building_height":23.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":820,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54998614376737,
+ 45.52254580929196
+ ],
+ [
+ -73.54993366472868,
+ 45.5225207478845
+ ],
+ [
+ -73.54990486483949,
+ 45.52250704761245
+ ],
+ [
+ -73.5497982654994,
+ 45.522617648036324
+ ],
+ [
+ -73.54988254096834,
+ 45.5226583297684
+ ],
+ [
+ -73.54998614376737,
+ 45.52254580929196
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54978157588087,
+ 45.522579057228
+ ],
+ [
+ -73.54978676496907,
+ 45.52258154745075
+ ],
+ [
+ -73.54979276524577,
+ 45.52257524769982
+ ],
+ [
+ -73.54988266507478,
+ 45.52247864792156
+ ],
+ [
+ -73.54987613689605,
+ 45.52247564508525
+ ],
+ [
+ -73.54978157588087,
+ 45.522579057228
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":820,
+ "ID_UEV":"01022144",
+ "CIVIQUE_DE":" 1195",
+ "CIVIQUE_FI":" 1203",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-95-0419-4-000-0000",
+ "SUPERFICIE":244,
+ "SUPERFIC_1":364,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000783921978536,
+ "OBJECTID":85900,
+ "Join_Count":2,
+ "TARGET_FID":85900,
+ "feature_id":"9eeb7926-ecc8-4733-8a07-4fbf93032822",
+ "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.51,
+ "heightmax":29.65,
+ "elevmin":16.2,
+ "elevmax":17.71,
+ "bldgarea":1649.56,
+ "comment":" ",
+ "OBJECTID_2":85900,
+ "Shape_Le_1":0.000783921978536,
+ "Shape_Ar_1":1.42834383848e-08,
+ "OBJECTID_3":85900,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85899,
+ "g_objectid":"942311",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567841",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004295041940000000",
+ "g_sup_tota":"244.1",
+ "g_geometry":"0.000712188",
+ "g_geomet_1":"2.84338e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000783921978536,
+ "Shape_Area":1.42834383848e-08,
+ "Shape_Le_3":0.000783920621438,
+ "Shape_Ar_2":1.42834383848e-08,
+ "building_height":13.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":821,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55348716941918,
+ 45.52441121815349
+ ],
+ [
+ -73.55348576647678,
+ 45.52441054815856
+ ],
+ [
+ -73.55332546591936,
+ 45.52433404822804
+ ],
+ [
+ -73.55332516644512,
+ 45.52433434770228
+ ],
+ [
+ -73.55323406602118,
+ 45.52444064756813
+ ],
+ [
+ -73.55335476583163,
+ 45.52450044798758
+ ],
+ [
+ -73.553387774548,
+ 45.52451681924611
+ ],
+ [
+ -73.55348716941918,
+ 45.52441121815349
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":821,
+ "ID_UEV":"01022181",
+ "CIVIQUE_DE":" 1566",
+ "CIVIQUE_FI":" 1576",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-67-3123-8-000-0000",
+ "SUPERFICIE":260,
+ "SUPERFIC_1":567,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000636160512473,
+ "OBJECTID":85907,
+ "Join_Count":1,
+ "TARGET_FID":85907,
+ "feature_id":"9cea23c5-4622-4c6f-8ffa-aa712b9c5cb8",
+ "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.49,
+ "heightmax":35.97,
+ "elevmin":16.42,
+ "elevmax":24.62,
+ "bldgarea":1312.65,
+ "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_2":85907,
+ "Shape_Le_1":0.000636160512473,
+ "Shape_Ar_1":2.40480715208e-08,
+ "OBJECTID_3":85907,
+ "Join_Cou_1":2,
+ "TARGET_F_1":85906,
+ "g_objectid":"942358",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729239",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004267212960000000",
+ "g_sup_tota":"125.3",
+ "g_geometry":"0.000516023",
+ "g_geomet_1":"1.44292e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000636160512473,
+ "Shape_Area":2.40480715208e-08,
+ "Shape_Le_3":0.000636161114109,
+ "Shape_Ar_2":2.40480715208e-08,
+ "building_height":16.74
+ }
+ },
+ {
+ "type":"Feature",
+ "id":822,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54681740681971,
+ 45.52875313060279
+ ],
+ [
+ -73.54699570820722,
+ 45.52882945696416
+ ],
+ [
+ -73.54703903574475,
+ 45.528787021554095
+ ],
+ [
+ -73.54685753816669,
+ 45.528709329122535
+ ],
+ [
+ -73.54681740681971,
+ 45.52875313060279
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":822,
+ "ID_UEV":"01019455",
+ "CIVIQUE_DE":" 2423",
+ "CIVIQUE_FI":" 2425",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1942,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-12-3009-1-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":237,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000511431773207,
+ "OBJECTID":85910,
+ "Join_Count":1,
+ "TARGET_FID":85910,
+ "feature_id":"af43f6bf-76d5-45b6-9b72-0f54811daf4b",
+ "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.24,
+ "heightmax":16.15,
+ "elevmin":19.07,
+ "elevmax":20.28,
+ "bldgarea":2847.7,
+ "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_2":85910,
+ "Shape_Le_1":0.000511431773207,
+ "Shape_Ar_1":1.09705645184e-08,
+ "OBJECTID_3":85910,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85909,
+ "g_objectid":"940744",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424359",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014312300910000000",
+ "g_sup_tota":"158.9",
+ "g_geometry":"0.000768618",
+ "g_geomet_1":"1.82019e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000511431773207,
+ "Shape_Area":1.09705645184e-08,
+ "Shape_Le_3":0.000511431467774,
+ "Shape_Ar_2":1.09705645184e-08,
+ "building_height":6.954999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":823,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56157556218429,
+ 45.5191803852169
+ ],
+ [
+ -73.56162427845953,
+ 45.51920281970466
+ ],
+ [
+ -73.56170516888028,
+ 45.51911214645869
+ ],
+ [
+ -73.56173781067326,
+ 45.519126560792444
+ ],
+ [
+ -73.56180398368875,
+ 45.51905449721757
+ ],
+ [
+ -73.56176096911528,
+ 45.519036347100034
+ ],
+ [
+ -73.56172202307475,
+ 45.519019852634386
+ ],
+ [
+ -73.56165521603724,
+ 45.51909260688859
+ ],
+ [
+ -73.56166346911566,
+ 45.51909684719204
+ ],
+ [
+ -73.56157556218429,
+ 45.5191803852169
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":823,
+ "ID_UEV":"01040011",
+ "CIVIQUE_DE":" 1801",
+ "CIVIQUE_FI":" 1803",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-91-8034-4-000-0000",
+ "SUPERFICIE":166,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00062696861403,
+ "OBJECTID":85926,
+ "Join_Count":1,
+ "TARGET_FID":85926,
+ "feature_id":"f57eac9c-b69c-4212-b473-1cf5e454e35e",
+ "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.54,
+ "heightmax":10.3,
+ "elevmin":22.96,
+ "elevmax":25.18,
+ "bldgarea":535.47,
+ "comment":" ",
+ "OBJECTID_2":85926,
+ "Shape_Le_1":0.00062696861403,
+ "Shape_Ar_1":1.37513316498e-08,
+ "OBJECTID_3":85926,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85925,
+ "g_objectid":"941486",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565265",
+ "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":"66023994291895500000000",
+ "g_sup_tota":"357.7",
+ "g_geometry":"0.00084112",
+ "g_geomet_1":"4.12008e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00062696861403,
+ "Shape_Area":1.37513316498e-08,
+ "Shape_Le_3":0.000626968350589,
+ "Shape_Ar_2":1.37513316498e-08,
+ "building_height":3.8800000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":824,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55460576506584,
+ 45.520317354012974
+ ],
+ [
+ -73.55477431600373,
+ 45.52039435126859
+ ],
+ [
+ -73.55482699738987,
+ 45.52033664267222
+ ],
+ [
+ -73.55465895007234,
+ 45.52025987564304
+ ],
+ [
+ -73.55460576506584,
+ 45.520317354012974
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":824,
+ "ID_UEV":"01022362",
+ "CIVIQUE_DE":" 1371",
+ "CIVIQUE_FI":" 1373",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-52-1674-4-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":285,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000526503308655,
+ "OBJECTID":85941,
+ "Join_Count":1,
+ "TARGET_FID":85941,
+ "feature_id":"82ac10f1-21bb-49dc-b7ec-2951ff8cc948",
+ "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.47,
+ "heightmax":16.78,
+ "elevmin":17.7,
+ "elevmax":22.04,
+ "bldgarea":1080.14,
+ "comment":" ",
+ "OBJECTID_2":85941,
+ "Shape_Le_1":0.000526503308655,
+ "Shape_Ar_1":1.37624392099e-08,
+ "OBJECTID_3":85941,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85940,
+ "g_objectid":"942199",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567618",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004252208030000000",
+ "g_sup_tota":"283.7",
+ "g_geometry":"0.00102518",
+ "g_geomet_1":"3.27875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000526503308655,
+ "Shape_Area":1.37624392099e-08,
+ "Shape_Le_3":0.000526504636041,
+ "Shape_Ar_2":1.37624392099e-08,
+ "building_height":7.155
+ }
+ },
+ {
+ "type":"Feature",
+ "id":825,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55449829248406,
+ 45.5204335005559
+ ],
+ [
+ -73.55444061626328,
+ 45.520495831667596
+ ],
+ [
+ -73.55461022300523,
+ 45.520574103262554
+ ],
+ [
+ -73.55466738211584,
+ 45.52051149066306
+ ],
+ [
+ -73.55449829248406,
+ 45.5204335005559
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":825,
+ "ID_UEV":"01022365",
+ "CIVIQUE_DE":" 1389",
+ "CIVIQUE_FI":" 1389",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-52-2993-7-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":377,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000542705770828,
+ "OBJECTID":85942,
+ "Join_Count":1,
+ "TARGET_FID":85942,
+ "feature_id":"82ac10f1-21bb-49dc-b7ec-2951ff8cc948",
+ "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.47,
+ "heightmax":16.78,
+ "elevmin":17.7,
+ "elevmax":22.04,
+ "bldgarea":1080.14,
+ "comment":" ",
+ "OBJECTID_2":85942,
+ "Shape_Le_1":0.000542705770828,
+ "Shape_Ar_1":1.50655127988e-08,
+ "OBJECTID_3":85942,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85941,
+ "g_objectid":"942200",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567619",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004252248700000000",
+ "g_sup_tota":"282.3",
+ "g_geometry":"0.00102277",
+ "g_geomet_1":"3.25954e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000542705770828,
+ "Shape_Area":1.50655127988e-08,
+ "Shape_Le_3":0.000542706245545,
+ "Shape_Ar_2":1.50655127988e-08,
+ "building_height":7.155
+ }
+ },
+ {
+ "type":"Feature",
+ "id":826,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55985976543766,
+ 45.518642876617754
+ ],
+ [
+ -73.55994133484657,
+ 45.518680470077925
+ ],
+ [
+ -73.5600841516841,
+ 45.51852780746264
+ ],
+ [
+ -73.56004116768759,
+ 45.51850444667317
+ ],
+ [
+ -73.56003936814417,
+ 45.51850614729116
+ ],
+ [
+ -73.55997596773857,
+ 45.518575146875826
+ ],
+ [
+ -73.55993888149602,
+ 45.51855830707051
+ ],
+ [
+ -73.55985976543766,
+ 45.518642876617754
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":826,
+ "ID_UEV":"01040033",
+ "CIVIQUE_DE":" 1638",
+ "CIVIQUE_FI":" 1640",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-10-1374-9-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":171,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000600508490828,
+ "OBJECTID":85944,
+ "Join_Count":1,
+ "TARGET_FID":85944,
+ "feature_id":"54e6f7e1-8ef1-49c1-b9b7-5a24ea7f0370",
+ "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.11,
+ "heightmax":38.68,
+ "elevmin":22.45,
+ "elevmax":27.17,
+ "bldgarea":3072.24,
+ "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_2":85944,
+ "Shape_Le_1":0.000600508490828,
+ "Shape_Ar_1":1.43476071802e-08,
+ "OBJECTID_3":85944,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85943,
+ "g_objectid":"941665",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566294",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004210137490000000",
+ "g_sup_tota":"177.7",
+ "g_geometry":"0.000652375",
+ "g_geomet_1":"2.01516e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000600508490828,
+ "Shape_Area":1.43476071802e-08,
+ "Shape_Le_3":0.000600507381506,
+ "Shape_Ar_2":1.43476071802e-08,
+ "building_height":18.285
+ }
+ },
+ {
+ "type":"Feature",
+ "id":827,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56011251720075,
+ 45.51874611159407
+ ],
+ [
+ -73.56015056841585,
+ 45.51876244687971
+ ],
+ [
+ -73.5601559679454,
+ 45.51876484717025
+ ],
+ [
+ -73.56016576785774,
+ 45.5187536470135
+ ],
+ [
+ -73.56034566823985,
+ 45.518831647013194
+ ],
+ [
+ -73.56034656846121,
+ 45.51883064696708
+ ],
+ [
+ -73.56042276801817,
+ 45.51875534673216
+ ],
+ [
+ -73.56048396778273,
+ 45.5187859470641
+ ],
+ [
+ -73.56047896845148,
+ 45.518790947294676
+ ],
+ [
+ -73.56048356848375,
+ 45.51879344651064
+ ],
+ [
+ -73.56060236802671,
+ 45.518858046611854
+ ],
+ [
+ -73.56053496833596,
+ 45.51891924727574
+ ],
+ [
+ -73.56053026847896,
+ 45.51892344710969
+ ],
+ [
+ -73.56057976806369,
+ 45.518950746929725
+ ],
+ [
+ -73.56058196780542,
+ 45.51895184680058
+ ],
+ [
+ -73.56058536814207,
+ 45.51894824681443
+ ],
+ [
+ -73.56069776810935,
+ 45.51899964666666
+ ],
+ [
+ -73.56072716784637,
+ 45.51901304656514
+ ],
+ [
+ -73.56074636837205,
+ 45.51902044708626
+ ],
+ [
+ -73.56077056822899,
+ 45.51898894653295
+ ],
+ [
+ -73.56080276845485,
+ 45.51894704711882
+ ],
+ [
+ -73.56081746787369,
+ 45.51895254647314
+ ],
+ [
+ -73.56081776824725,
+ 45.51895224699889
+ ],
+ [
+ -73.56085516835319,
+ 45.518905646828436
+ ],
+ [
+ -73.56085726827015,
+ 45.51890314671314
+ ],
+ [
+ -73.56084146808114,
+ 45.51889554654253
+ ],
+ [
+ -73.5608954678734,
+ 45.51884014650585
+ ],
+ [
+ -73.56084136825639,
+ 45.518814047280756
+ ],
+ [
+ -73.56094056797468,
+ 45.51871234654785
+ ],
+ [
+ -73.56075416819215,
+ 45.51862244671884
+ ],
+ [
+ -73.56075276794773,
+ 45.51862384696326
+ ],
+ [
+ -73.56068666777735,
+ 45.51869194722588
+ ],
+ [
+ -73.56060676840949,
+ 45.51865354707383
+ ],
+ [
+ -73.56060636821117,
+ 45.518653447249086
+ ],
+ [
+ -73.56059506822966,
+ 45.5186653470784
+ ],
+ [
+ -73.56052866768572,
+ 45.5186342467234
+ ],
+ [
+ -73.56057856836809,
+ 45.518581446626754
+ ],
+ [
+ -73.56041296810584,
+ 45.518492646668605
+ ],
+ [
+ -73.56037047154187,
+ 45.518469833566265
+ ],
+ [
+ -73.56035304717723,
+ 45.51848850349194
+ ],
+ [
+ -73.56035556797693,
+ 45.518489646530256
+ ],
+ [
+ -73.56024496845238,
+ 45.51861024651596
+ ],
+ [
+ -73.56024106899199,
+ 45.51860847125424
+ ],
+ [
+ -73.56011251720075,
+ 45.51874611159407
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":827,
+ "ID_UEV":"01040035",
+ "CIVIQUE_DE":" 1690",
+ "CIVIQUE_FI":" 1720",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":12,
+ "NOMBRE_LOG":111,
+ "ANNEE_CONS":1975,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-00-6692-0-000-0000",
+ "SUPERFICIE":2774,
+ "SUPERFIC_1":7852,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00256518937028,
+ "OBJECTID":85945,
+ "Join_Count":1,
+ "TARGET_FID":85945,
+ "feature_id":"54e6f7e1-8ef1-49c1-b9b7-5a24ea7f0370",
+ "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.11,
+ "heightmax":38.68,
+ "elevmin":22.45,
+ "elevmax":27.17,
+ "bldgarea":3072.24,
+ "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_2":85945,
+ "Shape_Le_1":0.00256518937028,
+ "Shape_Ar_1":1.95243412362e-07,
+ "OBJECTID_3":85945,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85944,
+ "g_objectid":"941663",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566290",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"111",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004200669200000000",
+ "g_sup_tota":"2774.2",
+ "g_geometry":"0.00237406",
+ "g_geomet_1":"3.1953e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00256518937028,
+ "Shape_Area":1.95243412362e-07,
+ "Shape_Le_3":0.00256518781464,
+ "Shape_Ar_2":1.95243412362e-07,
+ "building_height":18.285
+ }
+ },
+ {
+ "type":"Feature",
+ "id":828,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56147101239915,
+ 45.51163612905441
+ ],
+ [
+ -73.56153935637803,
+ 45.511668474071115
+ ],
+ [
+ -73.56165681053523,
+ 45.51154574898742
+ ],
+ [
+ -73.56158605367528,
+ 45.511513399474104
+ ],
+ [
+ -73.56147101239915,
+ 45.51163612905441
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":828,
+ "ID_UEV":"01020873",
+ "CIVIQUE_DE":" 1247",
+ "CIVIQUE_FI":" 1247",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-92-9099-6-000-0000",
+ "SUPERFICIE":133,
+ "SUPERFIC_1":170,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000491502124941,
+ "OBJECTID":85971,
+ "Join_Count":1,
+ "TARGET_FID":85971,
+ "feature_id":"41c9ccad-a221-4157-8eb1-d0423cb65ce8",
+ "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.67,
+ "heightmax":42.54,
+ "elevmin":23.62,
+ "elevmax":26.38,
+ "bldgarea":3241.86,
+ "comment":" ",
+ "OBJECTID_2":85971,
+ "Shape_Le_1":0.000491502124941,
+ "Shape_Ar_1":1.22959369033e-08,
+ "OBJECTID_3":85971,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85970,
+ "g_objectid":"943315",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161716",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1990",
+ "g_nb_logem":"1",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994193820410000000",
+ "g_sup_tota":"249",
+ "g_geometry":"0.000713786",
+ "g_geomet_1":"2.8917e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000491502124941,
+ "Shape_Area":1.22959369033e-08,
+ "Shape_Le_3":0.000491503205958,
+ "Shape_Ar_2":1.22959369033e-08,
+ "building_height":20.935
+ }
+ },
+ {
+ "type":"Feature",
+ "id":829,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57392380516133,
+ 45.499149995726015
+ ],
+ [
+ -73.5743888589805,
+ 45.49937502498771
+ ],
+ [
+ -73.5744605970008,
+ 45.49930240653113
+ ],
+ [
+ -73.5744296720136,
+ 45.49928734288686
+ ],
+ [
+ -73.57443430442146,
+ 45.499282625942726
+ ],
+ [
+ -73.57399873847285,
+ 45.49907369724363
+ ],
+ [
+ -73.57392380516133,
+ 45.499149995726015
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":829,
+ "ID_UEV":"01039234",
+ "CIVIQUE_DE":" 1181",
+ "CIVIQUE_FI":" 1181",
+ "NOM_RUE":"rue Sainte-Catherine Ouest (MTL+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1927,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9939-09-0224-7-000-0000",
+ "SUPERFICIE":461,
+ "SUPERFIC_1":1070,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00124974776482,
+ "OBJECTID":85975,
+ "Join_Count":1,
+ "TARGET_FID":85975,
+ "feature_id":"cf6d3373-3147-4be6-8e3e-4035c41ec429",
+ "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.2,
+ "heightmax":84.01,
+ "elevmin":37.95,
+ "elevmax":41.15,
+ "bldgarea":3317.6,
+ "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_2":85975,
+ "Shape_Le_1":0.00124974776482,
+ "Shape_Ar_1":5.25993196136e-08,
+ "OBJECTID_3":85975,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85974,
+ "g_objectid":"938103",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1338912",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023993909022470000000",
+ "g_sup_tota":"461.2",
+ "g_geometry":"0.00125887",
+ "g_geomet_1":"5.32594e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00124974776482,
+ "Shape_Area":5.25993196136e-08,
+ "Shape_Le_3":0.00124974780609,
+ "Shape_Ar_2":5.25993196136e-08,
+ "building_height":41.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":830,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55421514003852,
+ 45.52073627800712
+ ],
+ [
+ -73.55450690708993,
+ 45.52087092540318
+ ],
+ [
+ -73.55459734381421,
+ 45.52077408100933
+ ],
+ [
+ -73.55443866653307,
+ 45.52069864767475
+ ],
+ [
+ -73.55431346651511,
+ 45.52063904780411
+ ],
+ [
+ -73.55430676656587,
+ 45.52063584801627
+ ],
+ [
+ -73.55425736590655,
+ 45.52069004745802
+ ],
+ [
+ -73.55421514003852,
+ 45.52073627800712
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":830,
+ "ID_UEV":"01022366",
+ "CIVIQUE_DE":" 1451",
+ "CIVIQUE_FI":" 1457",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-4916-4-000-0000",
+ "SUPERFICIE":376,
+ "SUPERFIC_1":1026,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000911572987855,
+ "OBJECTID":85976,
+ "Join_Count":1,
+ "TARGET_FID":85976,
+ "feature_id":"bb334a25-b82d-4066-be5d-5fe0183748e4",
+ "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.48,
+ "heightmax":13.39,
+ "elevmin":16.89,
+ "elevmax":19.55,
+ "bldgarea":1730.18,
+ "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_2":85976,
+ "Shape_Le_1":0.000911572987855,
+ "Shape_Ar_1":4.11301243911e-08,
+ "OBJECTID_3":85976,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85975,
+ "g_objectid":"942244",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567686",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004253491640000000",
+ "g_sup_tota":"375.6",
+ "g_geometry":"0.000932599",
+ "g_geomet_1":"4.36103e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000911572987855,
+ "Shape_Area":4.11301243911e-08,
+ "Shape_Le_3":0.000911571816038,
+ "Shape_Ar_2":4.11301243911e-08,
+ "building_height":5.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":831,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55411951692402,
+ 45.5208409680865
+ ],
+ [
+ -73.554409724551,
+ 45.52097499495035
+ ],
+ [
+ -73.55442361637864,
+ 45.52096011746574
+ ],
+ [
+ -73.55450690708993,
+ 45.52087092540318
+ ],
+ [
+ -73.55421514003852,
+ 45.52073627800712
+ ],
+ [
+ -73.55411951692402,
+ 45.5208409680865
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":831,
+ "ID_UEV":"01022367",
+ "CIVIQUE_DE":" 1459",
+ "CIVIQUE_FI":" 1469",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-5628-4-000-0000",
+ "SUPERFICIE":374,
+ "SUPERFIC_1":891,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00092517685895,
+ "OBJECTID":85977,
+ "Join_Count":1,
+ "TARGET_FID":85977,
+ "feature_id":"bb334a25-b82d-4066-be5d-5fe0183748e4",
+ "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.48,
+ "heightmax":13.39,
+ "elevmin":16.89,
+ "elevmax":19.55,
+ "bldgarea":1730.18,
+ "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_2":85977,
+ "Shape_Le_1":0.00092517685895,
+ "Shape_Ar_1":4.33235831101e-08,
+ "OBJECTID_3":85977,
+ "Join_Cou_1":5,
+ "TARGET_F_1":85976,
+ "g_objectid":"938255",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567709",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004253623650000000",
+ "g_sup_tota":"166.2",
+ "g_geometry":"0.000770943",
+ "g_geomet_1":"1.92965e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00092517685895,
+ "Shape_Area":4.33235831101e-08,
+ "Shape_Le_3":0.000925177385666,
+ "Shape_Ar_2":4.33235831101e-08,
+ "building_height":5.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":832,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56104884275173,
+ 45.534390305118784
+ ],
+ [
+ -73.56114986989243,
+ 45.5344353494621
+ ],
+ [
+ -73.5611507701138,
+ 45.53443434941599
+ ],
+ [
+ -73.5612382750482,
+ 45.534340982700485
+ ],
+ [
+ -73.56124486617948,
+ 45.5343203297697
+ ],
+ [
+ -73.56115360028028,
+ 45.53427809670709
+ ],
+ [
+ -73.56104884275173,
+ 45.534390305118784
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":832,
+ "ID_UEV":"01023145",
+ "CIVIQUE_DE":" 2563",
+ "CIVIQUE_FI":" 2573",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-2534-9-000-0000",
+ "SUPERFICIE":388,
+ "SUPERFIC_1":393,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000515673575931,
+ "OBJECTID":85982,
+ "Join_Count":1,
+ "TARGET_FID":85982,
+ "feature_id":"228f7c1f-91c7-40c1-8e1f-5aec2ebf83d7",
+ "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.51,
+ "heightmax":50.56,
+ "elevmin":31.57,
+ "elevmax":39.27,
+ "bldgarea":1377.3,
+ "comment":" ",
+ "OBJECTID_2":85982,
+ "Shape_Le_1":0.000515673575931,
+ "Shape_Ar_1":1.58822894697e-08,
+ "OBJECTID_3":85982,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85981,
+ "g_objectid":"941409",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425417",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308253490000000",
+ "g_sup_tota":"387.9",
+ "g_geometry":"0.000911192",
+ "g_geomet_1":"4.43923e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000515673575931,
+ "Shape_Area":1.58822894697e-08,
+ "Shape_Le_3":0.000515673937304,
+ "Shape_Ar_2":1.58822894697e-08,
+ "building_height":24.025000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":833,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55960677895153,
+ 45.518288065292275
+ ],
+ [
+ -73.55944946774059,
+ 45.51821834714929
+ ],
+ [
+ -73.559446168128,
+ 45.5182220469602
+ ],
+ [
+ -73.55933576825295,
+ 45.518345746908984
+ ],
+ [
+ -73.55933576825295,
+ 45.51834584673374
+ ],
+ [
+ -73.55941376825265,
+ 45.51838624697801
+ ],
+ [
+ -73.55937763349283,
+ 45.518420682918475
+ ],
+ [
+ -73.55945091025315,
+ 45.518454452461306
+ ],
+ [
+ -73.55960677895153,
+ 45.518288065292275
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":833,
+ "ID_UEV":"01040029",
+ "CIVIQUE_DE":" 1596",
+ "CIVIQUE_FI":" 1598",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-10-5447-9-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":582,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0007893593087,
+ "OBJECTID":85987,
+ "Join_Count":1,
+ "TARGET_FID":85987,
+ "feature_id":"54e6f7e1-8ef1-49c1-b9b7-5a24ea7f0370",
+ "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.11,
+ "heightmax":38.68,
+ "elevmin":22.45,
+ "elevmax":27.17,
+ "bldgarea":3072.24,
+ "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_2":85987,
+ "Shape_Le_1":0.0007893593087,
+ "Shape_Ar_1":3.20029296648e-08,
+ "OBJECTID_3":85987,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85986,
+ "g_objectid":"941688",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566355",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004210544790000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000832612",
+ "g_geomet_1":"4.034e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0007893593087,
+ "Shape_Area":3.20029296648e-08,
+ "Shape_Le_3":0.000789357539268,
+ "Shape_Ar_2":3.20029296648e-08,
+ "building_height":18.285
+ }
+ },
+ {
+ "type":"Feature",
+ "id":834,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55945091025315,
+ 45.518454452461306
+ ],
+ [
+ -73.55961451402045,
+ 45.51852985162165
+ ],
+ [
+ -73.55969982101178,
+ 45.518438664862785
+ ],
+ [
+ -73.55968576820548,
+ 45.51845064653041
+ ],
+ [
+ -73.55966496778588,
+ 45.5184385470516
+ ],
+ [
+ -73.55967866805793,
+ 45.518426647222284
+ ],
+ [
+ -73.5595990681643,
+ 45.518381547120995
+ ],
+ [
+ -73.55965706814102,
+ 45.51833094676608
+ ],
+ [
+ -73.55965826783664,
+ 45.51832964724572
+ ],
+ [
+ -73.55960266815046,
+ 45.518303646946045
+ ],
+ [
+ -73.55961426850553,
+ 45.51829134691842
+ ],
+ [
+ -73.55960876825189,
+ 45.51828894662788
+ ],
+ [
+ -73.55960677895153,
+ 45.518288065292275
+ ],
+ [
+ -73.55945091025315,
+ 45.518454452461306
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":834,
+ "ID_UEV":"01040030",
+ "CIVIQUE_DE":" 1602",
+ "CIVIQUE_FI":" 1612",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-10-4255-7-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":460,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000850371181154,
+ "OBJECTID":85988,
+ "Join_Count":1,
+ "TARGET_FID":85988,
+ "feature_id":"54e6f7e1-8ef1-49c1-b9b7-5a24ea7f0370",
+ "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.11,
+ "heightmax":38.68,
+ "elevmin":22.45,
+ "elevmax":27.17,
+ "bldgarea":3072.24,
+ "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_2":85988,
+ "Shape_Le_1":0.000850371181154,
+ "Shape_Ar_1":2.69595051957e-08,
+ "OBJECTID_3":85988,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85987,
+ "g_objectid":"941688",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566355",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004210544790000000",
+ "g_sup_tota":"353",
+ "g_geometry":"0.000832612",
+ "g_geomet_1":"4.034e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000850371181154,
+ "Shape_Area":2.69595051957e-08,
+ "Shape_Le_3":0.000850369947863,
+ "Shape_Ar_2":2.69595051957e-08,
+ "building_height":18.285
+ }
+ },
+ {
+ "type":"Feature",
+ "id":835,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54990410131506,
+ 45.52288430781485
+ ],
+ [
+ -73.54998066509746,
+ 45.52291464824272
+ ],
+ [
+ -73.54997346512516,
+ 45.52292354793369
+ ],
+ [
+ -73.54997376549872,
+ 45.52292344810894
+ ],
+ [
+ -73.55007616500485,
+ 45.52295104740321
+ ],
+ [
+ -73.55007575401469,
+ 45.5229518055317
+ ],
+ [
+ -73.55013754643247,
+ 45.52288695092234
+ ],
+ [
+ -73.55013626489855,
+ 45.5228862476525
+ ],
+ [
+ -73.54998916548944,
+ 45.522805448063274
+ ],
+ [
+ -73.54999916505128,
+ 45.52279644764823
+ ],
+ [
+ -73.5499915217132,
+ 45.5227925544831
+ ],
+ [
+ -73.54990410131506,
+ 45.52288430781485
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":835,
+ "ID_UEV":"01022167",
+ "CIVIQUE_DE":" 1210",
+ "CIVIQUE_FI":" 1210",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-85-9151-5-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":455,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000608670755381,
+ "OBJECTID":85990,
+ "Join_Count":1,
+ "TARGET_FID":85990,
+ "feature_id":"e5135906-da4d-4532-b35a-0ec9cb7c5328",
+ "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.58,
+ "heightmax":29.44,
+ "elevmin":16.79,
+ "elevmax":17.79,
+ "bldgarea":838.11,
+ "comment":" ",
+ "OBJECTID_2":85990,
+ "Shape_Le_1":0.000608670755381,
+ "Shape_Ar_1":1.80011824733e-08,
+ "OBJECTID_3":85990,
+ "Join_Cou_1":3,
+ "TARGET_F_1":85989,
+ "g_objectid":"942345",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729132",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004285915150000000",
+ "g_sup_tota":"250.8",
+ "g_geometry":"0.000700533",
+ "g_geomet_1":"2.90389e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000608670755381,
+ "Shape_Area":1.80011824733e-08,
+ "Shape_Le_3":0.00060867024069,
+ "Shape_Ar_2":1.80011824733e-08,
+ "building_height":13.43
+ }
+ },
+ {
+ "type":"Feature",
+ "id":836,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55396847938366,
+ 45.51852349251546
+ ],
+ [
+ -73.55411358499579,
+ 45.51859016465467
+ ],
+ [
+ -73.55411916618841,
+ 45.518585446811215
+ ],
+ [
+ -73.55414896612373,
+ 45.51860264724467
+ ],
+ [
+ -73.55414612516539,
+ 45.51860511588369
+ ],
+ [
+ -73.55417447089695,
+ 45.51861813986556
+ ],
+ [
+ -73.55422076619725,
+ 45.518629347216894
+ ],
+ [
+ -73.55422086602199,
+ 45.51862924649283
+ ],
+ [
+ -73.5542762058041,
+ 45.51857190571917
+ ],
+ [
+ -73.55435032972578,
+ 45.518494291528626
+ ],
+ [
+ -73.55420226624344,
+ 45.51842374690869
+ ],
+ [
+ -73.55410886625302,
+ 45.518379146830455
+ ],
+ [
+ -73.55416036592999,
+ 45.51832584671075
+ ],
+ [
+ -73.55438956624732,
+ 45.51843534726376
+ ],
+ [
+ -73.55452346630678,
+ 45.51829674644799
+ ],
+ [
+ -73.55429186569889,
+ 45.51818614692343
+ ],
+ [
+ -73.55431336579105,
+ 45.51816384643466
+ ],
+ [
+ -73.55430826573571,
+ 45.518161546868185
+ ],
+ [
+ -73.55430473499737,
+ 45.51815994067901
+ ],
+ [
+ -73.55415427122448,
+ 45.51832871464876
+ ],
+ [
+ -73.55409239427043,
+ 45.51839358454659
+ ],
+ [
+ -73.5540973657227,
+ 45.518396046890345
+ ],
+ [
+ -73.55408036583806,
+ 45.518412946950235
+ ],
+ [
+ -73.55407599513292,
+ 45.51841077688614
+ ],
+ [
+ -73.55396847938366,
+ 45.51852349251546
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":836,
+ "ID_UEV":"01040454",
+ "CIVIQUE_DE":" 1215",
+ "CIVIQUE_FI":" 1237",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":35,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-6054-8-000-0000",
+ "SUPERFICIE":1109,
+ "SUPERFIC_1":1133,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00206253764785,
+ "OBJECTID":85995,
+ "Join_Count":1,
+ "TARGET_FID":85995,
+ "feature_id":"450c52b7-2133-4553-b861-84373bef9a1e",
+ "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.1,
+ "heightmax":30.87,
+ "elevmin":18.06,
+ "elevmax":20.78,
+ "bldgarea":3183.14,
+ "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_2":85995,
+ "Shape_Le_1":0.00206253764785,
+ "Shape_Ar_1":9.84334941556e-08,
+ "OBJECTID_3":85995,
+ "Join_Cou_1":6,
+ "TARGET_F_1":85994,
+ "g_objectid":"941855",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566695",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004250683350000000",
+ "g_sup_tota":"299.3",
+ "g_geometry":"0.000775949",
+ "g_geomet_1":"3.46723e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00206253764785,
+ "Shape_Area":9.84334941556e-08,
+ "Shape_Le_3":0.00206253712053,
+ "Shape_Ar_2":9.84334941556e-08,
+ "building_height":14.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":837,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56040308005994,
+ 45.506901534828266
+ ],
+ [
+ -73.56047753133485,
+ 45.50692755311438
+ ],
+ [
+ -73.5604692404849,
+ 45.50694091254337
+ ],
+ [
+ -73.5607054060515,
+ 45.50702351707195
+ ],
+ [
+ -73.56075418977588,
+ 45.50695714710495
+ ],
+ [
+ -73.56043557076683,
+ 45.506854954442886
+ ],
+ [
+ -73.56042022293678,
+ 45.50687508666621
+ ],
+ [
+ -73.56040308005994,
+ 45.506901534828266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":837,
+ "ID_UEV":"01058917",
+ "CIVIQUE_DE":" 92",
+ "CIVIQUE_FI":" 94",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-07-6680-4-000-0000",
+ "SUPERFICIE":241,
+ "SUPERFIC_1":661,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000818594828209,
+ "OBJECTID":85998,
+ "Join_Count":1,
+ "TARGET_FID":85998,
+ "feature_id":"5fa8615b-1dfc-449d-94a3-aef32dcfd382",
+ "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":37.06,
+ "elevmin":15.52,
+ "elevmax":18.37,
+ "bldgarea":6271.4,
+ "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_2":85998,
+ "Shape_Le_1":0.000818594828209,
+ "Shape_Ar_1":2.34314121706e-08,
+ "OBJECTID_3":85998,
+ "Join_Cou_1":4,
+ "TARGET_F_1":85997,
+ "g_objectid":"939507",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180579",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004007668040000000",
+ "g_sup_tota":"241.2",
+ "g_geometry":"0.000844815",
+ "g_geomet_1":"2.77781e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000818594828209,
+ "Shape_Area":2.34314121706e-08,
+ "Shape_Le_3":0.000818594547745,
+ "Shape_Ar_2":2.34314121706e-08,
+ "building_height":18.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":838,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56153680320276,
+ 45.51722603790162
+ ],
+ [
+ -73.5616122023631,
+ 45.51726031646073
+ ],
+ [
+ -73.56167648500363,
+ 45.51719043643978
+ ],
+ [
+ -73.56160037537886,
+ 45.5171569339956
+ ],
+ [
+ -73.56153680320276,
+ 45.51722603790162
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":838,
+ "ID_UEV":"01120537",
+ "CIVIQUE_DE":" 1658",
+ "CIVIQUE_FI":" 1662",
+ "NOM_RUE":"rue Saint-Christophe (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-99-8520-7-000-0000",
+ "SUPERFICIE":110,
+ "SUPERFIC_1":185,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000354830752018,
+ "OBJECTID":86001,
+ "Join_Count":1,
+ "TARGET_FID":86001,
+ "feature_id":"c4395447-5328-4e84-8568-10b7521bb0c9",
+ "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":40.19,
+ "elevmin":24.97,
+ "elevmax":27.58,
+ "bldgarea":1295.44,
+ "comment":" ",
+ "OBJECTID_2":86001,
+ "Shape_Le_1":0.000354830752018,
+ "Shape_Ar_1":7.43089861654e-09,
+ "OBJECTID_3":86001,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86000,
+ "g_objectid":"943345",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161803",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994199792420000000",
+ "g_sup_tota":"109.9",
+ "g_geometry":"0.000485629",
+ "g_geomet_1":"1.28386e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000354830752018,
+ "Shape_Area":7.43089861654e-09,
+ "Shape_Le_3":0.000354829970252,
+ "Shape_Ar_2":7.43089861654e-09,
+ "building_height":19.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":839,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5593373654489,
+ 45.53407261960601
+ ],
+ [
+ -73.55938536946108,
+ 45.53409494977241
+ ],
+ [
+ -73.55941871902051,
+ 45.5341104585811
+ ],
+ [
+ -73.5595044729749,
+ 45.534018200729676
+ ],
+ [
+ -73.55946916918865,
+ 45.534007050035626
+ ],
+ [
+ -73.55941433932215,
+ 45.53398980913268
+ ],
+ [
+ -73.5593373654489,
+ 45.53407261960601
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55947016923477,
+ 45.533929745211864
+ ],
+ [
+ -73.55947406869515,
+ 45.53393164997596
+ ],
+ [
+ -73.55951776945135,
+ 45.53388614967636
+ ],
+ [
+ -73.55951285825365,
+ 45.53388381863362
+ ],
+ [
+ -73.55947016923477,
+ 45.533929745211864
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":839,
+ "ID_UEV":"01023254",
+ "CIVIQUE_DE":" 2408",
+ "CIVIQUE_FI":" 2410",
+ "NOM_RUE":"rue Chapleau (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-5588-3-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":133,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000558806491251,
+ "OBJECTID":86017,
+ "Join_Count":2,
+ "TARGET_FID":86017,
+ "feature_id":"ae97c710-9b7f-4693-9253-c7541a33a87b",
+ "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.46,
+ "heightmax":32.56,
+ "elevmin":28.96,
+ "elevmax":29.68,
+ "bldgarea":20.13,
+ "comment":" ",
+ "OBJECTID_2":86017,
+ "Shape_Le_1":0.000558806491251,
+ "Shape_Ar_1":1.04943145443e-08,
+ "OBJECTID_3":86017,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86016,
+ "g_objectid":"941346",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425352",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317618400000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.00080886",
+ "g_geomet_1":"2.70003e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000558806491251,
+ "Shape_Area":1.04943145443e-08,
+ "Shape_Le_3":0.000558805812848,
+ "Shape_Ar_2":1.04943145443e-08,
+ "building_height":15.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":840,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55941871902051,
+ 45.5341104585811
+ ],
+ [
+ -73.5594511692579,
+ 45.53412555010435
+ ],
+ [
+ -73.55944666905039,
+ 45.53413034978611
+ ],
+ [
+ -73.55944846949312,
+ 45.53413104945866
+ ],
+ [
+ -73.55949912650533,
+ 45.534149314689415
+ ],
+ [
+ -73.55959459583578,
+ 45.53404660401786
+ ],
+ [
+ -73.55953786929908,
+ 45.53402874977728
+ ],
+ [
+ -73.5595044729749,
+ 45.534018200729676
+ ],
+ [
+ -73.55941871902051,
+ 45.5341104585811
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":840,
+ "ID_UEV":"01023256",
+ "CIVIQUE_DE":" 2414",
+ "CIVIQUE_FI":" 2418",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-4992-8-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":278,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000458826434377,
+ "OBJECTID":86018,
+ "Join_Count":1,
+ "TARGET_FID":86018,
+ "feature_id":"4bacb033-2d1d-46d5-a267-28cce712eae4",
+ "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.47,
+ "heightmax":42.06,
+ "elevmin":21.6,
+ "elevmax":31.04,
+ "bldgarea":2833.95,
+ "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_2":86018,
+ "Shape_Le_1":0.000458826434377,
+ "Shape_Ar_1":1.15043035941e-08,
+ "OBJECTID_3":86018,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86017,
+ "g_objectid":"941343",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425349",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317429640000000",
+ "g_sup_tota":"241.1",
+ "g_geometry":"0.000814198",
+ "g_geomet_1":"2.78018e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000458826434377,
+ "Shape_Area":1.15043035941e-08,
+ "Shape_Le_3":0.000458826281235,
+ "Shape_Ar_2":1.15043035941e-08,
+ "building_height":19.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":841,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56556035654707,
+ 45.5159145880381
+ ],
+ [
+ -73.5656371343681,
+ 45.51595070301283
+ ],
+ [
+ -73.56573811474405,
+ 45.51584226186119
+ ],
+ [
+ -73.56566316974134,
+ 45.51581174606552
+ ],
+ [
+ -73.56565805889414,
+ 45.51580965963838
+ ],
+ [
+ -73.56556035654707,
+ 45.5159145880381
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":841,
+ "ID_UEV":"01021291",
+ "CIVIQUE_DE":" 2010",
+ "CIVIQUE_FI":" 2010",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-67-7075-0-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":357,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000462838162388,
+ "OBJECTID":86019,
+ "Join_Count":1,
+ "TARGET_FID":86019,
+ "feature_id":"f5bdc888-f5f9-44f8-b869-1a86f7f5a96f",
+ "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":17.39,
+ "elevmin":23.15,
+ "elevmax":34.36,
+ "bldgarea":2199.4,
+ "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_2":86019,
+ "Shape_Le_1":0.000462838162388,
+ "Shape_Ar_1":1.17789365481e-08,
+ "OBJECTID_3":86019,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86018,
+ "g_objectid":"943142",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161362",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994167707500000000",
+ "g_sup_tota":"140.9",
+ "g_geometry":"0.000593398",
+ "g_geomet_1":"1.57056e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000462838162388,
+ "Shape_Area":1.17789365481e-08,
+ "Shape_Le_3":0.000462837468248,
+ "Shape_Ar_2":1.17789365481e-08,
+ "building_height":8.435
+ }
+ },
+ {
+ "type":"Feature",
+ "id":842,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5575563210892,
+ 45.51799995398498
+ ],
+ [
+ -73.5576250652664,
+ 45.51803127647253
+ ],
+ [
+ -73.55776302396623,
+ 45.51787951497793
+ ],
+ [
+ -73.55774716711991,
+ 45.51787244720597
+ ],
+ [
+ -73.55769386610089,
+ 45.51784864754734
+ ],
+ [
+ -73.5575563210892,
+ 45.51799995398498
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":842,
+ "ID_UEV":"01040122",
+ "CIVIQUE_DE":" 1441",
+ "CIVIQUE_FI":" 1443",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-20-9503-4-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000560853769098,
+ "OBJECTID":86026,
+ "Join_Count":1,
+ "TARGET_FID":86026,
+ "feature_id":"e0e8c76b-c461-4c41-aedb-18835943c43b",
+ "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,
+ "heightmax":39.88,
+ "elevmin":23.88,
+ "elevmax":26.77,
+ "bldgarea":1829.03,
+ "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_2":86026,
+ "Shape_Le_1":0.000560853769098,
+ "Shape_Ar_1":1.47314946363e-08,
+ "OBJECTID_3":86026,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86025,
+ "g_objectid":"941728",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566411",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004220950340000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000563376",
+ "g_geomet_1":"1.48294e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000560853769098,
+ "Shape_Area":1.47314946363e-08,
+ "Shape_Le_3":0.000560853526308,
+ "Shape_Ar_2":1.47314946363e-08,
+ "building_height":19.94
+ }
+ },
+ {
+ "type":"Feature",
+ "id":843,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55092361145735,
+ 45.53140322852647
+ ],
+ [
+ -73.55099871114345,
+ 45.53143518773402
+ ],
+ [
+ -73.55100562423202,
+ 45.53142716488205
+ ],
+ [
+ -73.55108786003855,
+ 45.53133170724279
+ ],
+ [
+ -73.5510345662141,
+ 45.53130775020281
+ ],
+ [
+ -73.55102256656005,
+ 45.53132094955247
+ ],
+ [
+ -73.55100231742486,
+ 45.531311865500484
+ ],
+ [
+ -73.55092361145735,
+ 45.53140322852647
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":843,
+ "ID_UEV":"01018857",
+ "CIVIQUE_DE":" 1810",
+ "CIVIQUE_FI":" 1812",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-84-1391-6-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":181,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000437256910286,
+ "OBJECTID":86027,
+ "Join_Count":1,
+ "TARGET_FID":86027,
+ "feature_id":"bb869f13-2c8f-4d4b-89a5-55a36ab08f35",
+ "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.17,
+ "heightmax":32.26,
+ "elevmin":19.23,
+ "elevmax":22.42,
+ "bldgarea":1461.75,
+ "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_2":86027,
+ "Shape_Le_1":0.000437256910286,
+ "Shape_Ar_1":1.03066905792e-08,
+ "OBJECTID_3":86027,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86026,
+ "g_objectid":"940664",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424238",
+ "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":"66023004384079340000000",
+ "g_sup_tota":"128.8",
+ "g_geometry":"0.000607033",
+ "g_geomet_1":"1.48132e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000437256910286,
+ "Shape_Area":1.03066905792e-08,
+ "Shape_Le_3":0.000437255534354,
+ "Shape_Ar_2":1.03066905792e-08,
+ "building_height":15.044999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":844,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55364356242231,
+ 45.530404731043795
+ ],
+ [
+ -73.55379520880369,
+ 45.53047918052006
+ ],
+ [
+ -73.55384372183214,
+ 45.53042940754142
+ ],
+ [
+ -73.55371915673554,
+ 45.53036825454161
+ ],
+ [
+ -73.55369946697866,
+ 45.53039264865211
+ ],
+ [
+ -73.55361806754163,
+ 45.53036024877675
+ ],
+ [
+ -73.55361796681755,
+ 45.53036024877675
+ ],
+ [
+ -73.55360440773907,
+ 45.53038550803506
+ ],
+ [
+ -73.5536416279806,
+ 45.5304037804604
+ ],
+ [
+ -73.55364376746773,
+ 45.53040434883193
+ ],
+ [
+ -73.55364356242231,
+ 45.530404731043795
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":844,
+ "ID_UEV":"01018385",
+ "CIVIQUE_DE":" 2328",
+ "CIVIQUE_FI":" 2330",
+ "NOM_RUE":"rue Coupal (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-0588-2-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":174,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000569046257049,
+ "OBJECTID":86028,
+ "Join_Count":1,
+ "TARGET_FID":86028,
+ "feature_id":"f9dffb6a-2571-438d-9a1a-6b3e22917edc",
+ "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.42,
+ "heightmax":25.37,
+ "elevmin":17.23,
+ "elevmax":18.05,
+ "bldgarea":485.77,
+ "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_2":86028,
+ "Shape_Le_1":0.000569046257049,
+ "Shape_Ar_1":1.16241444731e-08,
+ "OBJECTID_3":86028,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86027,
+ "g_objectid":"940856",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424531",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363099340000000",
+ "g_sup_tota":"149.5",
+ "g_geometry":"0.000658821",
+ "g_geomet_1":"1.70877e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000569046257049,
+ "Shape_Area":1.16241444731e-08,
+ "Shape_Le_3":0.000569046652871,
+ "Shape_Ar_2":1.16241444731e-08,
+ "building_height":11.475000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":845,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.558603596001,
+ 45.50908702949311
+ ],
+ [
+ -73.55835066707148,
+ 45.508982444634405
+ ],
+ [
+ -73.558348367505,
+ 45.508985245123256
+ ],
+ [
+ -73.55827944436271,
+ 45.50906535852977
+ ],
+ [
+ -73.55852938214711,
+ 45.50918126765168
+ ],
+ [
+ -73.558603596001,
+ 45.50908702949311
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55857165837718,
+ 45.508932411751694
+ ],
+ [
+ -73.55856476687234,
+ 45.50893974482366
+ ],
+ [
+ -73.55856966727816,
+ 45.50894204528945
+ ],
+ [
+ -73.55867219988396,
+ 45.50899184165047
+ ],
+ [
+ -73.55867913995219,
+ 45.508982074113725
+ ],
+ [
+ -73.55857165837718,
+ 45.508932411751694
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55856456272623,
+ 45.50879892178311
+ ],
+ [
+ -73.5585584671214,
+ 45.50880514509167
+ ],
+ [
+ -73.55854116686321,
+ 45.50879674452444
+ ],
+ [
+ -73.5585111672784,
+ 45.508827444681124
+ ],
+ [
+ -73.55851676735678,
+ 45.5088301444459
+ ],
+ [
+ -73.55855466748577,
+ 45.50884774507767
+ ],
+ [
+ -73.55858326682615,
+ 45.508817345294545
+ ],
+ [
+ -73.55864531105411,
+ 45.508846151479005
+ ],
+ [
+ -73.55865306231082,
+ 45.50883800002398
+ ],
+ [
+ -73.55856456272623,
+ 45.50879892178311
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":845,
+ "ID_UEV":"01020765",
+ "CIVIQUE_DE":" 988",
+ "CIVIQUE_FI":" 988",
+ "NOM_RUE":"rue De Bullion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres activit\u00c3\u00a9s religieuses",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-20-3010-8-000-0000",
+ "SUPERFICIE":716,
+ "SUPERFIC_1":1831,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00137531413363,
+ "OBJECTID":86042,
+ "Join_Count":1,
+ "TARGET_FID":86042,
+ "feature_id":"9696b5db-32ea-4790-bff7-f358b8431867",
+ "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":30.58,
+ "elevmin":14.81,
+ "elevmax":19.35,
+ "bldgarea":2483.76,
+ "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_2":86042,
+ "Shape_Le_1":0.00137531413363,
+ "Shape_Ar_1":3.43888066584e-08,
+ "OBJECTID_3":86042,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86041,
+ "g_objectid":"938449",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1180684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6513",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019949750000000",
+ "g_sup_tota":"2136.3",
+ "g_geometry":"0.0021317",
+ "g_geomet_1":"2.46017e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00137531413363,
+ "Shape_Area":3.43888066584e-08,
+ "Shape_Le_3":0.00137531367219,
+ "Shape_Ar_2":3.43888066584e-08,
+ "building_height":15.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":846,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54891757111086,
+ 45.52968172558147
+ ],
+ [
+ -73.54890646538291,
+ 45.52967504901459
+ ],
+ [
+ -73.54887676527234,
+ 45.529657049083845
+ ],
+ [
+ -73.54889046554439,
+ 45.529645749102336
+ ],
+ [
+ -73.54889176506475,
+ 45.52964424903316
+ ],
+ [
+ -73.54886826488037,
+ 45.52963374854895
+ ],
+ [
+ -73.5488521652171,
+ 45.52965144900546
+ ],
+ [
+ -73.54862686525946,
+ 45.52955024919494
+ ],
+ [
+ -73.54863726501961,
+ 45.52953874866461
+ ],
+ [
+ -73.5486368648213,
+ 45.52953854901512
+ ],
+ [
+ -73.548631683827,
+ 45.52953608307407
+ ],
+ [
+ -73.54854244230171,
+ 45.529636696526616
+ ],
+ [
+ -73.54854868269739,
+ 45.52963943226428
+ ],
+ [
+ -73.54854976548114,
+ 45.529638348581216
+ ],
+ [
+ -73.54857941522967,
+ 45.52965289691396
+ ],
+ [
+ -73.54864921431164,
+ 45.5296834810581
+ ],
+ [
+ -73.5486547649273,
+ 45.52967764895463
+ ],
+ [
+ -73.54884139133898,
+ 45.529766216887694
+ ],
+ [
+ -73.54891757111086,
+ 45.52968172558147
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":846,
+ "ID_UEV":"01018702",
+ "CIVIQUE_DE":" 1580",
+ "CIVIQUE_FI":" 1590",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-92-8998-4-000-0000",
+ "SUPERFICIE":775,
+ "SUPERFIC_1":790,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000966229436113,
+ "OBJECTID":86043,
+ "Join_Count":1,
+ "TARGET_FID":86043,
+ "feature_id":"72447a70-7754-47e9-94e3-b216251fd915",
+ "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,
+ "heightmax":32.42,
+ "elevmin":18.18,
+ "elevmax":21.24,
+ "bldgarea":2453.19,
+ "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_2":86043,
+ "Shape_Le_1":0.000966229436113,
+ "Shape_Ar_1":3.61626367163e-08,
+ "OBJECTID_3":86043,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86042,
+ "g_objectid":"940711",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424305",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004392899840000000",
+ "g_sup_tota":"774.9",
+ "g_geometry":"0.0012302",
+ "g_geomet_1":"8.95692e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000966229436113,
+ "Shape_Area":3.61626367163e-08,
+ "Shape_Le_3":0.000966229895102,
+ "Shape_Ar_2":3.61626367163e-08,
+ "building_height":16.21
+ }
+ },
+ {
+ "type":"Feature",
+ "id":847,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56076583419774,
+ 45.50653171741512
+ ],
+ [
+ -73.5607734037914,
+ 45.50652302276958
+ ],
+ [
+ -73.56089217095877,
+ 45.50657570505504
+ ],
+ [
+ -73.56088241421389,
+ 45.50658792324436
+ ],
+ [
+ -73.56100965119629,
+ 45.50664297524341
+ ],
+ [
+ -73.56107554092532,
+ 45.506567893543746
+ ],
+ [
+ -73.56079207101911,
+ 45.50644546973294
+ ],
+ [
+ -73.5607821299132,
+ 45.50645702152462
+ ],
+ [
+ -73.56075698576812,
+ 45.50648621981349
+ ],
+ [
+ -73.56076106779089,
+ 45.50648774506368
+ ],
+ [
+ -73.5607402682706,
+ 45.506514845234214
+ ],
+ [
+ -73.56077006820593,
+ 45.50652624504047
+ ],
+ [
+ -73.56076583419774,
+ 45.50653171741512
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":847,
+ "ID_UEV":"01058920",
+ "CIVIQUE_DE":" 110",
+ "CIVIQUE_FI":" 112",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-07-4037-9-000-0000",
+ "SUPERFICIE":235,
+ "SUPERFIC_1":602,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000835515208276,
+ "OBJECTID":86045,
+ "Join_Count":1,
+ "TARGET_FID":86045,
+ "feature_id":"566de9c4-79c7-4f30-afa7-c737d61ed66e",
+ "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,
+ "heightmax":28.92,
+ "elevmin":14.85,
+ "elevmax":18.68,
+ "bldgarea":3842.25,
+ "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_2":86045,
+ "Shape_Le_1":0.000835515208276,
+ "Shape_Ar_1":2.66217517332e-08,
+ "OBJECTID_3":86045,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86044,
+ "g_objectid":"937967",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180572",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004007403790000000",
+ "g_sup_tota":"235.4",
+ "g_geometry":"0.000841185",
+ "g_geomet_1":"2.71109e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000835515208276,
+ "Shape_Area":2.66217517332e-08,
+ "Shape_Le_3":0.000835514658547,
+ "Shape_Ar_2":2.66217517332e-08,
+ "building_height":13.96
+ }
+ },
+ {
+ "type":"Feature",
+ "id":848,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5622741645429,
+ 45.504992194984105
+ ],
+ [
+ -73.56240080617411,
+ 45.50505044767032
+ ],
+ [
+ -73.5624393996804,
+ 45.50500182762254
+ ],
+ [
+ -73.56231037934238,
+ 45.50494252003157
+ ],
+ [
+ -73.56230926778034,
+ 45.50494404528176
+ ],
+ [
+ -73.56228556794645,
+ 45.50497654498186
+ ],
+ [
+ -73.5622741645429,
+ 45.504992194984105
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":848,
+ "ID_UEV":"01058930",
+ "CIVIQUE_DE":" 271",
+ "CIVIQUE_FI":" 273",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-95-2368-7-000-0000",
+ "SUPERFICIE":138,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000404947215911,
+ "OBJECTID":86046,
+ "Join_Count":1,
+ "TARGET_FID":86046,
+ "feature_id":"24842e85-d082-4395-8441-bcc94726f0fa",
+ "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.63,
+ "heightmax":25.42,
+ "elevmin":17.8,
+ "elevmax":22.98,
+ "bldgarea":2050.27,
+ "comment":" ",
+ "OBJECTID_2":86046,
+ "Shape_Le_1":0.000404947215911,
+ "Shape_Ar_1":8.48137188597e-09,
+ "OBJECTID_3":86046,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86045,
+ "g_objectid":"939460",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179491",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994095267300000000",
+ "g_sup_tota":"133.7",
+ "g_geometry":"0.000658908",
+ "g_geomet_1":"1.55082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000404947215911,
+ "Shape_Area":8.48137188597e-09,
+ "Shape_Le_3":0.000404945551419,
+ "Shape_Ar_2":8.48137188597e-09,
+ "building_height":12.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":849,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56223912156005,
+ 45.50504028982781
+ ],
+ [
+ -73.56236408595565,
+ 45.505096707897046
+ ],
+ [
+ -73.56240080617411,
+ 45.50505044767032
+ ],
+ [
+ -73.5622741645429,
+ 45.504992194984105
+ ],
+ [
+ -73.56223912156005,
+ 45.50504028982781
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":849,
+ "ID_UEV":"01058931",
+ "CIVIQUE_DE":" 267",
+ "CIVIQUE_FI":" 269",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-95-2673-0-000-0000",
+ "SUPERFICIE":134,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000395077338286,
+ "OBJECTID":86047,
+ "Join_Count":1,
+ "TARGET_FID":86047,
+ "feature_id":"24842e85-d082-4395-8441-bcc94726f0fa",
+ "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.63,
+ "heightmax":25.42,
+ "elevmin":17.8,
+ "elevmax":22.98,
+ "bldgarea":2050.27,
+ "comment":" ",
+ "OBJECTID_2":86047,
+ "Shape_Le_1":0.000395077338286,
+ "Shape_Ar_1":7.99237836517e-09,
+ "OBJECTID_3":86047,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86046,
+ "g_objectid":"939460",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179491",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994095267300000000",
+ "g_sup_tota":"133.7",
+ "g_geometry":"0.000658908",
+ "g_geomet_1":"1.55082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000395077338286,
+ "Shape_Area":7.99237836517e-09,
+ "Shape_Le_3":0.00039507652666,
+ "Shape_Ar_2":7.99237836517e-09,
+ "building_height":12.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":850,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5618045529596,
+ 45.51068008766621
+ ],
+ [
+ -73.56188076780504,
+ 45.51071484556397
+ ],
+ [
+ -73.56188532197187,
+ 45.51071692119925
+ ],
+ [
+ -73.56200586709893,
+ 45.5105792269001
+ ],
+ [
+ -73.56192491912157,
+ 45.51054260111045
+ ],
+ [
+ -73.5618045529596,
+ 45.51068008766621
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":850,
+ "ID_UEV":"01020773",
+ "CIVIQUE_DE":" 1234",
+ "CIVIQUE_FI":" 1238",
+ "NOM_RUE":"rue De Bullion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-91-6392-0-000-0000",
+ "SUPERFICIE":144,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000543355309572,
+ "OBJECTID":86048,
+ "Join_Count":1,
+ "TARGET_FID":86048,
+ "feature_id":"3df84c3d-d79d-4463-b6b9-fcc5214b7250",
+ "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":23.3,
+ "elevmin":25.01,
+ "elevmax":25.87,
+ "bldgarea":1666.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_2":86048,
+ "Shape_Le_1":0.000543355309572,
+ "Shape_Ar_1":1.55497026355e-08,
+ "OBJECTID_3":86048,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86047,
+ "g_objectid":"943054",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160703",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994191569650000000",
+ "g_sup_tota":"146.9",
+ "g_geometry":"0.000569458",
+ "g_geomet_1":"1.69099e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000543355309572,
+ "Shape_Area":1.55497026355e-08,
+ "Shape_Le_3":0.000543355515539,
+ "Shape_Ar_2":1.55497026355e-08,
+ "building_height":11.4
+ }
+ },
+ {
+ "type":"Feature",
+ "id":851,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57129429991386,
+ 45.50151087797494
+ ],
+ [
+ -73.57143717610664,
+ 45.50136584880517
+ ],
+ [
+ -73.57142647957022,
+ 45.50136056798612
+ ],
+ [
+ -73.57105457123332,
+ 45.50118584410172
+ ],
+ [
+ -73.57079926989223,
+ 45.50106594378857
+ ],
+ [
+ -73.57045006404107,
+ 45.501433565057276
+ ],
+ [
+ -73.57106970412539,
+ 45.50173885701294
+ ],
+ [
+ -73.57113464596898,
+ 45.50167293670696
+ ],
+ [
+ -73.57098995944092,
+ 45.50160240197956
+ ],
+ [
+ -73.57079357988165,
+ 45.501505018891805
+ ],
+ [
+ -73.57083879149887,
+ 45.50145934502305
+ ],
+ [
+ -73.57086315773039,
+ 45.50147168911745
+ ],
+ [
+ -73.57092376484172,
+ 45.50141045877595
+ ],
+ [
+ -73.57095113121159,
+ 45.50142361855545
+ ],
+ [
+ -73.57100413275637,
+ 45.50136369402955
+ ],
+ [
+ -73.5710180731474,
+ 45.5013686196164
+ ],
+ [
+ -73.57107830344279,
+ 45.50140239185719
+ ],
+ [
+ -73.57109449573623,
+ 45.50139147948349
+ ],
+ [
+ -73.5711660448989,
+ 45.501433920289486
+ ],
+ [
+ -73.57115762814387,
+ 45.50144259245197
+ ],
+ [
+ -73.57129429991386,
+ 45.50151087797494
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":851,
+ "ID_UEV":"01039158",
+ "CIVIQUE_DE":" 1200",
+ "CIVIQUE_FI":" 1230",
+ "NOM_RUE":"avenue McGill College (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-21-6562-7-000-0000",
+ "SUPERFICIE":2367,
+ "SUPERFIC_1":31752,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00321850164659,
+ "OBJECTID":86053,
+ "Join_Count":1,
+ "TARGET_FID":86053,
+ "feature_id":"d557171a-01b1-4059-be92-ca29e18026e7",
+ "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":96.07,
+ "elevmin":33.44,
+ "elevmax":35.5,
+ "bldgarea":3072.6,
+ "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_2":86053,
+ "Shape_Le_1":0.00321850164659,
+ "Shape_Ar_1":2.63764124174e-07,
+ "OBJECTID_3":86053,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86052,
+ "g_objectid":"938150",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1340253",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994021457440000000",
+ "g_sup_tota":"448",
+ "g_geometry":"0.00106626",
+ "g_geomet_1":"5.22771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00321850164659,
+ "Shape_Area":2.63764124174e-07,
+ "Shape_Le_3":0.0032185019946,
+ "Shape_Ar_2":2.63764124174e-07,
+ "building_height":47.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":852,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56020533802777,
+ 45.507233102276146
+ ],
+ [
+ -73.56030688317796,
+ 45.507276899259786
+ ],
+ [
+ -73.56029328093202,
+ 45.50729249170542
+ ],
+ [
+ -73.56045065779347,
+ 45.507355474825594
+ ],
+ [
+ -73.5604580673078,
+ 45.507346145258694
+ ],
+ [
+ -73.56046596695266,
+ 45.50734926140958
+ ],
+ [
+ -73.56052423942396,
+ 45.5072699852719
+ ],
+ [
+ -73.56027619381314,
+ 45.507154394509996
+ ],
+ [
+ -73.56020533802777,
+ 45.507233102276146
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":852,
+ "ID_UEV":"01058912",
+ "CIVIQUE_DE":" 70",
+ "CIVIQUE_FI":" 72",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-08-8316-1-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":452,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000799145663283,
+ "OBJECTID":86064,
+ "Join_Count":1,
+ "TARGET_FID":86064,
+ "feature_id":"5fa8615b-1dfc-449d-94a3-aef32dcfd382",
+ "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":37.06,
+ "elevmin":15.52,
+ "elevmax":18.37,
+ "bldgarea":6271.4,
+ "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_2":86064,
+ "Shape_Le_1":0.000799145663283,
+ "Shape_Ar_1":3.00366261265e-08,
+ "OBJECTID_3":86064,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86063,
+ "g_objectid":"938006",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180600",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004008882690000000",
+ "g_sup_tota":"287.7",
+ "g_geometry":"0.000852084",
+ "g_geomet_1":"3.3125e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000799145663283,
+ "Shape_Area":3.00366261265e-08,
+ "Shape_Le_3":0.000799145678936,
+ "Shape_Ar_2":3.00366261265e-08,
+ "building_height":18.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":853,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56027619381314,
+ 45.507154394509996
+ ],
+ [
+ -73.56052423942396,
+ 45.5072699852719
+ ],
+ [
+ -73.5605746527199,
+ 45.507201400274695
+ ],
+ [
+ -73.56054110441029,
+ 45.50718534467821
+ ],
+ [
+ -73.5604462780951,
+ 45.5071540356805
+ ],
+ [
+ -73.56028797493194,
+ 45.50707903851711
+ ],
+ [
+ -73.56028446667663,
+ 45.50708444524125
+ ],
+ [
+ -73.56028456740071,
+ 45.507084545066
+ ],
+ [
+ -73.560239262254,
+ 45.50713718508332
+ ],
+ [
+ -73.56027619381314,
+ 45.507154394509996
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":853,
+ "ID_UEV":"01058913",
+ "CIVIQUE_DE":" 74",
+ "CIVIQUE_FI":" 76",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-08-7907-8-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":352,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000787781663631,
+ "OBJECTID":86065,
+ "Join_Count":1,
+ "TARGET_FID":86065,
+ "feature_id":"5fa8615b-1dfc-449d-94a3-aef32dcfd382",
+ "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":37.06,
+ "elevmin":15.52,
+ "elevmax":18.37,
+ "bldgarea":6271.4,
+ "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_2":86065,
+ "Shape_Le_1":0.000787781663631,
+ "Shape_Ar_1":2.35713850441e-08,
+ "OBJECTID_3":86065,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86064,
+ "g_objectid":"938001",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180587",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"21",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004018121770000000",
+ "g_sup_tota":"1146",
+ "g_geometry":"0.00153565",
+ "g_geomet_1":"1.31971e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000787781663631,
+ "Shape_Area":2.35713850441e-08,
+ "Shape_Le_3":0.000787782873789,
+ "Shape_Ar_2":2.35713850441e-08,
+ "building_height":18.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":854,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5603307529837,
+ 45.50701310112401
+ ],
+ [
+ -73.56050114393449,
+ 45.50709876604551
+ ],
+ [
+ -73.56061853423981,
+ 45.50714170057931
+ ],
+ [
+ -73.56066092288513,
+ 45.50708403425107
+ ],
+ [
+ -73.56042457655481,
+ 45.50699485567834
+ ],
+ [
+ -73.56043630191564,
+ 45.506977701110316
+ ],
+ [
+ -73.56036917741744,
+ 45.50695384119711
+ ],
+ [
+ -73.5603448669439,
+ 45.50699134472507
+ ],
+ [
+ -73.5603307529837,
+ 45.50701310112401
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":854,
+ "ID_UEV":"01058915",
+ "CIVIQUE_DE":" 84",
+ "CIVIQUE_FI":" 88",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1883,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-07-7394-1-000-0000",
+ "SUPERFICIE":196,
+ "SUPERFIC_1":408,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000802536550692,
+ "OBJECTID":86066,
+ "Join_Count":1,
+ "TARGET_FID":86066,
+ "feature_id":"5fa8615b-1dfc-449d-94a3-aef32dcfd382",
+ "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":37.06,
+ "elevmin":15.52,
+ "elevmax":18.37,
+ "bldgarea":6271.4,
+ "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_2":86066,
+ "Shape_Le_1":0.000802536550692,
+ "Shape_Ar_1":2.18780206714e-08,
+ "OBJECTID_3":86066,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86065,
+ "g_objectid":"937969",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180581",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004007698810000000",
+ "g_sup_tota":"194.1",
+ "g_geometry":"0.000838215",
+ "g_geomet_1":"2.2351e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000802536550692,
+ "Shape_Area":2.18780206714e-08,
+ "Shape_Le_3":0.000802534377569,
+ "Shape_Ar_2":2.18780206714e-08,
+ "building_height":18.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":855,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56036917741744,
+ 45.50695384119711
+ ],
+ [
+ -73.56043630191564,
+ 45.506977701110316
+ ],
+ [
+ -73.56042457655481,
+ 45.50699485567834
+ ],
+ [
+ -73.56066092288513,
+ 45.50708403425107
+ ],
+ [
+ -73.5607054060515,
+ 45.50702351707195
+ ],
+ [
+ -73.5604692404849,
+ 45.50694091254337
+ ],
+ [
+ -73.56047753133485,
+ 45.50692755311438
+ ],
+ [
+ -73.56040308005994,
+ 45.506901534828266
+ ],
+ [
+ -73.56036917741744,
+ 45.50695384119711
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":855,
+ "ID_UEV":"01058916",
+ "CIVIQUE_DE":" 90",
+ "CIVIQUE_FI":" 90",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-07-6988-1-000-0000",
+ "SUPERFICIE":194,
+ "SUPERFIC_1":583,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000826855381806,
+ "OBJECTID":86067,
+ "Join_Count":1,
+ "TARGET_FID":86067,
+ "feature_id":"5fa8615b-1dfc-449d-94a3-aef32dcfd382",
+ "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":37.06,
+ "elevmin":15.52,
+ "elevmax":18.37,
+ "bldgarea":6271.4,
+ "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_2":86067,
+ "Shape_Le_1":0.000826855381806,
+ "Shape_Ar_1":2.20468961731e-08,
+ "OBJECTID_3":86067,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86066,
+ "g_objectid":"939507",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180579",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004007668040000000",
+ "g_sup_tota":"241.2",
+ "g_geometry":"0.000844815",
+ "g_geomet_1":"2.77781e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000826855381806,
+ "Shape_Area":2.20468961731e-08,
+ "Shape_Le_3":0.000826853651241,
+ "Shape_Ar_2":2.20468961731e-08,
+ "building_height":18.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":856,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54493057340908,
+ 45.53013069862314
+ ],
+ [
+ -73.54520225320327,
+ 45.53024537927113
+ ],
+ [
+ -73.54520346369074,
+ 45.53024405007315
+ ],
+ [
+ -73.54522556453003,
+ 45.530218649621276
+ ],
+ [
+ -73.54518976431801,
+ 45.53020324963056
+ ],
+ [
+ -73.54525856425319,
+ 45.53012395011051
+ ],
+ [
+ -73.54529712808184,
+ 45.530140674802595
+ ],
+ [
+ -73.54530290892396,
+ 45.53013394877301
+ ],
+ [
+ -73.54516601951804,
+ 45.53007584357562
+ ],
+ [
+ -73.54516246449798,
+ 45.530079949880076
+ ],
+ [
+ -73.54501336409731,
+ 45.53001604945142
+ ],
+ [
+ -73.54500956446168,
+ 45.5300144495575
+ ],
+ [
+ -73.544916264296,
+ 45.53012445013356
+ ],
+ [
+ -73.54492216384863,
+ 45.53012695024885
+ ],
+ [
+ -73.54493057340908,
+ 45.53013069862314
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":856,
+ "ID_UEV":"01019504",
+ "CIVIQUE_DE":" 2560",
+ "CIVIQUE_FI":" 2560",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":32,
+ "ANNEE_CONS":1963,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-23-7856-8-000-0000",
+ "SUPERFICIE":457,
+ "SUPERFIC_1":1281,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100555489789,
+ "OBJECTID":86078,
+ "Join_Count":1,
+ "TARGET_FID":86078,
+ "feature_id":"611f06a4-dc1f-4117-98ab-6118e28c9d9e",
+ "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":3.43,
+ "heightmax":14.94,
+ "elevmin":17.36,
+ "elevmax":19.93,
+ "bldgarea":1216.88,
+ "comment":" ",
+ "OBJECTID_2":86078,
+ "Shape_Le_1":0.00100555489789,
+ "Shape_Ar_1":3.95898642028e-08,
+ "OBJECTID_3":86078,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86077,
+ "g_objectid":"941081",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424974",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"32",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014323785680000000",
+ "g_sup_tota":"456.5",
+ "g_geometry":"0.00103746",
+ "g_geomet_1":"5.2459e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100555489789,
+ "Shape_Area":3.95898642028e-08,
+ "Shape_Le_3":0.00100555544955,
+ "Shape_Ar_2":3.95898642028e-08,
+ "building_height":5.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":857,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54513176703927,
+ 45.529985495884226
+ ],
+ [
+ -73.54535064673681,
+ 45.53007841203938
+ ],
+ [
+ -73.545391663916,
+ 45.530030689515
+ ],
+ [
+ -73.54539003704242,
+ 45.53002605261054
+ ],
+ [
+ -73.54538126415586,
+ 45.53002225027692
+ ],
+ [
+ -73.54527936377346,
+ 45.529977650198695
+ ],
+ [
+ -73.545178663986,
+ 45.52993355014352
+ ],
+ [
+ -73.54517606404596,
+ 45.529936449557795
+ ],
+ [
+ -73.54513176703927,
+ 45.529985495884226
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":857,
+ "ID_UEV":"01019508",
+ "CIVIQUE_DE":" 2550",
+ "CIVIQUE_FI":" 2552",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-23-6443-6-000-0000",
+ "SUPERFICIE":147,
+ "SUPERFIC_1":319,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000606337876965,
+ "OBJECTID":86085,
+ "Join_Count":1,
+ "TARGET_FID":86085,
+ "feature_id":"611f06a4-dc1f-4117-98ab-6118e28c9d9e",
+ "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":3.43,
+ "heightmax":14.94,
+ "elevmin":17.36,
+ "elevmax":19.93,
+ "bldgarea":1216.88,
+ "comment":" ",
+ "OBJECTID_2":86085,
+ "Shape_Le_1":0.000606337876965,
+ "Shape_Ar_1":1.53475223674e-08,
+ "OBJECTID_3":86085,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86084,
+ "g_objectid":"941098",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425004",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014323644360000000",
+ "g_sup_tota":"146.8",
+ "g_geometry":"0.00062551",
+ "g_geomet_1":"1.6946e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000606337876965,
+ "Shape_Area":1.53475223674e-08,
+ "Shape_Le_3":0.000606337652353,
+ "Shape_Ar_2":1.53475223674e-08,
+ "building_height":5.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":858,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56577887022053,
+ 45.512951446002724
+ ],
+ [
+ -73.56577587008218,
+ 45.51295484544006
+ ],
+ [
+ -73.5658690704231,
+ 45.51299444618704
+ ],
+ [
+ -73.56587417047842,
+ 45.51299664592876
+ ],
+ [
+ -73.56600837001211,
+ 45.512844345740255
+ ],
+ [
+ -73.56591446999863,
+ 45.51280354619699
+ ],
+ [
+ -73.56590957049212,
+ 45.51280134555595
+ ],
+ [
+ -73.56577887022053,
+ 45.512951446002724
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":858,
+ "ID_UEV":"01021717",
+ "CIVIQUE_DE":" 150",
+ "CIVIQUE_FI":" 150",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres immeubles r\u00c3\u00a9sidentiels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-64-4849-8-000-0000",
+ "SUPERFICIE":947,
+ "SUPERFIC_1":158,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000621123596088,
+ "OBJECTID":86089,
+ "Join_Count":1,
+ "TARGET_FID":86089,
+ "feature_id":"5b421436-2ee4-44da-ba75-7ebcc2d1af0d",
+ "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.56,
+ "heightmax":5.74,
+ "elevmin":24.82,
+ "elevmax":25.16,
+ "bldgarea":180.04,
+ "comment":" ",
+ "OBJECTID_2":86089,
+ "Shape_Le_1":0.000621123596088,
+ "Shape_Ar_1":2.07399449982e-08,
+ "OBJECTID_3":86089,
+ "Join_Cou_1":1,
+ "TARGET_F_1":86088,
+ "g_objectid":"943132",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161337",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1990",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994164484980000000",
+ "g_sup_tota":"946.7",
+ "g_geometry":"0.0013483",
+ "g_geomet_1":"1.09116e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000621123596088,
+ "Shape_Area":2.07399449982e-08,
+ "Shape_Le_3":0.000621123811341,
+ "Shape_Ar_2":2.07399449982e-08,
+ "building_height":2.59
+ }
+ },
+ {
+ "type":"Feature",
+ "id":859,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54668266499483,
+ 45.5307798499604
+ ],
+ [
+ -73.54672326488861,
+ 45.53079675002029
+ ],
+ [
+ -73.54675066543271,
+ 45.53076424942087
+ ],
+ [
+ -73.54671016536369,
+ 45.5307473502603
+ ],
+ [
+ -73.54668266499483,
+ 45.5307798499604
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":859,
+ "ID_UEV":"01019065",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc pour la r\u00c3\u00a9cr\u00c3\u00a9ation en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-24-0715-1-000-0000",
+ "SUPERFICIE":8074,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000172943953321,
+ "OBJECTID":86100,
+ "Join_Count":1,
+ "TARGET_FID":86100,
+ "feature_id":"fc4dcced-8468-4d87-8ea8-a0ec207e0a10",
+ "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.5,
+ "heightmax":3.59,
+ "elevmin":19.82,
+ "elevmax":20.18,
+ "bldgarea":15.49,
+ "comment":" ",
+ "OBJECTID_2":86100,
+ "Shape_Le_1":0.000172943953321,
+ "Shape_Ar_1":1.78177999863e-09,
+ "OBJECTID_3":86100,
+ "Join_Cou_1":1,
+ "TARGET_F_1":86099,
+ "g_objectid":"938564",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"1425134",
+ "g_nb_poly_":"1",
+ "g_utilisat":"7611",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014324071510000000",
+ "g_sup_tota":"8074",
+ "g_geometry":"0.00409113",
+ "g_geomet_1":"9.29975e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000172943953321,
+ "Shape_Area":1.78177999863e-09,
+ "Shape_Le_3":0.000172944437033,
+ "Shape_Ar_2":1.78177999863e-09,
+ "building_height":0.5449999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":860,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54563284230368,
+ 45.52888465555271
+ ],
+ [
+ -73.54580960225319,
+ 45.528966174599574
+ ],
+ [
+ -73.54586943684687,
+ 45.52889061715855
+ ],
+ [
+ -73.5456990135205,
+ 45.528814908631425
+ ],
+ [
+ -73.54563284230368,
+ 45.52888465555271
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":860,
+ "ID_UEV":"01018804",
+ "CIVIQUE_DE":" 569",
+ "CIVIQUE_FI":" 579",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-22-2823-5-000-0000",
+ "SUPERFICIE":292,
+ "SUPERFIC_1":423,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000573657959636,
+ "OBJECTID":86103,
+ "Join_Count":1,
+ "TARGET_FID":86103,
+ "feature_id":"b1c1a3c9-57c2-4c87-9e32-cf381a530a2c",
+ "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":10.77,
+ "elevmin":19,
+ "elevmax":19.66,
+ "bldgarea":268.93,
+ "comment":" ",
+ "OBJECTID_2":86103,
+ "Shape_Le_1":0.000573657959636,
+ "Shape_Ar_1":1.75647791185e-08,
+ "OBJECTID_3":86103,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86102,
+ "g_objectid":"940727",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424332",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014322401560000000",
+ "g_sup_tota":"227.1",
+ "g_geometry":"0.000661985",
+ "g_geomet_1":"2.58113e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000573657959636,
+ "Shape_Area":1.75647791185e-08,
+ "Shape_Le_3":0.000573656933513,
+ "Shape_Ar_2":1.75647791185e-08,
+ "building_height":5.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":861,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55007806347369,
+ 45.53031821806161
+ ],
+ [
+ -73.55015073409095,
+ 45.530350591856624
+ ],
+ [
+ -73.55024004486403,
+ 45.530251552217656
+ ],
+ [
+ -73.55017976600524,
+ 45.53022504919696
+ ],
+ [
+ -73.55017516597297,
+ 45.53022314892947
+ ],
+ [
+ -73.55015316585776,
+ 45.53025104859731
+ ],
+ [
+ -73.55014240457015,
+ 45.530246869447765
+ ],
+ [
+ -73.55007806347369,
+ 45.53031821806161
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":861,
+ "ID_UEV":"01018714",
+ "CIVIQUE_DE":" 1674",
+ "CIVIQUE_FI":" 1678",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-7971-1-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":278,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000426892552094,
+ "OBJECTID":86117,
+ "Join_Count":1,
+ "TARGET_FID":86117,
+ "feature_id":"16cb361e-6d2c-4f37-bd8c-6dbc953e0ff8",
+ "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.44,
+ "heightmax":34.14,
+ "elevmin":20.45,
+ "elevmax":22.01,
+ "bldgarea":1494.3,
+ "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_2":86117,
+ "Shape_Le_1":0.000426892552094,
+ "Shape_Ar_1":9.72057226206e-09,
+ "OBJECTID_3":86117,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86116,
+ "g_objectid":"940681",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424267",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383866740000000",
+ "g_sup_tota":"212.5",
+ "g_geometry":"0.000683496",
+ "g_geomet_1":"2.41608e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000426892552094,
+ "Shape_Area":9.72057226206e-09,
+ "Shape_Le_3":0.000426891430889,
+ "Shape_Ar_2":9.72057226206e-09,
+ "building_height":15.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":862,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56174389728487,
+ 45.51242328855422
+ ],
+ [
+ -73.56198002148265,
+ 45.51253020895228
+ ],
+ [
+ -73.56205930481491,
+ 45.51244432189823
+ ],
+ [
+ -73.56182149618695,
+ 45.51233758316323
+ ],
+ [
+ -73.56174389728487,
+ 45.51242328855422
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":862,
+ "ID_UEV":"01021657",
+ "CIVIQUE_DE":" 255",
+ "CIVIQUE_FI":" 259",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-93-6392-6-000-0000",
+ "SUPERFICIE":254,
+ "SUPERFIC_1":1058,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000752413336801,
+ "OBJECTID":86119,
+ "Join_Count":1,
+ "TARGET_FID":86119,
+ "feature_id":"e7f1740f-b567-47da-8fe0-1b455b1e0fdf",
+ "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":32.53,
+ "elevmin":25.02,
+ "elevmax":26.47,
+ "bldgarea":3711.13,
+ "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_2":86119,
+ "Shape_Le_1":0.000752413336801,
+ "Shape_Ar_1":2.87154093186e-08,
+ "OBJECTID_3":86119,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86118,
+ "g_objectid":"943321",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161730",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994194670400000000",
+ "g_sup_tota":"372.1",
+ "g_geometry":"0.000923814",
+ "g_geomet_1":"4.20502e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000752413336801,
+ "Shape_Area":2.87154093186e-08,
+ "Shape_Le_3":0.000752412373354,
+ "Shape_Ar_2":2.87154093186e-08,
+ "building_height":16.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":863,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55676866606294,
+ 45.52123779214069
+ ],
+ [
+ -73.5568994301864,
+ 45.52129849547948
+ ],
+ [
+ -73.55696514634627,
+ 45.5212280758653
+ ],
+ [
+ -73.55683976736321,
+ 45.52117204810183
+ ],
+ [
+ -73.55680426752477,
+ 45.52121134757593
+ ],
+ [
+ -73.55679655673755,
+ 45.521207904971135
+ ],
+ [
+ -73.55676866606294,
+ 45.52123779214069
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55687122295042,
+ 45.521127894087336
+ ],
+ [
+ -73.55687276708638,
+ 45.52112864771921
+ ],
+ [
+ -73.55690226754746,
+ 45.521099547456444
+ ],
+ [
+ -73.55699686723348,
+ 45.521147047848274
+ ],
+ [
+ -73.55702677149016,
+ 45.52116203864746
+ ],
+ [
+ -73.55710510603765,
+ 45.52107809592768
+ ],
+ [
+ -73.55697408380877,
+ 45.52101766868076
+ ],
+ [
+ -73.55687122295042,
+ 45.521127894087336
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":863,
+ "ID_UEV":"01021937",
+ "CIVIQUE_DE":" 1597",
+ "CIVIQUE_FI":" 1601",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-5160-0-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":197,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00107242721961,
+ "OBJECTID":86124,
+ "Join_Count":2,
+ "TARGET_FID":86124,
+ "feature_id":"41291e4a-6d60-455b-bb60-125d16656d2d",
+ "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.57,
+ "heightmax":8.02,
+ "elevmin":26.85,
+ "elevmax":27.55,
+ "bldgarea":213.06,
+ "comment":" ",
+ "OBJECTID_2":86124,
+ "Shape_Le_1":0.00107242721961,
+ "Shape_Ar_1":2.81399943366e-08,
+ "OBJECTID_3":86124,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86123,
+ "g_objectid":"942149",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567464",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004233787930000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.00093205",
+ "g_geomet_1":"4.4297e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00107242721961,
+ "Shape_Area":2.81399943366e-08,
+ "Shape_Le_3":0.00107242723582,
+ "Shape_Ar_2":2.81399943366e-08,
+ "building_height":2.7249999999999996
+ }
+ },
+ {
+ "type":"Feature",
+ "id":864,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5499915217132,
+ 45.5227925544831
+ ],
+ [
+ -73.54997226542955,
+ 45.52278274827551
+ ],
+ [
+ -73.54998236481613,
+ 45.52277314801267
+ ],
+ [
+ -73.5499820653419,
+ 45.522773247837414
+ ],
+ [
+ -73.54987096489496,
+ 45.52272104758857
+ ],
+ [
+ -73.54985986546227,
+ 45.522731747722275
+ ],
+ [
+ -73.54983776552231,
+ 45.52272034791602
+ ],
+ [
+ -73.54974717231599,
+ 45.52282138225129
+ ],
+ [
+ -73.54975777352428,
+ 45.52282632042864
+ ],
+ [
+ -73.54990410131506,
+ 45.52288430781485
+ ],
+ [
+ -73.5499915217132,
+ 45.5227925544831
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":864,
+ "ID_UEV":"01022166",
+ "CIVIQUE_DE":" 1190",
+ "CIVIQUE_FI":" 1200",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-95-0342-8-000-0000",
+ "SUPERFICIE":263,
+ "SUPERFIC_1":555,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000630425440494,
+ "OBJECTID":86128,
+ "Join_Count":1,
+ "TARGET_FID":86128,
+ "feature_id":"e5135906-da4d-4532-b35a-0ec9cb7c5328",
+ "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.58,
+ "heightmax":29.44,
+ "elevmin":16.79,
+ "elevmax":17.79,
+ "bldgarea":838.11,
+ "comment":" ",
+ "OBJECTID_2":86128,
+ "Shape_Le_1":0.000630425440494,
+ "Shape_Ar_1":2.26923461872e-08,
+ "OBJECTID_3":86128,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86127,
+ "g_objectid":"942345",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729132",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004285915150000000",
+ "g_sup_tota":"250.8",
+ "g_geometry":"0.000700533",
+ "g_geomet_1":"2.90389e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000630425440494,
+ "Shape_Area":2.26923461872e-08,
+ "Shape_Le_3":0.000630423678951,
+ "Shape_Ar_2":2.26923461872e-08,
+ "building_height":13.43
+ }
+ },
+ {
+ "type":"Feature",
+ "id":865,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55643608328046,
+ 45.51940823745049
+ ],
+ [
+ -73.55649767514943,
+ 45.51943645907562
+ ],
+ [
+ -73.55654586711992,
+ 45.51938444678509
+ ],
+ [
+ -73.55655577135362,
+ 45.519388976670236
+ ],
+ [
+ -73.55665804225669,
+ 45.519279886208075
+ ],
+ [
+ -73.55658691847336,
+ 45.51924734513916
+ ],
+ [
+ -73.55643608328046,
+ 45.51940823745049
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":865,
+ "ID_UEV":"01040447",
+ "CIVIQUE_DE":" 1477",
+ "CIVIQUE_FI":" 1481",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-8158-5-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":315,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000597834437744,
+ "OBJECTID":86188,
+ "Join_Count":1,
+ "TARGET_FID":86188,
+ "feature_id":"e0a10f49-7096-4575-8fca-89c3fee73be5",
+ "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.48,
+ "heightmax":15.08,
+ "elevmin":21.26,
+ "elevmax":26.35,
+ "bldgarea":3110.46,
+ "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_2":86188,
+ "Shape_Le_1":0.000597834437744,
+ "Shape_Ar_1":1.5634659656e-08,
+ "OBJECTID_3":86188,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86187,
+ "g_objectid":"941796",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566545",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004231895390000000",
+ "g_sup_tota":"310.6",
+ "g_geometry":"0.000796631",
+ "g_geomet_1":"3.57179e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000597834437744,
+ "Shape_Area":1.5634659656e-08,
+ "Shape_Le_3":0.000597833939208,
+ "Shape_Ar_2":1.5634659656e-08,
+ "building_height":6.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":866,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55643526219943,
+ 45.51940786153388
+ ],
+ [
+ -73.55643608328046,
+ 45.51940823745049
+ ],
+ [
+ -73.55658691847336,
+ 45.51924734513916
+ ],
+ [
+ -73.55655566703226,
+ 45.51923304681795
+ ],
+ [
+ -73.5565551670092,
+ 45.51923354684101
+ ],
+ [
+ -73.55649966714776,
+ 45.51920274685958
+ ],
+ [
+ -73.55650196671424,
+ 45.519200746767346
+ ],
+ [
+ -73.5564554780597,
+ 45.519173231110024
+ ],
+ [
+ -73.55629553183518,
+ 45.51934383969674
+ ],
+ [
+ -73.55636580755782,
+ 45.51937603902328
+ ],
+ [
+ -73.55643526219943,
+ 45.51940786153388
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":866,
+ "ID_UEV":"01040448",
+ "CIVIQUE_DE":" 1465",
+ "CIVIQUE_FI":" 1473",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-8953-9-000-0000",
+ "SUPERFICIE":311,
+ "SUPERFIC_1":598,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000764617590791,
+ "OBJECTID":86192,
+ "Join_Count":1,
+ "TARGET_FID":86192,
+ "feature_id":"e0a10f49-7096-4575-8fca-89c3fee73be5",
+ "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.48,
+ "heightmax":15.08,
+ "elevmin":21.26,
+ "elevmax":26.35,
+ "bldgarea":3110.46,
+ "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_2":86192,
+ "Shape_Le_1":0.000764617590791,
+ "Shape_Ar_1":3.29843054874e-08,
+ "OBJECTID_3":86192,
+ "Join_Cou_1":7,
+ "TARGET_F_1":86191,
+ "g_objectid":"941797",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566548",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004241007580000000",
+ "g_sup_tota":"151.3",
+ "g_geometry":"0.00063391",
+ "g_geomet_1":"1.74739e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000764617590791,
+ "Shape_Area":3.29843054874e-08,
+ "Shape_Le_3":0.000764617073541,
+ "Shape_Ar_2":3.29843054874e-08,
+ "building_height":6.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":867,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55616296547032,
+ 45.51928309858643
+ ],
+ [
+ -73.55629553183518,
+ 45.51934383969674
+ ],
+ [
+ -73.5564554780597,
+ 45.519173231110024
+ ],
+ [
+ -73.556427966899,
+ 45.51915694708573
+ ],
+ [
+ -73.55642786707425,
+ 45.51915714673523
+ ],
+ [
+ -73.55632186668265,
+ 45.519227147265326
+ ],
+ [
+ -73.5563215672084,
+ 45.51922724709008
+ ],
+ [
+ -73.55633336721297,
+ 45.51920094641684
+ ],
+ [
+ -73.55636616728664,
+ 45.51912864721959
+ ],
+ [
+ -73.55636626711139,
+ 45.51912864721959
+ ],
+ [
+ -73.55632786695934,
+ 45.51911054656477
+ ],
+ [
+ -73.55632536684405,
+ 45.51911334705362
+ ],
+ [
+ -73.55620136742101,
+ 45.5192473469378
+ ],
+ [
+ -73.55620126669695,
+ 45.519247446762556
+ ],
+ [
+ -73.55622726699661,
+ 45.51926004716374
+ ],
+ [
+ -73.55620746752246,
+ 45.519280047186726
+ ],
+ [
+ -73.5561795669553,
+ 45.51926634691468
+ ],
+ [
+ -73.55616296547032,
+ 45.51928309858643
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":867,
+ "ID_UEV":"01040449",
+ "CIVIQUE_DE":" 1439",
+ "CIVIQUE_FI":" 1461",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-41-0046-9-000-0000",
+ "SUPERFICIE":303,
+ "SUPERFIC_1":664,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000988154129108,
+ "OBJECTID":86193,
+ "Join_Count":1,
+ "TARGET_FID":86193,
+ "feature_id":"e0a10f49-7096-4575-8fca-89c3fee73be5",
+ "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.48,
+ "heightmax":15.08,
+ "elevmin":21.26,
+ "elevmax":26.35,
+ "bldgarea":3110.46,
+ "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_2":86193,
+ "Shape_Le_1":0.000988154129108,
+ "Shape_Ar_1":2.766595577e-08,
+ "OBJECTID_3":86193,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86192,
+ "g_objectid":"941768",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566547",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004241004690000000",
+ "g_sup_tota":"303.4",
+ "g_geometry":"0.000788833",
+ "g_geomet_1":"3.48401e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000988154129108,
+ "Shape_Area":2.766595577e-08,
+ "Shape_Le_3":0.000988153908395,
+ "Shape_Ar_2":2.766595577e-08,
+ "building_height":6.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":868,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55466782098499,
+ 45.51856507356958
+ ],
+ [
+ -73.55471331409002,
+ 45.51858599719631
+ ],
+ [
+ -73.55485875514927,
+ 45.518423836840896
+ ],
+ [
+ -73.55481366583984,
+ 45.5184039465352
+ ],
+ [
+ -73.5546859657066,
+ 45.51834764717647
+ ],
+ [
+ -73.55468396651369,
+ 45.51834664713036
+ ],
+ [
+ -73.55460386569769,
+ 45.5184276472684
+ ],
+ [
+ -73.5547378664812,
+ 45.518493046866915
+ ],
+ [
+ -73.55469516577112,
+ 45.518536346525465
+ ],
+ [
+ -73.55468096637534,
+ 45.51852944692673
+ ],
+ [
+ -73.55468066600179,
+ 45.51852984712504
+ ],
+ [
+ -73.55466121996118,
+ 45.51856203745836
+ ],
+ [
+ -73.55466782098499,
+ 45.51856507356958
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":868,
+ "ID_UEV":"01040452",
+ "CIVIQUE_DE":" 1253",
+ "CIVIQUE_FI":" 1267",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-2760-4-000-0000",
+ "SUPERFICIE":435,
+ "SUPERFIC_1":507,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000843977938215,
+ "OBJECTID":86194,
+ "Join_Count":1,
+ "TARGET_FID":86194,
+ "feature_id":"b35f7769-57de-4caa-995d-de306f41706a",
+ "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.5,
+ "heightmax":13.19,
+ "elevmin":19.52,
+ "elevmax":21.19,
+ "bldgarea":843.63,
+ "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_2":86194,
+ "Shape_Le_1":0.000843977938215,
+ "Shape_Ar_1":2.6348987807e-08,
+ "OBJECTID_3":86194,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86193,
+ "g_objectid":"941851",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004250328770000000",
+ "g_sup_tota":"219.6",
+ "g_geometry":"0.000741341",
+ "g_geomet_1":"2.4946e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000843977938215,
+ "Shape_Area":2.6348987807e-08,
+ "Shape_Le_3":0.00084397880606,
+ "Shape_Ar_2":2.6348987807e-08,
+ "building_height":5.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":869,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56909295739591,
+ 45.51252391010067
+ ],
+ [
+ -73.5692401988979,
+ 45.512591182087675
+ ],
+ [
+ -73.56926699689623,
+ 45.51253176298077
+ ],
+ [
+ -73.5692698954112,
+ 45.5125254821156
+ ],
+ [
+ -73.56923080278116,
+ 45.512507806840105
+ ],
+ [
+ -73.5691375637694,
+ 45.51247488176068
+ ],
+ [
+ -73.56909295739591,
+ 45.51252391010067
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":869,
+ "ID_UEV":"01021771",
+ "CIVIQUE_DE":" 2",
+ "CIVIQUE_FI":" 4",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1942,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-34-9403-2-000-0000",
+ "SUPERFICIE":95,
+ "SUPERFIC_1":264,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000442048978658,
+ "OBJECTID":86213,
+ "Join_Count":1,
+ "TARGET_FID":86213,
+ "feature_id":"1b8cd12e-03a6-4b37-8054-97cb980c1719",
+ "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":34.26,
+ "elevmin":34.35,
+ "elevmax":43.21,
+ "bldgarea":4050.53,
+ "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_2":86213,
+ "Shape_Le_1":0.000442048978658,
+ "Shape_Ar_1":1.03867821873e-08,
+ "OBJECTID_3":86213,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86212,
+ "g_objectid":"943071",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160956",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994143039760000000",
+ "g_sup_tota":"63",
+ "g_geometry":"0.000353042",
+ "g_geomet_1":"7.25216e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000442048978658,
+ "Shape_Area":1.03867821873e-08,
+ "Shape_Le_3":0.000442049265364,
+ "Shape_Ar_2":1.03867821873e-08,
+ "building_height":16.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":870,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55109206616777,
+ 45.53042333981558
+ ],
+ [
+ -73.55110132109094,
+ 45.53042758371631
+ ],
+ [
+ -73.55113176584017,
+ 45.530382049242476
+ ],
+ [
+ -73.55113061111066,
+ 45.53038166792992
+ ],
+ [
+ -73.55109206616777,
+ 45.53042333981558
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55123806750466,
+ 45.53040486414346
+ ],
+ [
+ -73.55124560832002,
+ 45.530408286063846
+ ],
+ [
+ -73.55128610928836,
+ 45.53036450077139
+ ],
+ [
+ -73.55129674287222,
+ 45.53035300473768
+ ],
+ [
+ -73.55130655897236,
+ 45.530357487858076
+ ],
+ [
+ -73.55136434850772,
+ 45.530295009257564
+ ],
+ [
+ -73.5512207078912,
+ 45.53023202793604
+ ],
+ [
+ -73.55110581230524,
+ 45.53035761016587
+ ],
+ [
+ -73.5511185871749,
+ 45.53036346655104
+ ],
+ [
+ -73.55114146592776,
+ 45.53032884894752
+ ],
+ [
+ -73.55118946634265,
+ 45.53034454841247
+ ],
+ [
+ -73.55118966599214,
+ 45.53034434876298
+ ],
+ [
+ -73.55126296613483,
+ 45.53037094891046
+ ],
+ [
+ -73.55123806750466,
+ 45.53040486414346
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":870,
+ "ID_UEV":"01018570",
+ "CIVIQUE_DE":" 1743",
+ "CIVIQUE_FI":" 1749",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-73-9779-7-000-0000",
+ "SUPERFICIE":235,
+ "SUPERFIC_1":245,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000855859376205,
+ "OBJECTID":86235,
+ "Join_Count":1,
+ "TARGET_FID":86235,
+ "feature_id":"79f0d101-b467-4fe9-8aca-3a38a1db9545",
+ "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.56,
+ "heightmax":31.65,
+ "elevmin":19.81,
+ "elevmax":21.09,
+ "bldgarea":1473.85,
+ "comment":" ",
+ "OBJECTID_2":86235,
+ "Shape_Le_1":0.000855859376205,
+ "Shape_Ar_1":1.87656213472e-08,
+ "OBJECTID_3":86235,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86234,
+ "g_objectid":"944688",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004373977970000000",
+ "g_sup_tota":"235.2",
+ "g_geometry":"0.000811301",
+ "g_geomet_1":"2.7088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000855859376205,
+ "Shape_Area":1.87656213472e-08,
+ "Shape_Le_3":0.000855857980129,
+ "Shape_Ar_2":1.87656213472e-08,
+ "building_height":14.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":871,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56073171931524,
+ 45.53044368967483
+ ],
+ [
+ -73.56079892655106,
+ 45.53047555805086
+ ],
+ [
+ -73.56090018931413,
+ 45.530366988296166
+ ],
+ [
+ -73.56083296409186,
+ 45.53033497782726
+ ],
+ [
+ -73.56073171931524,
+ 45.53044368967483
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":871,
+ "ID_UEV":"01022517",
+ "CIVIQUE_DE":" 2280",
+ "CIVIQUE_FI":" 2284",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-4785-6-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":243,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000445856893102,
+ "OBJECTID":86237,
+ "Join_Count":1,
+ "TARGET_FID":86237,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":86237,
+ "Shape_Le_1":0.000445856893102,
+ "Shape_Ar_1":1.05363649569e-08,
+ "OBJECTID_3":86237,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86236,
+ "g_objectid":"940360",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423692",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303428990000000",
+ "g_sup_tota":"180.7",
+ "g_geometry":"0.000735109",
+ "g_geomet_1":"2.10258e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000445856893102,
+ "Shape_Area":1.05363649569e-08,
+ "Shape_Le_3":0.000445857064965,
+ "Shape_Ar_2":1.05363649569e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":872,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55937736729351,
+ 45.50879214449217
+ ],
+ [
+ -73.55938236752408,
+ 45.50879434513322
+ ],
+ [
+ -73.55940266702132,
+ 45.50877034492577
+ ],
+ [
+ -73.55949306687339,
+ 45.50866344521212
+ ],
+ [
+ -73.55945326737623,
+ 45.508646844626476
+ ],
+ [
+ -73.55946916739,
+ 45.50862804519842
+ ],
+ [
+ -73.55946556740386,
+ 45.508626344580435
+ ],
+ [
+ -73.55888836722622,
+ 45.50834964477058
+ ],
+ [
+ -73.55888636713398,
+ 45.50835174468756
+ ],
+ [
+ -73.5587782668254,
+ 45.50846864486237
+ ],
+ [
+ -73.5589130671062,
+ 45.50854214465455
+ ],
+ [
+ -73.55908566679193,
+ 45.50863644486633
+ ],
+ [
+ -73.55908016743763,
+ 45.50864134527216
+ ],
+ [
+ -73.55910956717463,
+ 45.508660144700215
+ ],
+ [
+ -73.55912246705006,
+ 45.508668444543375
+ ],
+ [
+ -73.55915276700844,
+ 45.508686144999885
+ ],
+ [
+ -73.55931716667574,
+ 45.50878224475509
+ ],
+ [
+ -73.55931746704931,
+ 45.50878244440458
+ ],
+ [
+ -73.55932976707693,
+ 45.508769645253224
+ ],
+ [
+ -73.55937736729351,
+ 45.50879214449217
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":872,
+ "ID_UEV":"01020705",
+ "CIVIQUE_DE":" 1001",
+ "CIVIQUE_FI":" 1001",
+ "NOM_RUE":"rue Saint-Dominique (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":8,
+ "NOMBRE_LOG":82,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-19-8759-9-000-0000",
+ "SUPERFICIE":2376,
+ "SUPERFIC_1":7407,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00175493850206,
+ "OBJECTID":86238,
+ "Join_Count":1,
+ "TARGET_FID":86238,
+ "feature_id":"db1966d4-c333-4fa5-9a47-9868c9676807",
+ "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,
+ "heightmax":27.37,
+ "elevmin":13.59,
+ "elevmax":17.42,
+ "bldgarea":1058.92,
+ "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_2":86238,
+ "Shape_Le_1":0.00175493850206,
+ "Shape_Ar_1":1.21944960002e-07,
+ "OBJECTID_3":86238,
+ "Join_Cou_1":1,
+ "TARGET_F_1":86237,
+ "g_objectid":"939525",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180683",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"82",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019875990000000",
+ "g_sup_tota":"2375.9",
+ "g_geometry":"0.00278753",
+ "g_geomet_1":"2.73561e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00175493850206,
+ "Shape_Area":1.21944960002e-07,
+ "Shape_Le_3":0.00175493671455,
+ "Shape_Ar_2":1.21944960002e-07,
+ "building_height":13.185
+ }
+ },
+ {
+ "type":"Feature",
+ "id":873,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55088439741886,
+ 45.52887339424205
+ ],
+ [
+ -73.55088939135418,
+ 45.52887574776784
+ ],
+ [
+ -73.55090006630687,
+ 45.52886534890702
+ ],
+ [
+ -73.55100442903301,
+ 45.52891801770265
+ ],
+ [
+ -73.5510622887155,
+ 45.52885697442013
+ ],
+ [
+ -73.55097026648646,
+ 45.52881234916088
+ ],
+ [
+ -73.55096996611289,
+ 45.528812248436815
+ ],
+ [
+ -73.55095446629743,
+ 45.528827348953286
+ ],
+ [
+ -73.55093618038227,
+ 45.52881808503689
+ ],
+ [
+ -73.55088439741886,
+ 45.52887339424205
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5509720183658,
+ 45.52877980809197
+ ],
+ [
+ -73.55097446632041,
+ 45.528780848607575
+ ],
+ [
+ -73.55097456614516,
+ 45.52878094843232
+ ],
+ [
+ -73.55099496636645,
+ 45.52875714877369
+ ],
+ [
+ -73.55111052924937,
+ 45.52880608178554
+ ],
+ [
+ -73.55119659526851,
+ 45.52871528263448
+ ],
+ [
+ -73.55107993251472,
+ 45.52866454558261
+ ],
+ [
+ -73.5509720183658,
+ 45.52877980809197
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":873,
+ "ID_UEV":"01018446",
+ "CIVIQUE_DE":" 1659",
+ "CIVIQUE_FI":" 1661",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-82-1208-6-000-0000",
+ "SUPERFICIE":330,
+ "SUPERFIC_1":294,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00101178916524,
+ "OBJECTID":86239,
+ "Join_Count":2,
+ "TARGET_FID":86239,
+ "feature_id":"ef9f99e9-b72a-459d-a003-11d6da78defc",
+ "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.48,
+ "heightmax":34.11,
+ "elevmin":18.43,
+ "elevmax":20.99,
+ "bldgarea":2146.82,
+ "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_2":86239,
+ "Shape_Le_1":0.00101178916524,
+ "Shape_Ar_1":2.45233800437e-08,
+ "OBJECTID_3":86239,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86238,
+ "g_objectid":"940790",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424438",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004381179880000000",
+ "g_sup_tota":"187.6",
+ "g_geometry":"0.000631896",
+ "g_geomet_1":"2.14017e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00101178916524,
+ "Shape_Area":2.45233800437e-08,
+ "Shape_Le_3":0.00101178792389,
+ "Shape_Ar_2":2.45233800437e-08,
+ "building_height":15.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":874,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55350845547268,
+ 45.53083960361511
+ ],
+ [
+ -73.5536014067014,
+ 45.53088108304584
+ ],
+ [
+ -73.55367304579627,
+ 45.53080091568001
+ ],
+ [
+ -73.55351416706701,
+ 45.530734748959794
+ ],
+ [
+ -73.55343903590463,
+ 45.53080874158046
+ ],
+ [
+ -73.55348046677197,
+ 45.53082711472985
+ ],
+ [
+ -73.55350845547268,
+ 45.53083960361511
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":874,
+ "ID_UEV":"01018381",
+ "CIVIQUE_DE":" 2366",
+ "CIVIQUE_FI":" 2376",
+ "NOM_RUE":"rue Coupal (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-1930-3-000-0000",
+ "SUPERFICIE":254,
+ "SUPERFIC_1":492,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000562825468529,
+ "OBJECTID":86241,
+ "Join_Count":1,
+ "TARGET_FID":86241,
+ "feature_id":"64327623-bd14-48c1-acc8-725e7bfa31df",
+ "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.44,
+ "heightmax":29.18,
+ "elevmin":17.32,
+ "elevmax":19.1,
+ "bldgarea":1216.94,
+ "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_2":86241,
+ "Shape_Le_1":0.000562825468529,
+ "Shape_Ar_1":1.74562026373e-08,
+ "OBJECTID_3":86241,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86240,
+ "g_objectid":"944309",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3748820",
+ "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":"66023004364244930020002",
+ "g_sup_tota":"43.3",
+ "g_geometry":"0.000377435",
+ "g_geomet_1":"5.15706e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000562825468529,
+ "Shape_Area":1.74562026373e-08,
+ "Shape_Le_3":0.000562825300139,
+ "Shape_Ar_2":1.74562026373e-08,
+ "building_height":13.37
+ }
+ },
+ {
+ "type":"Feature",
+ "id":875,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54982898634049,
+ 45.53156534481511
+ ],
+ [
+ -73.54998498094396,
+ 45.531631679708546
+ ],
+ [
+ -73.55002721040928,
+ 45.53158236808212
+ ],
+ [
+ -73.54987386610787,
+ 45.53151865021583
+ ],
+ [
+ -73.54986836585425,
+ 45.531516349750035
+ ],
+ [
+ -73.54982898634049,
+ 45.53156534481511
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":875,
+ "ID_UEV":"01019224",
+ "CIVIQUE_DE":" 2526",
+ "CIVIQUE_FI":" 2530",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-95-0415-0-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":288,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000469312251985,
+ "OBJECTID":86245,
+ "Join_Count":1,
+ "TARGET_FID":86245,
+ "feature_id":"e29c5e48-419c-4e22-a88a-6579cec09119",
+ "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.97,
+ "heightmax":36.11,
+ "elevmin":23.36,
+ "elevmax":24.7,
+ "bldgarea":236.86,
+ "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_2":86245,
+ "Shape_Le_1":0.000469312251985,
+ "Shape_Ar_1":1.0436897284e-08,
+ "OBJECTID_3":86245,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86244,
+ "g_objectid":"941236",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425193",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004395041500000000",
+ "g_sup_tota":"167.2",
+ "g_geometry":"0.000720516",
+ "g_geomet_1":"1.92921e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000469312251985,
+ "Shape_Area":1.0436897284e-08,
+ "Shape_Le_3":0.00046931225127,
+ "Shape_Ar_2":1.0436897284e-08,
+ "building_height":17.07
+ }
+ },
+ {
+ "type":"Feature",
+ "id":876,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54991501189014,
+ 45.53138556674081
+ ],
+ [
+ -73.5499108660155,
+ 45.53139045005952
+ ],
+ [
+ -73.54989546602478,
+ 45.53138404958452
+ ],
+ [
+ -73.54989506582648,
+ 45.53138454960757
+ ],
+ [
+ -73.54981986631562,
+ 45.53147274971792
+ ],
+ [
+ -73.55002666631944,
+ 45.531559849957404
+ ],
+ [
+ -73.55010396574727,
+ 45.531469249556515
+ ],
+ [
+ -73.55011877218543,
+ 45.53147544858338
+ ],
+ [
+ -73.55012080285461,
+ 45.53147307797047
+ ],
+ [
+ -73.55005176369978,
+ 45.53144371960227
+ ],
+ [
+ -73.55005156584893,
+ 45.53144394982872
+ ],
+ [
+ -73.54994576600615,
+ 45.53139884972743
+ ],
+ [
+ -73.54994589640783,
+ 45.531398699540645
+ ],
+ [
+ -73.54993718827247,
+ 45.53139499703178
+ ],
+ [
+ -73.54991501189014,
+ 45.53138556674081
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":876,
+ "ID_UEV":"01019226",
+ "CIVIQUE_DE":" 2520",
+ "CIVIQUE_FI":" 2520",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres activit\u00c3\u00a9s religieuses",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-85-9907-8-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":216,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000726387350342,
+ "OBJECTID":86246,
+ "Join_Count":1,
+ "TARGET_FID":86246,
+ "feature_id":"3716b9b7-0f13-48c4-b106-e0228f8f238a",
+ "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.47,
+ "heightmax":34.98,
+ "elevmin":22.8,
+ "elevmax":24.1,
+ "bldgarea":643.53,
+ "comment":" ",
+ "OBJECTID_2":86246,
+ "Shape_Le_1":0.000726387350342,
+ "Shape_Ar_1":2.61636401149e-08,
+ "OBJECTID_3":86246,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86245,
+ "g_objectid":"938492",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1425192",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6919",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004385990780000000",
+ "g_sup_tota":"334.5",
+ "g_geometry":"0.000860216",
+ "g_geomet_1":"3.86203e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000726387350342,
+ "Shape_Area":2.61636401149e-08,
+ "Shape_Le_3":0.000726388588304,
+ "Shape_Ar_2":2.61636401149e-08,
+ "building_height":16.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":877,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55168963868772,
+ 45.53103394890791
+ ],
+ [
+ -73.55176304045379,
+ 45.53106666354598
+ ],
+ [
+ -73.55184950397327,
+ 45.53097005387518
+ ],
+ [
+ -73.55184886635395,
+ 45.530969848829756
+ ],
+ [
+ -73.55177080789831,
+ 45.53094470828196
+ ],
+ [
+ -73.55168963868772,
+ 45.53103394890791
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":877,
+ "ID_UEV":"01018736",
+ "CIVIQUE_DE":" 1832",
+ "CIVIQUE_FI":" 1834",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-74-5249-3-000-0000",
+ "SUPERFICIE":176,
+ "SUPERFIC_1":140,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00041332319745,
+ "OBJECTID":86251,
+ "Join_Count":1,
+ "TARGET_FID":86251,
+ "feature_id":"12dcaefd-3554-4490-b1b3-7ddb4c1195d1",
+ "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.46,
+ "heightmax":33.5,
+ "elevmin":19.08,
+ "elevmax":21.19,
+ "bldgarea":1785.7,
+ "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_2":86251,
+ "Shape_Le_1":0.00041332319745,
+ "Shape_Ar_1":9.50006075709e-09,
+ "OBJECTID_3":86251,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86250,
+ "g_objectid":"940653",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424224",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004374524930000000",
+ "g_sup_tota":"176.1",
+ "g_geometry":"0.000719451",
+ "g_geomet_1":"2.11222e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00041332319745,
+ "Shape_Area":9.50006075709e-09,
+ "Shape_Le_3":0.000413322995698,
+ "Shape_Ar_2":9.50006075709e-09,
+ "building_height":15.52
+ }
+ },
+ {
+ "type":"Feature",
+ "id":878,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54837926571238,
+ 45.527080120901154
+ ],
+ [
+ -73.54831743102646,
+ 45.527144372964734
+ ],
+ [
+ -73.54853374226025,
+ 45.52724531107254
+ ],
+ [
+ -73.54858496494602,
+ 45.527192048724366
+ ],
+ [
+ -73.54858826545792,
+ 45.52718864928703
+ ],
+ [
+ -73.54858006543951,
+ 45.52718474892732
+ ],
+ [
+ -73.54858700640706,
+ 45.52717753816315
+ ],
+ [
+ -73.54837926571238,
+ 45.527080120901154
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":878,
+ "ID_UEV":"01019436",
+ "CIVIQUE_DE":" 2281",
+ "CIVIQUE_FI":" 2281",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-00-1031-2-000-0000",
+ "SUPERFICIE":275,
+ "SUPERFIC_1":493,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000655046319826,
+ "OBJECTID":86252,
+ "Join_Count":1,
+ "TARGET_FID":86252,
+ "feature_id":"5841b2bb-0930-4510-9ab5-fbfc5ebc1aab",
+ "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":14.6,
+ "elevmin":18.92,
+ "elevmax":20.09,
+ "bldgarea":305.79,
+ "comment":" ",
+ "OBJECTID_2":86252,
+ "Shape_Le_1":0.000655046319826,
+ "Shape_Ar_1":1.99986168614e-08,
+ "OBJECTID_3":86252,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86251,
+ "g_objectid":"940889",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424588",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014300103120000000",
+ "g_sup_tota":"274.8",
+ "g_geometry":"0.000930595",
+ "g_geomet_1":"3.16774e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000655046319826,
+ "Shape_Area":1.99986168614e-08,
+ "Shape_Le_3":0.000655047110302,
+ "Shape_Ar_2":1.99986168614e-08,
+ "building_height":7.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":879,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5535735690868,
+ 45.53053329992215
+ ],
+ [
+ -73.55369426709859,
+ 45.53058854887273
+ ],
+ [
+ -73.55369736706169,
+ 45.5305900489419
+ ],
+ [
+ -73.5537033151777,
+ 45.53058395243775
+ ],
+ [
+ -73.5536963031637,
+ 45.530580660919064
+ ],
+ [
+ -73.5535800801784,
+ 45.530526099050526
+ ],
+ [
+ -73.5535735690868,
+ 45.53053329992215
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":879,
+ "ID_UEV":"01018382",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Coupal (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc pour la r\u00c3\u00a9cr\u00c3\u00a9ation en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-1117-7-000-0000",
+ "SUPERFICIE":465,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000290550518694,
+ "OBJECTID":86254,
+ "Join_Count":1,
+ "TARGET_FID":86254,
+ "feature_id":"f9dffb6a-2571-438d-9a1a-6b3e22917edc",
+ "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.42,
+ "heightmax":25.37,
+ "elevmin":17.23,
+ "elevmax":18.05,
+ "bldgarea":485.77,
+ "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_2":86254,
+ "Shape_Le_1":0.000290550518694,
+ "Shape_Ar_1":1.17328028302e-09,
+ "OBJECTID_3":86254,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86253,
+ "g_objectid":"940634",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424178",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363269870000000",
+ "g_sup_tota":"172.2",
+ "g_geometry":"0.000714841",
+ "g_geomet_1":"1.99334e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000290550518694,
+ "Shape_Area":1.17328028302e-09,
+ "Shape_Le_3":0.000290550652715,
+ "Shape_Ar_2":1.17328028302e-09,
+ "building_height":11.475000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":880,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55040863627138,
+ 45.52855144414413
+ ],
+ [
+ -73.55044506600883,
+ 45.52856754920333
+ ],
+ [
+ -73.55046486638233,
+ 45.52854544926337
+ ],
+ [
+ -73.55050361097472,
+ 45.52856265869004
+ ],
+ [
+ -73.55061271402738,
+ 45.528448436696294
+ ],
+ [
+ -73.55055806582392,
+ 45.528422548811875
+ ],
+ [
+ -73.55055786617443,
+ 45.528422548811875
+ ],
+ [
+ -73.55055227418994,
+ 45.52840104152514
+ ],
+ [
+ -73.55040863627138,
+ 45.52855144414413
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":880,
+ "ID_UEV":"01018450",
+ "CIVIQUE_DE":" 1625",
+ "CIVIQUE_FI":" 1627",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-81-5679-6-000-0000",
+ "SUPERFICIE":209,
+ "SUPERFIC_1":250,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000560850715296,
+ "OBJECTID":86255,
+ "Join_Count":1,
+ "TARGET_FID":86255,
+ "feature_id":"a9d0e852-07b3-4818-b03a-08e852d8be75",
+ "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.68,
+ "heightmax":30.75,
+ "elevmin":17.73,
+ "elevmax":19.27,
+ "bldgarea":825.88,
+ "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_2":86255,
+ "Shape_Le_1":0.000560850715296,
+ "Shape_Ar_1":1.34402122034e-08,
+ "OBJECTID_3":86255,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86254,
+ "g_objectid":"940804",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424461",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004381617540000000",
+ "g_sup_tota":"209",
+ "g_geometry":"0.000793223",
+ "g_geomet_1":"2.41627e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000560850715296,
+ "Shape_Area":1.34402122034e-08,
+ "Shape_Le_3":0.0005608494497,
+ "Shape_Ar_2":1.34402122034e-08,
+ "building_height":14.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":881,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55895979408108,
+ 45.51016330844023
+ ],
+ [
+ -73.55897766720742,
+ 45.51017114603186
+ ],
+ [
+ -73.55912018906731,
+ 45.51023369388017
+ ],
+ [
+ -73.55920337905455,
+ 45.51013867511006
+ ],
+ [
+ -73.55926120546211,
+ 45.51006061395646
+ ],
+ [
+ -73.55926218212585,
+ 45.51005929465102
+ ],
+ [
+ -73.55913496672717,
+ 45.51000324620315
+ ],
+ [
+ -73.55913476707768,
+ 45.510003145479075
+ ],
+ [
+ -73.55911816739136,
+ 45.51002094576033
+ ],
+ [
+ -73.55908666683806,
+ 45.51005494552961
+ ],
+ [
+ -73.55917966752948,
+ 45.51009744569086
+ ],
+ [
+ -73.55915506747424,
+ 45.51012394601359
+ ],
+ [
+ -73.55903202852714,
+ 45.510067589098256
+ ],
+ [
+ -73.55895979408108,
+ 45.51016330844023
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":881,
+ "ID_UEV":"01020847",
+ "CIVIQUE_DE":" 1070",
+ "CIVIQUE_FI":" 1074",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-11-8234-8-000-0000",
+ "SUPERFICIE":382,
+ "SUPERFIC_1":628,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100382123892,
+ "OBJECTID":86257,
+ "Join_Count":1,
+ "TARGET_FID":86257,
+ "feature_id":"0fef721e-43fb-42f2-97cc-619696231299",
+ "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":36.13,
+ "elevmin":17.15,
+ "elevmax":24.52,
+ "bldgarea":1525.76,
+ "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_2":86257,
+ "Shape_Le_1":0.00100382123892,
+ "Shape_Ar_1":3.20141147447e-08,
+ "OBJECTID_3":86257,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86256,
+ "g_objectid":"939531",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180707",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004111923050000000",
+ "g_sup_tota":"153.3",
+ "g_geometry":"0.000627345",
+ "g_geomet_1":"1.7634e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100382123892,
+ "Shape_Area":3.20141147447e-08,
+ "Shape_Le_3":0.00100382261556,
+ "Shape_Ar_2":3.20141147447e-08,
+ "building_height":17.805
+ }
+ },
+ {
+ "type":"Feature",
+ "id":882,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56300581338942,
+ 45.51097564805801
+ ],
+ [
+ -73.5629523693782,
+ 45.51103764552122
+ ],
+ [
+ -73.5628348864427,
+ 45.51117395306578
+ ],
+ [
+ -73.56296889891739,
+ 45.51123440999032
+ ],
+ [
+ -73.5630160269899,
+ 45.51118047764722
+ ],
+ [
+ -73.56301708279398,
+ 45.511180928207565
+ ],
+ [
+ -73.56304354624451,
+ 45.51115058508173
+ ],
+ [
+ -73.56304523607064,
+ 45.51115121370784
+ ],
+ [
+ -73.56314634415031,
+ 45.51103569758967
+ ],
+ [
+ -73.56300581338942,
+ 45.51097564805801
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":882,
+ "ID_UEV":"01021638",
+ "CIVIQUE_DE":" 89",
+ "CIVIQUE_FI":" 103",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-82-7844-8-000-0000",
+ "SUPERFICIE":356,
+ "SUPERFIC_1":1115,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000829994683181,
+ "OBJECTID":86264,
+ "Join_Count":1,
+ "TARGET_FID":86264,
+ "feature_id":"dae7dd64-9fd6-4bb7-a5b2-6d3e752b3f46",
+ "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.53,
+ "heightmax":27.45,
+ "elevmin":24.68,
+ "elevmax":26.1,
+ "bldgarea":3547.96,
+ "comment":" ",
+ "OBJECTID_2":86264,
+ "Shape_Le_1":0.000829994683181,
+ "Shape_Ar_1":3.78386849305e-08,
+ "OBJECTID_3":86264,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86263,
+ "g_objectid":"938329",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161579",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994182523690000000",
+ "g_sup_tota":"1319.7",
+ "g_geometry":"0.0024043",
+ "g_geomet_1":"1.51983e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000829994683181,
+ "Shape_Area":3.78386849305e-08,
+ "Shape_Le_3":0.0008299943252,
+ "Shape_Ar_2":3.78386849305e-08,
+ "building_height":13.459999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":883,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55654056291849,
+ 45.52211284058542
+ ],
+ [
+ -73.5565279670139,
+ 45.52212984766463
+ ],
+ [
+ -73.55649436744295,
+ 45.52217524813948
+ ],
+ [
+ -73.55648206741532,
+ 45.522170747931966
+ ],
+ [
+ -73.55648156739227,
+ 45.52217124795502
+ ],
+ [
+ -73.55645836668212,
+ 45.52220124753984
+ ],
+ [
+ -73.55645846740619,
+ 45.522201348263906
+ ],
+ [
+ -73.55657888572884,
+ 45.52226086359827
+ ],
+ [
+ -73.55666393911135,
+ 45.522169933146195
+ ],
+ [
+ -73.55654056291849,
+ 45.52211284058542
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":883,
+ "ID_UEV":"01022257",
+ "CIVIQUE_DE":" 1484",
+ "CIVIQUE_FI":" 1490",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-8672-9-000-0000",
+ "SUPERFICIE":351,
+ "SUPERFIC_1":291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000524292753585,
+ "OBJECTID":86270,
+ "Join_Count":1,
+ "TARGET_FID":86270,
+ "feature_id":"1bf1e579-40d2-4859-9b37-a8a0503021f0",
+ "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.56,
+ "heightmax":12.05,
+ "elevmin":26.45,
+ "elevmax":27.23,
+ "bldgarea":713.89,
+ "comment":" ",
+ "OBJECTID_2":86270,
+ "Shape_Le_1":0.000524292753585,
+ "Shape_Ar_1":1.55378131973e-08,
+ "OBJECTID_3":86270,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86269,
+ "g_objectid":"942164",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567517",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004234867290000000",
+ "g_sup_tota":"351.2",
+ "g_geometry":"0.000888707",
+ "g_geomet_1":"4.08875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000524292753585,
+ "Shape_Area":1.55378131973e-08,
+ "Shape_Le_3":0.000524293516259,
+ "Shape_Ar_2":1.55378131973e-08,
+ "building_height":4.745
+ }
+ },
+ {
+ "type":"Feature",
+ "id":884,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55239826578918,
+ 45.5210994476317
+ ],
+ [
+ -73.55250776634219,
+ 45.52114884829101
+ ],
+ [
+ -73.55261276578835,
+ 45.52103384748437
+ ],
+ [
+ -73.55250316630992,
+ 45.52098444772438
+ ],
+ [
+ -73.55239826578918,
+ 45.5210994476317
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":884,
+ "ID_UEV":"01022038",
+ "CIVIQUE_DE":" 1275",
+ "CIVIQUE_FI":" 1275",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc pour la r\u00c3\u00a9cr\u00c3\u00a9ation en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-63-9957-2-000-0000",
+ "SUPERFICIE":5521,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000551726928808,
+ "OBJECTID":86282,
+ "Join_Count":1,
+ "TARGET_FID":86282,
+ "feature_id":"3e271ddd-2910-4bf6-8ef3-180d764ad16c",
+ "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.84,
+ "heightmax":4.76,
+ "elevmin":19.02,
+ "elevmax":19.33,
+ "bldgarea":154.41,
+ "comment":" ",
+ "OBJECTID_2":86282,
+ "Shape_Le_1":0.000551726928808,
+ "Shape_Ar_1":1.77827800043e-08,
+ "OBJECTID_3":86282,
+ "Join_Cou_1":1,
+ "TARGET_F_1":86281,
+ "g_objectid":"938693",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"7611",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004263995720000000",
+ "g_sup_tota":"5521.3",
+ "g_geometry":"0.00329352",
+ "g_geomet_1":"6.35975e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000551726928808,
+ "Shape_Area":1.77827800043e-08,
+ "Shape_Le_3":0.000551727634592,
+ "Shape_Ar_2":1.77827800043e-08,
+ "building_height":0.96
+ }
+ },
+ {
+ "type":"Feature",
+ "id":885,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55531308994898,
+ 45.52278600112335
+ ],
+ [
+ -73.5553530549214,
+ 45.52280777191144
+ ],
+ [
+ -73.55541730068973,
+ 45.522837588933875
+ ],
+ [
+ -73.55542186744707,
+ 45.52283284770805
+ ],
+ [
+ -73.55544709792707,
+ 45.522844880637024
+ ],
+ [
+ -73.55554018495341,
+ 45.52274711174011
+ ],
+ [
+ -73.5555162674836,
+ 45.5227366481281
+ ],
+ [
+ -73.55557096694841,
+ 45.52267524781473
+ ],
+ [
+ -73.55548376688418,
+ 45.52263684766268
+ ],
+ [
+ -73.555428167198,
+ 45.52269724792994
+ ],
+ [
+ -73.555407186914,
+ 45.52268770972032
+ ],
+ [
+ -73.55531308994898,
+ 45.52278600112335
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":885,
+ "ID_UEV":"01022046",
+ "CIVIQUE_DE":" 1604",
+ "CIVIQUE_FI":" 1614",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-45-6331-0-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":533,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000730701260343,
+ "OBJECTID":86283,
+ "Join_Count":1,
+ "TARGET_FID":86283,
+ "feature_id":"c23f9894-c447-44e7-80ce-45feda78ff79",
+ "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.49,
+ "heightmax":38.9,
+ "elevmin":23.86,
+ "elevmax":27.29,
+ "bldgarea":1195.85,
+ "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_2":86283,
+ "Shape_Le_1":0.000730701260343,
+ "Shape_Ar_1":2.6489138398e-08,
+ "OBJECTID_3":86283,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86282,
+ "g_objectid":"942228",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567665",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004245563970000000",
+ "g_sup_tota":"272.6",
+ "g_geometry":"0.000828343",
+ "g_geomet_1":"3.13276e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000730701260343,
+ "Shape_Area":2.6489138398e-08,
+ "Shape_Le_3":0.000730701018757,
+ "Shape_Ar_2":2.6489138398e-08,
+ "building_height":18.205
+ }
+ },
+ {
+ "type":"Feature",
+ "id":886,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56321892393603,
+ 45.52690003076211
+ ],
+ [
+ -73.56320087004596,
+ 45.52689044758638
+ ],
+ [
+ -73.56320067039647,
+ 45.52689054741113
+ ],
+ [
+ -73.56315786986166,
+ 45.52693644790904
+ ],
+ [
+ -73.56317654967987,
+ 45.52694502384407
+ ],
+ [
+ -73.56321892393603,
+ 45.52690003076211
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56320537385076,
+ 45.52679508887255
+ ],
+ [
+ -73.56323007013347,
+ 45.52680814792798
+ ],
+ [
+ -73.56318547005525,
+ 45.52684984769261
+ ],
+ [
+ -73.56323931786207,
+ 45.5268783777852
+ ],
+ [
+ -73.56336393871665,
+ 45.526746056035954
+ ],
+ [
+ -73.56328599267627,
+ 45.52670948780292
+ ],
+ [
+ -73.56320537385076,
+ 45.52679508887255
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":886,
+ "ID_UEV":"01032596",
+ "CIVIQUE_DE":" 2263",
+ "CIVIQUE_FI":" 2267",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-89-6194-2-000-0000",
+ "SUPERFICIE":270,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000701168459164,
+ "OBJECTID":86289,
+ "Join_Count":1,
+ "TARGET_FID":86289,
+ "feature_id":"fea151a4-3164-4aba-815c-95e38c0d6c22",
+ "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":22.96,
+ "elevmin":31.4,
+ "elevmax":40.04,
+ "bldgarea":1665.18,
+ "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_2":86289,
+ "Shape_Le_1":0.000701168459164,
+ "Shape_Ar_1":1.44235091922e-08,
+ "OBJECTID_3":86289,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86288,
+ "g_objectid":"942927",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884793",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994289559930000000",
+ "g_sup_tota":"271.6",
+ "g_geometry":"0.000933906",
+ "g_geomet_1":"3.12861e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000701168459164,
+ "Shape_Area":1.44235091922e-08,
+ "Shape_Le_3":0.000701168653641,
+ "Shape_Ar_2":1.44235091922e-08,
+ "building_height":11.22
+ }
+ },
+ {
+ "type":"Feature",
+ "id":887,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55600946828417,
+ 45.537384749856614
+ ],
+ [
+ -73.55606386827475,
+ 45.53740234958906
+ ],
+ [
+ -73.55609656852366,
+ 45.53735244980601
+ ],
+ [
+ -73.55609176794258,
+ 45.537351049561586
+ ],
+ [
+ -73.5560421685331,
+ 45.537334949898316
+ ],
+ [
+ -73.55600946828417,
+ 45.537384749856614
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5560661507541,
+ 45.537296491290334
+ ],
+ [
+ -73.55606976782737,
+ 45.537297949990695
+ ],
+ [
+ -73.55606066848691,
+ 45.537309049423385
+ ],
+ [
+ -73.55606126833472,
+ 45.5373092499722
+ ],
+ [
+ -73.5561469449474,
+ 45.53733622243901
+ ],
+ [
+ -73.55622389004233,
+ 45.53722827141789
+ ],
+ [
+ -73.55616256796998,
+ 45.537207149940315
+ ],
+ [
+ -73.55613628708183,
+ 45.53719809376731
+ ],
+ [
+ -73.5560661507541,
+ 45.537296491290334
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":887,
+ "ID_UEV":"01024692",
+ "CIVIQUE_DE":" 2369",
+ "CIVIQUE_FI":" 2371",
+ "NOM_RUE":"rue Hogan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-1756-8-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":165,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000688325257525,
+ "OBJECTID":86290,
+ "Join_Count":2,
+ "TARGET_FID":86290,
+ "feature_id":"4d71dbde-531c-4d82-85e3-3f2a6aec19e2",
+ "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.53,
+ "heightmax":27.33,
+ "elevmin":20.99,
+ "elevmax":21.48,
+ "bldgarea":28.48,
+ "comment":" ",
+ "OBJECTID_2":86290,
+ "Shape_Le_1":0.000688325257525,
+ "Shape_Ar_1":1.51294310435e-08,
+ "OBJECTID_3":86290,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86289,
+ "g_objectid":"943934",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361137",
+ "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":"66023004441115950000000",
+ "g_sup_tota":"186.4",
+ "g_geometry":"0.000668177",
+ "g_geomet_1":"2.14739e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000688325257525,
+ "Shape_Area":1.51294310435e-08,
+ "Shape_Le_3":0.000688324319776,
+ "Shape_Ar_2":1.51294310435e-08,
+ "building_height":13.399999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":888,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5563616661798,
+ 45.53822259694559
+ ],
+ [
+ -73.55651791529141,
+ 45.538278124686
+ ],
+ [
+ -73.55657824900882,
+ 45.538180751490785
+ ],
+ [
+ -73.55657766804678,
+ 45.538180550941966
+ ],
+ [
+ -73.55658384998654,
+ 45.538171711505576
+ ],
+ [
+ -73.55659643419992,
+ 45.538151403015135
+ ],
+ [
+ -73.55635483043292,
+ 45.53806582352923
+ ],
+ [
+ -73.55635036799693,
+ 45.53807235080864
+ ],
+ [
+ -73.55644296849005,
+ 45.53810355098838
+ ],
+ [
+ -73.5563616661798,
+ 45.53822259694559
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":888,
+ "ID_UEV":"01025892",
+ "CIVIQUE_DE":" 2806",
+ "CIVIQUE_FI":" 2816",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-9252-9-000-0000",
+ "SUPERFICIE":343,
+ "SUPERFIC_1":569,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00082175890309,
+ "OBJECTID":86291,
+ "Join_Count":1,
+ "TARGET_FID":86291,
+ "feature_id":"e5aa5270-4144-4fe4-9812-499bd4b3746d",
+ "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":41.33,
+ "elevmin":23.91,
+ "elevmax":25.53,
+ "bldgarea":843.33,
+ "comment":" ",
+ "OBJECTID_2":86291,
+ "Shape_Le_1":0.00082175890309,
+ "Shape_Ar_1":2.43148201151e-08,
+ "OBJECTID_3":86291,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86290,
+ "g_objectid":"944015",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361228",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004432925290000000",
+ "g_sup_tota":"342.9",
+ "g_geometry":"0.000840509",
+ "g_geomet_1":"3.93061e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00082175890309,
+ "Shape_Area":2.43148201151e-08,
+ "Shape_Le_3":0.000821759841154,
+ "Shape_Ar_2":2.43148201151e-08,
+ "building_height":20.41
+ }
+ },
+ {
+ "type":"Feature",
+ "id":889,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56173420439187,
+ 45.53048321218079
+ ],
+ [
+ -73.56174866998697,
+ 45.5304910488731
+ ],
+ [
+ -73.56174897036054,
+ 45.53049114869785
+ ],
+ [
+ -73.56176967005608,
+ 45.5304694489562
+ ],
+ [
+ -73.56179787009748,
+ 45.530482749029936
+ ],
+ [
+ -73.56177627018057,
+ 45.53050554864245
+ ],
+ [
+ -73.56177637000532,
+ 45.53050554864245
+ ],
+ [
+ -73.56181321522955,
+ 45.53052346493625
+ ],
+ [
+ -73.56192426441511,
+ 45.53040957659098
+ ],
+ [
+ -73.5618436770659,
+ 45.53037094081656
+ ],
+ [
+ -73.56173420439187,
+ 45.53048321218079
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":889,
+ "ID_UEV":"01022415",
+ "CIVIQUE_DE":" 2341",
+ "CIVIQUE_FI":" 2343",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-93-7296-4-000-0000",
+ "SUPERFICIE":216,
+ "SUPERFIC_1":190,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000555660679394,
+ "OBJECTID":86294,
+ "Join_Count":1,
+ "TARGET_FID":86294,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":86294,
+ "Shape_Le_1":0.000555660679394,
+ "Shape_Ar_1":1.24998303414e-08,
+ "OBJECTID_3":86294,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86293,
+ "g_objectid":"940336",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423664",
+ "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":"66023994394650080000000",
+ "g_sup_tota":"216",
+ "g_geometry":"0.000764719",
+ "g_geomet_1":"2.47862e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000555660679394,
+ "Shape_Area":1.24998303414e-08,
+ "Shape_Le_3":0.00055566059152,
+ "Shape_Ar_2":1.24998303414e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":890,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5617754230192,
+ 45.53201970209787
+ ],
+ [
+ -73.56180967010204,
+ 45.532039748885595
+ ],
+ [
+ -73.56184488035879,
+ 45.532060345159096
+ ],
+ [
+ -73.56196594439466,
+ 45.53193048575361
+ ],
+ [
+ -73.56189446987572,
+ 45.53189844920436
+ ],
+ [
+ -73.5619188343086,
+ 45.531871545985354
+ ],
+ [
+ -73.56191464976312,
+ 45.53186958816126
+ ],
+ [
+ -73.5617754230192,
+ 45.53201970209787
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":890,
+ "ID_UEV":"01022710",
+ "CIVIQUE_DE":" 2430",
+ "CIVIQUE_FI":" 2434",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1932,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-95-6661-5-000-0000",
+ "SUPERFICIE":146,
+ "SUPERFIC_1":244,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000581993241987,
+ "OBJECTID":86304,
+ "Join_Count":1,
+ "TARGET_FID":86304,
+ "feature_id":"da1a3347-13c1-4911-b6cc-5b657497e24b",
+ "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.65,
+ "heightmax":50.46,
+ "elevmin":30.06,
+ "elevmax":43.72,
+ "bldgarea":3391.1,
+ "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_2":86304,
+ "Shape_Le_1":0.000581993241987,
+ "Shape_Ar_1":1.37850334111e-08,
+ "OBJECTID_3":86304,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86303,
+ "g_objectid":"940399",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423752",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994395666150000000",
+ "g_sup_tota":"146.1",
+ "g_geometry":"0.000591918",
+ "g_geomet_1":"1.67989e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000581993241987,
+ "Shape_Area":1.37850334111e-08,
+ "Shape_Le_3":0.000581994828022,
+ "Shape_Ar_2":1.37850334111e-08,
+ "building_height":24.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":891,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56206857592588,
+ 45.53216564048222
+ ],
+ [
+ -73.56214327721231,
+ 45.53220059263354
+ ],
+ [
+ -73.5622761349575,
+ 45.532058122035
+ ],
+ [
+ -73.56224196971297,
+ 45.532049948996246
+ ],
+ [
+ -73.56224047054313,
+ 45.532053048959334
+ ],
+ [
+ -73.56221976994827,
+ 45.532047548705705
+ ],
+ [
+ -73.56221967012353,
+ 45.53204774925452
+ ],
+ [
+ -73.56218906979159,
+ 45.532085849033
+ ],
+ [
+ -73.56216386988854,
+ 45.532075949295916
+ ],
+ [
+ -73.56219487041878,
+ 45.53203714894556
+ ],
+ [
+ -73.56219716998525,
+ 45.53203454900553
+ ],
+ [
+ -73.56219264999265,
+ 45.53203257859092
+ ],
+ [
+ -73.56206857592588,
+ 45.53216564048222
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":891,
+ "ID_UEV":"01022713",
+ "CIVIQUE_DE":" 2462",
+ "CIVIQUE_FI":" 2464",
+ "NOM_RUE":"rue Parthenais (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\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-95-4377-0-000-0000",
+ "SUPERFICIE":145,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000653434422891,
+ "OBJECTID":86305,
+ "Join_Count":1,
+ "TARGET_FID":86305,
+ "feature_id":"da1a3347-13c1-4911-b6cc-5b657497e24b",
+ "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.65,
+ "heightmax":50.46,
+ "elevmin":30.06,
+ "elevmax":43.72,
+ "bldgarea":3391.1,
+ "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_2":86305,
+ "Shape_Le_1":0.000653434422891,
+ "Shape_Ar_1":1.31999602724e-08,
+ "OBJECTID_3":86305,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86304,
+ "g_objectid":"940401",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423755",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994395437700000000",
+ "g_sup_tota":"145.3",
+ "g_geometry":"0.000591494",
+ "g_geomet_1":"1.67362e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000653434422891,
+ "Shape_Area":1.31999602724e-08,
+ "Shape_Le_3":0.000653435430224,
+ "Shape_Ar_2":1.31999602724e-08,
+ "building_height":24.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":892,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55970619630575,
+ 45.53202185777281
+ ],
+ [
+ -73.5597925519066,
+ 45.53206434354492
+ ],
+ [
+ -73.55991238387126,
+ 45.53193530611978
+ ],
+ [
+ -73.5598590693624,
+ 45.531902649038315
+ ],
+ [
+ -73.55984796903039,
+ 45.53191154872928
+ ],
+ [
+ -73.55982308748735,
+ 45.5318959868606
+ ],
+ [
+ -73.55970619630575,
+ 45.53202185777281
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":892,
+ "ID_UEV":"01022797",
+ "CIVIQUE_DE":" 2291",
+ "CIVIQUE_FI":" 2295",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-15-2966-8-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":231,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000550212467885,
+ "OBJECTID":86307,
+ "Join_Count":1,
+ "TARGET_FID":86307,
+ "feature_id":"f2423283-3821-420d-9c68-6971f57819d5",
+ "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":44.92,
+ "elevmin":27.73,
+ "elevmax":30.6,
+ "bldgarea":1317.37,
+ "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_2":86307,
+ "Shape_Le_1":0.000550212467885,
+ "Shape_Ar_1":1.62480097183e-08,
+ "OBJECTID_3":86307,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86306,
+ "g_objectid":"940479",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423959",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004315366140000000",
+ "g_sup_tota":"225.8",
+ "g_geometry":"0.000758264",
+ "g_geomet_1":"2.6003e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000550212467885,
+ "Shape_Area":1.62480097183e-08,
+ "Shape_Le_3":0.000550210855534,
+ "Shape_Ar_2":1.62480097183e-08,
+ "building_height":21.2
+ }
+ },
+ {
+ "type":"Feature",
+ "id":893,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55961984250358,
+ 45.53197937379936
+ ],
+ [
+ -73.55970619630575,
+ 45.53202185777281
+ ],
+ [
+ -73.55982308748735,
+ 45.5318959868606
+ ],
+ [
+ -73.55981966916424,
+ 45.5318938491721
+ ],
+ [
+ -73.55981696939946,
+ 45.53189254875242
+ ],
+ [
+ -73.55976596884624,
+ 45.531872048706376
+ ],
+ [
+ -73.55973616891092,
+ 45.53186004905232
+ ],
+ [
+ -73.55974036874487,
+ 45.531855148646486
+ ],
+ [
+ -73.5597390692245,
+ 45.531854548798684
+ ],
+ [
+ -73.5597367309872,
+ 45.53185350558511
+ ],
+ [
+ -73.55961984250358,
+ 45.53197937379936
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":893,
+ "ID_UEV":"01022798",
+ "CIVIQUE_DE":" 2285",
+ "CIVIQUE_FI":" 2289",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-15-3661-4-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":231,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000544352441752,
+ "OBJECTID":86308,
+ "Join_Count":1,
+ "TARGET_FID":86308,
+ "feature_id":"f2423283-3821-420d-9c68-6971f57819d5",
+ "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":44.92,
+ "elevmin":27.73,
+ "elevmax":30.6,
+ "bldgarea":1317.37,
+ "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_2":86308,
+ "Shape_Le_1":0.000544352441752,
+ "Shape_Ar_1":1.55927684315e-08,
+ "OBJECTID_3":86308,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86307,
+ "g_objectid":"940479",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423959",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004315366140000000",
+ "g_sup_tota":"225.8",
+ "g_geometry":"0.000758264",
+ "g_geomet_1":"2.6003e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000544352441752,
+ "Shape_Area":1.55927684315e-08,
+ "Shape_Le_3":0.000544352542091,
+ "Shape_Ar_2":1.55927684315e-08,
+ "building_height":21.2
+ }
+ },
+ {
+ "type":"Feature",
+ "id":894,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55311847346063,
+ 45.530138185479174
+ ],
+ [
+ -73.55331184478766,
+ 45.53022689100851
+ ],
+ [
+ -73.55336250179987,
+ 45.530174563955256
+ ],
+ [
+ -73.55317709127159,
+ 45.53008795924222
+ ],
+ [
+ -73.55317276733119,
+ 45.53009304850568
+ ],
+ [
+ -73.55317276733119,
+ 45.53009314922975
+ ],
+ [
+ -73.55321176733105,
+ 45.53011384892528
+ ],
+ [
+ -73.55318616722968,
+ 45.53013764858391
+ ],
+ [
+ -73.55314426691623,
+ 45.53011534899446
+ ],
+ [
+ -73.5531408674789,
+ 45.53011384892528
+ ],
+ [
+ -73.55311847346063,
+ 45.530138185479174
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":894,
+ "ID_UEV":"01018469",
+ "CIVIQUE_DE":" 2324",
+ "CIVIQUE_FI":" 2326",
+ "NOM_RUE":"avenue Lalonde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-4161-4-000-0000",
+ "SUPERFICIE":126,
+ "SUPERFIC_1":175,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000660356889556,
+ "OBJECTID":86311,
+ "Join_Count":1,
+ "TARGET_FID":86311,
+ "feature_id":"e27363a1-ca8f-4194-a825-66f1a6dad90b",
+ "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":30.57,
+ "elevmin":16.92,
+ "elevmax":19.79,
+ "bldgarea":1403.12,
+ "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_2":86311,
+ "Shape_Le_1":0.000660356889556,
+ "Shape_Ar_1":1.30427285186e-08,
+ "OBJECTID_3":86311,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86310,
+ "g_objectid":"940834",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424503",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363375540000000",
+ "g_sup_tota":"124",
+ "g_geometry":"0.000572206",
+ "g_geomet_1":"1.44897e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000660356889556,
+ "Shape_Area":1.30427285186e-08,
+ "Shape_Le_3":0.000660355100707,
+ "Shape_Ar_2":1.30427285186e-08,
+ "building_height":14.025
+ }
+ },
+ {
+ "type":"Feature",
+ "id":895,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5523068982666,
+ 45.520249262743576
+ ],
+ [
+ -73.55237131940271,
+ 45.52027910944364
+ ],
+ [
+ -73.55237156581696,
+ 45.520278847740926
+ ],
+ [
+ -73.55231566575722,
+ 45.52025294816532
+ ],
+ [
+ -73.55230714108355,
+ 45.52024900194018
+ ],
+ [
+ -73.5523068982666,
+ 45.520249262743576
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55249754194985,
+ 45.52017045155539
+ ],
+ [
+ -73.55242706567839,
+ 45.520137747709185
+ ],
+ [
+ -73.55235926578933,
+ 45.52020994798101
+ ],
+ [
+ -73.55242957568622,
+ 45.52024258887467
+ ],
+ [
+ -73.55249754194985,
+ 45.52017045155539
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":895,
+ "ID_UEV":"01022009",
+ "CIVIQUE_DE":" 1209",
+ "CIVIQUE_FI":" 1211",
+ "NOM_RUE":"rue Dalcourt (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1890,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-72-0555-4-000-0000",
+ "SUPERFICIE":126,
+ "SUPERFIC_1":121,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000496085792751,
+ "OBJECTID":86312,
+ "Join_Count":1,
+ "TARGET_FID":86312,
+ "feature_id":"017a301b-c4e3-4a78-af3a-c68a1b47ec3c",
+ "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.46,
+ "heightmax":14.21,
+ "elevmin":18.51,
+ "elevmax":20.32,
+ "bldgarea":1518.91,
+ "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_2":86312,
+ "Shape_Le_1":0.000496085792751,
+ "Shape_Ar_1":7.32233159561e-09,
+ "OBJECTID_3":86312,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86311,
+ "g_objectid":"942274",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567756",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004272055540000000",
+ "g_sup_tota":"126",
+ "g_geometry":"0.000528799",
+ "g_geomet_1":"1.4905e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000496085792751,
+ "Shape_Area":7.32233159561e-09,
+ "Shape_Le_3":0.000496085156301,
+ "Shape_Ar_2":7.32233159561e-09,
+ "building_height":5.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":896,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55234158601722,
+ 45.520458646499634
+ ],
+ [
+ -73.5523464270678,
+ 45.52046088940882
+ ],
+ [
+ -73.55234666628746,
+ 45.520460647491184
+ ],
+ [
+ -73.55240580030929,
+ 45.520488128074945
+ ],
+ [
+ -73.552472166679,
+ 45.5204184926696
+ ],
+ [
+ -73.55246929604303,
+ 45.52041714098856
+ ],
+ [
+ -73.55250363036009,
+ 45.52038113393248
+ ],
+ [
+ -73.55245706616252,
+ 45.52035954750541
+ ],
+ [
+ -73.55249037525246,
+ 45.52032410882086
+ ],
+ [
+ -73.55247577925566,
+ 45.52031746193162
+ ],
+ [
+ -73.55234158601722,
+ 45.520458646499634
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":896,
+ "ID_UEV":"01022012",
+ "CIVIQUE_DE":" 1232",
+ "CIVIQUE_FI":" 1234",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-72-0276-7-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000530786748367,
+ "OBJECTID":86313,
+ "Join_Count":1,
+ "TARGET_FID":86313,
+ "feature_id":"017a301b-c4e3-4a78-af3a-c68a1b47ec3c",
+ "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.46,
+ "heightmax":14.21,
+ "elevmin":18.51,
+ "elevmax":20.32,
+ "bldgarea":1518.91,
+ "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_2":86313,
+ "Shape_Le_1":0.000530786748367,
+ "Shape_Ar_1":1.03626398719e-08,
+ "OBJECTID_3":86313,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86312,
+ "g_objectid":"942269",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567751",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262906490000000",
+ "g_sup_tota":"197.6",
+ "g_geometry":"0.000626112",
+ "g_geomet_1":"2.31827e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000530786748367,
+ "Shape_Area":1.03626398719e-08,
+ "Shape_Le_3":0.000530786763547,
+ "Shape_Ar_2":1.03626398719e-08,
+ "building_height":5.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":897,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55068885153112,
+ 45.52354158182883
+ ],
+ [
+ -73.55069436527458,
+ 45.52354464761769
+ ],
+ [
+ -73.55073986467485,
+ 45.52357004806956
+ ],
+ [
+ -73.55074156529285,
+ 45.52356844817564
+ ],
+ [
+ -73.5507679648915,
+ 45.52354044778373
+ ],
+ [
+ -73.55083546530632,
+ 45.523571947437716
+ ],
+ [
+ -73.55080966555546,
+ 45.52359924815707
+ ],
+ [
+ -73.55085192200045,
+ 45.52361892712209
+ ],
+ [
+ -73.55095010278686,
+ 45.52351111459656
+ ],
+ [
+ -73.55078534429005,
+ 45.52343712827115
+ ],
+ [
+ -73.55068885153112,
+ 45.52354158182883
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":897,
+ "ID_UEV":"01022204",
+ "CIVIQUE_DE":" 1269",
+ "CIVIQUE_FI":" 1281",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1992,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-86-3024-8-000-0000",
+ "SUPERFICIE":246,
+ "SUPERFIC_1":518,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000726531202569,
+ "OBJECTID":86323,
+ "Join_Count":1,
+ "TARGET_FID":86323,
+ "feature_id":"1dba10a8-998e-45d8-b340-db6f46c77863",
+ "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.51,
+ "heightmax":30.25,
+ "elevmin":17.15,
+ "elevmax":18.3,
+ "bldgarea":428.24,
+ "comment":" ",
+ "OBJECTID_2":86323,
+ "Shape_Le_1":0.000726531202569,
+ "Shape_Ar_1":2.22715765553e-08,
+ "OBJECTID_3":86323,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86322,
+ "g_objectid":"938289",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1729168",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004286113700000000",
+ "g_sup_tota":"472.7",
+ "g_geometry":"0.00102254",
+ "g_geomet_1":"5.47917e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000726531202569,
+ "Shape_Area":2.22715765553e-08,
+ "Shape_Le_3":0.000726530043891,
+ "Shape_Ar_2":2.22715765553e-08,
+ "building_height":13.870000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":898,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55658566931503,
+ 45.536047645033086
+ ],
+ [
+ -73.5566546850875,
+ 45.5360732757114
+ ],
+ [
+ -73.55672421976877,
+ 45.535976400740594
+ ],
+ [
+ -73.55665481099258,
+ 45.535951318648735
+ ],
+ [
+ -73.55658566931503,
+ 45.536047645033086
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":898,
+ "ID_UEV":"01024153",
+ "CIVIQUE_DE":" 2325",
+ "CIVIQUE_FI":" 2325",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-7512-2-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000385242707669,
+ "OBJECTID":86327,
+ "Join_Count":1,
+ "TARGET_FID":86327,
+ "feature_id":"0d0450ed-53d1-4796-8a46-274cefb95f1e",
+ "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,
+ "heightmax":33.2,
+ "elevmin":20.33,
+ "elevmax":23.69,
+ "bldgarea":773.97,
+ "comment":" ",
+ "OBJECTID_2":86327,
+ "Shape_Le_1":0.000385242707669,
+ "Shape_Ar_1":8.4441437839e-09,
+ "OBJECTID_3":86327,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86326,
+ "g_objectid":"940996",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424829",
+ "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":"66023004430801060000000",
+ "g_sup_tota":"152.3",
+ "g_geometry":"0.000642156",
+ "g_geomet_1":"1.75506e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000385242707669,
+ "Shape_Area":8.4441437839e-09,
+ "Shape_Le_3":0.000385242117703,
+ "Shape_Ar_2":8.4441437839e-09,
+ "building_height":16.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":899,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55281936344471,
+ 45.52025124664801
+ ],
+ [
+ -73.5528211494983,
+ 45.520252078520905
+ ],
+ [
+ -73.55288076645606,
+ 45.52018994795803
+ ],
+ [
+ -73.55287771145906,
+ 45.52018849915021
+ ],
+ [
+ -73.55281936344471,
+ 45.52025124664801
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55291286325988,
+ 45.520150696148
+ ],
+ [
+ -73.5529174659901,
+ 45.52015284822566
+ ],
+ [
+ -73.55302966630789,
+ 45.52003424653355
+ ],
+ [
+ -73.55302372808443,
+ 45.52003146942707
+ ],
+ [
+ -73.55291286325988,
+ 45.520150696148
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":899,
+ "ID_UEV":"01021995",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-62-6149-1-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000514849471477,
+ "OBJECTID":86330,
+ "Join_Count":1,
+ "TARGET_FID":86330,
+ "feature_id":"0abfd535-8270-461a-9580-5cee63fdd4ae",
+ "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.73,
+ "heightmax":13.43,
+ "elevmin":18.17,
+ "elevmax":20.3,
+ "bldgarea":1798.08,
+ "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_2":86330,
+ "Shape_Le_1":0.000514849471477,
+ "Shape_Ar_1":1.12000980353e-09,
+ "OBJECTID_3":86330,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86329,
+ "g_objectid":"942263",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567747",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262704350000000",
+ "g_sup_tota":"469.2",
+ "g_geometry":"0.00099603",
+ "g_geomet_1":"5.44396e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000514849471477,
+ "Shape_Area":1.12000980353e-09,
+ "Shape_Le_3":0.000514849844231,
+ "Shape_Ar_2":1.12000980353e-09,
+ "building_height":6.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":900,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55245787555236,
+ 45.51988511285797
+ ],
+ [
+ -73.5525021662638,
+ 45.51990604727656
+ ],
+ [
+ -73.55249066573349,
+ 45.51991794710587
+ ],
+ [
+ -73.55253866614837,
+ 45.51994074671838
+ ],
+ [
+ -73.55253896652194,
+ 45.51994084654313
+ ],
+ [
+ -73.55255246624516,
+ 45.519926846796835
+ ],
+ [
+ -73.55259046619891,
+ 45.519944946552336
+ ],
+ [
+ -73.55257566605599,
+ 45.51996034744238
+ ],
+ [
+ -73.55260752633812,
+ 45.51997551900529
+ ],
+ [
+ -73.55270749497676,
+ 45.519870047415054
+ ],
+ [
+ -73.55254008078195,
+ 45.51979838403849
+ ],
+ [
+ -73.55245787555236,
+ 45.51988511285797
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":900,
+ "ID_UEV":"01021998",
+ "CIVIQUE_DE":" 1199",
+ "CIVIQUE_FI":" 1207",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-62-9220-7-000-0000",
+ "SUPERFICIE":252,
+ "SUPERFIC_1":479,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000684105746172,
+ "OBJECTID":86331,
+ "Join_Count":1,
+ "TARGET_FID":86331,
+ "feature_id":"0abfd535-8270-461a-9580-5cee63fdd4ae",
+ "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.73,
+ "heightmax":13.43,
+ "elevmin":18.17,
+ "elevmax":20.3,
+ "bldgarea":1798.08,
+ "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_2":86331,
+ "Shape_Le_1":0.000684105746172,
+ "Shape_Ar_1":2.23727912866e-08,
+ "OBJECTID_3":86331,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86330,
+ "g_objectid":"942266",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567750",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262833470000000",
+ "g_sup_tota":"469.2",
+ "g_geometry":"0.000996936",
+ "g_geomet_1":"5.44425e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000684105746172,
+ "Shape_Area":2.23727912866e-08,
+ "Shape_Le_3":0.000684105865074,
+ "Shape_Ar_2":2.23727912866e-08,
+ "building_height":6.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":901,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55019964372043,
+ 45.53110241699324
+ ],
+ [
+ -73.55020192979707,
+ 45.5311033900597
+ ],
+ [
+ -73.55021156603279,
+ 45.53109275018057
+ ],
+ [
+ -73.55035377223065,
+ 45.531156567871605
+ ],
+ [
+ -73.55042787097132,
+ 45.53107216559826
+ ],
+ [
+ -73.55028946620774,
+ 45.5310109496459
+ ],
+ [
+ -73.55027486571433,
+ 45.53102734968274
+ ],
+ [
+ -73.55026814687932,
+ 45.531024365732186
+ ],
+ [
+ -73.55019964372043,
+ 45.53110241699324
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":901,
+ "ID_UEV":"01018853",
+ "CIVIQUE_DE":" 1722",
+ "CIVIQUE_FI":" 1722",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-84-6660-9-000-0000",
+ "SUPERFICIE":339,
+ "SUPERFIC_1":384,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000569519004195,
+ "OBJECTID":86337,
+ "Join_Count":1,
+ "TARGET_FID":86337,
+ "feature_id":"6f30f9af-b226-4124-b778-93c9694c9bb7",
+ "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":34.35,
+ "elevmin":22,
+ "elevmax":23.39,
+ "bldgarea":1398.34,
+ "comment":" ",
+ "OBJECTID_2":86337,
+ "Shape_Le_1":0.000569519004195,
+ "Shape_Ar_1":1.68343051865e-08,
+ "OBJECTID_3":86337,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86336,
+ "g_objectid":"941272",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425246",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004384666090000000",
+ "g_sup_tota":"339",
+ "g_geometry":"0.000830318",
+ "g_geomet_1":"3.88061e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000569519004195,
+ "Shape_Area":1.68343051865e-08,
+ "Shape_Le_3":0.000569519508022,
+ "Shape_Ar_2":1.68343051865e-08,
+ "building_height":15.915000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":902,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55106576729317,
+ 45.53845384951584
+ ],
+ [
+ -73.55119210405421,
+ 45.53849856111
+ ],
+ [
+ -73.55122732600213,
+ 45.538449614608325
+ ],
+ [
+ -73.55110061512313,
+ 45.53840477081382
+ ],
+ [
+ -73.55106576729317,
+ 45.53845384951584
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":902,
+ "ID_UEV":"01025598",
+ "CIVIQUE_DE":" 3129",
+ "CIVIQUE_FI":" 3129",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-0782-9-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000388921817611,
+ "OBJECTID":86346,
+ "Join_Count":1,
+ "TARGET_FID":86346,
+ "feature_id":"215d7c30-7807-463c-a82a-56f4cca07cf7",
+ "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":7.05,
+ "heightmax":29.86,
+ "elevmin":20.3,
+ "elevmax":21.55,
+ "bldgarea":398.47,
+ "comment":" ",
+ "OBJECTID_2":86346,
+ "Shape_Le_1":0.000388921817611,
+ "Shape_Ar_1":7.77003726188e-09,
+ "OBJECTID_3":86346,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86345,
+ "g_objectid":"944253",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361926",
+ "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":"66023004482078290000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749124",
+ "g_geomet_1":"1.81954e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000388921817611,
+ "Shape_Area":7.77003726188e-09,
+ "Shape_Le_3":0.000388921643348,
+ "Shape_Ar_2":7.77003726188e-09,
+ "building_height":11.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":903,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56515256705917,
+ 45.51498108905631
+ ],
+ [
+ -73.56519499347601,
+ 45.51500134988269
+ ],
+ [
+ -73.56541499732612,
+ 45.51503804402081
+ ],
+ [
+ -73.56543476982061,
+ 45.51497544581047
+ ],
+ [
+ -73.56543476982061,
+ 45.51497524616098
+ ],
+ [
+ -73.56541257005591,
+ 45.514970745953455
+ ],
+ [
+ -73.56541421221796,
+ 45.51496670709815
+ ],
+ [
+ -73.56524781605572,
+ 45.51493725340182
+ ],
+ [
+ -73.56523197000126,
+ 45.514968945510724
+ ],
+ [
+ -73.5652306704809,
+ 45.51497144562601
+ ],
+ [
+ -73.56520996988604,
+ 45.51500104591184
+ ],
+ [
+ -73.56515256705917,
+ 45.51498108905631
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":903,
+ "ID_UEV":"01021724",
+ "CIVIQUE_DE":" 314",
+ "CIVIQUE_FI":" 318",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-76-0174-9-000-0000",
+ "SUPERFICIE":220,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000667043155247,
+ "OBJECTID":86354,
+ "Join_Count":1,
+ "TARGET_FID":86354,
+ "feature_id":"84e763e9-289e-4205-bdef-0a9c5e88cc85",
+ "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":14.95,
+ "elevmin":23.59,
+ "elevmax":25.72,
+ "bldgarea":1922.53,
+ "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_2":86354,
+ "Shape_Le_1":0.000667043155247,
+ "Shape_Ar_1":1.42120393074e-08,
+ "OBJECTID_3":86354,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86353,
+ "g_objectid":"943138",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161346",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994166986700000000",
+ "g_sup_tota":"200",
+ "g_geometry":"0.000790752",
+ "g_geomet_1":"2.23044e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000667043155247,
+ "Shape_Area":1.42120393074e-08,
+ "Shape_Le_3":0.000667043415068,
+ "Shape_Ar_2":1.42120393074e-08,
+ "building_height":7.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":904,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55934637395784,
+ 45.50819475993052
+ ],
+ [
+ -73.55940485597117,
+ 45.50821885816407
+ ],
+ [
+ -73.55958481570852,
+ 45.50803107972085
+ ],
+ [
+ -73.55951332230383,
+ 45.507999299478385
+ ],
+ [
+ -73.55934885968398,
+ 45.50817731757944
+ ],
+ [
+ -73.55934637395784,
+ 45.50819475993052
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":904,
+ "ID_UEV":"01020529",
+ "CIVIQUE_DE":" 1013",
+ "CIVIQUE_FI":" 1015",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-19-5413-6-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":393,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000661558085667,
+ "OBJECTID":86355,
+ "Join_Count":1,
+ "TARGET_FID":86355,
+ "feature_id":"e2283162-ba44-4070-a7cd-5c75a66bb0d8",
+ "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.98,
+ "heightmax":17.98,
+ "elevmin":15.4,
+ "elevmax":17.95,
+ "bldgarea":1979.75,
+ "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_2":86355,
+ "Shape_Le_1":0.000661558085667,
+ "Shape_Ar_1":1.85120636133e-08,
+ "OBJECTID_3":86355,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86354,
+ "g_objectid":"939520",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180667",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019541360000000",
+ "g_sup_tota":"170.6",
+ "g_geometry":"0.000690283",
+ "g_geomet_1":"1.96446e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000661558085667,
+ "Shape_Area":1.85120636133e-08,
+ "Shape_Le_3":0.000661558683555,
+ "Shape_Ar_2":1.85120636133e-08,
+ "building_height":8.5
+ }
+ },
+ {
+ "type":"Feature",
+ "id":905,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56036437953433,
+ 45.511901893108174
+ ],
+ [
+ -73.56036996792153,
+ 45.51190464593296
+ ],
+ [
+ -73.56042396771379,
+ 45.511929245988206
+ ],
+ [
+ -73.56042396771379,
+ 45.51192914616346
+ ],
+ [
+ -73.5605033679579,
+ 45.511840745504294
+ ],
+ [
+ -73.56052304692292,
+ 45.51184947342475
+ ],
+ [
+ -73.56062087697374,
+ 45.51173803213477
+ ],
+ [
+ -73.56054066913842,
+ 45.51170107629393
+ ],
+ [
+ -73.56044260706251,
+ 45.511812781984595
+ ],
+ [
+ -73.56044786809647,
+ 45.51181534595175
+ ],
+ [
+ -73.56037805912197,
+ 45.511886309655765
+ ],
+ [
+ -73.56036437953433,
+ 45.511901893108174
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":905,
+ "ID_UEV":"01021003",
+ "CIVIQUE_DE":" 1217",
+ "CIVIQUE_FI":" 1221",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-7323-7-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":417,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000717398049529,
+ "OBJECTID":86357,
+ "Join_Count":1,
+ "TARGET_FID":86357,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":86357,
+ "Shape_Le_1":0.000717398049529,
+ "Shape_Ar_1":1.98280168132e-08,
+ "OBJECTID_3":86357,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86356,
+ "g_objectid":"943387",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161935",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103732370000000",
+ "g_sup_tota":"232.4",
+ "g_geometry":"0.000821485",
+ "g_geomet_1":"2.72914e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000717398049529,
+ "Shape_Area":1.98280168132e-08,
+ "Shape_Le_3":0.000717396626839,
+ "Shape_Ar_2":1.98280168132e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":906,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56155934021322,
+ 45.53190297189493
+ ],
+ [
+ -73.56158937037499,
+ 45.5319117492781
+ ],
+ [
+ -73.56158927055024,
+ 45.53191184910285
+ ],
+ [
+ -73.56161457027804,
+ 45.5319444486277
+ ],
+ [
+ -73.56163447047628,
+ 45.531936848457086
+ ],
+ [
+ -73.5616364705685,
+ 45.53193814887676
+ ],
+ [
+ -73.5616407783211,
+ 45.53194067777036
+ ],
+ [
+ -73.56177658584261,
+ 45.531808811078065
+ ],
+ [
+ -73.56169118532179,
+ 45.531777441825774
+ ],
+ [
+ -73.56163321951931,
+ 45.53183148748346
+ ],
+ [
+ -73.56155934021322,
+ 45.53190297189493
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":906,
+ "ID_UEV":"01022707",
+ "CIVIQUE_DE":" 2406",
+ "CIVIQUE_FI":" 2412",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-95-7944-4-000-0000",
+ "SUPERFICIE":281,
+ "SUPERFIC_1":362,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000563705389462,
+ "OBJECTID":86359,
+ "Join_Count":1,
+ "TARGET_FID":86359,
+ "feature_id":"da1a3347-13c1-4911-b6cc-5b657497e24b",
+ "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.65,
+ "heightmax":50.46,
+ "elevmin":30.06,
+ "elevmax":43.72,
+ "bldgarea":3391.1,
+ "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_2":86359,
+ "Shape_Le_1":0.000563705389462,
+ "Shape_Ar_1":1.56417335373e-08,
+ "OBJECTID_3":86359,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86358,
+ "g_objectid":"940383",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423731",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994395853910000000",
+ "g_sup_tota":"301.5",
+ "g_geometry":"0.00097692",
+ "g_geomet_1":"3.47255e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000563705389462,
+ "Shape_Area":1.56417335373e-08,
+ "Shape_Le_3":0.000563704354729,
+ "Shape_Ar_2":1.56417335373e-08,
+ "building_height":24.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":907,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55067794185538,
+ 45.536053231621636
+ ],
+ [
+ -73.55088042421406,
+ 45.53612504878227
+ ],
+ [
+ -73.5509213658502,
+ 45.53607054986628
+ ],
+ [
+ -73.5509176660393,
+ 45.5360692494466
+ ],
+ [
+ -73.55071776653354,
+ 45.536001249908054
+ ],
+ [
+ -73.55071576644131,
+ 45.5360005502355
+ ],
+ [
+ -73.55067794185538,
+ 45.536053231621636
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":907,
+ "ID_UEV":"01025552",
+ "CIVIQUE_DE":" 2801",
+ "CIVIQUE_FI":" 2803",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-80-2918-1-000-0000",
+ "SUPERFICIE":206,
+ "SUPERFIC_1":454,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000565049398904,
+ "OBJECTID":86364,
+ "Join_Count":1,
+ "TARGET_FID":86364,
+ "feature_id":"9cf52ec4-8f02-446a-ba21-b805414f3e6d",
+ "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":34.16,
+ "elevmin":20.86,
+ "elevmax":22.29,
+ "bldgarea":923.51,
+ "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_2":86364,
+ "Shape_Le_1":0.000565049398904,
+ "Shape_Ar_1":1.37294236739e-08,
+ "OBJECTID_3":86364,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86363,
+ "g_objectid":"943729",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360879",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004480322500000000",
+ "g_sup_tota":"199.4",
+ "g_geometry":"0.000784833",
+ "g_geomet_1":"2.29649e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000565049398904,
+ "Shape_Area":1.37294236739e-08,
+ "Shape_Le_3":0.000565048671094,
+ "Shape_Ar_2":1.37294236739e-08,
+ "building_height":16.819999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":908,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56065369683249,
+ 45.53467548193824
+ ],
+ [
+ -73.56075131194534,
+ 45.53471995970867
+ ],
+ [
+ -73.56087810915926,
+ 45.534583514567835
+ ],
+ [
+ -73.56077765308807,
+ 45.53454209359304
+ ],
+ [
+ -73.56065369683249,
+ 45.53467548193824
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":908,
+ "ID_UEV":"01023278",
+ "CIVIQUE_DE":" 2580",
+ "CIVIQUE_FI":" 2586",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-5255-8-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":435,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00058428815732,
+ "OBJECTID":86367,
+ "Join_Count":1,
+ "TARGET_FID":86367,
+ "feature_id":"29c4e604-8e30-495b-ab15-8f74b8b4825d",
+ "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.81,
+ "heightmax":51.24,
+ "elevmin":31.26,
+ "elevmax":39.48,
+ "bldgarea":1953.11,
+ "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_2":86367,
+ "Shape_Le_1":0.00058428815732,
+ "Shape_Ar_1":1.87463810262e-08,
+ "OBJECTID_3":86367,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86366,
+ "g_objectid":"941399",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425407",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308446050000000",
+ "g_sup_tota":"279.3",
+ "g_geometry":"0.00084112",
+ "g_geomet_1":"3.18996e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00058428815732,
+ "Shape_Area":1.87463810262e-08,
+ "Shape_Le_3":0.000584288896586,
+ "Shape_Ar_2":1.87463810262e-08,
+ "building_height":24.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":909,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5589514690569,
+ 45.53097834922173
+ ],
+ [
+ -73.55893696928754,
+ 45.53099374921245
+ ],
+ [
+ -73.55893636943975,
+ 45.53099434906026
+ ],
+ [
+ -73.55887676956911,
+ 45.53105694906924
+ ],
+ [
+ -73.55894386888629,
+ 45.53108834889848
+ ],
+ [
+ -73.55900269084336,
+ 45.53111594819275
+ ],
+ [
+ -73.55913347655054,
+ 45.53097882676174
+ ],
+ [
+ -73.55900706874307,
+ 45.53091964867314
+ ],
+ [
+ -73.5589514690569,
+ 45.53097834922173
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":909,
+ "ID_UEV":"01022742",
+ "CIVIQUE_DE":" 2245",
+ "CIVIQUE_FI":" 2245",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-14-9765-0-000-0000",
+ "SUPERFICIE":559,
+ "SUPERFIC_1":701,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000657410133215,
+ "OBJECTID":86368,
+ "Join_Count":1,
+ "TARGET_FID":86368,
+ "feature_id":"7b803f5e-f3fd-4e42-85c8-ad6613721067",
+ "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.61,
+ "heightmax":38.47,
+ "elevmin":25.72,
+ "elevmax":26.87,
+ "bldgarea":224.26,
+ "comment":" ",
+ "OBJECTID_2":86368,
+ "Shape_Le_1":0.000657410133215,
+ "Shape_Ar_1":2.50104085886e-08,
+ "OBJECTID_3":86368,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86367,
+ "g_objectid":"940449",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423906",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004314976500000000",
+ "g_sup_tota":"558.8",
+ "g_geometry":"0.001193",
+ "g_geomet_1":"6.46221e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000657410133215,
+ "Shape_Area":2.50104085886e-08,
+ "Shape_Le_3":0.000657410817162,
+ "Shape_Ar_2":2.50104085886e-08,
+ "building_height":17.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":910,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5584371692618,
+ 45.531065649110715
+ ],
+ [
+ -73.55864076947778,
+ 45.5311578485062
+ ],
+ [
+ -73.55885426943084,
+ 45.53092504910203
+ ],
+ [
+ -73.55875876952344,
+ 45.530881748544154
+ ],
+ [
+ -73.55877896919591,
+ 45.53085984915301
+ ],
+ [
+ -73.55877936939423,
+ 45.530859748428945
+ ],
+ [
+ -73.55867106943614,
+ 45.530810649042515
+ ],
+ [
+ -73.5584371692618,
+ 45.531065649110715
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55837401616975,
+ 45.53106553309817
+ ],
+ [
+ -73.5583803330078,
+ 45.53106841722397
+ ],
+ [
+ -73.5586777693854,
+ 45.53075274889054
+ ],
+ [
+ -73.55867401471585,
+ 45.53075100150781
+ ],
+ [
+ -73.55837401616975,
+ 45.53106553309817
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":910,
+ "ID_UEV":"01022743",
+ "CIVIQUE_DE":" 2225",
+ "CIVIQUE_FI":" 2225",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1948,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres industries de produits manufactur\u00c3\u00a9s",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-24-1553-7-000-0000",
+ "SUPERFICIE":1321,
+ "SUPERFIC_1":608,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00201884667781,
+ "OBJECTID":86369,
+ "Join_Count":2,
+ "TARGET_FID":86369,
+ "feature_id":"f6eb07ec-b2c2-43d6-984c-0a32f1e82e79",
+ "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.46,
+ "heightmax":41.72,
+ "elevmin":23.06,
+ "elevmax":25.39,
+ "bldgarea":1041.61,
+ "comment":" ",
+ "OBJECTID_2":86369,
+ "Shape_Le_1":0.00201884667781,
+ "Shape_Ar_1":7.27541739077e-08,
+ "OBJECTID_3":86369,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86368,
+ "g_objectid":"2284945",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Industrie l\u00c3\u00a9g\u00c3\u00a8re",
+ "g_no_lot":"1423900",
+ "g_nb_poly_":"1",
+ "g_utilisat":"2699",
+ "g_nb_logem":" ",
+ "g_nb_locau":"48",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004324393700000000",
+ "g_sup_tota":"1177",
+ "g_geometry":"0.00153854",
+ "g_geomet_1":"1.36125e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00201884667781,
+ "Shape_Area":7.27541739077e-08,
+ "Shape_Le_3":0.00201884716478,
+ "Shape_Ar_2":7.27541739077e-08,
+ "building_height":19.63
+ }
+ },
+ {
+ "type":"Feature",
+ "id":911,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55184141367215,
+ 45.53109060259953
+ ],
+ [
+ -73.55185236651535,
+ 45.53109554887078
+ ],
+ [
+ -73.55188216645067,
+ 45.53110844874621
+ ],
+ [
+ -73.55191171367649,
+ 45.531120995188076
+ ],
+ [
+ -73.55201937511592,
+ 45.53100166684374
+ ],
+ [
+ -73.55199736600748,
+ 45.53099204859446
+ ],
+ [
+ -73.55200606604896,
+ 45.530981748659066
+ ],
+ [
+ -73.55196456593382,
+ 45.53096474877443
+ ],
+ [
+ -73.55197126588305,
+ 45.53095664858076
+ ],
+ [
+ -73.55197026583694,
+ 45.53095634910652
+ ],
+ [
+ -73.55196427455347,
+ 45.530954429053956
+ ],
+ [
+ -73.55184141367215,
+ 45.53109060259953
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":911,
+ "ID_UEV":"01018740",
+ "CIVIQUE_DE":" 1844",
+ "CIVIQUE_FI":" 1846",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1998,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-74-4156-1-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":252,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000520910696587,
+ "OBJECTID":86370,
+ "Join_Count":1,
+ "TARGET_FID":86370,
+ "feature_id":"12dcaefd-3554-4490-b1b3-7ddb4c1195d1",
+ "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.46,
+ "heightmax":33.5,
+ "elevmin":19.08,
+ "elevmax":21.19,
+ "bldgarea":1785.7,
+ "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_2":86370,
+ "Shape_Le_1":0.000520910696587,
+ "Shape_Ar_1":1.23982187287e-08,
+ "OBJECTID_3":86370,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86369,
+ "g_objectid":"940654",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424226",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004374415610000000",
+ "g_sup_tota":"177.3",
+ "g_geometry":"0.000715476",
+ "g_geomet_1":"2.04202e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000520910696587,
+ "Shape_Area":1.23982187287e-08,
+ "Shape_Le_3":0.00052091131436,
+ "Shape_Ar_2":1.23982187287e-08,
+ "building_height":15.52
+ }
+ },
+ {
+ "type":"Feature",
+ "id":912,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55858832910995,
+ 45.51522164511313
+ ],
+ [
+ -73.55888316734614,
+ 45.515355873425115
+ ],
+ [
+ -73.55904375388798,
+ 45.51518295358074
+ ],
+ [
+ -73.55892248031006,
+ 45.51512774150236
+ ],
+ [
+ -73.55874893094025,
+ 45.51504872976536
+ ],
+ [
+ -73.55858832910995,
+ 45.51522164511313
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":912,
+ "ID_UEV":"01040708",
+ "CIVIQUE_DE":" 570",
+ "CIVIQUE_FI":" 580",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1903,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-26-0499-3-000-0000",
+ "SUPERFICIE":627,
+ "SUPERFIC_1":1370,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00111987341233,
+ "OBJECTID":86378,
+ "Join_Count":1,
+ "TARGET_FID":86378,
+ "feature_id":"5f60bb39-6e53-48f2-8690-58f65c69ea25",
+ "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":40.55,
+ "elevmin":21.57,
+ "elevmax":23.51,
+ "bldgarea":2420.45,
+ "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_2":86378,
+ "Shape_Le_1":0.00111987341233,
+ "Shape_Ar_1":7.2537333693e-08,
+ "OBJECTID_3":86378,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86377,
+ "g_objectid":"943422",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162032",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"15",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004116967760000000",
+ "g_sup_tota":"371.5",
+ "g_geometry":"0.000857048",
+ "g_geomet_1":"4.3111e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00111987341233,
+ "Shape_Area":7.2537333693e-08,
+ "Shape_Le_3":0.00111987293163,
+ "Shape_Ar_2":7.2537333693e-08,
+ "building_height":20.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":913,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55246238025649,
+ 45.53090587375736
+ ],
+ [
+ -73.55277197456881,
+ 45.53104422725958
+ ],
+ [
+ -73.5528535637628,
+ 45.530953520738684
+ ],
+ [
+ -73.55284536734167,
+ 45.530949748982025
+ ],
+ [
+ -73.55269376682573,
+ 45.53088004882549
+ ],
+ [
+ -73.55268966681652,
+ 45.530878148558
+ ],
+ [
+ -73.55254452882879,
+ 45.530815221195795
+ ],
+ [
+ -73.55247143732882,
+ 45.53089587959146
+ ],
+ [
+ -73.55246238025649,
+ 45.53090587375736
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":913,
+ "ID_UEV":"01018562",
+ "CIVIQUE_DE":" 1883",
+ "CIVIQUE_FI":" 1905",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-8951-2-000-0000",
+ "SUPERFICIE":698,
+ "SUPERFIC_1":969,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000922031261053,
+ "OBJECTID":86379,
+ "Join_Count":1,
+ "TARGET_FID":86379,
+ "feature_id":"56c03a4f-6360-48c4-9fd7-d03eb9fc5077",
+ "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.5,
+ "heightmax":31.36,
+ "elevmin":18.04,
+ "elevmax":20.29,
+ "bldgarea":2609.92,
+ "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_2":86379,
+ "Shape_Le_1":0.000922031261053,
+ "Shape_Ar_1":3.96850600946e-08,
+ "OBJECTID_3":86379,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86378,
+ "g_objectid":"940614",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424152",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004364746130000000",
+ "g_sup_tota":"165.4",
+ "g_geometry":"0.000659698",
+ "g_geomet_1":"1.91128e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000922031261053,
+ "Shape_Area":3.96850600946e-08,
+ "Shape_Le_3":0.000922030749717,
+ "Shape_Ar_2":3.96850600946e-08,
+ "building_height":14.43
+ }
+ },
+ {
+ "type":"Feature",
+ "id":914,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56107294638122,
+ 45.5083439017
+ ],
+ [
+ -73.56114530133644,
+ 45.50837010884374
+ ],
+ [
+ -73.5611552046708,
+ 45.50836003373886
+ ],
+ [
+ -73.56116209797429,
+ 45.50835301453029
+ ],
+ [
+ -73.56116212585327,
+ 45.50835299204724
+ ],
+ [
+ -73.56116451175465,
+ 45.508353999287934
+ ],
+ [
+ -73.56129056792722,
+ 45.508221744987836
+ ],
+ [
+ -73.56129088089129,
+ 45.50822139515156
+ ],
+ [
+ -73.56128787715565,
+ 45.50822002278612
+ ],
+ [
+ -73.5612154268723,
+ 45.5081865841938
+ ],
+ [
+ -73.56121540079195,
+ 45.50818661477075
+ ],
+ [
+ -73.56107294638122,
+ 45.5083439017
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":914,
+ "ID_UEV":"01058665",
+ "CIVIQUE_DE":" 1105",
+ "CIVIQUE_FI":" 1107",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-09-1831-4-000-0000",
+ "SUPERFICIE":161,
+ "SUPERFIC_1":218,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000582185179134,
+ "OBJECTID":86382,
+ "Join_Count":1,
+ "TARGET_FID":86382,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":86382,
+ "Shape_Le_1":0.000582185179134,
+ "Shape_Ar_1":1.59376257426e-08,
+ "OBJECTID_3":86382,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86381,
+ "g_objectid":"939469",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179695",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004009183140000000",
+ "g_sup_tota":"183.2",
+ "g_geometry":"0.000640078",
+ "g_geomet_1":"2.10953e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000582185179134,
+ "Shape_Area":1.59376257426e-08,
+ "Shape_Le_3":0.000582184621174,
+ "Shape_Ar_2":1.59376257426e-08,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":915,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56011682855065,
+ 45.50733141886019
+ ],
+ [
+ -73.56039398791405,
+ 45.50744718588921
+ ],
+ [
+ -73.56045070006161,
+ 45.507370032151556
+ ],
+ [
+ -73.56044186692047,
+ 45.50736654458066
+ ],
+ [
+ -73.56045065779347,
+ 45.507355474825594
+ ],
+ [
+ -73.56029328093202,
+ 45.50729249170542
+ ],
+ [
+ -73.56030688317796,
+ 45.507276899259786
+ ],
+ [
+ -73.56020533802777,
+ 45.507233102276146
+ ],
+ [
+ -73.56011682855065,
+ 45.50733141886019
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":915,
+ "ID_UEV":"01058911",
+ "CIVIQUE_DE":" 62",
+ "CIVIQUE_FI":" 68",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-08-8826-9-000-0000",
+ "SUPERFICIE":288,
+ "SUPERFIC_1":532,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000852833094113,
+ "OBJECTID":86384,
+ "Join_Count":1,
+ "TARGET_FID":86384,
+ "feature_id":"5fa8615b-1dfc-449d-94a3-aef32dcfd382",
+ "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":37.06,
+ "elevmin":15.52,
+ "elevmax":18.37,
+ "bldgarea":6271.4,
+ "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_2":86384,
+ "Shape_Le_1":0.000852833094113,
+ "Shape_Ar_1":3.30006353871e-08,
+ "OBJECTID_3":86384,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86383,
+ "g_objectid":"938006",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180600",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004008882690000000",
+ "g_sup_tota":"287.7",
+ "g_geometry":"0.000852084",
+ "g_geomet_1":"3.3125e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000852833094113,
+ "Shape_Area":3.30006353871e-08,
+ "Shape_Le_3":0.000852831596314,
+ "Shape_Ar_2":3.30006353871e-08,
+ "building_height":18.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":916,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55321000645847,
+ 45.519924402439514
+ ],
+ [
+ -73.55328810268564,
+ 45.51996071526509
+ ],
+ [
+ -73.55338665129477,
+ 45.519854731960606
+ ],
+ [
+ -73.55332996612688,
+ 45.51982424674189
+ ],
+ [
+ -73.55332986630214,
+ 45.51982424674189
+ ],
+ [
+ -73.5532961660071,
+ 45.519860846451195
+ ],
+ [
+ -73.55327716333227,
+ 45.51985217878532
+ ],
+ [
+ -73.55321000645847,
+ 45.519924402439514
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":916,
+ "ID_UEV":"01021973",
+ "CIVIQUE_DE":" 1252",
+ "CIVIQUE_FI":" 1254",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-62-3112-2-000-0000",
+ "SUPERFICIE":223,
+ "SUPERFIC_1":213,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000464570109093,
+ "OBJECTID":86390,
+ "Join_Count":1,
+ "TARGET_FID":86390,
+ "feature_id":"f85a52eb-3175-4ae5-8d1f-620639cd88b5",
+ "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.27,
+ "heightmax":11.7,
+ "elevmin":15.52,
+ "elevmax":18.46,
+ "bldgarea":697.02,
+ "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_2":86390,
+ "Shape_Le_1":0.000464570109093,
+ "Shape_Ar_1":1.10713695664e-08,
+ "OBJECTID_3":86390,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86389,
+ "g_objectid":"941875",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566761",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262251730000000",
+ "g_sup_tota":"225.3",
+ "g_geometry":"0.000804121",
+ "g_geomet_1":"2.60767e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000464570109093,
+ "Shape_Area":1.10713695664e-08,
+ "Shape_Le_3":0.000464569682618,
+ "Shape_Ar_2":1.10713695664e-08,
+ "building_height":4.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":917,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54493057340908,
+ 45.53013069862314
+ ],
+ [
+ -73.54496926404215,
+ 45.53014794941863
+ ],
+ [
+ -73.54484686451303,
+ 45.53028355009606
+ ],
+ [
+ -73.54482826383516,
+ 45.530304149966845
+ ],
+ [
+ -73.54477456441646,
+ 45.53036334963917
+ ],
+ [
+ -73.54477396456865,
+ 45.530363949486976
+ ],
+ [
+ -73.54478606404746,
+ 45.53036865024331
+ ],
+ [
+ -73.5447400637248,
+ 45.53042704951901
+ ],
+ [
+ -73.54473716431053,
+ 45.530430750229236
+ ],
+ [
+ -73.54484266377976,
+ 45.530471649597246
+ ],
+ [
+ -73.54484276450383,
+ 45.530471649597246
+ ],
+ [
+ -73.54486936375199,
+ 45.53044014994326
+ ],
+ [
+ -73.54495296383006,
+ 45.53047495010915
+ ],
+ [
+ -73.54495696401452,
+ 45.53047655000307
+ ],
+ [
+ -73.54501126418035,
+ 45.53041054965744
+ ],
+ [
+ -73.5450257639497,
+ 45.53041645010938
+ ],
+ [
+ -73.54502896373754,
+ 45.53041314959747
+ ],
+ [
+ -73.54505916387116,
+ 45.530383249837406
+ ],
+ [
+ -73.54504296438314,
+ 45.53037514964374
+ ],
+ [
+ -73.54514056420751,
+ 45.5302793502621
+ ],
+ [
+ -73.5451438638201,
+ 45.53027604975019
+ ],
+ [
+ -73.54513106376942,
+ 45.53027025002232
+ ],
+ [
+ -73.54516516426277,
+ 45.53023304956588
+ ],
+ [
+ -73.54519936368153,
+ 45.53024855028067
+ ],
+ [
+ -73.54520225320327,
+ 45.53024537927113
+ ],
+ [
+ -73.54493057340908,
+ 45.53013069862314
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":917,
+ "ID_UEV":"01019503",
+ "CIVIQUE_DE":" 2580",
+ "CIVIQUE_FI":" 2580",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":31,
+ "ANNEE_CONS":1988,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-23-9583-6-000-0000",
+ "SUPERFICIE":1536,
+ "SUPERFIC_1":2388,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00138393118657,
+ "OBJECTID":86396,
+ "Join_Count":1,
+ "TARGET_FID":86396,
+ "feature_id":"611f06a4-dc1f-4117-98ab-6118e28c9d9e",
+ "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":3.43,
+ "heightmax":14.94,
+ "elevmin":17.36,
+ "elevmax":19.93,
+ "bldgarea":1216.88,
+ "comment":" ",
+ "OBJECTID_2":86396,
+ "Shape_Le_1":0.00138393118657,
+ "Shape_Ar_1":7.32876691474e-08,
+ "OBJECTID_3":86396,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86395,
+ "g_objectid":"941081",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424974",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"32",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014323785680000000",
+ "g_sup_tota":"456.5",
+ "g_geometry":"0.00103746",
+ "g_geomet_1":"5.2459e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00138393118657,
+ "Shape_Area":7.32876691474e-08,
+ "Shape_Le_3":0.00138393002443,
+ "Shape_Ar_2":7.32876691474e-08,
+ "building_height":5.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":918,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56317523397172,
+ 45.52276804885666
+ ],
+ [
+ -73.56325567023484,
+ 45.52281284768507
+ ],
+ [
+ -73.56328190345893,
+ 45.522827422098146
+ ],
+ [
+ -73.56336362845053,
+ 45.52274561346958
+ ],
+ [
+ -73.56336571307904,
+ 45.52274659013332
+ ],
+ [
+ -73.56338103932535,
+ 45.52273162181719
+ ],
+ [
+ -73.56330807013317,
+ 45.52269214787462
+ ],
+ [
+ -73.5633036697504,
+ 45.52268974758408
+ ],
+ [
+ -73.56328297005487,
+ 45.52270994815588
+ ],
+ [
+ -73.5632573699535,
+ 45.522696947556376
+ ],
+ [
+ -73.56329386983806,
+ 45.522661347893184
+ ],
+ [
+ -73.56329736999947,
+ 45.52265794755653
+ ],
+ [
+ -73.56329090477328,
+ 45.5226546992053
+ ],
+ [
+ -73.56317523397172,
+ 45.52276804885666
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":918,
+ "ID_UEV":"01040530",
+ "CIVIQUE_DE":" 2104",
+ "CIVIQUE_FI":" 2108",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-85-5132-1-000-0000",
+ "SUPERFICIE":338,
+ "SUPERFIC_1":328,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00063210001357,
+ "OBJECTID":86400,
+ "Join_Count":1,
+ "TARGET_FID":86400,
+ "feature_id":"dbe42acc-1f36-42b4-b829-7e0d9dba660f",
+ "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.94,
+ "heightmax":15.12,
+ "elevmin":27.51,
+ "elevmax":31.13,
+ "bldgarea":1700.65,
+ "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_2":86400,
+ "Shape_Le_1":0.00063210001357,
+ "Shape_Ar_1":1.53448282284e-08,
+ "OBJECTID_3":86400,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86399,
+ "g_objectid":"941574",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565477",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994285622520000000",
+ "g_sup_tota":"446.7",
+ "g_geometry":"0.000992357",
+ "g_geomet_1":"5.15598e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00063210001357,
+ "Shape_Area":1.53448282284e-08,
+ "Shape_Le_3":0.000632102055064,
+ "Shape_Ar_2":1.53448282284e-08,
+ "building_height":6.59
+ }
+ },
+ {
+ "type":"Feature",
+ "id":919,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56374197143668,
+ 45.52304032310273
+ ],
+ [
+ -73.56375037020527,
+ 45.523044947416686
+ ],
+ [
+ -73.56376026994235,
+ 45.52303594790097
+ ],
+ [
+ -73.563781969684,
+ 45.523047548256045
+ ],
+ [
+ -73.56381127049558,
+ 45.523062448223705
+ ],
+ [
+ -73.56384357054618,
+ 45.52307854788697
+ ],
+ [
+ -73.56397467011678,
+ 45.5229492478598
+ ],
+ [
+ -73.56399116997835,
+ 45.52293294764771
+ ],
+ [
+ -73.56390136997409,
+ 45.52288804809524
+ ],
+ [
+ -73.56382767053242,
+ 45.52296094803962
+ ],
+ [
+ -73.56382444106694,
+ 45.52295933285722
+ ],
+ [
+ -73.56375085853713,
+ 45.52303159608159
+ ],
+ [
+ -73.56374197143668,
+ 45.52304032310273
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":919,
+ "ID_UEV":"01040533",
+ "CIVIQUE_DE":" 2154",
+ "CIVIQUE_FI":" 2162",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1908,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-85-0761-2-000-0000",
+ "SUPERFICIE":309,
+ "SUPERFIC_1":452,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000647124848693,
+ "OBJECTID":86401,
+ "Join_Count":1,
+ "TARGET_FID":86401,
+ "feature_id":"dbe42acc-1f36-42b4-b829-7e0d9dba660f",
+ "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.94,
+ "heightmax":15.12,
+ "elevmin":27.51,
+ "elevmax":31.13,
+ "bldgarea":1700.65,
+ "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_2":86401,
+ "Shape_Le_1":0.000647124848693,
+ "Shape_Ar_1":2.01477809095e-08,
+ "OBJECTID_3":86401,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86400,
+ "g_objectid":"944787",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994285215300030001",
+ "g_sup_tota":"491.5",
+ "g_geometry":"0.0018816",
+ "g_geomet_1":"5.63889e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000647124848693,
+ "Shape_Area":2.01477809095e-08,
+ "Shape_Le_3":0.00064712387589,
+ "Shape_Ar_2":2.01477809095e-08,
+ "building_height":6.59
+ }
+ },
+ {
+ "type":"Feature",
+ "id":920,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56414193232617,
+ 45.52321456854779
+ ],
+ [
+ -73.56417227005606,
+ 45.52322964748054
+ ],
+ [
+ -73.56416137027287,
+ 45.52324014796475
+ ],
+ [
+ -73.56420986981149,
+ 45.523263347775575
+ ],
+ [
+ -73.56422497032796,
+ 45.52324834798317
+ ],
+ [
+ -73.56425257052156,
+ 45.52326224790471
+ ],
+ [
+ -73.5643903700414,
+ 45.52312714814966
+ ],
+ [
+ -73.56428612872371,
+ 45.52307463223878
+ ],
+ [
+ -73.56414193232617,
+ 45.52321456854779
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":920,
+ "ID_UEV":"01040536",
+ "CIVIQUE_DE":" 2204",
+ "CIVIQUE_FI":" 2212",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-75-7581-8-000-0000",
+ "SUPERFICIE":381,
+ "SUPERFIC_1":509,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000665600320925,
+ "OBJECTID":86406,
+ "Join_Count":1,
+ "TARGET_FID":86406,
+ "feature_id":"30a7cd84-8092-40a2-a515-3d64069ee561",
+ "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.63,
+ "heightmax":12.35,
+ "elevmin":31.3,
+ "elevmax":32.74,
+ "bldgarea":377.34,
+ "comment":" ",
+ "OBJECTID_2":86406,
+ "Shape_Le_1":0.000665600320925,
+ "Shape_Ar_1":2.27587986817e-08,
+ "OBJECTID_3":86406,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86405,
+ "g_objectid":"941535",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565365",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994275847520000000",
+ "g_sup_tota":"381.3",
+ "g_geometry":"0.000984534",
+ "g_geomet_1":"4.4053e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000665600320925,
+ "Shape_Area":2.27587986817e-08,
+ "Shape_Le_3":0.000665598904435,
+ "Shape_Ar_2":2.27587986817e-08,
+ "building_height":4.859999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":921,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5644715599364,
+ 45.523231495587346
+ ],
+ [
+ -73.5644658699258,
+ 45.523228748158495
+ ],
+ [
+ -73.56450917048367,
+ 45.52318434772976
+ ],
+ [
+ -73.56451187024845,
+ 45.523181647964975
+ ],
+ [
+ -73.56442507038254,
+ 45.52313814775761
+ ],
+ [
+ -73.56428576989421,
+ 45.523275647803196
+ ],
+ [
+ -73.56428567006947,
+ 45.523275847452695
+ ],
+ [
+ -73.56431167036914,
+ 45.523288547678625
+ ],
+ [
+ -73.56429506978348,
+ 45.523305248089024
+ ],
+ [
+ -73.56434147030446,
+ 45.52332794787679
+ ],
+ [
+ -73.56435406980633,
+ 45.523315147826104
+ ],
+ [
+ -73.56437573267577,
+ 45.52332578590659
+ ],
+ [
+ -73.5644715599364,
+ 45.523231495587346
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":921,
+ "ID_UEV":"01040537",
+ "CIVIQUE_DE":" 2214",
+ "CIVIQUE_FI":" 2224",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-75-6687-4-000-0000",
+ "SUPERFICIE":378,
+ "SUPERFIC_1":505,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000645870732495,
+ "OBJECTID":86407,
+ "Join_Count":1,
+ "TARGET_FID":86407,
+ "feature_id":"33662727-9696-4df0-be48-5373637d7e35",
+ "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.25,
+ "heightmax":11.89,
+ "elevmin":32.23,
+ "elevmax":34.04,
+ "bldgarea":344.91,
+ "comment":" ",
+ "OBJECTID_2":86407,
+ "Shape_Le_1":0.000645870732495,
+ "Shape_Ar_1":2.0194517146e-08,
+ "OBJECTID_3":86407,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86406,
+ "g_objectid":"941530",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565359",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994275589210000000",
+ "g_sup_tota":"315.6",
+ "g_geometry":"0.000932122",
+ "g_geomet_1":"3.58166e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000645870732495,
+ "Shape_Area":2.0194517146e-08,
+ "Shape_Le_3":0.000645872279948,
+ "Shape_Ar_2":2.0194517146e-08,
+ "building_height":4.82
+ }
+ },
+ {
+ "type":"Feature",
+ "id":922,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55065756141917,
+ 45.523010510576896
+ ],
+ [
+ -73.55069156478574,
+ 45.52302674783644
+ ],
+ [
+ -73.5507382548884,
+ 45.52304904742589
+ ],
+ [
+ -73.55083135630389,
+ 45.522949407039796
+ ],
+ [
+ -73.55075066103602,
+ 45.5229108701908
+ ],
+ [
+ -73.55065756141917,
+ 45.523010510576896
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":922,
+ "ID_UEV":"01022136",
+ "CIVIQUE_DE":" 1267",
+ "CIVIQUE_FI":" 1273",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-85-3565-2-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":264,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000451583107015,
+ "OBJECTID":86414,
+ "Join_Count":1,
+ "TARGET_FID":86414,
+ "feature_id":"9eeb7926-ecc8-4733-8a07-4fbf93032822",
+ "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.51,
+ "heightmax":29.65,
+ "elevmin":16.2,
+ "elevmax":17.71,
+ "bldgarea":1649.56,
+ "comment":" ",
+ "OBJECTID_2":86414,
+ "Shape_Le_1":0.000451583107015,
+ "Shape_Ar_1":1.16282028096e-08,
+ "OBJECTID_3":86414,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86413,
+ "g_objectid":"942313",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567843",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004285356520000000",
+ "g_sup_tota":"159.3",
+ "g_geometry":"0.000610203",
+ "g_geomet_1":"1.83764e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000451583107015,
+ "Shape_Area":1.16282028096e-08,
+ "Shape_Le_3":0.000451581864516,
+ "Shape_Ar_2":1.16282028096e-08,
+ "building_height":13.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":923,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54871146538366,
+ 45.528923149234245
+ ],
+ [
+ -73.54883676522638,
+ 45.52898504867135
+ ],
+ [
+ -73.54896456518438,
+ 45.52904804887865
+ ],
+ [
+ -73.54919946540485,
+ 45.52881294900868
+ ],
+ [
+ -73.54894636470482,
+ 45.52868804846496
+ ],
+ [
+ -73.54871146538366,
+ 45.528923149234245
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54894741241499,
+ 45.52865399743433
+ ],
+ [
+ -73.54894736475093,
+ 45.528654048695685
+ ],
+ [
+ -73.5491684648746,
+ 45.52875414863534
+ ],
+ [
+ -73.54916905123257,
+ 45.528753510116694
+ ],
+ [
+ -73.54916858988037,
+ 45.52875329158144
+ ],
+ [
+ -73.54894741241499,
+ 45.52865399743433
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":923,
+ "ID_UEV":"01018523",
+ "CIVIQUE_DE":" 1550",
+ "CIVIQUE_FI":" 1552",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc d'amusement (ext\u00c3\u00a9rieur)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-92-7517-3-000-0000",
+ "SUPERFICIE":1087,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0017157552902,
+ "OBJECTID":86416,
+ "Join_Count":2,
+ "TARGET_FID":86416,
+ "feature_id":"01efb390-33b6-4c95-ba16-0189a02d3557",
+ "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.6,
+ "heightmax":29.99,
+ "elevmin":18.49,
+ "elevmax":20.18,
+ "bldgarea":524.7,
+ "comment":" ",
+ "OBJECTID_2":86416,
+ "Shape_Le_1":0.0017157552902,
+ "Shape_Ar_1":8.89604622184e-08,
+ "OBJECTID_3":86416,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86415,
+ "g_objectid":"938598",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"1424425",
+ "g_nb_poly_":"1",
+ "g_utilisat":"7312",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004392751730000000",
+ "g_sup_tota":"1086.7",
+ "g_geometry":"0.00146162",
+ "g_geomet_1":"1.26257e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0017157552902,
+ "Shape_Area":8.89604622184e-08,
+ "Shape_Le_3":0.00171575668815,
+ "Shape_Ar_2":8.89604622184e-08,
+ "building_height":12.695
+ }
+ },
+ {
+ "type":"Feature",
+ "id":924,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54914842618076,
+ 45.52901616701279
+ ],
+ [
+ -73.54908126481037,
+ 45.52898664856527
+ ],
+ [
+ -73.5490760649303,
+ 45.528984348998804
+ ],
+ [
+ -73.54899233984645,
+ 45.52908426367812
+ ],
+ [
+ -73.54905831680972,
+ 45.529114015949375
+ ],
+ [
+ -73.54912488822485,
+ 45.529041726644664
+ ],
+ [
+ -73.54914842618076,
+ 45.52901616701279
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":924,
+ "ID_UEV":"01018524",
+ "CIVIQUE_DE":" 1568",
+ "CIVIQUE_FI":" 1572",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-92-6432-6-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":273,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0004147982709,
+ "OBJECTID":86417,
+ "Join_Count":1,
+ "TARGET_FID":86417,
+ "feature_id":"a62d27bb-fd41-4e46-901e-46c0d65a45da",
+ "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":3.61,
+ "heightmax":31.22,
+ "elevmin":19.93,
+ "elevmax":20.43,
+ "bldgarea":96.21,
+ "comment":" ",
+ "OBJECTID_2":86417,
+ "Shape_Le_1":0.0004147982709,
+ "Shape_Ar_1":9.51482869074e-09,
+ "OBJECTID_3":86417,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86416,
+ "g_objectid":"940784",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424423",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004392594580000000",
+ "g_sup_tota":"138.4",
+ "g_geometry":"0.000536225",
+ "g_geomet_1":"1.58694e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0004147982709,
+ "Shape_Area":9.51482869074e-09,
+ "Shape_Le_3":0.000414798595851,
+ "Shape_Ar_2":9.51482869074e-09,
+ "building_height":13.805
+ }
+ },
+ {
+ "type":"Feature",
+ "id":925,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55018164109171,
+ 45.529613470635454
+ ],
+ [
+ -73.55025436117168,
+ 45.52964588849725
+ ],
+ [
+ -73.55035287200928,
+ 45.52953869020868
+ ],
+ [
+ -73.55029786587565,
+ 45.52949424841113
+ ],
+ [
+ -73.55029786587565,
+ 45.5294943491352
+ ],
+ [
+ -73.55028406577885,
+ 45.529511349019835
+ ],
+ [
+ -73.55027791441606,
+ 45.52950889117268
+ ],
+ [
+ -73.55027184399225,
+ 45.52951548500192
+ ],
+ [
+ -73.55018164109171,
+ 45.529613470635454
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55029672373665,
+ 45.52948845767648
+ ],
+ [
+ -73.55029786587565,
+ 45.52948904853106
+ ],
+ [
+ -73.5503656657647,
+ 45.52942444842984
+ ],
+ [
+ -73.55035888307783,
+ 45.52942093567793
+ ],
+ [
+ -73.55031478302266,
+ 45.529468840764686
+ ],
+ [
+ -73.55029672373665,
+ 45.52948845767648
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":925,
+ "ID_UEV":"01018529",
+ "CIVIQUE_DE":" 1656",
+ "CIVIQUE_FI":" 1660",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-82-7091-0-000-0000",
+ "SUPERFICIE":179,
+ "SUPERFIC_1":266,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000661039085481,
+ "OBJECTID":86418,
+ "Join_Count":2,
+ "TARGET_FID":86418,
+ "feature_id":"be07657b-abdc-4b55-b09c-a26bc84bda09",
+ "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.76,
+ "heightmax":33.77,
+ "elevmin":19.71,
+ "elevmax":21.09,
+ "bldgarea":883.13,
+ "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_2":86418,
+ "Shape_Le_1":0.000661039085481,
+ "Shape_Ar_1":1.20193758836e-08,
+ "OBJECTID_3":86418,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86417,
+ "g_objectid":"940593",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424122",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004382649540000000",
+ "g_sup_tota":"178.4",
+ "g_geometry":"0.000704822",
+ "g_geomet_1":"2.0584e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000661039085481,
+ "Shape_Area":1.20193758836e-08,
+ "Shape_Le_3":0.000661038829034,
+ "Shape_Ar_2":1.20193758836e-08,
+ "building_height":15.505000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":926,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55236812321216,
+ 45.53132338311793
+ ],
+ [
+ -73.5524149670989,
+ 45.53134524923416
+ ],
+ [
+ -73.55248113381911,
+ 45.531376212892205
+ ],
+ [
+ -73.55249049306364,
+ 45.531365840111725
+ ],
+ [
+ -73.55256560444094,
+ 45.5312825889706
+ ],
+ [
+ -73.55256608917551,
+ 45.53128205207534
+ ],
+ [
+ -73.5525635674765,
+ 45.53128094860719
+ ],
+ [
+ -73.55256256743039,
+ 45.53128054840888
+ ],
+ [
+ -73.55255446723672,
+ 45.53127734862104
+ ],
+ [
+ -73.55261216683988,
+ 45.53120104923933
+ ],
+ [
+ -73.55253866704768,
+ 45.53117364869522
+ ],
+ [
+ -73.552472166679,
+ 45.53124464927144
+ ],
+ [
+ -73.55244904510919,
+ 45.53123391046689
+ ],
+ [
+ -73.55236812321216,
+ 45.53132338311793
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5524925839874,
+ 45.53118577155641
+ ],
+ [
+ -73.55247696186414,
+ 45.531203043935626
+ ],
+ [
+ -73.55249266672503,
+ 45.53118634892116
+ ],
+ [
+ -73.5524929670986,
+ 45.531185848898104
+ ],
+ [
+ -73.5524925839874,
+ 45.53118577155641
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":926,
+ "ID_UEV":"01018751",
+ "CIVIQUE_DE":" 1894",
+ "CIVIQUE_FI":" 1904",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-9883-6-000-0000",
+ "SUPERFICIE":291,
+ "SUPERFIC_1":527,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000728806669894,
+ "OBJECTID":86420,
+ "Join_Count":1,
+ "TARGET_FID":86420,
+ "feature_id":"85b205f5-c961-46b5-93e2-37a5b4d11d24",
+ "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.5,
+ "heightmax":34.15,
+ "elevmin":18.38,
+ "elevmax":19.46,
+ "bldgarea":449.74,
+ "comment":" ",
+ "OBJECTID_2":86420,
+ "Shape_Le_1":0.000728806669894,
+ "Shape_Ar_1":2.22876930233e-08,
+ "OBJECTID_3":86420,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86419,
+ "g_objectid":"940649",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424215",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004364988360000000",
+ "g_sup_tota":"290.6",
+ "g_geometry":"0.000811919",
+ "g_geomet_1":"3.34376e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000728806669894,
+ "Shape_Area":2.22876930233e-08,
+ "Shape_Le_3":0.000728807416783,
+ "Shape_Ar_2":2.22876930233e-08,
+ "building_height":15.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":927,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55391238327172,
+ 45.536554759245035
+ ],
+ [
+ -73.5541580330886,
+ 45.536641898155374
+ ],
+ [
+ -73.55423840639918,
+ 45.53652228292731
+ ],
+ [
+ -73.5539568673374,
+ 45.536425749698886
+ ],
+ [
+ -73.55390506728688,
+ 45.536499049841574
+ ],
+ [
+ -73.55398296746182,
+ 45.536526249836854
+ ],
+ [
+ -73.55396236669172,
+ 45.536555350099626
+ ],
+ [
+ -73.553921867522,
+ 45.53654124962926
+ ],
+ [
+ -73.55391238327172,
+ 45.536554759245035
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":927,
+ "ID_UEV":"01025815",
+ "CIVIQUE_DE":" 2750",
+ "CIVIQUE_FI":" 2756",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1935,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-50-7869-4-000-0000",
+ "SUPERFICIE":394,
+ "SUPERFIC_1":731,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000969697296993,
+ "OBJECTID":86423,
+ "Join_Count":1,
+ "TARGET_FID":86423,
+ "feature_id":"46f475c5-5b08-483c-ae47-9c1573686c7a",
+ "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.35,
+ "elevmin":18.56,
+ "elevmax":19.35,
+ "bldgarea":1009.32,
+ "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_2":86423,
+ "Shape_Le_1":0.000969697296993,
+ "Shape_Ar_1":3.77488347105e-08,
+ "OBJECTID_3":86423,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86422,
+ "g_objectid":"943725",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360874",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004450838010000000",
+ "g_sup_tota":"196.3",
+ "g_geometry":"0.000775069",
+ "g_geomet_1":"2.26131e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000969697296993,
+ "Shape_Area":3.77488347105e-08,
+ "Shape_Le_3":0.000969698576375,
+ "Shape_Ar_2":3.77488347105e-08,
+ "building_height":5.92
+ }
+ },
+ {
+ "type":"Feature",
+ "id":928,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55100491556624,
+ 45.53026452943478
+ ],
+ [
+ -73.5510164664586,
+ 45.53027004857418
+ ],
+ [
+ -73.55093697088634,
+ 45.53035222952207
+ ],
+ [
+ -73.55100155120248,
+ 45.53038183880111
+ ],
+ [
+ -73.55104146581284,
+ 45.530349448818306
+ ],
+ [
+ -73.5510417661864,
+ 45.53034914844474
+ ],
+ [
+ -73.55102536614957,
+ 45.53034054912734
+ ],
+ [
+ -73.55108326630155,
+ 45.53028574893846
+ ],
+ [
+ -73.55113496652733,
+ 45.53031274928425
+ ],
+ [
+ -73.55112426639363,
+ 45.53032284867083
+ ],
+ [
+ -73.55110946625071,
+ 45.530315248500216
+ ],
+ [
+ -73.55110636628761,
+ 45.53031854901212
+ ],
+ [
+ -73.55103310931239,
+ 45.53039630889284
+ ],
+ [
+ -73.5510593848046,
+ 45.53040835621096
+ ],
+ [
+ -73.55110581230524,
+ 45.53035761016587
+ ],
+ [
+ -73.5512207078912,
+ 45.53023202793604
+ ],
+ [
+ -73.55108763880533,
+ 45.530173682619655
+ ],
+ [
+ -73.55100491556624,
+ 45.53026452943478
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":928,
+ "ID_UEV":"01018571",
+ "CIVIQUE_DE":" 1735",
+ "CIVIQUE_FI":" 1741",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-1075-7-000-0000",
+ "SUPERFICIE":296,
+ "SUPERFIC_1":228,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00108535056655,
+ "OBJECTID":86426,
+ "Join_Count":1,
+ "TARGET_FID":86426,
+ "feature_id":"79f0d101-b467-4fe9-8aca-3a38a1db9545",
+ "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.56,
+ "heightmax":31.65,
+ "elevmin":19.81,
+ "elevmax":21.09,
+ "bldgarea":1473.85,
+ "comment":" ",
+ "OBJECTID_2":86426,
+ "Shape_Le_1":0.00108535056655,
+ "Shape_Ar_1":2.65208432789e-08,
+ "OBJECTID_3":86426,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86425,
+ "g_objectid":"944688",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004373977970000000",
+ "g_sup_tota":"235.2",
+ "g_geometry":"0.000811301",
+ "g_geomet_1":"2.7088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00108535056655,
+ "Shape_Area":2.65208432789e-08,
+ "Shape_Le_3":0.0010853514387,
+ "Shape_Ar_2":2.65208432789e-08,
+ "building_height":14.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":929,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55798172829597,
+ 45.51753421758037
+ ],
+ [
+ -73.55799066845643,
+ 45.51753831309297
+ ],
+ [
+ -73.55802426712808,
+ 45.517501346460264
+ ],
+ [
+ -73.55801605631778,
+ 45.51749765923988
+ ],
+ [
+ -73.55798172829597,
+ 45.51753421758037
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":929,
+ "ID_UEV":"01040018",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Timoth\u00c3\u00a9e (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-29-5753-2-000-0000",
+ "SUPERFICIE":341,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000118937710742,
+ "OBJECTID":86428,
+ "Join_Count":1,
+ "TARGET_FID":86428,
+ "feature_id":"227d9e40-e18c-47d8-9d3a-14e2a9f08220",
+ "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":41.6,
+ "elevmin":23.09,
+ "elevmax":26.89,
+ "bldgarea":3164.53,
+ "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_2":86428,
+ "Shape_Le_1":0.000118937710742,
+ "Shape_Ar_1":4.47425777969e-10,
+ "OBJECTID_3":86428,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86427,
+ "g_objectid":"941726",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566405",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004129727130000000",
+ "g_sup_tota":"198.3",
+ "g_geometry":"0.000678548",
+ "g_geomet_1":"2.28454e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000118937710742,
+ "Shape_Area":4.47425777969e-10,
+ "Shape_Le_3":0.000118937359183,
+ "Shape_Ar_2":4.47425777969e-10,
+ "building_height":20.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":930,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55567796109088,
+ 45.51673512317769
+ ],
+ [
+ -73.55568624924285,
+ 45.516738896732996
+ ],
+ [
+ -73.55578786723812,
+ 45.51662144707242
+ ],
+ [
+ -73.55607046749992,
+ 45.51674215677541
+ ],
+ [
+ -73.5560794004658,
+ 45.51673256100918
+ ],
+ [
+ -73.55609867473589,
+ 45.51671185501839
+ ],
+ [
+ -73.55611795080463,
+ 45.5166911490276
+ ],
+ [
+ -73.55613722597404,
+ 45.51667044303681
+ ],
+ [
+ -73.55615650114346,
+ 45.51664973704602
+ ],
+ [
+ -73.55617247310299,
+ 45.51663257978003
+ ],
+ [
+ -73.5562697599633,
+ 45.516528070464375
+ ],
+ [
+ -73.55598568930996,
+ 45.51639465154223
+ ],
+ [
+ -73.55567796109088,
+ 45.51673512317769
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":930,
+ "ID_UEV":"01040021",
+ "CIVIQUE_DE":" 1236",
+ "CIVIQUE_FI":" 1236",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-48-2657-8-000-0000",
+ "SUPERFICIE":1202,
+ "SUPERFIC_1":2269,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00153697864736,
+ "OBJECTID":86429,
+ "Join_Count":1,
+ "TARGET_FID":86429,
+ "feature_id":"3f0a4b4d-5513-47ca-9eb6-a475720de390",
+ "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":50.19,
+ "elevmin":20.37,
+ "elevmax":23.33,
+ "bldgarea":4966.28,
+ "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_2":86429,
+ "Shape_Le_1":0.00153697864736,
+ "Shape_Ar_1":8.95860069484e-08,
+ "OBJECTID_3":86429,
+ "Join_Cou_1":24,
+ "TARGET_F_1":86428,
+ "g_objectid":"944763",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1922",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004148047320110003",
+ "g_sup_tota":"226.5",
+ "g_geometry":"0.00151264",
+ "g_geomet_1":"2.53875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00153697864736,
+ "Shape_Area":8.95860069484e-08,
+ "Shape_Le_3":0.00153697859906,
+ "Shape_Ar_2":8.95860069484e-08,
+ "building_height":24.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":931,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56524781605572,
+ 45.51493725340182
+ ],
+ [
+ -73.56541421221796,
+ 45.51496670709815
+ ],
+ [
+ -73.56543826998202,
+ 45.51490754609667
+ ],
+ [
+ -73.56543886982982,
+ 45.51490764592142
+ ],
+ [
+ -73.5654430705631,
+ 45.51490244604135
+ ],
+ [
+ -73.56544395639531,
+ 45.51490134706981
+ ],
+ [
+ -73.56528296156127,
+ 45.51487382961384
+ ],
+ [
+ -73.56527766995035,
+ 45.51488024627664
+ ],
+ [
+ -73.56527647025474,
+ 45.514879945903076
+ ],
+ [
+ -73.56524781605572,
+ 45.51493725340182
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":931,
+ "ID_UEV":"01021722",
+ "CIVIQUE_DE":" 308",
+ "CIVIQUE_FI":" 312",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-66-9867-0-000-0000",
+ "SUPERFICIE":200,
+ "SUPERFIC_1":696,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000478507499203,
+ "OBJECTID":86432,
+ "Join_Count":1,
+ "TARGET_FID":86432,
+ "feature_id":"84e763e9-289e-4205-bdef-0a9c5e88cc85",
+ "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":14.95,
+ "elevmin":23.59,
+ "elevmax":25.72,
+ "bldgarea":1922.53,
+ "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_2":86432,
+ "Shape_Le_1":0.000478507499203,
+ "Shape_Ar_1":1.14671095008e-08,
+ "OBJECTID_3":86432,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86431,
+ "g_objectid":"943138",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161346",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994166986700000000",
+ "g_sup_tota":"200",
+ "g_geometry":"0.000790752",
+ "g_geomet_1":"2.23044e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000478507499203,
+ "Shape_Area":1.14671095008e-08,
+ "Shape_Le_3":0.000478508003268,
+ "Shape_Ar_2":1.14671095008e-08,
+ "building_height":7.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":932,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57744326331779,
+ 45.500461950109205
+ ],
+ [
+ -73.57763648535736,
+ 45.500554261020625
+ ],
+ [
+ -73.57777006795611,
+ 45.50041858659879
+ ],
+ [
+ -73.57740075955925,
+ 45.50024089585096
+ ],
+ [
+ -73.57733147309085,
+ 45.50031264286447
+ ],
+ [
+ -73.57733227348747,
+ 45.50031304306278
+ ],
+ [
+ -73.5772967727497,
+ 45.500364743288564
+ ],
+ [
+ -73.57728417324785,
+ 45.50038294286881
+ ],
+ [
+ -73.57727327346464,
+ 45.50037894268435
+ ],
+ [
+ -73.57725204496775,
+ 45.50037010144932
+ ],
+ [
+ -73.57732790907758,
+ 45.5004071202427
+ ],
+ [
+ -73.57744326331779,
+ 45.500461950109205
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":932,
+ "ID_UEV":"01039049",
+ "CIVIQUE_DE":" 1210",
+ "CIVIQUE_FI":" 1214",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":11,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1959,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-70-4355-7-000-0000",
+ "SUPERFICIE":674,
+ "SUPERFIC_1":6453,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00124660017527,
+ "OBJECTID":86433,
+ "Join_Count":1,
+ "TARGET_FID":86433,
+ "feature_id":"4c9aee36-6e22-4391-9a4c-dd85c1515492",
+ "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":93.49,
+ "elevmin":43.36,
+ "elevmax":47.69,
+ "bldgarea":9435.45,
+ "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_2":86433,
+ "Shape_Le_1":0.00124660017527,
+ "Shape_Ar_1":7.32158269727e-08,
+ "OBJECTID_3":86433,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86432,
+ "g_objectid":"944995",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1338857",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984070435570000000",
+ "g_sup_tota":"674.3",
+ "g_geometry":"0.00124317",
+ "g_geomet_1":"7.78258e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00124660017527,
+ "Shape_Area":7.32158269727e-08,
+ "Shape_Le_3":0.00124660130807,
+ "Shape_Ar_2":7.32158269727e-08,
+ "building_height":46.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":933,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56694476840818,
+ 45.51190819915436
+ ],
+ [
+ -73.56695217072794,
+ 45.5119116435578
+ ],
+ [
+ -73.56718847748809,
+ 45.51202155420166
+ ],
+ [
+ -73.56730905678938,
+ 45.511892170537536
+ ],
+ [
+ -73.5673267248703,
+ 45.51187321462745
+ ],
+ [
+ -73.5673261699886,
+ 45.511872945730154
+ ],
+ [
+ -73.5672325703487,
+ 45.51182674575801
+ ],
+ [
+ -73.56723582139789,
+ 45.51182352168847
+ ],
+ [
+ -73.56723196240698,
+ 45.51182177790302
+ ],
+ [
+ -73.56724013274777,
+ 45.511812810762905
+ ],
+ [
+ -73.56721217012739,
+ 45.511799045739664
+ ],
+ [
+ -73.56721947981698,
+ 45.51179168658736
+ ],
+ [
+ -73.56721490496574,
+ 45.5117896199453
+ ],
+ [
+ -73.56734066885862,
+ 45.51164811611796
+ ],
+ [
+ -73.56727333301974,
+ 45.51161494012768
+ ],
+ [
+ -73.56723301011716,
+ 45.511596100230136
+ ],
+ [
+ -73.56709480320445,
+ 45.51174479863384
+ ],
+ [
+ -73.5670960820404,
+ 45.511745396683004
+ ],
+ [
+ -73.56704611300955,
+ 45.51179915995356
+ ],
+ [
+ -73.56694476840818,
+ 45.51190819915436
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":933,
+ "ID_UEV":"01020615",
+ "CIVIQUE_DE":" 2023",
+ "CIVIQUE_FI":" 2025",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-53-5225-3-000-0000",
+ "SUPERFICIE":692,
+ "SUPERFIC_1":541,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00137962698938,
+ "OBJECTID":86439,
+ "Join_Count":1,
+ "TARGET_FID":86439,
+ "feature_id":"b5328d34-31ff-42c5-b29a-48bf2dbdb909",
+ "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.66,
+ "heightmax":16.32,
+ "elevmin":24.57,
+ "elevmax":30.55,
+ "bldgarea":1907.72,
+ "comment":" ",
+ "OBJECTID_2":86439,
+ "Shape_Le_1":0.00137962698938,
+ "Shape_Ar_1":7.85925711936e-08,
+ "OBJECTID_3":86439,
+ "Join_Cou_1":7,
+ "TARGET_F_1":86438,
+ "g_objectid":"945470",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2161223",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994153394250000000",
+ "g_sup_tota":"264.2",
+ "g_geometry":"0.000721689",
+ "g_geomet_1":"3.04704e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00137962698938,
+ "Shape_Area":7.85925711936e-08,
+ "Shape_Le_3":0.00137962450728,
+ "Shape_Ar_2":7.85925711936e-08,
+ "building_height":7.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":934,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55602204620232,
+ 45.522637340491166
+ ],
+ [
+ -73.55605398292681,
+ 45.5226521577212
+ ],
+ [
+ -73.5562175210436,
+ 45.52247617028932
+ ],
+ [
+ -73.55615266733358,
+ 45.52244884798624
+ ],
+ [
+ -73.55612967436683,
+ 45.52243923513289
+ ],
+ [
+ -73.55604233310903,
+ 45.52253619553929
+ ],
+ [
+ -73.55603237941263,
+ 45.52254418241838
+ ],
+ [
+ -73.55607416731081,
+ 45.52255774779212
+ ],
+ [
+ -73.55602204620232,
+ 45.522637340491166
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":934,
+ "ID_UEV":"01022032",
+ "CIVIQUE_DE":" 1623",
+ "CIVIQUE_FI":" 1627",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-45-2016-1-000-0000",
+ "SUPERFICIE":245,
+ "SUPERFIC_1":352,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000653080633229,
+ "OBJECTID":86443,
+ "Join_Count":1,
+ "TARGET_FID":86443,
+ "feature_id":"3b6a970a-0312-4213-b4c7-f584969c30ca",
+ "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.5,
+ "heightmax":41.23,
+ "elevmin":25.7,
+ "elevmax":27.48,
+ "bldgarea":1561.87,
+ "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_2":86443,
+ "Shape_Le_1":0.000653080633229,
+ "Shape_Ar_1":1.65527357777e-08,
+ "OBJECTID_3":86443,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86442,
+ "g_objectid":"942170",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567524",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004245201610000000",
+ "g_sup_tota":"245.1",
+ "g_geometry":"0.00100225",
+ "g_geomet_1":"2.80467e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000653080633229,
+ "Shape_Area":1.65527357777e-08,
+ "Shape_Le_3":0.000653079151898,
+ "Shape_Ar_2":1.65527357777e-08,
+ "building_height":19.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":935,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55213201790015,
+ 45.5192514136721
+ ],
+ [
+ -73.55202227542951,
+ 45.5193726215995
+ ],
+ [
+ -73.55213094950555,
+ 45.51942089450897
+ ],
+ [
+ -73.55219866575766,
+ 45.519347946900524
+ ],
+ [
+ -73.55222036639863,
+ 45.51935804718642
+ ],
+ [
+ -73.55222236649087,
+ 45.51935414682671
+ ],
+ [
+ -73.552239566025,
+ 45.51933364678067
+ ],
+ [
+ -73.55223026613572,
+ 45.519330246444014
+ ],
+ [
+ -73.55224566612644,
+ 45.51931064661934
+ ],
+ [
+ -73.55228200773031,
+ 45.51932479565309
+ ],
+ [
+ -73.55228456899951,
+ 45.51932203383509
+ ],
+ [
+ -73.55213201790015,
+ 45.5192514136721
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":935,
+ "ID_UEV":"01022496",
+ "CIVIQUE_DE":" 1383",
+ "CIVIQUE_FI":" 1393",
+ "NOM_RUE":"boulevard Ren\u00c3\u00a9-L\u00c3\u00a9vesque Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1947,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-71-2460-7-000-0000",
+ "SUPERFICIE":228,
+ "SUPERFIC_1":427,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000682731440181,
+ "OBJECTID":86445,
+ "Join_Count":1,
+ "TARGET_FID":86445,
+ "feature_id":"3caaa699-77bf-4207-b57a-4c8cb6b013dd",
+ "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":14.79,
+ "elevmin":17.29,
+ "elevmax":19.4,
+ "bldgarea":711.11,
+ "comment":" ",
+ "OBJECTID_2":86445,
+ "Shape_Le_1":0.000682731440181,
+ "Shape_Ar_1":1.96772803569e-08,
+ "OBJECTID_3":86445,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86444,
+ "g_objectid":"941885",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566786",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004271246070000000",
+ "g_sup_tota":"228.4",
+ "g_geometry":"0.000666367",
+ "g_geomet_1":"2.63131e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000682731440181,
+ "Shape_Area":1.96772803569e-08,
+ "Shape_Le_3":0.000682730787317,
+ "Shape_Ar_2":1.96772803569e-08,
+ "building_height":6.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":936,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55468560327981,
+ 45.5192324775471
+ ],
+ [
+ -73.55468016597872,
+ 45.51923914691939
+ ],
+ [
+ -73.55474269134398,
+ 45.519264325238716
+ ],
+ [
+ -73.55474631651114,
+ 45.51926038710747
+ ],
+ [
+ -73.55468560327981,
+ 45.5192324775471
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":936,
+ "ID_UEV":"01021897",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-3253-7-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000148181445491,
+ "OBJECTID":86455,
+ "Join_Count":1,
+ "TARGET_FID":86455,
+ "feature_id":"fd7ed452-0f42-4818-98c0-f401038c06a8",
+ "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.47,
+ "heightmax":13.16,
+ "elevmin":19.05,
+ "elevmax":20.65,
+ "bldgarea":1070.76,
+ "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_2":86455,
+ "Shape_Le_1":0.000148181445491,
+ "Shape_Ar_1":4.47064966117e-10,
+ "OBJECTID_3":86455,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86454,
+ "g_objectid":"941840",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566648",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251183870000000",
+ "g_sup_tota":"159.3",
+ "g_geometry":"0.000645661",
+ "g_geomet_1":"1.84249e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000148181445491,
+ "Shape_Area":4.47064966117e-10,
+ "Shape_Le_3":0.000148183036341,
+ "Shape_Ar_2":4.47064966117e-10,
+ "building_height":5.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":937,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56551607033222,
+ 45.51234964576983
+ ],
+ [
+ -73.56547507024014,
+ 45.512395445543675
+ ],
+ [
+ -73.56543366994975,
+ 45.51244144586633
+ ],
+ [
+ -73.56555317006459,
+ 45.51249414613823
+ ],
+ [
+ -73.56555957053959,
+ 45.51249714627657
+ ],
+ [
+ -73.56563507042401,
+ 45.512414745894105
+ ],
+ [
+ -73.56569896995335,
+ 45.51234484608807
+ ],
+ [
+ -73.56557157019365,
+ 45.51228784615747
+ ],
+ [
+ -73.56551607033222,
+ 45.51234964576983
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56587987038156,
+ 45.512368446097206
+ ],
+ [
+ -73.56588347036771,
+ 45.51236994616638
+ ],
+ [
+ -73.5659406699478,
+ 45.51229914613898
+ ],
+ [
+ -73.56595117043202,
+ 45.51230334597293
+ ],
+ [
+ -73.56595167045508,
+ 45.512302845949876
+ ],
+ [
+ -73.56599387024276,
+ 45.51225064570103
+ ],
+ [
+ -73.56599957014589,
+ 45.512253546014634
+ ],
+ [
+ -73.5660493701042,
+ 45.512205445774995
+ ],
+ [
+ -73.5660534701134,
+ 45.51220164613935
+ ],
+ [
+ -73.56604076988746,
+ 45.512194745641295
+ ],
+ [
+ -73.5660919700902,
+ 45.51214834601965
+ ],
+ [
+ -73.56609247011325,
+ 45.51214794582134
+ ],
+ [
+ -73.56608197052836,
+ 45.512142845766014
+ ],
+ [
+ -73.56614787014993,
+ 45.512076045923074
+ ],
+ [
+ -73.56613917010846,
+ 45.51207204573861
+ ],
+ [
+ -73.56599547013668,
+ 45.5120060462923
+ ],
+ [
+ -73.56598996988305,
+ 45.51200354617701
+ ],
+ [
+ -73.56592457028454,
+ 45.512074946052216
+ ],
+ [
+ -73.565910670363,
+ 45.512068545577215
+ ],
+ [
+ -73.56590717020158,
+ 45.51207244593692
+ ],
+ [
+ -73.56588927009558,
+ 45.51208924617207
+ ],
+ [
+ -73.5659011699249,
+ 45.51209514572469
+ ],
+ [
+ -73.56582466999437,
+ 45.51216864551687
+ ],
+ [
+ -73.56582487054318,
+ 45.51216814549382
+ ],
+ [
+ -73.56579567045567,
+ 45.51220314620853
+ ],
+ [
+ -73.56579346981462,
+ 45.512206045622804
+ ],
+ [
+ -73.5657731703174,
+ 45.512224746125426
+ ],
+ [
+ -73.5657727701191,
+ 45.51222484595018
+ ],
+ [
+ -73.56578576981927,
+ 45.51223174554891
+ ],
+ [
+ -73.56573717045589,
+ 45.51227724584851
+ ],
+ [
+ -73.56571937017463,
+ 45.51229404608365
+ ],
+ [
+ -73.56571627021155,
+ 45.512297445520986
+ ],
+ [
+ -73.56587987038156,
+ 45.512368446097206
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56536946914753,
+ 45.51192014574842
+ ],
+ [
+ -73.56510016895948,
+ 45.512206645470606
+ ],
+ [
+ -73.56511096891792,
+ 45.512211645701186
+ ],
+ [
+ -73.56505916886739,
+ 45.51226754576092
+ ],
+ [
+ -73.56505506885819,
+ 45.51227194614369
+ ],
+ [
+ -73.56517386930047,
+ 45.51232354564541
+ ],
+ [
+ -73.56517996940191,
+ 45.51232634613426
+ ],
+ [
+ -73.5654063692304,
+ 45.51207364563253
+ ],
+ [
+ -73.56557486980624,
+ 45.51188564595609
+ ],
+ [
+ -73.5654526690273,
+ 45.51183154543977
+ ],
+ [
+ -73.56536946914753,
+ 45.51192014574842
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56434466919298,
+ 45.51190694549943
+ ],
+ [
+ -73.5644211691235,
+ 45.51194064579446
+ ],
+ [
+ -73.56490496931073,
+ 45.51215384627328
+ ],
+ [
+ -73.56496996871093,
+ 45.51218244561367
+ ],
+ [
+ -73.564970069435,
+ 45.51218244561367
+ ],
+ [
+ -73.5650457689689,
+ 45.512096745618614
+ ],
+ [
+ -73.56494096917224,
+ 45.51205094584477
+ ],
+ [
+ -73.56453376874028,
+ 45.51187314627897
+ ],
+ [
+ -73.56441816898516,
+ 45.5118226457488
+ ],
+ [
+ -73.56434466919298,
+ 45.51190694549943
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56565787003652,
+ 45.51166684629821
+ ],
+ [
+ -73.5658021698561,
+ 45.51173104620111
+ ],
+ [
+ -73.56622096974381,
+ 45.511917346158896
+ ],
+ [
+ -73.56628387012636,
+ 45.511945345651476
+ ],
+ [
+ -73.5662839699511,
+ 45.511945345651476
+ ],
+ [
+ -73.56636106972942,
+ 45.51185884615912
+ ],
+ [
+ -73.56627647050456,
+ 45.51182164570268
+ ],
+ [
+ -73.56602657049169,
+ 45.511711445477125
+ ],
+ [
+ -73.56582027051093,
+ 45.51162044577725
+ ],
+ [
+ -73.56573507053892,
+ 45.51158294584657
+ ],
+ [
+ -73.56565787003652,
+ 45.51166684629821
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56514076885324,
+ 45.51149834572237
+ ],
+ [
+ -73.565073568812,
+ 45.5115682455284
+ ],
+ [
+ -73.56507886941614,
+ 45.511570545994196
+ ],
+ [
+ -73.56519736948486,
+ 45.5116240457634
+ ],
+ [
+ -73.56552196988484,
+ 45.51177074587352
+ ],
+ [
+ -73.56552577041981,
+ 45.511766446214814
+ ],
+ [
+ -73.56559066999527,
+ 45.51169514616436
+ ],
+ [
+ -73.5651443688394,
+ 45.51149444626198
+ ],
+ [
+ -73.56514076885324,
+ 45.51149834572237
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56464276927024,
+ 45.511610845514404
+ ],
+ [
+ -73.56460426929344,
+ 45.51165424589703
+ ],
+ [
+ -73.56472256881335,
+ 45.51170694616893
+ ],
+ [
+ -73.56473116903007,
+ 45.51171084562932
+ ],
+ [
+ -73.56493316935213,
+ 45.511485645496435
+ ],
+ [
+ -73.56512636890864,
+ 45.51127034599996
+ ],
+ [
+ -73.56500216893679,
+ 45.51121534616159
+ ],
+ [
+ -73.56499596901061,
+ 45.51121254567274
+ ],
+ [
+ -73.56464276927024,
+ 45.511610845514404
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":937,
+ "ID_UEV":"01021710",
+ "CIVIQUE_DE":" 61",
+ "CIVIQUE_FI":" 143",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":12,
+ "NOMBRE_LOG":189,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-63-8539-3-000-0000",
+ "SUPERFICIE":15979,
+ "SUPERFIC_1":14632,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00925032061884,
+ "OBJECTID":86456,
+ "Join_Count":7,
+ "TARGET_FID":86456,
+ "feature_id":"bec21802-2dc9-4f58-ae42-c939900d2fdb",
+ "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":5.56,
+ "heightmax":10,
+ "elevmin":24.75,
+ "elevmax":25,
+ "bldgarea":236.06,
+ "comment":" ",
+ "OBJECTID_2":86456,
+ "Shape_Le_1":0.00925032061884,
+ "Shape_Ar_1":4.50254878658e-07,
+ "OBJECTID_3":86456,
+ "Join_Cou_1":1,
+ "TARGET_F_1":86455,
+ "g_objectid":"943131",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161335",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"189",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994163853930000000",
+ "g_sup_tota":"15978.5",
+ "g_geometry":"0.00580074",
+ "g_geomet_1":"1.83597e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00925032061884,
+ "Shape_Area":4.50254878658e-07,
+ "Shape_Le_3":0.00925031964495,
+ "Shape_Ar_2":4.50254878658e-07,
+ "building_height":2.22
+ }
+ },
+ {
+ "type":"Feature",
+ "id":938,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56209685780559,
+ 45.51474404305344
+ ],
+ [
+ -73.56205326946466,
+ 45.514724346101985
+ ],
+ [
+ -73.56213766904004,
+ 45.514631946157685
+ ],
+ [
+ -73.5621070687081,
+ 45.51461814606089
+ ],
+ [
+ -73.5621050695152,
+ 45.51462004542905
+ ],
+ [
+ -73.56206486892042,
+ 45.51459964610708
+ ],
+ [
+ -73.56196166901766,
+ 45.514547445858234
+ ],
+ [
+ -73.56196096934511,
+ 45.51454814553079
+ ],
+ [
+ -73.56172159229949,
+ 45.51480720783667
+ ],
+ [
+ -73.56189835134968,
+ 45.51488817290115
+ ],
+ [
+ -73.56194776909611,
+ 45.5148393460093
+ ],
+ [
+ -73.56198950033702,
+ 45.51486021207942
+ ],
+ [
+ -73.56209685780559,
+ 45.51474404305344
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":938,
+ "ID_UEV":"01040653",
+ "CIVIQUE_DE":" 403",
+ "CIVIQUE_FI":" 405",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1969,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Universit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-96-5945-5-000-0000",
+ "SUPERFICIE":871,
+ "SUPERFIC_1":2517,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00119247643865,
+ "OBJECTID":86457,
+ "Join_Count":1,
+ "TARGET_FID":86457,
+ "feature_id":"c8f2a3f1-9997-466b-9b02-4a713e354e52",
+ "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":20.81,
+ "elevmin":26.07,
+ "elevmax":28.29,
+ "bldgarea":3514.43,
+ "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_2":86457,
+ "Shape_Le_1":0.00119247643865,
+ "Shape_Ar_1":7.26577415615e-08,
+ "OBJECTID_3":86457,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86456,
+ "g_objectid":"938530",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"2162521",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6821",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994196594550000000",
+ "g_sup_tota":"871",
+ "g_geometry":"0.00132548",
+ "g_geomet_1":"1.00752e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00119247643865,
+ "Shape_Area":7.26577415615e-08,
+ "Shape_Le_3":0.00119247457553,
+ "Shape_Ar_2":7.26577415615e-08,
+ "building_height":10.149999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":939,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56251866952283,
+ 45.51579044562286
+ ],
+ [
+ -73.56262306912119,
+ 45.51584004593167
+ ],
+ [
+ -73.56300446890296,
+ 45.516020845635815
+ ],
+ [
+ -73.56310506886568,
+ 45.515915946014395
+ ],
+ [
+ -73.56335078882968,
+ 45.515659703083124
+ ],
+ [
+ -73.56302072324962,
+ 45.51550663847088
+ ],
+ [
+ -73.5628375952007,
+ 45.51541945549377
+ ],
+ [
+ -73.56283858805224,
+ 45.515418406884265
+ ],
+ [
+ -73.56284129411227,
+ 45.5154155488388
+ ],
+ [
+ -73.56259210726179,
+ 45.51529745706229
+ ],
+ [
+ -73.56258890297734,
+ 45.515300681131826
+ ],
+ [
+ -73.56258787685088,
+ 45.515301713553534
+ ],
+ [
+ -73.56167829354025,
+ 45.51487206694263
+ ],
+ [
+ -73.56160366779687,
+ 45.51494734559382
+ ],
+ [
+ -73.5615832684749,
+ 45.51496774581511
+ ],
+ [
+ -73.56167576824396,
+ 45.51501334593946
+ ],
+ [
+ -73.56167316830391,
+ 45.5150159458795
+ ],
+ [
+ -73.56181466943329,
+ 45.51508434561635
+ ],
+ [
+ -73.5615665680645,
+ 45.51533814598894
+ ],
+ [
+ -73.56156666788925,
+ 45.51533814598894
+ ],
+ [
+ -73.56251866952283,
+ 45.51579044562286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":939,
+ "ID_UEV":"01040654",
+ "CIVIQUE_DE":" 475",
+ "CIVIQUE_FI":" 475",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":6,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2004,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Biblioth\u00c3\u00a8que",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-87-6670-7-000-0000",
+ "SUPERFICIE":15821,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00470559231444,
+ "OBJECTID":86458,
+ "Join_Count":1,
+ "TARGET_FID":86458,
+ "feature_id":"88283f7c-501d-4021-bdea-30c6a54829d9",
+ "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":29.21,
+ "elevmin":20.34,
+ "elevmax":27.92,
+ "bldgarea":6889.93,
+ "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_2":86458,
+ "Shape_Le_1":0.00470559231444,
+ "Shape_Ar_1":7.84734928406e-07,
+ "OBJECTID_3":86458,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86457,
+ "g_objectid":"938688",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"7111",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994187667070000000",
+ "g_sup_tota":"15820.9",
+ "g_geometry":"0.00862582",
+ "g_geomet_1":"1.82903e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00470559231444,
+ "Shape_Area":7.84734928406e-07,
+ "Shape_Le_3":0.0047055903765,
+ "Shape_Ar_2":7.84734928406e-07,
+ "building_height":14.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":940,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55572505588846,
+ 45.51973691088003
+ ],
+ [
+ -73.55576758842531,
+ 45.5197560331647
+ ],
+ [
+ -73.55582778184849,
+ 45.51969263006112
+ ],
+ [
+ -73.55593819881067,
+ 45.519576325237516
+ ],
+ [
+ -73.55590696715466,
+ 45.51956164650308
+ ],
+ [
+ -73.55585926711333,
+ 45.51953924708888
+ ],
+ [
+ -73.55582403077625,
+ 45.519522706757805
+ ],
+ [
+ -73.55565258851799,
+ 45.51970427628162
+ ],
+ [
+ -73.55572501541897,
+ 45.51973689289359
+ ],
+ [
+ -73.55572505588846,
+ 45.51973691088003
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":940,
+ "ID_UEV":"01021899",
+ "CIVIQUE_DE":" 1421",
+ "CIVIQUE_FI":" 1429",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1921,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-41-4293-3-000-0000",
+ "SUPERFICIE":278,
+ "SUPERFIC_1":384,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000749832031015,
+ "OBJECTID":86460,
+ "Join_Count":1,
+ "TARGET_FID":86460,
+ "feature_id":"a9065364-40fe-46db-838d-433b0b248164",
+ "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.51,
+ "heightmax":21.84,
+ "elevmin":18.94,
+ "elevmax":24.49,
+ "bldgarea":4449.93,
+ "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_2":86460,
+ "Shape_Le_1":0.000749832031015,
+ "Shape_Ar_1":2.97135706669e-08,
+ "OBJECTID_3":86460,
+ "Join_Cou_1":7,
+ "TARGET_F_1":86459,
+ "g_objectid":"941800",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566560",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004241319510000000",
+ "g_sup_tota":"136.6",
+ "g_geometry":"0.000533113",
+ "g_geomet_1":"1.57601e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000749832031015,
+ "Shape_Area":2.97135706669e-08,
+ "Shape_Le_3":0.000749832432385,
+ "Shape_Ar_2":2.97135706669e-08,
+ "building_height":9.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":941,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55582778184849,
+ 45.51969263006112
+ ],
+ [
+ -73.55591950010668,
+ 45.51973402855287
+ ],
+ [
+ -73.55602791607731,
+ 45.51961848905232
+ ],
+ [
+ -73.55593819881067,
+ 45.519576325237516
+ ],
+ [
+ -73.55582778184849,
+ 45.51969263006112
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":941,
+ "ID_UEV":"01021900",
+ "CIVIQUE_DE":" 1431",
+ "CIVIQUE_FI":" 1437",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-41-3195-1-000-0000",
+ "SUPERFICIE":137,
+ "SUPERFIC_1":345,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000518570931011,
+ "OBJECTID":86461,
+ "Join_Count":1,
+ "TARGET_FID":86461,
+ "feature_id":"a9065364-40fe-46db-838d-433b0b248164",
+ "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.51,
+ "heightmax":21.84,
+ "elevmin":18.94,
+ "elevmax":24.49,
+ "bldgarea":4449.93,
+ "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_2":86461,
+ "Shape_Le_1":0.000518570931011,
+ "Shape_Ar_1":1.5087784889e-08,
+ "OBJECTID_3":86461,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86460,
+ "g_objectid":"941800",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566560",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004241319510000000",
+ "g_sup_tota":"136.6",
+ "g_geometry":"0.000533113",
+ "g_geomet_1":"1.57601e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000518570931011,
+ "Shape_Area":1.5087784889e-08,
+ "Shape_Le_3":0.000518570581512,
+ "Shape_Ar_2":1.5087784889e-08,
+ "building_height":9.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":942,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55625171776441,
+ 45.53688573763698
+ ],
+ [
+ -73.55620856829263,
+ 45.53687014968795
+ ],
+ [
+ -73.55620656820041,
+ 45.536872849452735
+ ],
+ [
+ -73.55619336795141,
+ 45.53689524976626
+ ],
+ [
+ -73.55615206838509,
+ 45.53688315028745
+ ],
+ [
+ -73.55614696832977,
+ 45.53688154949421
+ ],
+ [
+ -73.55609156829308,
+ 45.536969849429305
+ ],
+ [
+ -73.55616905747786,
+ 45.53700171420804
+ ],
+ [
+ -73.55625171776441,
+ 45.53688573763698
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":942,
+ "ID_UEV":"01024553",
+ "CIVIQUE_DE":" 2356",
+ "CIVIQUE_FI":" 2358",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-1210-6-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":144,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000454064768847,
+ "OBJECTID":86468,
+ "Join_Count":1,
+ "TARGET_FID":86468,
+ "feature_id":"6e33fb1f-a212-4817-8e1e-b74d2e43ce62",
+ "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":32.1,
+ "elevmin":20.79,
+ "elevmax":24.26,
+ "bldgarea":763.55,
+ "comment":" ",
+ "OBJECTID_2":86468,
+ "Shape_Le_1":0.000454064768847,
+ "Shape_Ar_1":1.05931276863e-08,
+ "OBJECTID_3":86468,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86467,
+ "g_objectid":"943901",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361099",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441051420000000",
+ "g_sup_tota":"192.7",
+ "g_geometry":"0.000684432",
+ "g_geomet_1":"2.21955e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000454064768847,
+ "Shape_Area":1.05931276863e-08,
+ "Shape_Le_3":0.000454064727242,
+ "Shape_Ar_2":1.05931276863e-08,
+ "building_height":15.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":943,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55318333616388,
+ 45.53095473842074
+ ],
+ [
+ -73.55319191389755,
+ 45.530958578525876
+ ],
+ [
+ -73.55319916692986,
+ 45.53095144870069
+ ],
+ [
+ -73.55330823400963,
+ 45.53100776694518
+ ],
+ [
+ -73.5533772821577,
+ 45.53093398656452
+ ],
+ [
+ -73.55337950348314,
+ 45.53093161415297
+ ],
+ [
+ -73.55341554921007,
+ 45.530894305777885
+ ],
+ [
+ -73.55329896739528,
+ 45.53084624870571
+ ],
+ [
+ -73.55329346714164,
+ 45.530844048963985
+ ],
+ [
+ -73.55327016750607,
+ 45.53087194863182
+ ],
+ [
+ -73.55326356018699,
+ 45.53086924167246
+ ],
+ [
+ -73.55325713992691,
+ 45.53087625818306
+ ],
+ [
+ -73.55325944398999,
+ 45.53087728880613
+ ],
+ [
+ -73.55318720954394,
+ 45.53095062042509
+ ],
+ [
+ -73.55318333616388,
+ 45.53095473842074
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55343903590463,
+ 45.53080874158046
+ ],
+ [
+ -73.55343496737169,
+ 45.53081274895949
+ ],
+ [
+ -73.55343856735784,
+ 45.5308145485029
+ ],
+ [
+ -73.55347590451123,
+ 45.530831837969245
+ ],
+ [
+ -73.55348046677197,
+ 45.53082711472985
+ ],
+ [
+ -73.55343903590463,
+ 45.53080874158046
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":943,
+ "ID_UEV":"01018549",
+ "CIVIQUE_DE":" 1916",
+ "CIVIQUE_FI":" 1924",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-3442-7-000-0000",
+ "SUPERFICIE":275,
+ "SUPERFIC_1":390,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000697399285604,
+ "OBJECTID":86472,
+ "Join_Count":1,
+ "TARGET_FID":86472,
+ "feature_id":"64327623-bd14-48c1-acc8-725e7bfa31df",
+ "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.44,
+ "heightmax":29.18,
+ "elevmin":17.32,
+ "elevmax":19.1,
+ "bldgarea":1216.94,
+ "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_2":86472,
+ "Shape_Le_1":0.000697399285604,
+ "Shape_Ar_1":1.91137085125e-08,
+ "OBJECTID_3":86472,
+ "Join_Cou_1":8,
+ "TARGET_F_1":86471,
+ "g_objectid":"944309",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3748820",
+ "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":"66023004364244930020002",
+ "g_sup_tota":"43.3",
+ "g_geometry":"0.000377435",
+ "g_geomet_1":"5.15706e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000697399285604,
+ "Shape_Area":1.91137085125e-08,
+ "Shape_Le_3":0.00069739891068,
+ "Shape_Ar_2":1.91137085125e-08,
+ "building_height":13.37
+ }
+ },
+ {
+ "type":"Feature",
+ "id":944,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55675988598179,
+ 45.53521063881023
+ ],
+ [
+ -73.55676370630185,
+ 45.535212115497025
+ ],
+ [
+ -73.55681265280353,
+ 45.535149679164654
+ ],
+ [
+ -73.55675988598179,
+ 45.53521063881023
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55687650197083,
+ 45.53507591587112
+ ],
+ [
+ -73.55687926828544,
+ 45.53507704991622
+ ],
+ [
+ -73.55689366823005,
+ 45.53505904998546
+ ],
+ [
+ -73.55696654838934,
+ 45.53508797218247
+ ],
+ [
+ -73.5570646167605,
+ 45.53497467649042
+ ],
+ [
+ -73.55699119790731,
+ 45.53494341066017
+ ],
+ [
+ -73.55687650197083,
+ 45.53507591587112
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":944,
+ "ID_UEV":"01023923",
+ "CIVIQUE_DE":" 2325",
+ "CIVIQUE_FI":" 2329",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-39-5409-6-000-0000",
+ "SUPERFICIE":233,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000673400703798,
+ "OBJECTID":86487,
+ "Join_Count":2,
+ "TARGET_FID":86487,
+ "feature_id":"a71ca623-7086-4569-9560-653b710cfc84",
+ "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.53,
+ "heightmax":40.65,
+ "elevmin":21.14,
+ "elevmax":28.77,
+ "bldgarea":2362.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_2":86487,
+ "Shape_Le_1":0.000673400703798,
+ "Shape_Ar_1":1.16749018476e-08,
+ "OBJECTID_3":86487,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86486,
+ "g_objectid":"941107",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425017",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004339450600000000",
+ "g_sup_tota":"131.8",
+ "g_geometry":"0.000566521",
+ "g_geomet_1":"1.54533e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000673400703798,
+ "Shape_Area":1.16749018476e-08,
+ "Shape_Le_3":0.000673400140068,
+ "Shape_Ar_2":1.16749018476e-08,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":945,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5566083484184,
+ 45.535151797967394
+ ],
+ [
+ -73.55661787313818,
+ 45.535155717212874
+ ],
+ [
+ -73.5566495535559,
+ 45.53516796777779
+ ],
+ [
+ -73.55671696853511,
+ 45.535087150202116
+ ],
+ [
+ -73.55667846046443,
+ 45.53507130774495
+ ],
+ [
+ -73.5566083484184,
+ 45.535151797967394
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55676312803777,
+ 45.53497410721957
+ ],
+ [
+ -73.55676766781546,
+ 45.53497594993044
+ ],
+ [
+ -73.55675206817526,
+ 45.53499494990731
+ ],
+ [
+ -73.55675226782475,
+ 45.53499504973205
+ ],
+ [
+ -73.55678336817974,
+ 45.53500804943223
+ ],
+ [
+ -73.55679666825348,
+ 45.534992349967276
+ ],
+ [
+ -73.55683450812789,
+ 45.53500802425121
+ ],
+ [
+ -73.55691777096021,
+ 45.53491213763534
+ ],
+ [
+ -73.55684435030837,
+ 45.5348808601139
+ ],
+ [
+ -73.55676312803777,
+ 45.53497410721957
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":945,
+ "ID_UEV":"01023927",
+ "CIVIQUE_DE":" 2313",
+ "CIVIQUE_FI":" 2315",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-39-6603-3-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":182,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000753300787888,
+ "OBJECTID":86488,
+ "Join_Count":2,
+ "TARGET_FID":86488,
+ "feature_id":"a71ca623-7086-4569-9560-653b710cfc84",
+ "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.53,
+ "heightmax":40.65,
+ "elevmin":21.14,
+ "elevmax":28.77,
+ "bldgarea":2362.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_2":86488,
+ "Shape_Le_1":0.000753300787888,
+ "Shape_Ar_1":1.46548031645e-08,
+ "OBJECTID_3":86488,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86487,
+ "g_objectid":"941104",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425014",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004339660330000000",
+ "g_sup_tota":"236.5",
+ "g_geometry":"0.000887007",
+ "g_geomet_1":"2.76536e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000753300787888,
+ "Shape_Area":1.46548031645e-08,
+ "Shape_Le_3":0.000753299948467,
+ "Shape_Ar_2":1.46548031645e-08,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":946,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55499897834203,
+ 45.53069554391452
+ ],
+ [
+ -73.55494756679862,
+ 45.530745849291804
+ ],
+ [
+ -73.55494556670638,
+ 45.53074774865997
+ ],
+ [
+ -73.55507776704715,
+ 45.53081194856287
+ ],
+ [
+ -73.55508236707942,
+ 45.53081414920392
+ ],
+ [
+ -73.55513527509471,
+ 45.530758754563166
+ ],
+ [
+ -73.55499897834203,
+ 45.53069554391452
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":946,
+ "ID_UEV":"01025478",
+ "CIVIQUE_DE":" 2313",
+ "CIVIQUE_FI":" 2315",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-44-9731-9-000-0000",
+ "SUPERFICIE":236,
+ "SUPERFIC_1":255,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000453592913428,
+ "OBJECTID":86490,
+ "Join_Count":1,
+ "TARGET_FID":86490,
+ "feature_id":"1f749483-f6ca-4f21-9f3d-67945c739b0c",
+ "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":3.18,
+ "heightmax":31.38,
+ "elevmin":19,
+ "elevmax":19.49,
+ "bldgarea":325.16,
+ "comment":" ",
+ "OBJECTID_2":86490,
+ "Shape_Le_1":0.000453592913428,
+ "Shape_Ar_1":1.07920444552e-08,
+ "OBJECTID_3":86490,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86489,
+ "g_objectid":"938249",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1423994",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004344932430000000",
+ "g_sup_tota":"157.8",
+ "g_geometry":"0.00071286",
+ "g_geomet_1":"1.84785e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000453592913428,
+ "Shape_Area":1.07920444552e-08,
+ "Shape_Le_3":0.000453593869065,
+ "Shape_Ar_2":1.07920444552e-08,
+ "building_height":14.1
+ }
+ },
+ {
+ "type":"Feature",
+ "id":947,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55758470998822,
+ 45.538230394067725
+ ],
+ [
+ -73.55761326885911,
+ 45.538235549881016
+ ],
+ [
+ -73.55760873987329,
+ 45.538247922753726
+ ],
+ [
+ -73.55763002682612,
+ 45.53825547705891
+ ],
+ [
+ -73.55767008173073,
+ 45.53826387672682
+ ],
+ [
+ -73.55776349521098,
+ 45.53813464684677
+ ],
+ [
+ -73.55776876883546,
+ 45.53812534965546
+ ],
+ [
+ -73.55776836953648,
+ 45.53812515000596
+ ],
+ [
+ -73.55769146940763,
+ 45.53808734970172
+ ],
+ [
+ -73.5576894693154,
+ 45.5380894496187
+ ],
+ [
+ -73.55766788918358,
+ 45.53811544542177
+ ],
+ [
+ -73.55758470998822,
+ 45.538230394067725
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":947,
+ "ID_UEV":"01024871",
+ "CIVIQUE_DE":" 2534",
+ "CIVIQUE_FI":" 2540",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-9450-0-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":360,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000540563478475,
+ "OBJECTID":86493,
+ "Join_Count":1,
+ "TARGET_FID":86493,
+ "feature_id":"854ff233-c513-43a8-ab8b-43c22e6fac50",
+ "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":48.02,
+ "elevmin":26.87,
+ "elevmax":42.24,
+ "bldgarea":1868.16,
+ "comment":" ",
+ "OBJECTID_2":86493,
+ "Shape_Le_1":0.000540563478475,
+ "Shape_Ar_1":1.56255306516e-08,
+ "OBJECTID_3":86493,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86492,
+ "g_objectid":"944087",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361337",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422945000000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668591",
+ "g_geomet_1":"2.14592e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000540563478475,
+ "Shape_Area":1.56255306516e-08,
+ "Shape_Le_3":0.000540563295342,
+ "Shape_Ar_2":1.56255306516e-08,
+ "building_height":23.755000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":948,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55711698788053,
+ 45.53514749471141
+ ],
+ [
+ -73.55719258219376,
+ 45.53517740166605
+ ],
+ [
+ -73.55728660001841,
+ 45.53506922311645
+ ],
+ [
+ -73.55721232051403,
+ 45.53503758047026
+ ],
+ [
+ -73.55711698788053,
+ 45.53514749471141
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":948,
+ "ID_UEV":"01023917",
+ "CIVIQUE_DE":" 2343",
+ "CIVIQUE_FI":" 2347",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-39-3313-2-000-0000",
+ "SUPERFICIE":124,
+ "SUPERFIC_1":260,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000450855452879,
+ "OBJECTID":86494,
+ "Join_Count":1,
+ "TARGET_FID":86494,
+ "feature_id":"a71ca623-7086-4569-9560-653b710cfc84",
+ "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.53,
+ "heightmax":40.65,
+ "elevmin":21.14,
+ "elevmax":28.77,
+ "bldgarea":2362.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_2":86494,
+ "Shape_Le_1":0.000450855452879,
+ "Shape_Ar_1":1.10851933573e-08,
+ "OBJECTID_3":86494,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86493,
+ "g_objectid":"941112",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425023",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004339271670000000",
+ "g_sup_tota":"125.8",
+ "g_geometry":"0.0005417",
+ "g_geomet_1":"1.45253e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000450855452879,
+ "Shape_Area":1.10851933573e-08,
+ "Shape_Le_3":0.000450855667125,
+ "Shape_Ar_2":1.10851933573e-08,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":949,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.557899287444,
+ 45.53794100482381
+ ],
+ [
+ -73.5579055692085,
+ 45.53794264968383
+ ],
+ [
+ -73.55789716954058,
+ 45.537958549697606
+ ],
+ [
+ -73.55789746901483,
+ 45.537958549697606
+ ],
+ [
+ -73.5579780662566,
+ 45.53798338087862
+ ],
+ [
+ -73.55804568718057,
+ 45.537890009666505
+ ],
+ [
+ -73.55801856902359,
+ 45.53788044987316
+ ],
+ [
+ -73.55795845114345,
+ 45.53785931040915
+ ],
+ [
+ -73.557899287444,
+ 45.53794100482381
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":949,
+ "ID_UEV":"01024671",
+ "CIVIQUE_DE":" 2541",
+ "CIVIQUE_FI":" 2543",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-7528-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":163,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000417744831485,
+ "OBJECTID":86496,
+ "Join_Count":1,
+ "TARGET_FID":86496,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":86496,
+ "Shape_Le_1":0.000417744831485,
+ "Shape_Ar_1":1.02581872166e-08,
+ "OBJECTID_3":86496,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86495,
+ "g_objectid":"944106",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361359",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422683140000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.00066855",
+ "g_geomet_1":"2.1444e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000417744831485,
+ "Shape_Area":1.02581872166e-08,
+ "Shape_Le_3":0.000417744590655,
+ "Shape_Ar_2":1.02581872166e-08,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":950,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55636948578498,
+ 45.530917600017524
+ ],
+ [
+ -73.55637668036135,
+ 45.53092091581791
+ ],
+ [
+ -73.55638166800142,
+ 45.530914749166634
+ ],
+ [
+ -73.55651426854051,
+ 45.53096754926328
+ ],
+ [
+ -73.55651736850359,
+ 45.53096884878364
+ ],
+ [
+ -73.55652426810234,
+ 45.53095804882519
+ ],
+ [
+ -73.55652910825359,
+ 45.53095965861165
+ ],
+ [
+ -73.55658788524455,
+ 45.530897224077926
+ ],
+ [
+ -73.55652646784407,
+ 45.53086934869178
+ ],
+ [
+ -73.55644835722775,
+ 45.53083382097435
+ ],
+ [
+ -73.55636948578498,
+ 45.530917600017524
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55650501811394,
+ 45.530773632947096
+ ],
+ [
+ -73.55650706856821,
+ 45.53077454845694
+ ],
+ [
+ -73.55655636850345,
+ 45.530720048641626
+ ],
+ [
+ -73.55655573088411,
+ 45.53071976445586
+ ],
+ [
+ -73.55650501811394,
+ 45.530773632947096
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":950,
+ "ID_UEV":"01022816",
+ "CIVIQUE_DE":" 2086",
+ "CIVIQUE_FI":" 2086",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-34-8438-3-000-0000",
+ "SUPERFICIE":346,
+ "SUPERFIC_1":377,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000684343265403,
+ "OBJECTID":86498,
+ "Join_Count":2,
+ "TARGET_FID":86498,
+ "feature_id":"83ff7d6a-86db-4472-ac12-909db444e70e",
+ "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.59,
+ "heightmax":27.73,
+ "elevmin":19.18,
+ "elevmax":20.22,
+ "bldgarea":58.3,
+ "comment":" ",
+ "OBJECTID_2":86498,
+ "Shape_Le_1":0.000684343265403,
+ "Shape_Ar_1":1.51163967229e-08,
+ "OBJECTID_3":86498,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86497,
+ "g_objectid":"940496",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423984",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004334843830000000",
+ "g_sup_tota":"346.2",
+ "g_geometry":"0.000861213",
+ "g_geomet_1":"4.02628e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000684343265403,
+ "Shape_Area":1.51163967229e-08,
+ "Shape_Le_3":0.000684344273139,
+ "Shape_Ar_2":1.51163967229e-08,
+ "building_height":12.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":951,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55652910825359,
+ 45.53095965861165
+ ],
+ [
+ -73.55656996805143,
+ 45.53097324916641
+ ],
+ [
+ -73.55656476817136,
+ 45.5309802485899
+ ],
+ [
+ -73.55661796846631,
+ 45.530998248520646
+ ],
+ [
+ -73.55661476777915,
+ 45.531001248658995
+ ],
+ [
+ -73.55665553944344,
+ 45.531022567088094
+ ],
+ [
+ -73.55678154795193,
+ 45.530888711994756
+ ],
+ [
+ -73.55677856849799,
+ 45.53088744844728
+ ],
+ [
+ -73.55677846777391,
+ 45.53088744844728
+ ],
+ [
+ -73.5567418680646,
+ 45.53092714901901
+ ],
+ [
+ -73.55661866813887,
+ 45.5308709485857
+ ],
+ [
+ -73.55661356808355,
+ 45.53087644883934
+ ],
+ [
+ -73.55659256801445,
+ 45.53089934917592
+ ],
+ [
+ -73.55658788524455,
+ 45.530897224077926
+ ],
+ [
+ -73.55652910825359,
+ 45.53095965861165
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":951,
+ "ID_UEV":"01022817",
+ "CIVIQUE_DE":" 2090",
+ "CIVIQUE_FI":" 2090",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-34-7345-1-000-0000",
+ "SUPERFICIE":322,
+ "SUPERFIC_1":419,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000664382578334,
+ "OBJECTID":86499,
+ "Join_Count":1,
+ "TARGET_FID":86499,
+ "feature_id":"3e049d51-dd6c-4762-9d7a-e73f58a07e75",
+ "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":32.14,
+ "elevmin":18.99,
+ "elevmax":20.54,
+ "bldgarea":2214.77,
+ "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_2":86499,
+ "Shape_Le_1":0.000664382578334,
+ "Shape_Ar_1":1.69301138443e-08,
+ "OBJECTID_3":86499,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86498,
+ "g_objectid":"940496",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423984",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004334843830000000",
+ "g_sup_tota":"346.2",
+ "g_geometry":"0.000861213",
+ "g_geomet_1":"4.02628e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000664382578334,
+ "Shape_Area":1.69301138443e-08,
+ "Shape_Le_3":0.00066438417351,
+ "Shape_Ar_2":1.69301138443e-08,
+ "building_height":14.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":952,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55665553944344,
+ 45.531022567088094
+ ],
+ [
+ -73.55678825689438,
+ 45.531091960575814
+ ],
+ [
+ -73.55693657128758,
+ 45.53093441284317
+ ],
+ [
+ -73.55693406847432,
+ 45.53093334894519
+ ],
+ [
+ -73.55692276849281,
+ 45.53094644847012
+ ],
+ [
+ -73.55686586838696,
+ 45.53092224861318
+ ],
+ [
+ -73.55683536787977,
+ 45.53095774845163
+ ],
+ [
+ -73.556801168461,
+ 45.53094324868228
+ ],
+ [
+ -73.55683026782445,
+ 45.53090934873775
+ ],
+ [
+ -73.55678154795193,
+ 45.530888711994756
+ ],
+ [
+ -73.55665553944344,
+ 45.531022567088094
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":952,
+ "ID_UEV":"01022818",
+ "CIVIQUE_DE":" 2100",
+ "CIVIQUE_FI":" 2108",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1917,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres maisons et locaux fraternels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-34-6352-8-000-0000",
+ "SUPERFICIE":346,
+ "SUPERFIC_1":592,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000813365600867,
+ "OBJECTID":86500,
+ "Join_Count":1,
+ "TARGET_FID":86500,
+ "feature_id":"3e049d51-dd6c-4762-9d7a-e73f58a07e75",
+ "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":32.14,
+ "elevmin":18.99,
+ "elevmax":20.54,
+ "bldgarea":2214.77,
+ "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_2":86500,
+ "Shape_Le_1":0.000813365600867,
+ "Shape_Ar_1":2.60232812125e-08,
+ "OBJECTID_3":86500,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86499,
+ "g_objectid":"940495",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423983",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004334734510000000",
+ "g_sup_tota":"322.4",
+ "g_geometry":"0.000841004",
+ "g_geomet_1":"3.75639e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000813365600867,
+ "Shape_Area":2.60232812125e-08,
+ "Shape_Le_3":0.000813363049305,
+ "Shape_Ar_2":2.60232812125e-08,
+ "building_height":14.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":953,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55174599920035,
+ 45.53654119117333
+ ],
+ [
+ -73.55175286732282,
+ 45.536544349592354
+ ],
+ [
+ -73.55182821702044,
+ 45.53657898518232
+ ],
+ [
+ -73.55192387970513,
+ 45.53644353649031
+ ],
+ [
+ -73.55190696705473,
+ 45.53643365024306
+ ],
+ [
+ -73.55190316741908,
+ 45.53643215017389
+ ],
+ [
+ -73.5518391069111,
+ 45.536409360453916
+ ],
+ [
+ -73.55174599920035,
+ 45.53654119117333
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":953,
+ "ID_UEV":"01025030",
+ "CIVIQUE_DE":" 2069",
+ "CIVIQUE_FI":" 2071",
+ "NOM_RUE":"rue Montgomery (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-5267-1-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":186,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000509376230352,
+ "OBJECTID":86501,
+ "Join_Count":1,
+ "TARGET_FID":86501,
+ "feature_id":"e26f92a7-bfa1-4fe3-98f2-794461095422",
+ "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":33.08,
+ "elevmin":18.89,
+ "elevmax":21.55,
+ "bldgarea":1497.24,
+ "comment":" ",
+ "OBJECTID_2":86501,
+ "Shape_Le_1":0.000509376230352,
+ "Shape_Ar_1":1.46896079614e-08,
+ "OBJECTID_3":86501,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86500,
+ "g_objectid":"943743",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360895",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470596430000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000668947",
+ "g_geomet_1":"2.15341e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000509376230352,
+ "Shape_Area":1.46896079614e-08,
+ "Shape_Le_3":0.000509376599297,
+ "Shape_Ar_2":1.46896079614e-08,
+ "building_height":16.279999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":954,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55764103812525,
+ 45.535356239049484
+ ],
+ [
+ -73.55764206874832,
+ 45.53535665003966
+ ],
+ [
+ -73.55764226929713,
+ 45.53535665003966
+ ],
+ [
+ -73.55766156874824,
+ 45.535351049961285
+ ],
+ [
+ -73.5576678693985,
+ 45.53536544990588
+ ],
+ [
+ -73.55766756902493,
+ 45.535365750279446
+ ],
+ [
+ -73.55762116940329,
+ 45.53543994974418
+ ],
+ [
+ -73.55762116940329,
+ 45.535440049568926
+ ],
+ [
+ -73.55765436877594,
+ 45.535454550237596
+ ],
+ [
+ -73.55765584726139,
+ 45.535455179763034
+ ],
+ [
+ -73.55768189792309,
+ 45.53542510013855
+ ],
+ [
+ -73.5578005481786,
+ 45.53528810101535
+ ],
+ [
+ -73.55772712752676,
+ 45.53525683428577
+ ],
+ [
+ -73.55764103812525,
+ 45.535356239049484
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":954,
+ "ID_UEV":"01023903",
+ "CIVIQUE_DE":" 2385",
+ "CIVIQUE_FI":" 2389",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-9643-7-000-0000",
+ "SUPERFICIE":216,
+ "SUPERFIC_1":312,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000595328331476,
+ "OBJECTID":86502,
+ "Join_Count":1,
+ "TARGET_FID":86502,
+ "feature_id":"a71ca623-7086-4569-9560-653b710cfc84",
+ "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.53,
+ "heightmax":40.65,
+ "elevmin":21.14,
+ "elevmax":28.77,
+ "bldgarea":2362.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_2":86502,
+ "Shape_Le_1":0.000595328331476,
+ "Shape_Ar_1":1.3628314146e-08,
+ "OBJECTID_3":86502,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86501,
+ "g_objectid":"941461",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425522",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329884000000000",
+ "g_sup_tota":"85.6",
+ "g_geometry":"0.000485447",
+ "g_geomet_1":"9.8588e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000595328331476,
+ "Shape_Area":1.3628314146e-08,
+ "Shape_Le_3":0.000595327296119,
+ "Shape_Ar_2":1.3628314146e-08,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":955,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55922376039007,
+ 45.53309952887046
+ ],
+ [
+ -73.5593089369797,
+ 45.53313823299335
+ ],
+ [
+ -73.5594024745664,
+ 45.53303754489708
+ ],
+ [
+ -73.55939576922121,
+ 45.53303434960584
+ ],
+ [
+ -73.55937856878776,
+ 45.53302585011319
+ ],
+ [
+ -73.55940006887992,
+ 45.53300454967053
+ ],
+ [
+ -73.55939996905518,
+ 45.53300444984578
+ ],
+ [
+ -73.55934636946122,
+ 45.532973249666036
+ ],
+ [
+ -73.55936566891233,
+ 45.5329568496292
+ ],
+ [
+ -73.55935973698412,
+ 45.53295339353458
+ ],
+ [
+ -73.55922376039007,
+ 45.53309952887046
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":955,
+ "ID_UEV":"01023112",
+ "CIVIQUE_DE":" 2324",
+ "CIVIQUE_FI":" 2328",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-16-6480-4-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":338,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000581832008098,
+ "OBJECTID":86508,
+ "Join_Count":1,
+ "TARGET_FID":86508,
+ "feature_id":"ea5c0bbc-ef1d-4d43-87d6-830780f61401",
+ "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.49,
+ "heightmax":44.42,
+ "elevmin":27.09,
+ "elevmax":32.72,
+ "bldgarea":1942,
+ "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_2":86508,
+ "Shape_Le_1":0.000581832008098,
+ "Shape_Ar_1":1.45055682543e-08,
+ "OBJECTID_3":86508,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86507,
+ "g_objectid":"940541",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424042",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316648040000000",
+ "g_sup_tota":"241.5",
+ "g_geometry":"0.000813576",
+ "g_geomet_1":"2.77833e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000581832008098,
+ "Shape_Area":1.45055682543e-08,
+ "Shape_Le_3":0.000581832185037,
+ "Shape_Ar_2":1.45055682543e-08,
+ "building_height":20.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":956,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55762220092568,
+ 45.53787007619336
+ ],
+ [
+ -73.55771123740553,
+ 45.537896780662194
+ ],
+ [
+ -73.55778059042376,
+ 45.537801069414115
+ ],
+ [
+ -73.55778146096749,
+ 45.5378013787809
+ ],
+ [
+ -73.55778398806244,
+ 45.53779789210933
+ ],
+ [
+ -73.55772966901085,
+ 45.53777875003958
+ ],
+ [
+ -73.55769677630703,
+ 45.53776715597976
+ ],
+ [
+ -73.55762220092568,
+ 45.53787007619336
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":956,
+ "ID_UEV":"01024677",
+ "CIVIQUE_DE":" 2521",
+ "CIVIQUE_FI":" 2525",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-9518-4-000-0000",
+ "SUPERFICIE":185,
+ "SUPERFIC_1":186,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000435949663376,
+ "OBJECTID":86518,
+ "Join_Count":1,
+ "TARGET_FID":86518,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":86518,
+ "Shape_Le_1":0.000435949663376,
+ "Shape_Ar_1":1.09571759482e-08,
+ "OBJECTID_3":86518,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86517,
+ "g_objectid":"944101",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361354",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004432021480000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668065",
+ "g_geomet_1":"2.1408e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000435949663376,
+ "Shape_Area":1.09571759482e-08,
+ "Shape_Le_3":0.000435949873559,
+ "Shape_Ar_2":1.09571759482e-08,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":957,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55633418649535,
+ 45.537379694767395
+ ],
+ [
+ -73.55637846821358,
+ 45.53739504979201
+ ],
+ [
+ -73.55642168423519,
+ 45.53741001900747
+ ],
+ [
+ -73.55648670521911,
+ 45.53731879807437
+ ],
+ [
+ -73.55639910135929,
+ 45.53728862312175
+ ],
+ [
+ -73.55633418649535,
+ 45.537379694767395
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":957,
+ "ID_UEV":"01024686",
+ "CIVIQUE_DE":" 2387",
+ "CIVIQUE_FI":" 2389",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-31-9766-0-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":163,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000409120720764,
+ "OBJECTID":86520,
+ "Join_Count":1,
+ "TARGET_FID":86520,
+ "feature_id":"caf887d4-e503-481f-99c1-1bc02a61d51a",
+ "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":32.03,
+ "elevmin":20.72,
+ "elevmax":24.62,
+ "bldgarea":855.9,
+ "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_2":86520,
+ "Shape_Le_1":0.000409120720764,
+ "Shape_Ar_1":9.94557894864e-09,
+ "OBJECTID_3":86520,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86519,
+ "g_objectid":"943936",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361139",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431976600000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668337",
+ "g_geomet_1":"2.14808e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000409120720764,
+ "Shape_Area":9.94557894864e-09,
+ "Shape_Le_3":0.00040911997417,
+ "Shape_Ar_2":9.94557894864e-09,
+ "building_height":15.76
+ }
+ },
+ {
+ "type":"Feature",
+ "id":958,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5580677988117,
+ 45.51012825646416
+ ],
+ [
+ -73.5580584242787,
+ 45.510147906650865
+ ],
+ [
+ -73.55815031610605,
+ 45.51016084429782
+ ],
+ [
+ -73.55827036031073,
+ 45.510029351723496
+ ],
+ [
+ -73.55819421471308,
+ 45.5099951675932
+ ],
+ [
+ -73.5580677988117,
+ 45.51012825646416
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":958,
+ "ID_UEV":"01020897",
+ "CIVIQUE_DE":" 1003",
+ "CIVIQUE_FI":" 1005",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-21-5429-6-000-0000",
+ "SUPERFICIE":155,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000559641571365,
+ "OBJECTID":86530,
+ "Join_Count":1,
+ "TARGET_FID":86530,
+ "feature_id":"836463c5-05bc-4b24-bab9-5368caaaf25b",
+ "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.55,
+ "heightmax":32.26,
+ "elevmin":14.7,
+ "elevmax":17.93,
+ "bldgarea":1063.09,
+ "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_2":86530,
+ "Shape_Le_1":0.000559641571365,
+ "Shape_Ar_1":1.55723139039e-08,
+ "OBJECTID_3":86530,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86529,
+ "g_objectid":"939545",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180866",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004121542960000000",
+ "g_sup_tota":"155.1",
+ "g_geometry":"0.000624962",
+ "g_geomet_1":"1.77831e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000559641571365,
+ "Shape_Area":1.55723139039e-08,
+ "Shape_Le_3":0.000559642457357,
+ "Shape_Ar_2":1.55723139039e-08,
+ "building_height":15.854999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":959,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55920789005393,
+ 45.53116158878659
+ ],
+ [
+ -73.55931333376519,
+ 45.53120990396419
+ ],
+ [
+ -73.55937485638636,
+ 45.53114315448329
+ ],
+ [
+ -73.55926493495063,
+ 45.5310927879521
+ ],
+ [
+ -73.55925166905114,
+ 45.53110754852484
+ ],
+ [
+ -73.55914316944356,
+ 45.53105814876485
+ ],
+ [
+ -73.55909686874735,
+ 45.53110914841876
+ ],
+ [
+ -73.5592103694848,
+ 45.53115894927638
+ ],
+ [
+ -73.55920789005393,
+ 45.53116158878659
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5591551969766,
+ 45.53104250595718
+ ],
+ [
+ -73.55915506927288,
+ 45.53104264894939
+ ],
+ [
+ -73.55916845298356,
+ 45.531048579978275
+ ],
+ [
+ -73.5591551969766,
+ 45.53104250595718
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":959,
+ "ID_UEV":"01025874",
+ "CIVIQUE_DE":" 2210",
+ "CIVIQUE_FI":" 2210",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-14-7468-3-000-0000",
+ "SUPERFICIE":211,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00069259694158,
+ "OBJECTID":86531,
+ "Join_Count":1,
+ "TARGET_FID":86531,
+ "feature_id":"b7c5cd16-781e-4c4f-8b61-b07e0754b379",
+ "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.46,
+ "heightmax":39.63,
+ "elevmin":26.36,
+ "elevmax":27.57,
+ "bldgarea":759.35,
+ "comment":" ",
+ "OBJECTID_2":86531,
+ "Shape_Le_1":0.00069259694158,
+ "Shape_Ar_1":1.81064472565e-08,
+ "OBJECTID_3":86531,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86530,
+ "g_objectid":"940447",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423903",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004314746830000000",
+ "g_sup_tota":"210.7",
+ "g_geometry":"0.0007443",
+ "g_geomet_1":"2.42658e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00069259694158,
+ "Shape_Area":1.81064472565e-08,
+ "Shape_Le_3":0.000692597615786,
+ "Shape_Ar_2":1.81064472565e-08,
+ "building_height":18.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":960,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55223897337177,
+ 45.53595708869898
+ ],
+ [
+ -73.5522420670396,
+ 45.5359579502495
+ ],
+ [
+ -73.55223346682288,
+ 45.5359731496914
+ ],
+ [
+ -73.55227836727468,
+ 45.53598565026784
+ ],
+ [
+ -73.55227116730238,
+ 45.5359984494192
+ ],
+ [
+ -73.5523106394463,
+ 45.53600946251698
+ ],
+ [
+ -73.55240798476254,
+ 45.53587390410768
+ ],
+ [
+ -73.5523723671129,
+ 45.535863150014656
+ ],
+ [
+ -73.55237176726509,
+ 45.53586294946584
+ ],
+ [
+ -73.55236306722362,
+ 45.535877249585695
+ ],
+ [
+ -73.55230817530389,
+ 45.53586072184513
+ ],
+ [
+ -73.55223897337177,
+ 45.53595708869898
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":960,
+ "ID_UEV":"01024753",
+ "CIVIQUE_DE":" 2087",
+ "CIVIQUE_FI":" 2091",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-1505-8-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":337,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000520383262918,
+ "OBJECTID":86536,
+ "Join_Count":1,
+ "TARGET_FID":86536,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":86536,
+ "Shape_Le_1":0.000520383262918,
+ "Shape_Ar_1":1.31670756793e-08,
+ "OBJECTID_3":86536,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86535,
+ "g_objectid":"943689",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360832",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470150580000000",
+ "g_sup_tota":"186.4",
+ "g_geometry":"0.000668571",
+ "g_geomet_1":"2.14686e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000520383262918,
+ "Shape_Area":1.31670756793e-08,
+ "Shape_Le_3":0.00052038136938,
+ "Shape_Ar_2":1.31670756793e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":961,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55999674117851,
+ 45.533450755498265
+ ],
+ [
+ -73.56008196093559,
+ 45.53348944882929
+ ],
+ [
+ -73.56021870555067,
+ 45.533342486117135
+ ],
+ [
+ -73.56015286888164,
+ 45.533313049507925
+ ],
+ [
+ -73.56011976933374,
+ 45.53334955029181
+ ],
+ [
+ -73.56009940508532,
+ 45.533340419475074
+ ],
+ [
+ -73.55999674117851,
+ 45.533450755498265
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":961,
+ "ID_UEV":"01023121",
+ "CIVIQUE_DE":" 2394",
+ "CIVIQUE_FI":" 2402",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-0419-6-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":390,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000588752674873,
+ "OBJECTID":86537,
+ "Join_Count":1,
+ "TARGET_FID":86537,
+ "feature_id":"ea5c0bbc-ef1d-4d43-87d6-830780f61401",
+ "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.49,
+ "heightmax":44.42,
+ "elevmin":27.09,
+ "elevmax":32.72,
+ "bldgarea":1942,
+ "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_2":86537,
+ "Shape_Le_1":0.000588752674873,
+ "Shape_Ar_1":1.67603098501e-08,
+ "OBJECTID_3":86537,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86536,
+ "g_objectid":"941317",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425323",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317041960000000",
+ "g_sup_tota":"241.5",
+ "g_geometry":"0.000813925",
+ "g_geomet_1":"2.78234e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000588752674873,
+ "Shape_Area":1.67603098501e-08,
+ "Shape_Le_3":0.000588754449599,
+ "Shape_Ar_2":1.67603098501e-08,
+ "building_height":20.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":962,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55604796736165,
+ 45.5217370480766
+ ],
+ [
+ -73.55609616742603,
+ 45.52167794822902
+ ],
+ [
+ -73.55611546687715,
+ 45.521685847873876
+ ],
+ [
+ -73.55618336749026,
+ 45.52161514767122
+ ],
+ [
+ -73.55618716712591,
+ 45.52161134803558
+ ],
+ [
+ -73.55616976704296,
+ 45.521603548215474
+ ],
+ [
+ -73.55622226676604,
+ 45.521545947537746
+ ],
+ [
+ -73.55606506707103,
+ 45.521475147510344
+ ],
+ [
+ -73.5560385667483,
+ 45.52150424777311
+ ],
+ [
+ -73.5560210668406,
+ 45.52149634812826
+ ],
+ [
+ -73.55601786705277,
+ 45.5215001477639
+ ],
+ [
+ -73.55595418156207,
+ 45.52157063302859
+ ],
+ [
+ -73.55597056720976,
+ 45.52157664769443
+ ],
+ [
+ -73.55594586732975,
+ 45.52160934794335
+ ],
+ [
+ -73.55592186712231,
+ 45.52160034752831
+ ],
+ [
+ -73.55592166747282,
+ 45.52160044825238
+ ],
+ [
+ -73.55586886737618,
+ 45.52166474798003
+ ],
+ [
+ -73.55604796736165,
+ 45.5217370480766
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55592447515625,
+ 45.52153440024267
+ ],
+ [
+ -73.55593056716378,
+ 45.52153714767152
+ ],
+ [
+ -73.55602366678065,
+ 45.521435047639635
+ ],
+ [
+ -73.556017582867,
+ 45.52143230380807
+ ],
+ [
+ -73.55592673785051,
+ 45.52152920665785
+ ],
+ [
+ -73.5559285526824,
+ 45.52153005022193
+ ],
+ [
+ -73.55592447515625,
+ 45.52153440024267
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":962,
+ "ID_UEV":"01021986",
+ "CIVIQUE_DE":" 1575",
+ "CIVIQUE_FI":" 1575",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":15,
+ "ANNEE_CONS":1972,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-44-2010-7-000-0000",
+ "SUPERFICIE":798,
+ "SUPERFIC_1":1159,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00128140605641,
+ "OBJECTID":86539,
+ "Join_Count":2,
+ "TARGET_FID":86539,
+ "feature_id":"87e87832-3b75-4097-9ff4-638227475bb7",
+ "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.5,
+ "heightmax":12.74,
+ "elevmin":24.9,
+ "elevmax":26.71,
+ "bldgarea":416.16,
+ "comment":" ",
+ "OBJECTID_2":86539,
+ "Shape_Le_1":0.00128140605641,
+ "Shape_Ar_1":4.89278872549e-08,
+ "OBJECTID_3":86539,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86538,
+ "g_objectid":"942202",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567621",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004243449430000000",
+ "g_sup_tota":"540.5",
+ "g_geometry":"0.00117363",
+ "g_geomet_1":"6.22499e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00128140605641,
+ "Shape_Area":4.89278872549e-08,
+ "Shape_Le_3":0.00128140403571,
+ "Shape_Ar_2":4.89278872549e-08,
+ "building_height":5.12
+ }
+ },
+ {
+ "type":"Feature",
+ "id":963,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55489016487105,
+ 45.521264060438334
+ ],
+ [
+ -73.55489766701557,
+ 45.52126734746041
+ ],
+ [
+ -73.55490136682646,
+ 45.52126924772789
+ ],
+ [
+ -73.55501971401044,
+ 45.52132921362261
+ ],
+ [
+ -73.55506664782938,
+ 45.521278564704296
+ ],
+ [
+ -73.5552522112424,
+ 45.52107831626158
+ ],
+ [
+ -73.55523936712494,
+ 45.52107284748422
+ ],
+ [
+ -73.55511846856432,
+ 45.52102147371234
+ ],
+ [
+ -73.55489016487105,
+ 45.521264060438334
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":963,
+ "ID_UEV":"01021987",
+ "CIVIQUE_DE":" 1453",
+ "CIVIQUE_FI":" 1461",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-43-9763-6-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":495,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000965525257894,
+ "OBJECTID":86540,
+ "Join_Count":1,
+ "TARGET_FID":86540,
+ "feature_id":"8d1a00e2-e45f-4b00-9d55-f4b5227f043d",
+ "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.36,
+ "heightmax":13.09,
+ "elevmin":18.69,
+ "elevmax":24.73,
+ "bldgarea":1189.59,
+ "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_2":86540,
+ "Shape_Le_1":0.000965525257894,
+ "Shape_Ar_1":4.65070717073e-08,
+ "OBJECTID_3":86540,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86539,
+ "g_objectid":"942208",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567630",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004243976360000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100475",
+ "g_geomet_1":"4.92403e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000965525257894,
+ "Shape_Area":4.65070717073e-08,
+ "Shape_Le_3":0.000965525353155,
+ "Shape_Ar_2":4.65070717073e-08,
+ "building_height":5.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":964,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55490255303224,
+ 45.52105120080257
+ ],
+ [
+ -73.55490266724614,
+ 45.521051247567314
+ ],
+ [
+ -73.5548502673478,
+ 45.52111404812511
+ ],
+ [
+ -73.55485016752306,
+ 45.521114147949866
+ ],
+ [
+ -73.5548821672001,
+ 45.52113084746094
+ ],
+ [
+ -73.55489026739377,
+ 45.52113444744709
+ ],
+ [
+ -73.5549255666834,
+ 45.521094847599436
+ ],
+ [
+ -73.55496966673857,
+ 45.52111424777461
+ ],
+ [
+ -73.55485156686817,
+ 45.52124714778793
+ ],
+ [
+ -73.55489016487105,
+ 45.521264060438334
+ ],
+ [
+ -73.55511846856432,
+ 45.52102147371234
+ ],
+ [
+ -73.55501156705202,
+ 45.52097604805647
+ ],
+ [
+ -73.55501476683986,
+ 45.5209722475215
+ ],
+ [
+ -73.55498895809579,
+ 45.52096017322371
+ ],
+ [
+ -73.55490255303224,
+ 45.52105120080257
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":964,
+ "ID_UEV":"01021988",
+ "CIVIQUE_DE":" 1439",
+ "CIVIQUE_FI":" 1451",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-0756-8-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":582,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0010564187469,
+ "OBJECTID":86541,
+ "Join_Count":1,
+ "TARGET_FID":86541,
+ "feature_id":"8d1a00e2-e45f-4b00-9d55-f4b5227f043d",
+ "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.36,
+ "heightmax":13.09,
+ "elevmin":18.69,
+ "elevmax":24.73,
+ "bldgarea":1189.59,
+ "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_2":86541,
+ "Shape_Le_1":0.0010564187469,
+ "Shape_Ar_1":3.08657497511e-08,
+ "OBJECTID_3":86541,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86540,
+ "g_objectid":"942208",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567630",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004243976360000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100475",
+ "g_geomet_1":"4.92403e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0010564187469,
+ "Shape_Area":3.08657497511e-08,
+ "Shape_Le_3":0.00105641804434,
+ "Shape_Ar_2":3.08657497511e-08,
+ "building_height":5.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":965,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5546510675146,
+ 45.52115284757615
+ ],
+ [
+ -73.55465636721942,
+ 45.52115534769144
+ ],
+ [
+ -73.55472416710847,
+ 45.52118954800953
+ ],
+ [
+ -73.55472736689632,
+ 45.52118624749762
+ ],
+ [
+ -73.5547405671453,
+ 45.5211702476591
+ ],
+ [
+ -73.55469696711319,
+ 45.521152647926655
+ ],
+ [
+ -73.55470236754208,
+ 45.521146247451654
+ ],
+ [
+ -73.55467146683657,
+ 45.521136148065075
+ ],
+ [
+ -73.5546510675146,
+ 45.52115284757615
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55479278807856,
+ 45.52096712588245
+ ],
+ [
+ -73.55484716738471,
+ 45.52099074747531
+ ],
+ [
+ -73.55482746683597,
+ 45.52101324761358
+ ],
+ [
+ -73.55482306735252,
+ 45.52101844749365
+ ],
+ [
+ -73.55490255303224,
+ 45.52105120080257
+ ],
+ [
+ -73.55498895809579,
+ 45.52096017322371
+ ],
+ [
+ -73.55494786717217,
+ 45.52094094751701
+ ],
+ [
+ -73.55485720291942,
+ 45.52089853818728
+ ],
+ [
+ -73.55479278807856,
+ 45.52096712588245
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":965,
+ "ID_UEV":"01021989",
+ "CIVIQUE_DE":" 1433",
+ "CIVIQUE_FI":" 1437",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-1850-8-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":230,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000768435001637,
+ "OBJECTID":86542,
+ "Join_Count":2,
+ "TARGET_FID":86542,
+ "feature_id":"8d1a00e2-e45f-4b00-9d55-f4b5227f043d",
+ "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.36,
+ "heightmax":13.09,
+ "elevmin":18.69,
+ "elevmax":24.73,
+ "bldgarea":1189.59,
+ "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_2":86542,
+ "Shape_Le_1":0.000768435001637,
+ "Shape_Ar_1":1.75594846287e-08,
+ "OBJECTID_3":86542,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86541,
+ "g_objectid":"942209",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567632",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004253075680000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.0010044",
+ "g_geomet_1":"4.89871e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000768435001637,
+ "Shape_Area":1.75594846287e-08,
+ "Shape_Le_3":0.000768434859484,
+ "Shape_Ar_2":1.75594846287e-08,
+ "building_height":5.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":966,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55150899456629,
+ 45.52175870824808
+ ],
+ [
+ -73.55159596350475,
+ 45.52179918043812
+ ],
+ [
+ -73.55170236589332,
+ 45.52169124740344
+ ],
+ [
+ -73.55169916610548,
+ 45.52168984805834
+ ],
+ [
+ -73.55161176639174,
+ 45.521649248164564
+ ],
+ [
+ -73.55156356632737,
+ 45.521700548192044
+ ],
+ [
+ -73.55150899456629,
+ 45.52175870824808
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55163053704149,
+ 45.52162117942419
+ ],
+ [
+ -73.551629965972,
+ 45.52162174779572
+ ],
+ [
+ -73.55173766608227,
+ 45.52167524756492
+ ],
+ [
+ -73.5517410448352,
+ 45.5216718814025
+ ],
+ [
+ -73.55163053704149,
+ 45.52162117942419
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":966,
+ "ID_UEV":"01022073",
+ "CIVIQUE_DE":" 1677",
+ "CIVIQUE_FI":" 1685",
+ "NOM_RUE":"rue Sainte-Rose (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-74-6623-0-000-0000",
+ "SUPERFICIE":205,
+ "SUPERFIC_1":351,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000744910541039,
+ "OBJECTID":86543,
+ "Join_Count":2,
+ "TARGET_FID":86543,
+ "feature_id":"2de4cca0-6d8a-4f2a-ad54-5f1b7aa02077",
+ "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":5.07,
+ "heightmax":10.01,
+ "elevmin":19.26,
+ "elevmax":20.04,
+ "bldgarea":98.19,
+ "comment":" ",
+ "OBJECTID_2":86543,
+ "Shape_Le_1":0.000744910541039,
+ "Shape_Ar_1":1.42789980881e-08,
+ "OBJECTID_3":86543,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86542,
+ "g_objectid":"942294",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567811",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004274541290000000",
+ "g_sup_tota":"238.6",
+ "g_geometry":"0.000714234",
+ "g_geomet_1":"2.79923e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000744910541039,
+ "Shape_Area":1.42789980881e-08,
+ "Shape_Le_3":0.000744908969668,
+ "Shape_Ar_2":1.42789980881e-08,
+ "building_height":2.4699999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":967,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55163053704149,
+ 45.52162117942419
+ ],
+ [
+ -73.5517410448352,
+ 45.5216718814025
+ ],
+ [
+ -73.55180996617884,
+ 45.52160324784191
+ ],
+ [
+ -73.55174086587012,
+ 45.52156944772213
+ ],
+ [
+ -73.55173566599004,
+ 45.5215668477821
+ ],
+ [
+ -73.55173036628523,
+ 45.52157204766217
+ ],
+ [
+ -73.55169676581494,
+ 45.52155534815109
+ ],
+ [
+ -73.55163053704149,
+ 45.52162117942419
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55176022917308,
+ 45.52154551676249
+ ],
+ [
+ -73.55182616656617,
+ 45.52157914780972
+ ],
+ [
+ -73.55182842026723,
+ 45.52157698583952
+ ],
+ [
+ -73.55181976339321,
+ 45.52157299105099
+ ],
+ [
+ -73.55176022917308,
+ 45.52154551676249
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":967,
+ "ID_UEV":"01022074",
+ "CIVIQUE_DE":" 1669",
+ "CIVIQUE_FI":" 1671",
+ "NOM_RUE":"rue Sainte-Rose (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-74-5412-9-000-0000",
+ "SUPERFICIE":239,
+ "SUPERFIC_1":156,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000592159552286,
+ "OBJECTID":86544,
+ "Join_Count":2,
+ "TARGET_FID":86544,
+ "feature_id":"2de4cca0-6d8a-4f2a-ad54-5f1b7aa02077",
+ "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":5.07,
+ "heightmax":10.01,
+ "elevmin":19.26,
+ "elevmax":20.04,
+ "bldgarea":98.19,
+ "comment":" ",
+ "OBJECTID_2":86544,
+ "Shape_Le_1":0.000592159552286,
+ "Shape_Ar_1":1.11081630527e-08,
+ "OBJECTID_3":86544,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86543,
+ "g_objectid":"942294",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567811",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004274541290000000",
+ "g_sup_tota":"238.6",
+ "g_geometry":"0.000714234",
+ "g_geomet_1":"2.79923e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000592159552286,
+ "Shape_Area":1.11081630527e-08,
+ "Shape_Le_3":0.000592158973726,
+ "Shape_Ar_2":1.11081630527e-08,
+ "building_height":2.4699999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":968,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55139283992946,
+ 45.52150231423071
+ ],
+ [
+ -73.55139174995115,
+ 45.52150348694666
+ ],
+ [
+ -73.55149488510271,
+ 45.52155198288799
+ ],
+ [
+ -73.55155804449001,
+ 45.52148393028945
+ ],
+ [
+ -73.55152306625834,
+ 45.521466048169884
+ ],
+ [
+ -73.55154266608302,
+ 45.521447148017764
+ ],
+ [
+ -73.5515556657832,
+ 45.521453847967
+ ],
+ [
+ -73.55155616580625,
+ 45.52145344776869
+ ],
+ [
+ -73.55158966555247,
+ 45.521422148663525
+ ],
+ [
+ -73.55151414588298,
+ 45.52138723967966
+ ],
+ [
+ -73.55150836594018,
+ 45.521393347875
+ ],
+ [
+ -73.5514442649627,
+ 45.52146074756574
+ ],
+ [
+ -73.55143531940631,
+ 45.5214565441345
+ ],
+ [
+ -73.55139283992946,
+ 45.52150231423071
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":968,
+ "ID_UEV":"01022075",
+ "CIVIQUE_DE":" 1664",
+ "CIVIQUE_FI":" 1672",
+ "NOM_RUE":"rue Sainte-Rose (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-73-7594-4-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":233,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000592987724745,
+ "OBJECTID":86545,
+ "Join_Count":1,
+ "TARGET_FID":86545,
+ "feature_id":"51cb76dd-fad4-47d5-ac66-51d7f00801f3",
+ "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.51,
+ "heightmax":14.26,
+ "elevmin":17.25,
+ "elevmax":21.23,
+ "bldgarea":1111.21,
+ "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_2":86545,
+ "Shape_Le_1":0.000592987724745,
+ "Shape_Ar_1":1.5016729055e-08,
+ "OBJECTID_3":86545,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86544,
+ "g_objectid":"942295",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567813",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004273759440000000",
+ "g_sup_tota":"155.6",
+ "g_geometry":"0.000558964",
+ "g_geomet_1":"1.79592e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000592987724745,
+ "Shape_Area":1.5016729055e-08,
+ "Shape_Le_3":0.000592988508,
+ "Shape_Ar_2":1.5016729055e-08,
+ "building_height":5.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":969,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55009761743294,
+ 45.52766054874562
+ ],
+ [
+ -73.55011466588097,
+ 45.52764364868573
+ ],
+ [
+ -73.55016966571934,
+ 45.52767104922983
+ ],
+ [
+ -73.55020073639672,
+ 45.52764025554365
+ ],
+ [
+ -73.55000731830494,
+ 45.527550364707864
+ ],
+ [
+ -73.54996152392704,
+ 45.52759729942612
+ ],
+ [
+ -73.55009761743294,
+ 45.52766054874562
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":969,
+ "ID_UEV":"01019353",
+ "CIVIQUE_DE":" 2253",
+ "CIVIQUE_FI":" 2255",
+ "NOM_RUE":"boulevard De Maisonneuve Est (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-80-8580-5-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":170,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0005581299099,
+ "OBJECTID":86547,
+ "Join_Count":1,
+ "TARGET_FID":86547,
+ "feature_id":"05f7d39d-0270-4de1-a1af-52bad1462abd",
+ "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.45,
+ "heightmax":33.24,
+ "elevmin":17.24,
+ "elevmax":17.98,
+ "bldgarea":1491.78,
+ "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_2":86547,
+ "Shape_Le_1":0.0005581299099,
+ "Shape_Ar_1":1.1813324208e-08,
+ "OBJECTID_3":86547,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86546,
+ "g_objectid":"940877",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424566",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004380898640000000",
+ "g_sup_tota":"194.1",
+ "g_geometry":"0.000848265",
+ "g_geomet_1":"2.23367e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0005581299099,
+ "Shape_Area":1.1813324208e-08,
+ "Shape_Le_3":0.000558131291875,
+ "Shape_Ar_2":1.1813324208e-08,
+ "building_height":15.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":970,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55983674009532,
+ 45.508390741090125
+ ],
+ [
+ -73.55997427431515,
+ 45.50844426783898
+ ],
+ [
+ -73.56009706415004,
+ 45.508270120420015
+ ],
+ [
+ -73.55995996700072,
+ 45.508220944591216
+ ],
+ [
+ -73.55988996736994,
+ 45.50831734471998
+ ],
+ [
+ -73.55983674009532,
+ 45.508390741090125
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":970,
+ "ID_UEV":"01020537",
+ "CIVIQUE_DE":" 1051",
+ "CIVIQUE_FI":" 1053",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":11,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-19-1436-1-000-0000",
+ "SUPERFICIE":300,
+ "SUPERFIC_1":862,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000716115167581,
+ "OBJECTID":86548,
+ "Join_Count":1,
+ "TARGET_FID":86548,
+ "feature_id":"f7297e77-8c35-46dd-a49b-3eb9ffce490b",
+ "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":14.51,
+ "elevmin":17.26,
+ "elevmax":20.15,
+ "bldgarea":1363.87,
+ "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_2":86548,
+ "Shape_Le_1":0.000716115167581,
+ "Shape_Ar_1":2.99343420905e-08,
+ "OBJECTID_3":86548,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86547,
+ "g_objectid":"938015",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180619",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"8",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019235600000000",
+ "g_sup_tota":"428.8",
+ "g_geometry":"0.000936108",
+ "g_geomet_1":"4.9348e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000716115167581,
+ "Shape_Area":2.99343420905e-08,
+ "Shape_Le_3":0.000716115959557,
+ "Shape_Ar_2":2.99343420905e-08,
+ "building_height":6.745
+ }
+ },
+ {
+ "type":"Feature",
+ "id":971,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56783233721444,
+ 45.51147082556844
+ ],
+ [
+ -73.5679930064939,
+ 45.511543583419936
+ ],
+ [
+ -73.5681465054787,
+ 45.51138471997914
+ ],
+ [
+ -73.5679865529589,
+ 45.511309772278466
+ ],
+ [
+ -73.56783233721444,
+ 45.51147082556844
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":971,
+ "ID_UEV":"01058660",
+ "CIVIQUE_DE":" 2053",
+ "CIVIQUE_FI":" 2061",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-42-8578-5-000-0000",
+ "SUPERFICIE":356,
+ "SUPERFIC_1":486,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000796904318329,
+ "OBJECTID":86549,
+ "Join_Count":1,
+ "TARGET_FID":86549,
+ "feature_id":"26e02476-12eb-479a-b966-026faf49dba1",
+ "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":22.51,
+ "elevmin":25.68,
+ "elevmax":34.94,
+ "bldgarea":3860.09,
+ "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_2":86549,
+ "Shape_Le_1":0.000796904318329,
+ "Shape_Ar_1":3.70059452105e-08,
+ "OBJECTID_3":86549,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86548,
+ "g_objectid":"943077",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160991",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994142979540000000",
+ "g_sup_tota":"239.4",
+ "g_geometry":"0.000680899",
+ "g_geomet_1":"2.73407e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000796904318329,
+ "Shape_Area":3.70059452105e-08,
+ "Shape_Le_3":0.000796903753111,
+ "Shape_Ar_2":3.70059452105e-08,
+ "building_height":11.005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":972,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5514228646953,
+ 45.536381887964055
+ ],
+ [
+ -73.5514248674855,
+ 45.5363833502617
+ ],
+ [
+ -73.55149459372237,
+ 45.536434531578664
+ ],
+ [
+ -73.55157388334987,
+ 45.5363222710063
+ ],
+ [
+ -73.5515279675635,
+ 45.536305149713186
+ ],
+ [
+ -73.55148762037922,
+ 45.5362902038801
+ ],
+ [
+ -73.5514228646953,
+ 45.536381887964055
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":972,
+ "ID_UEV":"01025037",
+ "CIVIQUE_DE":" 2045",
+ "CIVIQUE_FI":" 2045",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-8053-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":86,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000430689130748,
+ "OBJECTID":86550,
+ "Join_Count":1,
+ "TARGET_FID":86550,
+ "feature_id":"e26f92a7-bfa1-4fe3-98f2-794461095422",
+ "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":33.08,
+ "elevmin":18.89,
+ "elevmax":21.55,
+ "bldgarea":1497.24,
+ "comment":" ",
+ "OBJECTID_2":86550,
+ "Shape_Le_1":0.000430689130748,
+ "Shape_Ar_1":1.11079449095e-08,
+ "OBJECTID_3":86550,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86549,
+ "g_objectid":"943739",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360891",
+ "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":"66023004470865050000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000668906",
+ "g_geomet_1":"2.15323e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000430689130748,
+ "Shape_Area":1.11079449095e-08,
+ "Shape_Le_3":0.000430689418146,
+ "Shape_Ar_2":1.11079449095e-08,
+ "building_height":16.279999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":973,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5612390259821,
+ 45.53246601314628
+ ],
+ [
+ -73.56132322141139,
+ 45.53250581174411
+ ],
+ [
+ -73.56143511056375,
+ 45.53238419102789
+ ],
+ [
+ -73.56135081620904,
+ 45.532344495852094
+ ],
+ [
+ -73.5612390259821,
+ 45.53246601314628
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":973,
+ "ID_UEV":"01022751",
+ "CIVIQUE_DE":" 2330",
+ "CIVIQUE_FI":" 2334",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1970,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-0711-9-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":341,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000516676572293,
+ "OBJECTID":86558,
+ "Join_Count":1,
+ "TARGET_FID":86558,
+ "feature_id":"243fd313-8d28-4ecd-be35-5fe3323f92ca",
+ "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":47.61,
+ "elevmin":33.17,
+ "elevmax":37.36,
+ "bldgarea":498.11,
+ "comment":" ",
+ "OBJECTID_2":86558,
+ "Shape_Le_1":0.000516676572293,
+ "Shape_Ar_1":1.4686804226e-08,
+ "OBJECTID_3":86558,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86557,
+ "g_objectid":"940429",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423879",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306071190000000",
+ "g_sup_tota":"198.1",
+ "g_geometry":"0.000701611",
+ "g_geomet_1":"2.28854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000516676572293,
+ "Shape_Area":1.4686804226e-08,
+ "Shape_Le_3":0.000516677448822,
+ "Shape_Ar_2":1.4686804226e-08,
+ "building_height":22.544999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":974,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5566975179979,
+ 45.53857213374727
+ ],
+ [
+ -73.5568668450507,
+ 45.5386323001908
+ ],
+ [
+ -73.5568956692216,
+ 45.53860815069589
+ ],
+ [
+ -73.55689546867279,
+ 45.5386079510464
+ ],
+ [
+ -73.55687526900032,
+ 45.53860315046532
+ ],
+ [
+ -73.55689398928801,
+ 45.53856511813599
+ ],
+ [
+ -73.55673342972585,
+ 45.53850806784335
+ ],
+ [
+ -73.55671296924997,
+ 45.53854455064079
+ ],
+ [
+ -73.5566975179979,
+ 45.53857213374727
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":974,
+ "ID_UEV":"01025990",
+ "CIVIQUE_DE":" 2833",
+ "CIVIQUE_FI":" 2835",
+ "NOM_RUE":"rue Hochelaga (MTE+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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-6397-5-000-0000",
+ "SUPERFICIE":143,
+ "SUPERFIC_1":188,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00052457551938,
+ "OBJECTID":86559,
+ "Join_Count":1,
+ "TARGET_FID":86559,
+ "feature_id":"a1468f03-d869-4b19-b6dd-0faf58b1a12f",
+ "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.54,
+ "heightmax":40.33,
+ "elevmin":24.69,
+ "elevmax":27.19,
+ "bldgarea":880.76,
+ "comment":" ",
+ "OBJECTID_2":86559,
+ "Shape_Le_1":0.00052457551938,
+ "Shape_Ar_1":1.28796310772e-08,
+ "OBJECTID_3":86559,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86558,
+ "g_objectid":"944049",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361286",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004432639750000000",
+ "g_sup_tota":"143",
+ "g_geometry":"0.000605643",
+ "g_geomet_1":"1.65144e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00052457551938,
+ "Shape_Area":1.28796310772e-08,
+ "Shape_Le_3":0.000524576059153,
+ "Shape_Ar_2":1.28796310772e-08,
+ "building_height":19.895
+ }
+ },
+ {
+ "type":"Feature",
+ "id":975,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56110169410974,
+ 45.53061798548194
+ ],
+ [
+ -73.56115694845626,
+ 45.530643779836865
+ ],
+ [
+ -73.56122570882125,
+ 45.530570466204345
+ ],
+ [
+ -73.56121616881299,
+ 45.53056634910802
+ ],
+ [
+ -73.56127446916327,
+ 45.530499848739325
+ ],
+ [
+ -73.56123036641013,
+ 45.530480793004486
+ ],
+ [
+ -73.56110169410974,
+ 45.53061798548194
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":975,
+ "ID_UEV":"01022527",
+ "CIVIQUE_DE":" 2316",
+ "CIVIQUE_FI":" 2320",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-04-1804-6-000-0000",
+ "SUPERFICIE":147,
+ "SUPERFIC_1":198,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000496454836319,
+ "OBJECTID":86561,
+ "Join_Count":1,
+ "TARGET_FID":86561,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":86561,
+ "Shape_Le_1":0.000496454836319,
+ "Shape_Ar_1":9.94658523087e-09,
+ "OBJECTID_3":86561,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86560,
+ "g_objectid":"940356",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423688",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004304230120000000",
+ "g_sup_tota":"143.3",
+ "g_geometry":"0.000702878",
+ "g_geomet_1":"1.65014e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000496454836319,
+ "Shape_Area":9.94658523087e-09,
+ "Shape_Le_3":0.000496454644386,
+ "Shape_Ar_2":9.94658523087e-09,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":976,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56473534997826,
+ 45.51468022895969
+ ],
+ [
+ -73.56478516882233,
+ 45.51470334603289
+ ],
+ [
+ -73.56483056929719,
+ 45.51465504614376
+ ],
+ [
+ -73.56484972935337,
+ 45.514663946734046
+ ],
+ [
+ -73.56494397200855,
+ 45.51455457298545
+ ],
+ [
+ -73.56487157298655,
+ 45.51452213713721
+ ],
+ [
+ -73.56473534997826,
+ 45.51468022895969
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":976,
+ "ID_UEV":"01021115",
+ "CIVIQUE_DE":" 1707",
+ "CIVIQUE_FI":" 1711",
+ "NOM_RUE":"rue Sanguinet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-76-3333-8-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":334,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000574736208331,
+ "OBJECTID":86562,
+ "Join_Count":1,
+ "TARGET_FID":86562,
+ "feature_id":"84e763e9-289e-4205-bdef-0a9c5e88cc85",
+ "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":14.95,
+ "elevmin":23.59,
+ "elevmax":25.72,
+ "bldgarea":1922.53,
+ "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_2":86562,
+ "Shape_Le_1":0.000574736208331,
+ "Shape_Ar_1":1.44834718761e-08,
+ "OBJECTID_3":86562,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86561,
+ "g_objectid":"943119",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161354",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994176273710000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000661012",
+ "g_geomet_1":"1.96674e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000574736208331,
+ "Shape_Area":1.44834718761e-08,
+ "Shape_Le_3":0.000574736063157,
+ "Shape_Ar_2":1.44834718761e-08,
+ "building_height":7.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":977,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5604194117483,
+ 45.50819241090134
+ ],
+ [
+ -73.56053228385966,
+ 45.50824393845729
+ ],
+ [
+ -73.5606568588488,
+ 45.508114573678924
+ ],
+ [
+ -73.56054416929982,
+ 45.508063099182976
+ ],
+ [
+ -73.5604194117483,
+ 45.50819241090134
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":977,
+ "ID_UEV":"01058697",
+ "CIVIQUE_DE":" 1068",
+ "CIVIQUE_FI":" 1072",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1866,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres ventes au d\u00c3\u00a9tail de marchandises en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-09-6816-0-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":720,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000607244826587,
+ "OBJECTID":86570,
+ "Join_Count":1,
+ "TARGET_FID":86570,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":86570,
+ "Shape_Le_1":0.000607244826587,
+ "Shape_Ar_1":2.10074113692e-08,
+ "OBJECTID_3":86570,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86569,
+ "g_objectid":"939512",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180598",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004009770880000000",
+ "g_sup_tota":"250.8",
+ "g_geometry":"0.000715273",
+ "g_geomet_1":"2.88771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000607244826587,
+ "Shape_Area":2.10074113692e-08,
+ "Shape_Le_3":0.000607244136842,
+ "Shape_Ar_2":2.10074113692e-08,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":978,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56053228385966,
+ 45.50824393845729
+ ],
+ [
+ -73.56078198422304,
+ 45.5083579302246
+ ],
+ [
+ -73.56087137683441,
+ 45.50826162542397
+ ],
+ [
+ -73.56079457293303,
+ 45.50822656355536
+ ],
+ [
+ -73.56093813620787,
+ 45.50805890384563
+ ],
+ [
+ -73.56078042389929,
+ 45.50798625661075
+ ],
+ [
+ -73.5606568588488,
+ 45.508114573678924
+ ],
+ [
+ -73.56053228385966,
+ 45.50824393845729
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":978,
+ "ID_UEV":"01058698",
+ "CIVIQUE_DE":" 1074",
+ "CIVIQUE_FI":" 1084",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-09-5220-6-000-0000",
+ "SUPERFICIE":626,
+ "SUPERFIC_1":2390,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00124241566582,
+ "OBJECTID":86571,
+ "Join_Count":1,
+ "TARGET_FID":86571,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":86571,
+ "Shape_Le_1":0.00124241566582,
+ "Shape_Ar_1":7.24574927051e-08,
+ "OBJECTID_3":86571,
+ "Join_Cou_1":8,
+ "TARGET_F_1":86570,
+ "g_objectid":"939511",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180594",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004009590290000000",
+ "g_sup_tota":"176.4",
+ "g_geometry":"0.000601651",
+ "g_geomet_1":"2.06591e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00124241566582,
+ "Shape_Area":7.24574927051e-08,
+ "Shape_Le_3":0.00124241674696,
+ "Shape_Ar_2":7.24574927051e-08,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":979,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55554901089998,
+ 45.53052199274607
+ ],
+ [
+ -73.55558166798144,
+ 45.53053634862388
+ ],
+ [
+ -73.55557021331654,
+ 45.530549208029825
+ ],
+ [
+ -73.55563483769944,
+ 45.53057899447531
+ ],
+ [
+ -73.5557415908236,
+ 45.530466679044295
+ ],
+ [
+ -73.55572856774106,
+ 45.53046104928829
+ ],
+ [
+ -73.55577596830814,
+ 45.53040704859671
+ ],
+ [
+ -73.5556920678565,
+ 45.530370648536895
+ ],
+ [
+ -73.5557309680316,
+ 45.530326348832226
+ ],
+ [
+ -73.5557299077309,
+ 45.530325889278664
+ ],
+ [
+ -73.55572221223215,
+ 45.530333985875046
+ ],
+ [
+ -73.55554901089998,
+ 45.53052199274607
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":979,
+ "ID_UEV":"01022989",
+ "CIVIQUE_DE":" 2288",
+ "CIVIQUE_FI":" 2288",
+ "NOM_RUE":"avenue Prince-George (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2005,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-43-4890-0-000-0000",
+ "SUPERFICIE":339,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000783413545485,
+ "OBJECTID":86572,
+ "Join_Count":1,
+ "TARGET_FID":86572,
+ "feature_id":"564324dd-8d2e-43bc-b4f6-68cd41a82eed",
+ "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.58,
+ "heightmax":32.73,
+ "elevmin":19.12,
+ "elevmax":20.71,
+ "bldgarea":1136.97,
+ "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_2":86572,
+ "Shape_Le_1":0.000783413545485,
+ "Shape_Ar_1":2.17851945196e-08,
+ "OBJECTID_3":86572,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86571,
+ "g_objectid":"945087",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1423920",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6299",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004343489000000000",
+ "g_sup_tota":"338.6",
+ "g_geometry":"0.000971989",
+ "g_geomet_1":"3.92351e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000783413545485,
+ "Shape_Area":2.17851945196e-08,
+ "Shape_Le_3":0.000783413326897,
+ "Shape_Ar_2":2.17851945196e-08,
+ "building_height":15.075
+ }
+ },
+ {
+ "type":"Feature",
+ "id":980,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5594797362227,
+ 45.53321584448593
+ ],
+ [
+ -73.55956591735504,
+ 45.533255005464426
+ ],
+ [
+ -73.55967397719414,
+ 45.53313887151201
+ ],
+ [
+ -73.5595904688469,
+ 45.53310545000681
+ ],
+ [
+ -73.55960816930342,
+ 45.53308364954109
+ ],
+ [
+ -73.55960806947867,
+ 45.533083549716345
+ ],
+ [
+ -73.55960414843454,
+ 45.533082136881404
+ ],
+ [
+ -73.5594797362227,
+ 45.53321584448593
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":980,
+ "ID_UEV":"01023115",
+ "CIVIQUE_DE":" 2344",
+ "CIVIQUE_FI":" 2350",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-16-4493-9-000-0000",
+ "SUPERFICIE":244,
+ "SUPERFIC_1":326,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00055826770929,
+ "OBJECTID":86573,
+ "Join_Count":1,
+ "TARGET_FID":86573,
+ "feature_id":"ea5c0bbc-ef1d-4d43-87d6-830780f61401",
+ "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.49,
+ "heightmax":44.42,
+ "elevmin":27.09,
+ "elevmax":32.72,
+ "bldgarea":1942,
+ "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_2":86573,
+ "Shape_Le_1":0.00055826770929,
+ "Shape_Ar_1":1.41730899145e-08,
+ "OBJECTID_3":86573,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86572,
+ "g_objectid":"940543",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424044",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316449390000000",
+ "g_sup_tota":"244.3",
+ "g_geometry":"0.000816081",
+ "g_geomet_1":"2.81442e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00055826770929,
+ "Shape_Area":1.41730899145e-08,
+ "Shape_Le_3":0.000558268056725,
+ "Shape_Ar_2":1.41730899145e-08,
+ "building_height":20.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":981,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55623709568727,
+ 45.53187120784027
+ ],
+ [
+ -73.55636510338866,
+ 45.53192842001087
+ ],
+ [
+ -73.55642971338241,
+ 45.531859520250954
+ ],
+ [
+ -73.5562188790199,
+ 45.53176141680623
+ ],
+ [
+ -73.55621196772996,
+ 45.53176874897888
+ ],
+ [
+ -73.55626476782662,
+ 45.531793349034125
+ ],
+ [
+ -73.55623226812652,
+ 45.53182744862815
+ ],
+ [
+ -73.55625786822789,
+ 45.531839248632714
+ ],
+ [
+ -73.55624236841241,
+ 45.53185584921836
+ ],
+ [
+ -73.55624916818641,
+ 45.53185914883095
+ ],
+ [
+ -73.55623709568727,
+ 45.53187120784027
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55608796830694,
+ 45.53180114885423
+ ],
+ [
+ -73.55616146809912,
+ 45.53183594902013
+ ],
+ [
+ -73.55619756778538,
+ 45.53179824854063
+ ],
+ [
+ -73.55615716844042,
+ 45.53177914873902
+ ],
+ [
+ -73.5561849682835,
+ 45.53175034884981
+ ],
+ [
+ -73.55615186783628,
+ 45.53173464848553
+ ],
+ [
+ -73.55608796830694,
+ 45.53180114885423
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":981,
+ "ID_UEV":"01023077",
+ "CIVIQUE_DE":" 2344",
+ "CIVIQUE_FI":" 2348",
+ "NOM_RUE":"rue Larivi\u00c3\u00a8re (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-45-0647-3-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":261,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100525421209,
+ "OBJECTID":86576,
+ "Join_Count":2,
+ "TARGET_FID":86576,
+ "feature_id":"dbd4b4b8-7a5d-44f0-b4b7-f98cd1ba9c2a",
+ "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.46,
+ "heightmax":31.82,
+ "elevmin":18.54,
+ "elevmax":19.23,
+ "bldgarea":587.07,
+ "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_2":86576,
+ "Shape_Le_1":0.00100525421209,
+ "Shape_Ar_1":2.06765359982e-08,
+ "OBJECTID_3":86576,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86575,
+ "g_objectid":"940576",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424092",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004345064730000000",
+ "g_sup_tota":"260.5",
+ "g_geometry":"0.000856327",
+ "g_geomet_1":"3.04722e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100525421209,
+ "Shape_Area":2.06765359982e-08,
+ "Shape_Le_3":0.00100525522374,
+ "Shape_Ar_2":2.06765359982e-08,
+ "building_height":14.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":982,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55965209938672,
+ 45.53329416824157
+ ],
+ [
+ -73.5597372984594,
+ 45.533332883156326
+ ],
+ [
+ -73.55984768304599,
+ 45.53321424998794
+ ],
+ [
+ -73.5598034687769,
+ 45.53320054971589
+ ],
+ [
+ -73.5597670687171,
+ 45.533189050084886
+ ],
+ [
+ -73.55975378033455,
+ 45.53318488892178
+ ],
+ [
+ -73.55965209938672,
+ 45.53329416824157
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":982,
+ "ID_UEV":"01023117",
+ "CIVIQUE_DE":" 2360",
+ "CIVIQUE_FI":" 2364",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-3002-7-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":307,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000503282338859,
+ "OBJECTID":86585,
+ "Join_Count":1,
+ "TARGET_FID":86585,
+ "feature_id":"ea5c0bbc-ef1d-4d43-87d6-830780f61401",
+ "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.49,
+ "heightmax":44.42,
+ "elevmin":27.09,
+ "elevmax":32.72,
+ "bldgarea":1942,
+ "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_2":86585,
+ "Shape_Le_1":0.000503282338859,
+ "Shape_Ar_1":1.38088584904e-08,
+ "OBJECTID_3":86585,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86584,
+ "g_objectid":"940544",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424045",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316379740000000",
+ "g_sup_tota":"244.3",
+ "g_geometry":"0.000816083",
+ "g_geomet_1":"2.81444e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000503282338859,
+ "Shape_Area":1.38088584904e-08,
+ "Shape_Le_3":0.000503282152771,
+ "Shape_Ar_2":1.38088584904e-08,
+ "building_height":20.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":983,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55986477646012,
+ 45.53250047786506
+ ],
+ [
+ -73.55996248780042,
+ 45.5325457839111
+ ],
+ [
+ -73.56010967534309,
+ 45.53238743578183
+ ],
+ [
+ -73.56005696877594,
+ 45.53236334923947
+ ],
+ [
+ -73.56008036913558,
+ 45.532339648506266
+ ],
+ [
+ -73.56004706903884,
+ 45.53232344901825
+ ],
+ [
+ -73.56003576905734,
+ 45.53233554849706
+ ],
+ [
+ -73.5600362690804,
+ 45.53233374895365
+ ],
+ [
+ -73.56002296900665,
+ 45.53235014899048
+ ],
+ [
+ -73.56005386881284,
+ 45.53236174844623
+ ],
+ [
+ -73.56002086908968,
+ 45.532403648759676
+ ],
+ [
+ -73.55997278233988,
+ 45.532384280960095
+ ],
+ [
+ -73.55986477646012,
+ 45.53250047786506
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":983,
+ "ID_UEV":"01022866",
+ "CIVIQUE_DE":" 2356",
+ "CIVIQUE_FI":" 2364",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-16-1415-5-000-0000",
+ "SUPERFICIE":252,
+ "SUPERFIC_1":455,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000788542454734,
+ "OBJECTID":86586,
+ "Join_Count":1,
+ "TARGET_FID":86586,
+ "feature_id":"4da17aa5-58d4-4d3f-9a54-ca2d5df72e19",
+ "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.97,
+ "heightmax":42.57,
+ "elevmin":27.72,
+ "elevmax":30.46,
+ "bldgarea":1066.23,
+ "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_2":86586,
+ "Shape_Le_1":0.000788542454734,
+ "Shape_Ar_1":2.07357460994e-08,
+ "OBJECTID_3":86586,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86585,
+ "g_objectid":"940473",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423949",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316141550000000",
+ "g_sup_tota":"252.2",
+ "g_geometry":"0.000783066",
+ "g_geomet_1":"2.90542e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000788542454734,
+ "Shape_Area":2.07357460994e-08,
+ "Shape_Le_3":0.00078854179451,
+ "Shape_Ar_2":2.07357460994e-08,
+ "building_height":20.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":984,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5617430824991,
+ 45.510987201648334
+ ],
+ [
+ -73.56187556073039,
+ 45.51104858397527
+ ],
+ [
+ -73.56191445550957,
+ 45.51100804073879
+ ],
+ [
+ -73.56189626851982,
+ 45.51099944591799
+ ],
+ [
+ -73.56190436781417,
+ 45.510990845701265
+ ],
+ [
+ -73.56192006817845,
+ 45.51097384581663
+ ],
+ [
+ -73.56193902228989,
+ 45.51098243254352
+ ],
+ [
+ -73.56201916987064,
+ 45.51089888642476
+ ],
+ [
+ -73.5618861016841,
+ 45.51083857788836
+ ],
+ [
+ -73.5617430824991,
+ 45.510987201648334
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":984,
+ "ID_UEV":"01020804",
+ "CIVIQUE_DE":" 1237",
+ "CIVIQUE_FI":" 1237",
+ "NOM_RUE":"rue De Bullion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":20,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-92-6426-4-000-0000",
+ "SUPERFICIE":282,
+ "SUPERFIC_1":518,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0007462020003,
+ "OBJECTID":86587,
+ "Join_Count":1,
+ "TARGET_FID":86587,
+ "feature_id":"318a063e-ed0c-41a8-a2ff-c2b71f933867",
+ "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":45.18,
+ "elevmin":25.16,
+ "elevmax":26.57,
+ "bldgarea":2738.09,
+ "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_2":86587,
+ "Shape_Le_1":0.0007462020003,
+ "Shape_Ar_1":2.78427145368e-08,
+ "OBJECTID_3":86587,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86586,
+ "g_objectid":"943057",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160709",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"20",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994192642640000000",
+ "g_sup_tota":"564",
+ "g_geometry":"0.00105532",
+ "g_geomet_1":"6.52913e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0007462020003,
+ "Shape_Area":2.78427145368e-08,
+ "Shape_Le_3":0.00074620092562,
+ "Shape_Ar_2":2.78427145368e-08,
+ "building_height":22.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":985,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55680641600514,
+ 45.52017031665709
+ ],
+ [
+ -73.55695130577999,
+ 45.520238194787154
+ ],
+ [
+ -73.55708757735165,
+ 45.520093166516716
+ ],
+ [
+ -73.55704894517453,
+ 45.520074902185286
+ ],
+ [
+ -73.55694401317751,
+ 45.52002643592157
+ ],
+ [
+ -73.55680641600514,
+ 45.52017031665709
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":985,
+ "ID_UEV":"01022269",
+ "CIVIQUE_DE":" 1301",
+ "CIVIQUE_FI":" 1303",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1918,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres locaux de groupes",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-5046-3-000-0000",
+ "SUPERFICIE":272,
+ "SUPERFIC_1":1076,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000716407338634,
+ "OBJECTID":86588,
+ "Join_Count":1,
+ "TARGET_FID":86588,
+ "feature_id":"0264c9fe-20ec-4849-a69c-40f7d4f525fd",
+ "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.41,
+ "heightmax":20.48,
+ "elevmin":25.55,
+ "elevmax":27.32,
+ "bldgarea":959.69,
+ "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_2":86588,
+ "Shape_Le_1":0.000716407338634,
+ "Shape_Ar_1":3.00726358028e-08,
+ "OBJECTID_3":86588,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86587,
+ "g_objectid":"944903",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel institutionnel",
+ "g_no_lot":"1567430",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1590",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232504630000000",
+ "g_sup_tota":"271.6",
+ "g_geometry":"0.000729251",
+ "g_geomet_1":"3.13523e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000716407338634,
+ "Shape_Area":3.00726358028e-08,
+ "Shape_Le_3":0.000716407688756,
+ "Shape_Ar_2":3.00726358028e-08,
+ "building_height":9.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":986,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55035507714693,
+ 45.52849681302779
+ ],
+ [
+ -73.55036106573245,
+ 45.52849894891765
+ ],
+ [
+ -73.55036176630432,
+ 45.52849814852103
+ ],
+ [
+ -73.55039746579226,
+ 45.52845884904694
+ ],
+ [
+ -73.55041806656237,
+ 45.52846814893622
+ ],
+ [
+ -73.55036476644266,
+ 45.528526848585486
+ ],
+ [
+ -73.550361366106,
+ 45.52853054929571
+ ],
+ [
+ -73.55040860929174,
+ 45.52855143335226
+ ],
+ [
+ -73.55055225890148,
+ 45.52840098396853
+ ],
+ [
+ -73.55055136587468,
+ 45.52839754855832
+ ],
+ [
+ -73.55054986580551,
+ 45.52839684888576
+ ],
+ [
+ -73.55048212347306,
+ 45.528363787109384
+ ],
+ [
+ -73.55035507714693,
+ 45.52849681302779
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":986,
+ "ID_UEV":"01018451",
+ "CIVIQUE_DE":" 1619",
+ "CIVIQUE_FI":" 1621",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-81-6175-4-000-0000",
+ "SUPERFICIE":209,
+ "SUPERFIC_1":237,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000691678399734,
+ "OBJECTID":86589,
+ "Join_Count":1,
+ "TARGET_FID":86589,
+ "feature_id":"a9d0e852-07b3-4818-b03a-08e852d8be75",
+ "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.68,
+ "heightmax":30.75,
+ "elevmin":17.73,
+ "elevmax":19.27,
+ "bldgarea":825.88,
+ "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_2":86589,
+ "Shape_Le_1":0.000691678399734,
+ "Shape_Ar_1":1.42364064127e-08,
+ "OBJECTID_3":86589,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86588,
+ "g_objectid":"940803",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424460",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004381677100000000",
+ "g_sup_tota":"209",
+ "g_geometry":"0.000795054",
+ "g_geomet_1":"2.43462e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000691678399734,
+ "Shape_Area":1.42364064127e-08,
+ "Shape_Le_3":0.000691678971752,
+ "Shape_Ar_2":1.42364064127e-08,
+ "building_height":14.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":987,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55909490282934,
+ 45.53022940101634
+ ],
+ [
+ -73.55901756922728,
+ 45.53019234894804
+ ],
+ [
+ -73.55894946896467,
+ 45.53026264895238
+ ],
+ [
+ -73.55891696926456,
+ 45.53024714913692
+ ],
+ [
+ -73.55888296949529,
+ 45.530282248777056
+ ],
+ [
+ -73.55845596779052,
+ 45.530077948888525
+ ],
+ [
+ -73.5583224679294,
+ 45.53021574840836
+ ],
+ [
+ -73.558194753407,
+ 45.53034764118099
+ ],
+ [
+ -73.55872266444126,
+ 45.530596376571815
+ ],
+ [
+ -73.55899045196963,
+ 45.53033237518926
+ ],
+ [
+ -73.55903096912577,
+ 45.530290548620215
+ ],
+ [
+ -73.55903225425698,
+ 45.530291163756495
+ ],
+ [
+ -73.55909490282934,
+ 45.53022940101634
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":987,
+ "ID_UEV":"01022688",
+ "CIVIQUE_DE":" 2180",
+ "CIVIQUE_FI":" 2200",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1949,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-23-1974-7-000-0000",
+ "SUPERFICIE":2762,
+ "SUPERFIC_1":2601,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00222456523128,
+ "OBJECTID":86593,
+ "Join_Count":1,
+ "TARGET_FID":86593,
+ "feature_id":"ce75bd84-abb4-4b4e-a46c-f75f194ad922",
+ "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.37,
+ "heightmax":42.61,
+ "elevmin":23.36,
+ "elevmax":27.35,
+ "bldgarea":2930.06,
+ "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_2":86593,
+ "Shape_Le_1":0.00222456523128,
+ "Shape_Ar_1":2.21264814128e-07,
+ "OBJECTID_3":86593,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86592,
+ "g_objectid":"940379",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423720",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"33",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004313789830000000",
+ "g_sup_tota":"2275.1",
+ "g_geometry":"0.00293125",
+ "g_geomet_1":"2.62052e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00222456523128,
+ "Shape_Area":2.21264814128e-07,
+ "Shape_Le_3":0.00222456389721,
+ "Shape_Ar_2":2.21264814128e-07,
+ "building_height":20.62
+ }
+ },
+ {
+ "type":"Feature",
+ "id":988,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55903225425698,
+ 45.530291163756495
+ ],
+ [
+ -73.55925826917563,
+ 45.530399248776604
+ ],
+ [
+ -73.55927186872361,
+ 45.530405848901104
+ ],
+ [
+ -73.5589710212175,
+ 45.53071339096052
+ ],
+ [
+ -73.55911441721842,
+ 45.530780952529234
+ ],
+ [
+ -73.5594937692439,
+ 45.530398848578294
+ ],
+ [
+ -73.55911626892252,
+ 45.53021364849138
+ ],
+ [
+ -73.55911616909778,
+ 45.53021364849138
+ ],
+ [
+ -73.55909896956364,
+ 45.53023134894789
+ ],
+ [
+ -73.55909490282934,
+ 45.53022940101634
+ ],
+ [
+ -73.55903225425698,
+ 45.530291163756495
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55872266444126,
+ 45.530596376571815
+ ],
+ [
+ -73.55873093730476,
+ 45.53060027513288
+ ],
+ [
+ -73.55899045196963,
+ 45.53033237518926
+ ],
+ [
+ -73.55872266444126,
+ 45.530596376571815
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":988,
+ "ID_UEV":"01022689",
+ "CIVIQUE_DE":" 2214",
+ "CIVIQUE_FI":" 2220",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":33,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-13-7898-3-000-0000",
+ "SUPERFICIE":2275,
+ "SUPERFIC_1":1954,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00268873780562,
+ "OBJECTID":86594,
+ "Join_Count":1,
+ "TARGET_FID":86594,
+ "feature_id":"ce75bd84-abb4-4b4e-a46c-f75f194ad922",
+ "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.37,
+ "heightmax":42.61,
+ "elevmin":23.36,
+ "elevmax":27.35,
+ "bldgarea":2930.06,
+ "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_2":86594,
+ "Shape_Le_1":0.00268873780562,
+ "Shape_Ar_1":1.10971030789e-07,
+ "OBJECTID_3":86594,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86593,
+ "g_objectid":"940379",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423720",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"33",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004313789830000000",
+ "g_sup_tota":"2275.1",
+ "g_geometry":"0.00293125",
+ "g_geomet_1":"2.62052e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00268873780562,
+ "Shape_Area":1.10971030789e-07,
+ "Shape_Le_3":0.00268873625847,
+ "Shape_Ar_2":1.10971030789e-07,
+ "building_height":20.62
+ }
+ },
+ {
+ "type":"Feature",
+ "id":989,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55182821702044,
+ 45.53657898518232
+ ],
+ [
+ -73.55191043573986,
+ 45.53661677649333
+ ],
+ [
+ -73.55192278702884,
+ 45.53659929097479
+ ],
+ [
+ -73.55192796712383,
+ 45.53659094976282
+ ],
+ [
+ -73.55192855078384,
+ 45.536591129627226
+ ],
+ [
+ -73.55200612990082,
+ 45.536481289130485
+ ],
+ [
+ -73.55199626703595,
+ 45.536477549749414
+ ],
+ [
+ -73.55200866688831,
+ 45.53646145008615
+ ],
+ [
+ -73.55195796670864,
+ 45.53644295013234
+ ],
+ [
+ -73.55195606734048,
+ 45.53644204991097
+ ],
+ [
+ -73.55194186704537,
+ 45.53645404956503
+ ],
+ [
+ -73.55192387970513,
+ 45.53644353649031
+ ],
+ [
+ -73.55182821702044,
+ 45.53657898518232
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":989,
+ "ID_UEV":"01025028",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2077",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1932,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-4670-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":235,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000548992647229,
+ "OBJECTID":86598,
+ "Join_Count":1,
+ "TARGET_FID":86598,
+ "feature_id":"e26f92a7-bfa1-4fe3-98f2-794461095422",
+ "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":33.08,
+ "elevmin":18.89,
+ "elevmax":21.55,
+ "bldgarea":1497.24,
+ "comment":" ",
+ "OBJECTID_2":86598,
+ "Shape_Le_1":0.000548992647229,
+ "Shape_Ar_1":1.56759699665e-08,
+ "OBJECTID_3":86598,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86597,
+ "g_objectid":"943746",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360898",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470397440000000",
+ "g_sup_tota":"187",
+ "g_geometry":"0.000668981",
+ "g_geomet_1":"2.15357e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000548992647229,
+ "Shape_Area":1.56759699665e-08,
+ "Shape_Le_3":0.000548991445495,
+ "Shape_Ar_2":1.56759699665e-08,
+ "building_height":16.279999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":990,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56121113350885,
+ 45.530669067873475
+ ],
+ [
+ -73.56126965419303,
+ 45.530696362297576
+ ],
+ [
+ -73.56139418151811,
+ 45.530563590887304
+ ],
+ [
+ -73.56136457044042,
+ 45.53055084929255
+ ],
+ [
+ -73.5613343055556,
+ 45.53053774077441
+ ],
+ [
+ -73.56121113350885,
+ 45.530669067873475
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":990,
+ "ID_UEV":"01022530",
+ "CIVIQUE_DE":" 2328",
+ "CIVIQUE_FI":" 2332",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-04-1010-0-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":218,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00049187165763,
+ "OBJECTID":86602,
+ "Join_Count":1,
+ "TARGET_FID":86602,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":86602,
+ "Shape_Le_1":0.00049187165763,
+ "Shape_Ar_1":1.11067794617e-08,
+ "OBJECTID_3":86602,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86601,
+ "g_objectid":"940352",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004304031470000000",
+ "g_sup_tota":"276.5",
+ "g_geometry":"0.000813685",
+ "g_geomet_1":"3.19419e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00049187165763,
+ "Shape_Area":1.11067794617e-08,
+ "Shape_Le_3":0.000491872187932,
+ "Shape_Ar_2":1.11067794617e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":991,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56126965419303,
+ 45.530696362297576
+ ],
+ [
+ -73.56129556905711,
+ 45.53070844918587
+ ],
+ [
+ -73.56137462216293,
+ 45.530745219766374
+ ],
+ [
+ -73.56146006495189,
+ 45.53065319753733
+ ],
+ [
+ -73.56145726985896,
+ 45.530652049103075
+ ],
+ [
+ -73.56150146973889,
+ 45.53058454868827
+ ],
+ [
+ -73.56143707018649,
+ 45.53055954843471
+ ],
+ [
+ -73.56143697036174,
+ 45.53055954843471
+ ],
+ [
+ -73.56142267024188,
+ 45.53057584864679
+ ],
+ [
+ -73.56139418151811,
+ 45.530563590887304
+ ],
+ [
+ -73.56126965419303,
+ 45.530696362297576
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":991,
+ "ID_UEV":"01022532",
+ "CIVIQUE_DE":" 2334",
+ "CIVIQUE_FI":" 2342",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-04-0314-7-000-0000",
+ "SUPERFICIE":277,
+ "SUPERFIC_1":453,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000628971038554,
+ "OBJECTID":86604,
+ "Join_Count":1,
+ "TARGET_FID":86604,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":86604,
+ "Shape_Le_1":0.000628971038554,
+ "Shape_Ar_1":2.12146910653e-08,
+ "OBJECTID_3":86604,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86603,
+ "g_objectid":"940352",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004304031470000000",
+ "g_sup_tota":"276.5",
+ "g_geometry":"0.000813685",
+ "g_geomet_1":"3.19419e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000628971038554,
+ "Shape_Area":2.12146910653e-08,
+ "Shape_Le_3":0.000628970874203,
+ "Shape_Ar_2":2.12146910653e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":992,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5641528420019,
+ 45.52417328451976
+ ],
+ [
+ -73.56418707019897,
+ 45.524184047606006
+ ],
+ [
+ -73.56417617041578,
+ 45.524201148214715
+ ],
+ [
+ -73.56417646989001,
+ 45.52420124803946
+ ],
+ [
+ -73.56420024256899,
+ 45.52420740479819
+ ],
+ [
+ -73.5643509644473,
+ 45.524047481956025
+ ],
+ [
+ -73.56431446995866,
+ 45.52403564777722
+ ],
+ [
+ -73.56429356971431,
+ 45.524062847772505
+ ],
+ [
+ -73.56427027007875,
+ 45.52409384740343
+ ],
+ [
+ -73.56423874884103,
+ 45.52408213823039
+ ],
+ [
+ -73.5641528420019,
+ 45.52417328451976
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":992,
+ "ID_UEV":"01032319",
+ "CIVIQUE_DE":" 2280",
+ "CIVIQUE_FI":" 2286",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-76-7785-3-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000571110903486,
+ "OBJECTID":86607,
+ "Join_Count":1,
+ "TARGET_FID":86607,
+ "feature_id":"e9f013c3-7290-4338-bfd0-cbe14240a7ad",
+ "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.17,
+ "heightmax":13.5,
+ "elevmin":30.89,
+ "elevmax":39.62,
+ "bldgarea":781.22,
+ "comment":" ",
+ "OBJECTID_2":86607,
+ "Shape_Le_1":0.000571110903486,
+ "Shape_Ar_1":1.00256230357e-08,
+ "OBJECTID_3":86607,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86606,
+ "g_objectid":"942937",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885069",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994276778530000000",
+ "g_sup_tota":"176.9",
+ "g_geometry":"0.000826708",
+ "g_geomet_1":"2.04017e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000571110903486,
+ "Shape_Area":1.00256230357e-08,
+ "Shape_Le_3":0.000571110816881,
+ "Shape_Ar_2":1.00256230357e-08,
+ "building_height":5.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":993,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55168285150424,
+ 45.522910516757236
+ ],
+ [
+ -73.55186153600293,
+ 45.52299412223125
+ ],
+ [
+ -73.55202049117457,
+ 45.522819517956684
+ ],
+ [
+ -73.55162680935162,
+ 45.52263714264031
+ ],
+ [
+ -73.5516239656953,
+ 45.52264024799934
+ ],
+ [
+ -73.55162106628103,
+ 45.52264344778718
+ ],
+ [
+ -73.55171696638673,
+ 45.52268614759793
+ ],
+ [
+ -73.55171726586097,
+ 45.522686247422676
+ ],
+ [
+ -73.55173786573177,
+ 45.52269544748721
+ ],
+ [
+ -73.55179886584682,
+ 45.52272254765774
+ ],
+ [
+ -73.55167966610556,
+ 45.52285544767107
+ ],
+ [
+ -73.55167956628081,
+ 45.522855547495816
+ ],
+ [
+ -73.55171766605929,
+ 45.52287294757876
+ ],
+ [
+ -73.55168285150424,
+ 45.522910516757236
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55148276853679,
+ 45.5228636728705
+ ],
+ [
+ -73.5514414662725,
+ 45.52284504791093
+ ],
+ [
+ -73.55143666569141,
+ 45.522842848169205
+ ],
+ [
+ -73.55137076606984,
+ 45.522915148265774
+ ],
+ [
+ -73.55137586612517,
+ 45.52291744783225
+ ],
+ [
+ -73.55141583379555,
+ 45.522935668996226
+ ],
+ [
+ -73.55142341597971,
+ 45.522927513044586
+ ],
+ [
+ -73.55148276853679,
+ 45.5228636728705
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":993,
+ "ID_UEV":"01022418",
+ "CIVIQUE_DE":" 1818",
+ "CIVIQUE_FI":" 1832",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1903,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-75-6146-9-000-0000",
+ "SUPERFICIE":1013,
+ "SUPERFIC_1":1131,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00163841218635,
+ "OBJECTID":86611,
+ "Join_Count":1,
+ "TARGET_FID":86611,
+ "feature_id":"a7f3488e-9cea-4e13-bf1a-28b1894025fe",
+ "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.42,
+ "heightmax":30.65,
+ "elevmin":16.88,
+ "elevmax":18.95,
+ "bldgarea":2174.95,
+ "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_2":86611,
+ "Shape_Le_1":0.00163841218635,
+ "Shape_Ar_1":5.775006202e-08,
+ "OBJECTID_3":86611,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86610,
+ "g_objectid":"942303",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567827",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004275614690000000",
+ "g_sup_tota":"1013.3",
+ "g_geometry":"0.00189098",
+ "g_geomet_1":"1.16723e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00163841218635,
+ "Shape_Area":5.775006202e-08,
+ "Shape_Le_3":0.00163841187888,
+ "Shape_Ar_2":5.775006202e-08,
+ "building_height":14.114999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":994,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56195133580735,
+ 45.53062437876237
+ ],
+ [
+ -73.56196457023057,
+ 45.53062934841599
+ ],
+ [
+ -73.56193287002777,
+ 45.530670748706385
+ ],
+ [
+ -73.56193296985252,
+ 45.53067084853113
+ ],
+ [
+ -73.5619743701429,
+ 45.53068814878933
+ ],
+ [
+ -73.56205127027175,
+ 45.53059934883118
+ ],
+ [
+ -73.56208111517317,
+ 45.53061212370084
+ ],
+ [
+ -73.56216545988991,
+ 45.53052521411763
+ ],
+ [
+ -73.56208543911357,
+ 45.53048684993847
+ ],
+ [
+ -73.56195133580735,
+ 45.53062437876237
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":994,
+ "ID_UEV":"01022421",
+ "CIVIQUE_DE":" 2357",
+ "CIVIQUE_FI":" 2359",
+ "NOM_RUE":"avenue De Lorimier (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\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-5309-5-000-0000",
+ "SUPERFICIE":216,
+ "SUPERFIC_1":188,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000663162638483,
+ "OBJECTID":86612,
+ "Join_Count":1,
+ "TARGET_FID":86612,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":86612,
+ "Shape_Le_1":0.000663162638483,
+ "Shape_Ar_1":1.64318361602e-08,
+ "OBJECTID_3":86612,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86611,
+ "g_objectid":"940338",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423666",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394530950000000",
+ "g_sup_tota":"216",
+ "g_geometry":"0.000763437",
+ "g_geomet_1":"2.46717e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000663162638483,
+ "Shape_Area":1.64318361602e-08,
+ "Shape_Le_3":0.00066316276414,
+ "Shape_Ar_2":1.64318361602e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":995,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54910594310664,
+ 45.530156903068914
+ ],
+ [
+ -73.54911566477796,
+ 45.5301615489666
+ ],
+ [
+ -73.54910166503166,
+ 45.53017594891121
+ ],
+ [
+ -73.54917346510517,
+ 45.530208348786566
+ ],
+ [
+ -73.54912536486555,
+ 45.530260148837094
+ ],
+ [
+ -73.54917243628076,
+ 45.530281396219756
+ ],
+ [
+ -73.54927010175564,
+ 45.53017517459492
+ ],
+ [
+ -73.5492954653353,
+ 45.53014444925722
+ ],
+ [
+ -73.54925686553376,
+ 45.530129248916
+ ],
+ [
+ -73.54925396522016,
+ 45.53012874889294
+ ],
+ [
+ -73.54924966556146,
+ 45.53013344874996
+ ],
+ [
+ -73.5491577647409,
+ 45.5300909485887
+ ],
+ [
+ -73.54916506543726,
+ 45.5300831487686
+ ],
+ [
+ -73.5491598655572,
+ 45.53008064865331
+ ],
+ [
+ -73.54915873870667,
+ 45.5300801261472
+ ],
+ [
+ -73.54911405499149,
+ 45.53012761664649
+ ],
+ [
+ -73.54912728491811,
+ 45.530133436159446
+ ],
+ [
+ -73.54910594310664,
+ 45.530156903068914
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54904682167532,
+ 45.53016878760975
+ ],
+ [
+ -73.54905146487505,
+ 45.530170948680635
+ ],
+ [
+ -73.54907276351906,
+ 45.5301479116471
+ ],
+ [
+ -73.54906789099222,
+ 45.53014579104572
+ ],
+ [
+ -73.54904682167532,
+ 45.53016878760975
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":995,
+ "ID_UEV":"01018794",
+ "CIVIQUE_DE":" 1645",
+ "CIVIQUE_FI":" 1645",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-93-6367-2-000-0000",
+ "SUPERFICIE":429,
+ "SUPERFIC_1":467,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00077022475479,
+ "OBJECTID":86613,
+ "Join_Count":1,
+ "TARGET_FID":86613,
+ "feature_id":"feed2b65-3eb4-449a-a458-0b36db58cd01",
+ "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.56,
+ "heightmax":32.88,
+ "elevmin":20.83,
+ "elevmax":21.9,
+ "bldgarea":266.13,
+ "comment":" ",
+ "OBJECTID_2":86613,
+ "Shape_Le_1":0.00077022475479,
+ "Shape_Ar_1":1.85389117687e-08,
+ "OBJECTID_3":86613,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86612,
+ "g_objectid":"940675",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424258",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004393636720000000",
+ "g_sup_tota":"429",
+ "g_geometry":"0.00111221",
+ "g_geomet_1":"4.9531e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00077022475479,
+ "Shape_Area":1.85389117687e-08,
+ "Shape_Le_3":0.000770226766834,
+ "Shape_Ar_2":1.85389117687e-08,
+ "building_height":15.160000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":996,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55074615902986,
+ 45.53171465116052
+ ],
+ [
+ -73.55074906653803,
+ 45.5317160496063
+ ],
+ [
+ -73.5507929660444,
+ 45.531671150053825
+ ],
+ [
+ -73.55085699147882,
+ 45.531701986907464
+ ],
+ [
+ -73.5509334734229,
+ 45.531612964816766
+ ],
+ [
+ -73.55086128933888,
+ 45.53158064408176
+ ],
+ [
+ -73.55074615902986,
+ 45.53171465116052
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":996,
+ "ID_UEV":"01018912",
+ "CIVIQUE_DE":" 1833",
+ "CIVIQUE_FI":" 1835",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1883,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-85-3030-5-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":132,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000510210935469,
+ "OBJECTID":86615,
+ "Join_Count":1,
+ "TARGET_FID":86615,
+ "feature_id":"4e994e8e-10a7-4607-9b1a-da44749411b7",
+ "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.53,
+ "heightmax":30.99,
+ "elevmin":18.44,
+ "elevmax":23,
+ "bldgarea":2032.43,
+ "comment":" ",
+ "OBJECTID_2":86615,
+ "Shape_Le_1":0.000510210935469,
+ "Shape_Ar_1":9.12779885172e-09,
+ "OBJECTID_3":86615,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86614,
+ "g_objectid":"941229",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425181",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004385243400000000",
+ "g_sup_tota":"164.3",
+ "g_geometry":"0.000656117",
+ "g_geomet_1":"1.89387e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000510210935469,
+ "Shape_Area":9.12779885172e-09,
+ "Shape_Le_3":0.000510211077722,
+ "Shape_Ar_2":9.12779885172e-09,
+ "building_height":14.229999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":997,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55019700510954,
+ 45.528549837954955
+ ],
+ [
+ -73.5501999566845,
+ 45.52855122650819
+ ],
+ [
+ -73.55026596602336,
+ 45.528484748622546
+ ],
+ [
+ -73.55026170953211,
+ 45.528482661296074
+ ],
+ [
+ -73.55019700510954,
+ 45.528549837954955
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55030861097546,
+ 45.52843396660457
+ ],
+ [
+ -73.55036036605989,
+ 45.52845224892244
+ ],
+ [
+ -73.55033386573716,
+ 45.52848924883006
+ ],
+ [
+ -73.55035507714693,
+ 45.52849681302779
+ ],
+ [
+ -73.55048212347306,
+ 45.528363787109384
+ ],
+ [
+ -73.55041007518666,
+ 45.5283286245167
+ ],
+ [
+ -73.55030861097546,
+ 45.52843396660457
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":997,
+ "ID_UEV":"01018452",
+ "CIVIQUE_DE":" 1613",
+ "CIVIQUE_FI":" 1615",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1888,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-81-6771-0-000-0000",
+ "SUPERFICIE":209,
+ "SUPERFIC_1":291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000728253988579,
+ "OBJECTID":86616,
+ "Join_Count":2,
+ "TARGET_FID":86616,
+ "feature_id":"0870e441-7ea0-4af5-be51-22b3d239291d",
+ "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":3.13,
+ "heightmax":25.91,
+ "elevmin":18.21,
+ "elevmax":18.85,
+ "bldgarea":145.38,
+ "comment":" ",
+ "OBJECTID_2":86616,
+ "Shape_Le_1":0.000728253988579,
+ "Shape_Ar_1":1.23070151479e-08,
+ "OBJECTID_3":86616,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86615,
+ "g_objectid":"940800",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424454",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004381746170000000",
+ "g_sup_tota":"322.1",
+ "g_geometry":"0.00079316",
+ "g_geomet_1":"3.71971e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000728253988579,
+ "Shape_Area":1.23070151479e-08,
+ "Shape_Le_3":0.000728254509572,
+ "Shape_Ar_2":1.23070151479e-08,
+ "building_height":11.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":998,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55317709127159,
+ 45.53008795924222
+ ],
+ [
+ -73.55336250179987,
+ 45.530174563955256
+ ],
+ [
+ -73.55341132149714,
+ 45.53012413716949
+ ],
+ [
+ -73.55322416178748,
+ 45.530034627646245
+ ],
+ [
+ -73.55321526749245,
+ 45.53004504899011
+ ],
+ [
+ -73.5532519670265,
+ 45.53006054880558
+ ],
+ [
+ -73.55322986708654,
+ 45.5300864492805
+ ],
+ [
+ -73.55319196695756,
+ 45.53007044854266
+ ],
+ [
+ -73.55317709127159,
+ 45.53008795924222
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":998,
+ "ID_UEV":"01018468",
+ "CIVIQUE_DE":" 2320",
+ "CIVIQUE_FI":" 2322",
+ "NOM_RUE":"avenue Lalonde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-3755-4-000-0000",
+ "SUPERFICIE":124,
+ "SUPERFIC_1":176,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000633990914042,
+ "OBJECTID":86617,
+ "Join_Count":1,
+ "TARGET_FID":86617,
+ "feature_id":"e27363a1-ca8f-4194-a825-66f1a6dad90b",
+ "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":30.57,
+ "elevmin":16.92,
+ "elevmax":19.79,
+ "bldgarea":1403.12,
+ "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_2":86617,
+ "Shape_Le_1":0.000633990914042,
+ "Shape_Ar_1":1.25788948563e-08,
+ "OBJECTID_3":86617,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86616,
+ "g_objectid":"940834",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424503",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363375540000000",
+ "g_sup_tota":"124",
+ "g_geometry":"0.000572206",
+ "g_geomet_1":"1.44897e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000633990914042,
+ "Shape_Area":1.25788948563e-08,
+ "Shape_Le_3":0.000633991923113,
+ "Shape_Ar_2":1.25788948563e-08,
+ "building_height":14.025
+ }
+ },
+ {
+ "type":"Feature",
+ "id":999,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55639964634844,
+ 45.53667827213484
+ ],
+ [
+ -73.55640266807052,
+ 45.53667905004841
+ ],
+ [
+ -73.55637906806139,
+ 45.53672404942564
+ ],
+ [
+ -73.55646084791165,
+ 45.53674518709101
+ ],
+ [
+ -73.55648126611938,
+ 45.53671677750757
+ ],
+ [
+ -73.55648050169565,
+ 45.53671650591232
+ ],
+ [
+ -73.5565474247457,
+ 45.53662468513141
+ ],
+ [
+ -73.55646046120317,
+ 45.536593657621495
+ ],
+ [
+ -73.55639964634844,
+ 45.53667827213484
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":999,
+ "ID_UEV":"01024439",
+ "CIVIQUE_DE":" 2349",
+ "CIVIQUE_FI":" 2353",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-9187-1-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000484353210443,
+ "OBJECTID":86618,
+ "Join_Count":1,
+ "TARGET_FID":86618,
+ "feature_id":"6dee0f31-2584-4450-ab8a-697225d43f2d",
+ "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":36.1,
+ "elevmin":19.38,
+ "elevmax":25.25,
+ "bldgarea":2093.72,
+ "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_2":86618,
+ "Shape_Le_1":0.000484353210443,
+ "Shape_Ar_1":1.317518151e-08,
+ "OBJECTID_3":86618,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86617,
+ "g_objectid":"943885",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361081",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430918710000000",
+ "g_sup_tota":"192.5",
+ "g_geometry":"0.000686997",
+ "g_geomet_1":"2.21915e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000484353210443,
+ "Shape_Area":1.317518151e-08,
+ "Shape_Le_3":0.000484353177504,
+ "Shape_Ar_2":1.317518151e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1000,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55618946129644,
+ 45.53666657285435
+ ],
+ [
+ -73.55628555025979,
+ 45.53668494960104
+ ],
+ [
+ -73.55629626837992,
+ 45.53667003614355
+ ],
+ [
+ -73.55629846812165,
+ 45.53666584979943
+ ],
+ [
+ -73.55629914980776,
+ 45.53666602696587
+ ],
+ [
+ -73.55637347068097,
+ 45.536562621118364
+ ],
+ [
+ -73.5562864810581,
+ 45.53653158461523
+ ],
+ [
+ -73.55618946129644,
+ 45.53666657285435
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1000,
+ "ID_UEV":"01024443",
+ "CIVIQUE_DE":" 2337",
+ "CIVIQUE_FI":" 2341",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-0580-5-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":204,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000507570877084,
+ "OBJECTID":86619,
+ "Join_Count":1,
+ "TARGET_FID":86619,
+ "feature_id":"6dee0f31-2584-4450-ab8a-697225d43f2d",
+ "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":36.1,
+ "elevmin":19.38,
+ "elevmax":25.25,
+ "bldgarea":2093.72,
+ "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_2":86619,
+ "Shape_Le_1":0.000507570877084,
+ "Shape_Ar_1":1.40603008611e-08,
+ "OBJECTID_3":86619,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86618,
+ "g_objectid":"943881",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361077",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440127770000000",
+ "g_sup_tota":"193",
+ "g_geometry":"0.00068578",
+ "g_geomet_1":"2.22291e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000507570877084,
+ "Shape_Area":1.40603008611e-08,
+ "Shape_Le_3":0.000507570016677,
+ "Shape_Ar_2":1.40603008611e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1001,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55610585312446,
+ 45.53663083379624
+ ],
+ [
+ -73.5561149677534,
+ 45.53663464961968
+ ],
+ [
+ -73.5560775685468,
+ 45.536678749674856
+ ],
+ [
+ -73.5560775685468,
+ 45.5366788494996
+ ],
+ [
+ -73.5561221677257,
+ 45.536691850099096
+ ],
+ [
+ -73.55612236827452,
+ 45.53669154972553
+ ],
+ [
+ -73.55611986815923,
+ 45.536659450223745
+ ],
+ [
+ -73.55614716797926,
+ 45.536658450177626
+ ],
+ [
+ -73.55614716797926,
+ 45.53665855000238
+ ],
+ [
+ -73.55618306801603,
+ 45.536665349776364
+ ],
+ [
+ -73.55618946129644,
+ 45.53666657285435
+ ],
+ [
+ -73.5562864810581,
+ 45.53653158461523
+ ],
+ [
+ -73.55625106845389,
+ 45.536518950039806
+ ],
+ [
+ -73.55619949233454,
+ 45.53650054901142
+ ],
+ [
+ -73.55610585312446,
+ 45.53663083379624
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1001,
+ "ID_UEV":"01024445",
+ "CIVIQUE_DE":" 2331",
+ "CIVIQUE_FI":" 2335",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-1277-7-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000636325447139,
+ "OBJECTID":86620,
+ "Join_Count":1,
+ "TARGET_FID":86620,
+ "feature_id":"6dee0f31-2584-4450-ab8a-697225d43f2d",
+ "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":36.1,
+ "elevmin":19.38,
+ "elevmax":25.25,
+ "bldgarea":2093.72,
+ "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_2":86620,
+ "Shape_Le_1":0.000636325447139,
+ "Shape_Ar_1":1.64936152207e-08,
+ "OBJECTID_3":86620,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86619,
+ "g_objectid":"943879",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361075",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440197310000000",
+ "g_sup_tota":"227.3",
+ "g_geometry":"0.00071855",
+ "g_geomet_1":"2.61745e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000636325447139,
+ "Shape_Area":1.64936152207e-08,
+ "Shape_Le_3":0.000636323437561,
+ "Shape_Ar_2":1.64936152207e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1002,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56308376932235,
+ 45.51171214604899
+ ],
+ [
+ -73.56308126920705,
+ 45.51171504546327
+ ],
+ [
+ -73.56309626899946,
+ 45.511721745412515
+ ],
+ [
+ -73.56307106909641,
+ 45.51174974580442
+ ],
+ [
+ -73.56307606932698,
+ 45.511751945546145
+ ],
+ [
+ -73.56350406927922,
+ 45.51194164584058
+ ],
+ [
+ -73.56353696917763,
+ 45.511956245434675
+ ],
+ [
+ -73.56367456904796,
+ 45.512017045900244
+ ],
+ [
+ -73.56375446931516,
+ 45.51193114625569
+ ],
+ [
+ -73.56364846892355,
+ 45.511882345444185
+ ],
+ [
+ -73.56361766894211,
+ 45.511868245873146
+ ],
+ [
+ -73.56345166938088,
+ 45.51179244561517
+ ],
+ [
+ -73.56329096952447,
+ 45.51171904564773
+ ],
+ [
+ -73.56325346869447,
+ 45.51170194593835
+ ],
+ [
+ -73.5632437695062,
+ 45.511698145403386
+ ],
+ [
+ -73.56315206923445,
+ 45.511663545786305
+ ],
+ [
+ -73.56312806902702,
+ 45.51169504544029
+ ],
+ [
+ -73.56310376934532,
+ 45.51168594609983
+ ],
+ [
+ -73.56308376932235,
+ 45.51171214604899
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5637341689186,
+ 45.51149494628504
+ ],
+ [
+ -73.56361736946788,
+ 45.511624145588144
+ ],
+ [
+ -73.5635536686887,
+ 45.5116946461413
+ ],
+ [
+ -73.56355176932054,
+ 45.51169674605828
+ ],
+ [
+ -73.56367526872052,
+ 45.51174884558305
+ ],
+ [
+ -73.56368116917247,
+ 45.51175134569834
+ ],
+ [
+ -73.56381196926881,
+ 45.511598146187794
+ ],
+ [
+ -73.56390536925923,
+ 45.5114888461836
+ ],
+ [
+ -73.56378546894608,
+ 45.51143824582868
+ ],
+ [
+ -73.5637341689186,
+ 45.51149494628504
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56406856923093,
+ 45.511465145450394
+ ],
+ [
+ -73.56401256934645,
+ 45.51153684569916
+ ],
+ [
+ -73.56401146947557,
+ 45.511537945570026
+ ],
+ [
+ -73.5641692690184,
+ 45.51160954599405
+ ],
+ [
+ -73.56417086891231,
+ 45.51161034549135
+ ],
+ [
+ -73.56424076871835,
+ 45.511541746104996
+ ],
+ [
+ -73.56427996926702,
+ 45.5115032461282
+ ],
+ [
+ -73.5643435693221,
+ 45.51144084576871
+ ],
+ [
+ -73.56434416916991,
+ 45.51144024592091
+ ],
+ [
+ -73.56433376940977,
+ 45.51143454601778
+ ],
+ [
+ -73.56436556943733,
+ 45.51140634597638
+ ],
+ [
+ -73.56436586891157,
+ 45.51140644580113
+ ],
+ [
+ -73.56444376908652,
+ 45.51131364565852
+ ],
+ [
+ -73.56428146933618,
+ 45.511246245967776
+ ],
+ [
+ -73.56427646910561,
+ 45.51124414605079
+ ],
+ [
+ -73.56422096924418,
+ 45.51131054569542
+ ],
+ [
+ -73.56420586872771,
+ 45.51130434576924
+ ],
+ [
+ -73.56420256911511,
+ 45.5113083459537
+ ],
+ [
+ -73.56418436953487,
+ 45.511331045741464
+ ],
+ [
+ -73.56419826945641,
+ 45.5113365459951
+ ],
+ [
+ -73.56417616951646,
+ 45.51136414618869
+ ],
+ [
+ -73.56415796903688,
+ 45.51135694621639
+ ],
+ [
+ -73.56415566947041,
+ 45.51136014600423
+ ],
+ [
+ -73.56412086930452,
+ 45.5114114460317
+ ],
+ [
+ -73.56409716947064,
+ 45.51144604564878
+ ],
+ [
+ -73.56408636951218,
+ 45.51144224601314
+ ],
+ [
+ -73.56406856923093,
+ 45.511465145450394
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56407496880661,
+ 45.51087434572477
+ ],
+ [
+ -73.56399846887608,
+ 45.51096054574289
+ ],
+ [
+ -73.56407406948456,
+ 45.51099414621317
+ ],
+ [
+ -73.56412196917539,
+ 45.51101534593177
+ ],
+ [
+ -73.56446236886508,
+ 45.51116584567753
+ ],
+ [
+ -73.56454206948277,
+ 45.51120114586649
+ ],
+ [
+ -73.56461926908584,
+ 45.511114846023624
+ ],
+ [
+ -73.56454766956115,
+ 45.511083245645565
+ ],
+ [
+ -73.56419106948411,
+ 45.51092544610275
+ ],
+ [
+ -73.56413386900469,
+ 45.51090014547563
+ ],
+ [
+ -73.56407496880661,
+ 45.51087424590003
+ ],
+ [
+ -73.56407496880661,
+ 45.51087434572477
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1002,
+ "ID_UEV":"01021684",
+ "CIVIQUE_DE":" 100",
+ "CIVIQUE_FI":" 186",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":12,
+ "NOMBRE_LOG":151,
+ "ANNEE_CONS":1959,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-82-1183-7-000-0000",
+ "SUPERFICIE":10033,
+ "SUPERFIC_1":10680,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00520094469663,
+ "OBJECTID":86621,
+ "Join_Count":4,
+ "TARGET_FID":86621,
+ "feature_id":"2c40cf85-b6d6-4ff3-9f49-4a8e26cb37b5",
+ "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":10.17,
+ "elevmin":25.16,
+ "elevmax":25.64,
+ "bldgarea":386.7,
+ "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_2":86621,
+ "Shape_Le_1":0.00520094469663,
+ "Shape_Ar_1":2.56568389978e-07,
+ "OBJECTID_3":86621,
+ "Join_Cou_1":1,
+ "TARGET_F_1":86620,
+ "g_objectid":"943189",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161463",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"151",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994182118370000000",
+ "g_sup_tota":"10033.1",
+ "g_geometry":"0.00473698",
+ "g_geomet_1":"1.15547e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00520094469663,
+ "Shape_Area":2.56568389978e-07,
+ "Shape_Le_3":0.0052009414187,
+ "Shape_Ar_2":2.56568389978e-07,
+ "building_height":4.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1003,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55214860139868,
+ 45.52218451745181
+ ],
+ [
+ -73.55214566601153,
+ 45.5221877478166
+ ],
+ [
+ -73.55220726597439,
+ 45.522225347572025
+ ],
+ [
+ -73.55217446590072,
+ 45.52225184789476
+ ],
+ [
+ -73.55217216633426,
+ 45.52225414746123
+ ],
+ [
+ -73.55224996578514,
+ 45.522291547567164
+ ],
+ [
+ -73.5521644663389,
+ 45.522379347479195
+ ],
+ [
+ -73.55216433054126,
+ 45.52237948867276
+ ],
+ [
+ -73.55230508523334,
+ 45.52244494852585
+ ],
+ [
+ -73.55232268586511,
+ 45.52244377940719
+ ],
+ [
+ -73.55233766587243,
+ 45.522428047566635
+ ],
+ [
+ -73.55236196645343,
+ 45.52243954809696
+ ],
+ [
+ -73.55241996643015,
+ 45.52237944820327
+ ],
+ [
+ -73.5524200662549,
+ 45.522379347479195
+ ],
+ [
+ -73.55239056579381,
+ 45.52236614812953
+ ],
+ [
+ -73.55243006581672,
+ 45.522322347548595
+ ],
+ [
+ -73.55246102677681,
+ 45.52233610807522
+ ],
+ [
+ -73.55246639303145,
+ 45.5223302777704
+ ],
+ [
+ -73.55214860139868,
+ 45.52218451745181
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1003,
+ "ID_UEV":"01022422",
+ "CIVIQUE_DE":" 1698",
+ "CIVIQUE_FI":" 1700",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1904,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Service bancaire (d\u00c3\u00a9p\u00c3\u00b4ts et pr\u00c3\u00aats, incluant banque \u00c3\u00a0 charte)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-74-1989-0-000-0000",
+ "SUPERFICIE":564,
+ "SUPERFIC_1":462,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00111889544005,
+ "OBJECTID":86622,
+ "Join_Count":1,
+ "TARGET_FID":86622,
+ "feature_id":"5d9266e3-69ab-4ab4-9446-6746c4c66d49",
+ "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.48,
+ "heightmax":29.12,
+ "elevmin":17.13,
+ "elevmax":19.04,
+ "bldgarea":1664.97,
+ "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_2":86622,
+ "Shape_Le_1":0.00111889544005,
+ "Shape_Ar_1":3.57514144879e-08,
+ "OBJECTID_3":86622,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86621,
+ "g_objectid":"942286",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567778",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004274107660000000",
+ "g_sup_tota":"498.2",
+ "g_geometry":"0.00108272",
+ "g_geomet_1":"5.72749e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00111889544005,
+ "Shape_Area":3.57514144879e-08,
+ "Shape_Le_3":0.00111889577164,
+ "Shape_Ar_2":3.57514144879e-08,
+ "building_height":13.32
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1004,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54667610893712,
+ 45.529457772808264
+ ],
+ [
+ -73.54664847546861,
+ 45.529487445939175
+ ],
+ [
+ -73.5466149640312,
+ 45.529526649185804
+ ],
+ [
+ -73.54661156369455,
+ 45.529530648470946
+ ],
+ [
+ -73.54658507955962,
+ 45.52956187922764
+ ],
+ [
+ -73.54665263123579,
+ 45.52959057299684
+ ],
+ [
+ -73.54669922690964,
+ 45.52953902565581
+ ],
+ [
+ -73.54674582078485,
+ 45.52948748191206
+ ],
+ [
+ -73.54667610893712,
+ 45.529457772808264
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1004,
+ "ID_UEV":"01018831",
+ "CIVIQUE_DE":" 1418",
+ "CIVIQUE_FI":" 1426",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-12-5590-8-000-0000",
+ "SUPERFICIE":89,
+ "SUPERFIC_1":175,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000426460003854,
+ "OBJECTID":86626,
+ "Join_Count":1,
+ "TARGET_FID":86626,
+ "feature_id":"8c3e505e-c027-4ce3-8c01-76b54c998acb",
+ "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.1,
+ "heightmax":12.52,
+ "elevmin":19.64,
+ "elevmax":20.09,
+ "bldgarea":681.9,
+ "comment":" ",
+ "OBJECTID_2":86626,
+ "Shape_Le_1":0.000426460003854,
+ "Shape_Ar_1":9.89239651467e-09,
+ "OBJECTID_3":86626,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86625,
+ "g_objectid":"940720",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424321",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014313460040000000",
+ "g_sup_tota":"124.1",
+ "g_geometry":"0.000577769",
+ "g_geomet_1":"1.44145e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000426460003854,
+ "Shape_Area":9.89239651467e-09,
+ "Shape_Le_3":0.000426459172921,
+ "Shape_Ar_2":9.89239651467e-09,
+ "building_height":5.71
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1005,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55778441973703,
+ 45.53079630755384
+ ],
+ [
+ -73.55778879493879,
+ 45.53079830584743
+ ],
+ [
+ -73.55780396830035,
+ 45.530782449001116
+ ],
+ [
+ -73.55798186769088,
+ 45.530866648927
+ ],
+ [
+ -73.55798726811977,
+ 45.530869248867035
+ ],
+ [
+ -73.55801886849783,
+ 45.53088424865944
+ ],
+ [
+ -73.55817796846033,
+ 45.530718649296524
+ ],
+ [
+ -73.55819956837722,
+ 45.530728949231914
+ ],
+ [
+ -73.5582028679898,
+ 45.53072534924576
+ ],
+ [
+ -73.55830166840911,
+ 45.53061794860974
+ ],
+ [
+ -73.55830176823386,
+ 45.53061774896024
+ ],
+ [
+ -73.55828126818783,
+ 45.53060824852215
+ ],
+ [
+ -73.55830886838142,
+ 45.53057904843463
+ ],
+ [
+ -73.55808940502386,
+ 45.53047659406985
+ ],
+ [
+ -73.55797934509255,
+ 45.53059196989379
+ ],
+ [
+ -73.5579857680506,
+ 45.53059514899722
+ ],
+ [
+ -73.55793346797701,
+ 45.53064714869725
+ ],
+ [
+ -73.55792887424,
+ 45.53064487790908
+ ],
+ [
+ -73.55784840020534,
+ 45.530729237914294
+ ],
+ [
+ -73.55778441973703,
+ 45.53079630755384
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1005,
+ "ID_UEV":"01022745",
+ "CIVIQUE_DE":" 2163",
+ "CIVIQUE_FI":" 2165",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-24-6222-4-000-0000",
+ "SUPERFICIE":1210,
+ "SUPERFIC_1":1645,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00142891067603,
+ "OBJECTID":86627,
+ "Join_Count":1,
+ "TARGET_FID":86627,
+ "feature_id":"41914660-df28-4f37-b84b-2afe94ccfbf3",
+ "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.48,
+ "heightmax":35.15,
+ "elevmin":20.33,
+ "elevmax":24.23,
+ "bldgarea":1121.6,
+ "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_2":86627,
+ "Shape_Le_1":0.00142891067603,
+ "Shape_Ar_1":9.99688661805e-08,
+ "OBJECTID_3":86627,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86626,
+ "g_objectid":"940442",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423897",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004324622240000000",
+ "g_sup_tota":"1210",
+ "g_geometry":"0.00155931",
+ "g_geomet_1":"1.401e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00142891067603,
+ "Shape_Area":9.99688661805e-08,
+ "Shape_Le_3":0.0014289105631,
+ "Shape_Ar_2":9.99688661805e-08,
+ "building_height":16.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1006,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55719698347585,
+ 45.53086862024092
+ ],
+ [
+ -73.55719824252671,
+ 45.530869196706355
+ ],
+ [
+ -73.55723839815539,
+ 45.53082464249355
+ ],
+ [
+ -73.55719698347585,
+ 45.53086862024092
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55738106570546,
+ 45.53067315169489
+ ],
+ [
+ -73.55738436801602,
+ 45.530674748890846
+ ],
+ [
+ -73.55735816806684,
+ 45.530701548687816
+ ],
+ [
+ -73.5574391682049,
+ 45.530740749236486
+ ],
+ [
+ -73.55743936785439,
+ 45.53074044886292
+ ],
+ [
+ -73.5574619678174,
+ 45.53071334869238
+ ],
+ [
+ -73.55749436769275,
+ 45.53072664876612
+ ],
+ [
+ -73.55749446841683,
+ 45.53072644911663
+ ],
+ [
+ -73.55784586771446,
+ 45.53036064897506
+ ],
+ [
+ -73.55659366788531,
+ 45.52976664856228
+ ],
+ [
+ -73.55659046809747,
+ 45.52977004889893
+ ],
+ [
+ -73.55653486841129,
+ 45.529827148654284
+ ],
+ [
+ -73.5562977684491,
+ 45.53007064909148
+ ],
+ [
+ -73.55630256813086,
+ 45.5300730484827
+ ],
+ [
+ -73.55646536790425,
+ 45.5301531492987
+ ],
+ [
+ -73.5564864677981,
+ 45.53013204850553
+ ],
+ [
+ -73.55653206792245,
+ 45.53008624873169
+ ],
+ [
+ -73.55660146770542,
+ 45.53012044904978
+ ],
+ [
+ -73.55662346782063,
+ 45.530098249285075
+ ],
+ [
+ -73.55680496809664,
+ 45.530187448542215
+ ],
+ [
+ -73.55677066795381,
+ 45.530222049058615
+ ],
+ [
+ -73.55680726856244,
+ 45.53023994916462
+ ],
+ [
+ -73.55672226823994,
+ 45.530344248938235
+ ],
+ [
+ -73.55716487228287,
+ 45.53056742469719
+ ],
+ [
+ -73.55717639529625,
+ 45.530572799045736
+ ],
+ [
+ -73.55724600102397,
+ 45.530604717783795
+ ],
+ [
+ -73.55731891355886,
+ 45.53063815277882
+ ],
+ [
+ -73.55738534018315,
+ 45.53066861371585
+ ],
+ [
+ -73.55738106570546,
+ 45.53067315169489
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55610687745228,
+ 45.53008235466723
+ ],
+ [
+ -73.55612060830127,
+ 45.53008864992155
+ ],
+ [
+ -73.55647156783044,
+ 45.52973384848861
+ ],
+ [
+ -73.55639726854096,
+ 45.529697549152864
+ ],
+ [
+ -73.55639196793682,
+ 45.52969504903758
+ ],
+ [
+ -73.55626786778971,
+ 45.529823948866444
+ ],
+ [
+ -73.55614336834361,
+ 45.529764749194115
+ ],
+ [
+ -73.55613856776253,
+ 45.529762348903574
+ ],
+ [
+ -73.55591563212256,
+ 45.5299921032033
+ ],
+ [
+ -73.55593437938994,
+ 45.53000094983426
+ ],
+ [
+ -73.55610687745228,
+ 45.53008235466723
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1006,
+ "ID_UEV":"01022747",
+ "CIVIQUE_DE":" 2017",
+ "CIVIQUE_FI":" 2121",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Industrie d'accessoires vestimentaires et d'autres v\u00c3\u00aatements",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-33-5865-2-000-0000",
+ "SUPERFICIE":8202,
+ "SUPERFIC_1":16092,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00565834136178,
+ "OBJECTID":86628,
+ "Join_Count":3,
+ "TARGET_FID":86628,
+ "feature_id":"d224d7a5-5365-4cec-a070-9647994a33cd",
+ "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.42,
+ "heightmax":42.56,
+ "elevmin":19.74,
+ "elevmax":22.87,
+ "bldgarea":5204.28,
+ "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_2":86628,
+ "Shape_Le_1":0.00565834136178,
+ "Shape_Ar_1":6.75819671709e-07,
+ "OBJECTID_3":86628,
+ "Join_Cou_1":9,
+ "TARGET_F_1":86627,
+ "g_objectid":"943482",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2181361",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004334272750000000",
+ "g_sup_tota":"164.9",
+ "g_geometry":"0.000695411",
+ "g_geomet_1":"1.90006e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00565834136178,
+ "Shape_Area":6.75819671709e-07,
+ "Shape_Le_3":0.00565834242132,
+ "Shape_Ar_2":6.75819671709e-07,
+ "building_height":20.07
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1007,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56118368080408,
+ 45.53226578988459
+ ],
+ [
+ -73.56110926999865,
+ 45.532230748700385
+ ],
+ [
+ -73.56110127052905,
+ 45.53223914926762
+ ],
+ [
+ -73.5609953699622,
+ 45.532350948487775
+ ],
+ [
+ -73.56100047001752,
+ 45.53235324895357
+ ],
+ [
+ -73.56107081318932,
+ 45.53238649958758
+ ],
+ [
+ -73.56118368080408,
+ 45.53226578988459
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1007,
+ "ID_UEV":"01022748",
+ "CIVIQUE_DE":" 2300",
+ "CIVIQUE_FI":" 2304",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1970,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-05-2798-6-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":341,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000496500731289,
+ "OBJECTID":86629,
+ "Join_Count":1,
+ "TARGET_FID":86629,
+ "feature_id":"243fd313-8d28-4ecd-be35-5fe3323f92ca",
+ "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":47.61,
+ "elevmin":33.17,
+ "elevmax":37.36,
+ "bldgarea":498.11,
+ "comment":" ",
+ "OBJECTID_2":86629,
+ "Shape_Le_1":0.000496500731289,
+ "Shape_Ar_1":1.30258578502e-08,
+ "OBJECTID_3":86629,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86628,
+ "g_objectid":"940424",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423874",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004305279860000000",
+ "g_sup_tota":"198.1",
+ "g_geometry":"0.000702448",
+ "g_geomet_1":"2.2862e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000496500731289,
+ "Shape_Area":1.30258578502e-08,
+ "Shape_Le_3":0.000496500263194,
+ "Shape_Ar_2":1.30258578502e-08,
+ "building_height":22.544999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1008,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55845510354204,
+ 45.538543452568575
+ ],
+ [
+ -73.55846356886046,
+ 45.53854645090828
+ ],
+ [
+ -73.55854222626458,
+ 45.53857430740865
+ ],
+ [
+ -73.55862074697174,
+ 45.538464767285475
+ ],
+ [
+ -73.55852621473487,
+ 45.53844424655503
+ ],
+ [
+ -73.55845510354204,
+ 45.538543452568575
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1008,
+ "ID_UEV":"01024891",
+ "CIVIQUE_DE":" 2596",
+ "CIVIQUE_FI":" 2598",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-2685-8-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000445996057201,
+ "OBJECTID":86630,
+ "Join_Count":1,
+ "TARGET_FID":86630,
+ "feature_id":"854ff233-c513-43a8-ab8b-43c22e6fac50",
+ "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":48.02,
+ "elevmin":26.87,
+ "elevmax":42.24,
+ "bldgarea":1868.16,
+ "comment":" ",
+ "OBJECTID_2":86630,
+ "Shape_Le_1":0.000445996057201,
+ "Shape_Ar_1":1.14018210816e-08,
+ "OBJECTID_3":86630,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86629,
+ "g_objectid":"944098",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361348",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422198870000000",
+ "g_sup_tota":"183.9",
+ "g_geometry":"0.000666002",
+ "g_geomet_1":"2.12288e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000445996057201,
+ "Shape_Area":1.14018210816e-08,
+ "Shape_Le_3":0.000445994786112,
+ "Shape_Ar_2":1.14018210816e-08,
+ "building_height":23.755000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1009,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55854222626458,
+ 45.53857430740865
+ ],
+ [
+ -73.55854996942739,
+ 45.53857705124022
+ ],
+ [
+ -73.55858326952412,
+ 45.53853535057626
+ ],
+ [
+ -73.5586320694363,
+ 45.538554551101946
+ ],
+ [
+ -73.55865743121733,
+ 45.53856446253022
+ ],
+ [
+ -73.55872959821423,
+ 45.5384637852258
+ ],
+ [
+ -73.5586429692195,
+ 45.53844664954354
+ ],
+ [
+ -73.55864276957,
+ 45.53844664954354
+ ],
+ [
+ -73.55863356950547,
+ 45.53846754978789
+ ],
+ [
+ -73.55862074697174,
+ 45.538464767285475
+ ],
+ [
+ -73.55854222626458,
+ 45.53857430740865
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1009,
+ "ID_UEV":"01024893",
+ "CIVIQUE_DE":" 2600",
+ "CIVIQUE_FI":" 2602",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-1988-7-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":161,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000524361831865,
+ "OBJECTID":86631,
+ "Join_Count":1,
+ "TARGET_FID":86631,
+ "feature_id":"854ff233-c513-43a8-ab8b-43c22e6fac50",
+ "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":48.02,
+ "elevmin":26.87,
+ "elevmax":42.24,
+ "bldgarea":1868.16,
+ "comment":" ",
+ "OBJECTID_2":86631,
+ "Shape_Le_1":0.000524361831865,
+ "Shape_Ar_1":1.03642165789e-08,
+ "OBJECTID_3":86631,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86630,
+ "g_objectid":"944099",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361349",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422139220000000",
+ "g_sup_tota":"187.7",
+ "g_geometry":"0.0006697",
+ "g_geomet_1":"2.16578e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000524361831865,
+ "Shape_Area":1.03642165789e-08,
+ "Shape_Le_3":0.000524361532878,
+ "Shape_Ar_2":1.03642165789e-08,
+ "building_height":23.755000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1010,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55191187015852,
+ 45.5352616735377
+ ],
+ [
+ -73.55184726735935,
+ 45.53523584950515
+ ],
+ [
+ -73.55184436704575,
+ 45.535239550215366
+ ],
+ [
+ -73.5517909671013,
+ 45.53530924947258
+ ],
+ [
+ -73.55179086727655,
+ 45.53530935019665
+ ],
+ [
+ -73.55182076703662,
+ 45.53531874991067
+ ],
+ [
+ -73.55179916711971,
+ 45.5353528495047
+ ],
+ [
+ -73.55175516688928,
+ 45.53533915013197
+ ],
+ [
+ -73.55175506706453,
+ 45.535339249956714
+ ],
+ [
+ -73.55169151287487,
+ 45.53542773425283
+ ],
+ [
+ -73.55177224951154,
+ 45.53545633808982
+ ],
+ [
+ -73.55191187015852,
+ 45.5352616735377
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1010,
+ "ID_UEV":"01024493",
+ "CIVIQUE_DE":" 2022",
+ "CIVIQUE_FI":" 2024",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-5437-3-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":165,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000714307665219,
+ "OBJECTID":86644,
+ "Join_Count":1,
+ "TARGET_FID":86644,
+ "feature_id":"eb231f79-3f89-4e44-bfc9-97de87e22a5f",
+ "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,
+ "heightmax":31.55,
+ "elevmin":18.92,
+ "elevmax":21.51,
+ "bldgarea":1919.77,
+ "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_2":86644,
+ "Shape_Le_1":0.000714307665219,
+ "Shape_Ar_1":1.68754481678e-08,
+ "OBJECTID_3":86644,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86643,
+ "g_objectid":"943637",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360795",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379474190000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000682144",
+ "g_geomet_1":"2.2074e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000714307665219,
+ "Shape_Area":1.68754481678e-08,
+ "Shape_Le_3":0.00071430823273,
+ "Shape_Ar_2":1.68754481678e-08,
+ "building_height":15.775
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1011,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55761521139473,
+ 45.53106572915038
+ ],
+ [
+ -73.5577581478421,
+ 45.531130872442105
+ ],
+ [
+ -73.55788543608585,
+ 45.53099390479517
+ ],
+ [
+ -73.55788696853062,
+ 45.53099174912022
+ ],
+ [
+ -73.55777300284365,
+ 45.53095594710957
+ ],
+ [
+ -73.5577122113713,
+ 45.530966292011065
+ ],
+ [
+ -73.5577089891004,
+ 45.53096482341816
+ ],
+ [
+ -73.55761521139473,
+ 45.53106572915038
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1011,
+ "ID_UEV":"01023010",
+ "CIVIQUE_DE":" 2160",
+ "CIVIQUE_FI":" 2160",
+ "NOM_RUE":"rue Harmony (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":21,
+ "ANNEE_CONS":1964,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-24-8757-7-000-0000",
+ "SUPERFICIE":277,
+ "SUPERFIC_1":666,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000669126078408,
+ "OBJECTID":86647,
+ "Join_Count":1,
+ "TARGET_FID":86647,
+ "feature_id":"e26f6bd0-fb79-4bf4-847a-c4e6cbaa31c3",
+ "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.19,
+ "heightmax":32.68,
+ "elevmin":19.85,
+ "elevmax":24.02,
+ "bldgarea":1386.86,
+ "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_2":86647,
+ "Shape_Le_1":0.000669126078408,
+ "Shape_Ar_1":2.60036405699e-08,
+ "OBJECTID_3":86647,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86646,
+ "g_objectid":"940466",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423937",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"23",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004324914390000000",
+ "g_sup_tota":"257",
+ "g_geometry":"0.00075511",
+ "g_geomet_1":"2.95403e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000669126078408,
+ "Shape_Area":2.60036405699e-08,
+ "Shape_Le_3":0.000669126132156,
+ "Shape_Ar_2":2.60036405699e-08,
+ "building_height":15.245
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1012,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55864823654872,
+ 45.53241178942284
+ ],
+ [
+ -73.55851736900323,
+ 45.5323523487322
+ ],
+ [
+ -73.55822551381826,
+ 45.532669483859884
+ ],
+ [
+ -73.55846370555741,
+ 45.53277896103052
+ ],
+ [
+ -73.55848136914172,
+ 45.53275974971297
+ ],
+ [
+ -73.55847646873589,
+ 45.532757649796
+ ],
+ [
+ -73.5586623091401,
+ 45.53254782717078
+ ],
+ [
+ -73.55855974955465,
+ 45.53250681628684
+ ],
+ [
+ -73.55864823654872,
+ 45.53241178942284
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1012,
+ "ID_UEV":"01023108",
+ "CIVIQUE_DE":" 2250",
+ "CIVIQUE_FI":" 2250",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1908,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Fondations et organismes de charit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-26-2629-9-000-0000",
+ "SUPERFICIE":1849,
+ "SUPERFIC_1":1627,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00138889027003,
+ "OBJECTID":86650,
+ "Join_Count":1,
+ "TARGET_FID":86650,
+ "feature_id":"0fe94814-38a6-48d7-bd59-3ba734bf46cb",
+ "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.5,
+ "heightmax":47.06,
+ "elevmin":23.96,
+ "elevmax":27.9,
+ "bldgarea":1373.98,
+ "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_2":86650,
+ "Shape_Le_1":0.00138889027003,
+ "Shape_Ar_1":9.11268970483e-08,
+ "OBJECTID_3":86650,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86649,
+ "g_objectid":"938457",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1424069",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6920",
+ "g_nb_logem":" ",
+ "g_nb_locau":"11",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004326262990000000",
+ "g_sup_tota":"1849.3",
+ "g_geometry":"0.00268306",
+ "g_geomet_1":"2.12977e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00138889027003,
+ "Shape_Area":9.11268970483e-08,
+ "Shape_Le_3":0.0013888920813,
+ "Shape_Ar_2":9.11268970483e-08,
+ "building_height":22.28
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1013,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55989518793442,
+ 45.53385167146776
+ ],
+ [
+ -73.5599086687719,
+ 45.53385804945971
+ ],
+ [
+ -73.55982261444395,
+ 45.53394786385313
+ ],
+ [
+ -73.55989748840021,
+ 45.53398226561936
+ ],
+ [
+ -73.56007495791482,
+ 45.53378689779739
+ ],
+ [
+ -73.55999192800692,
+ 45.53374770354398
+ ],
+ [
+ -73.55989518793442,
+ 45.53385167146776
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1013,
+ "ID_UEV":"01023167",
+ "CIVIQUE_DE":" 2435",
+ "CIVIQUE_FI":" 2439",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-1671-1-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":541,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000719469013493,
+ "OBJECTID":86653,
+ "Join_Count":1,
+ "TARGET_FID":86653,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":86653,
+ "Shape_Le_1":0.000719469013493,
+ "Shape_Ar_1":2.19946417038e-08,
+ "OBJECTID_3":86653,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86652,
+ "g_objectid":"941320",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425326",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317226850000000",
+ "g_sup_tota":"156.1",
+ "g_geometry":"0.000749232",
+ "g_geomet_1":"1.81065e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000719469013493,
+ "Shape_Area":2.19946417038e-08,
+ "Shape_Le_3":0.000719468105239,
+ "Shape_Ar_2":2.19946417038e-08,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1014,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5593527033864,
+ 45.53775299705347
+ ],
+ [
+ -73.55943327005122,
+ 45.53779402052792
+ ],
+ [
+ -73.5595236743999,
+ 45.537670371840484
+ ],
+ [
+ -73.55944126952082,
+ 45.537640150123124
+ ],
+ [
+ -73.55943649322143,
+ 45.53763839464649
+ ],
+ [
+ -73.5593527033864,
+ 45.53775299705347
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1014,
+ "ID_UEV":"01024387",
+ "CIVIQUE_DE":" 2627",
+ "CIVIQUE_FI":" 2631",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-12-6004-9-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":186,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000478409741019,
+ "OBJECTID":86662,
+ "Join_Count":1,
+ "TARGET_FID":86662,
+ "feature_id":"5c2ec2e3-b86c-47c1-85e6-b534f284be7c",
+ "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":55.03,
+ "elevmin":37.8,
+ "elevmax":42.52,
+ "bldgarea":1106.09,
+ "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_2":86662,
+ "Shape_Le_1":0.000478409741019,
+ "Shape_Ar_1":1.31704759788e-08,
+ "OBJECTID_3":86662,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86661,
+ "g_objectid":"944159",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361421",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"27",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004412461130000000",
+ "g_sup_tota":"574.7",
+ "g_geometry":"0.00105517",
+ "g_geomet_1":"6.65469e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000478409741019,
+ "Shape_Area":1.31704759788e-08,
+ "Shape_Le_3":0.000478409623114,
+ "Shape_Ar_2":1.31704759788e-08,
+ "building_height":27.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1015,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55915705947257,
+ 45.53756452703159
+ ],
+ [
+ -73.55913086941594,
+ 45.537552549860585
+ ],
+ [
+ -73.55914496898697,
+ 45.53753814991598
+ ],
+ [
+ -73.5591216693514,
+ 45.53752644973616
+ ],
+ [
+ -73.55909926903789,
+ 45.53754844985137
+ ],
+ [
+ -73.55899066870624,
+ 45.53765534956503
+ ],
+ [
+ -73.55899186930117,
+ 45.537655849588084
+ ],
+ [
+ -73.55906930452663,
+ 45.537684553249825
+ ],
+ [
+ -73.55915705947257,
+ 45.53756452703159
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1015,
+ "ID_UEV":"01024396",
+ "CIVIQUE_DE":" 2595",
+ "CIVIQUE_FI":" 2595",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1959,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-8790-3-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":316,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000491376389028,
+ "OBJECTID":86663,
+ "Join_Count":1,
+ "TARGET_FID":86663,
+ "feature_id":"5c2ec2e3-b86c-47c1-85e6-b534f284be7c",
+ "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":55.03,
+ "elevmin":37.8,
+ "elevmax":42.52,
+ "bldgarea":1106.09,
+ "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_2":86663,
+ "Shape_Le_1":0.000491376389028,
+ "Shape_Ar_1":1.07437825407e-08,
+ "OBJECTID_3":86663,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86662,
+ "g_objectid":"944155",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361416",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411879030000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.00068381",
+ "g_geomet_1":"2.20903e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000491376389028,
+ "Shape_Area":1.07437825407e-08,
+ "Shape_Le_3":0.000491377410282,
+ "Shape_Ar_2":1.07437825407e-08,
+ "building_height":27.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1016,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5506870636789,
+ 45.53313588756146
+ ],
+ [
+ -73.55069166640912,
+ 45.5330204496843
+ ],
+ [
+ -73.55069186605861,
+ 45.533015949476784
+ ],
+ [
+ -73.5503751662028,
+ 45.53301064977197
+ ],
+ [
+ -73.55037606642418,
+ 45.53298364942618
+ ],
+ [
+ -73.55041156626262,
+ 45.5329842501733
+ ],
+ [
+ -73.55041196646093,
+ 45.53296354957845
+ ],
+ [
+ -73.55041176591212,
+ 45.53295965011805
+ ],
+ [
+ -73.5503673663827,
+ 45.53296115018723
+ ],
+ [
+ -73.55036386622129,
+ 45.532906850021405
+ ],
+ [
+ -73.55036376639654,
+ 45.53290304948644
+ ],
+ [
+ -73.55018126607442,
+ 45.532904849929174
+ ],
+ [
+ -73.55018096570085,
+ 45.53289204987849
+ ],
+ [
+ -73.55017506614823,
+ 45.53289204987849
+ ],
+ [
+ -73.54987886633846,
+ 45.53288814951878
+ ],
+ [
+ -73.54987876651371,
+ 45.532893549947666
+ ],
+ [
+ -73.5498614662555,
+ 45.53347945016679
+ ],
+ [
+ -73.54969016609014,
+ 45.5334769500515
+ ],
+ [
+ -73.54951226580027,
+ 45.53347435011146
+ ],
+ [
+ -73.54942926646932,
+ 45.53347314951653
+ ],
+ [
+ -73.5494284660727,
+ 45.53347314951653
+ ],
+ [
+ -73.54942676635403,
+ 45.53348374982549
+ ],
+ [
+ -73.54921036608737,
+ 45.53346655029136
+ ],
+ [
+ -73.5492086663687,
+ 45.533466449567285
+ ],
+ [
+ -73.54920926621651,
+ 45.53347364953959
+ ],
+ [
+ -73.54915696614292,
+ 45.53347574945657
+ ],
+ [
+ -73.54910526591713,
+ 45.5334777495488
+ ],
+ [
+ -73.54901286597283,
+ 45.53348155008376
+ ],
+ [
+ -73.54901276614808,
+ 45.53353414963159
+ ],
+ [
+ -73.54901256649859,
+ 45.533669749409704
+ ],
+ [
+ -73.54901256649859,
+ 45.53366985013377
+ ],
+ [
+ -73.54907466648451,
+ 45.533670950004634
+ ],
+ [
+ -73.54952046581869,
+ 45.53367834962643
+ ],
+ [
+ -73.54968146604867,
+ 45.53368105029053
+ ],
+ [
+ -73.54968176642222,
+ 45.53367304992161
+ ],
+ [
+ -73.54975226607607,
+ 45.53367364976942
+ ],
+ [
+ -73.54975356649574,
+ 45.53359984960367
+ ],
+ [
+ -73.55017036629121,
+ 45.53360354941457
+ ],
+ [
+ -73.55038246599985,
+ 45.53360544968205
+ ],
+ [
+ -73.55037966641032,
+ 45.53376625026254
+ ],
+ [
+ -73.55037706647029,
+ 45.53390574950103
+ ],
+ [
+ -73.55028376630462,
+ 45.53390495000374
+ ],
+ [
+ -73.55027786585268,
+ 45.53390495000374
+ ],
+ [
+ -73.55027686850453,
+ 45.53418569856144
+ ],
+ [
+ -73.55027814104521,
+ 45.5341861500211
+ ],
+ [
+ -73.55028266643376,
+ 45.5341861500211
+ ],
+ [
+ -73.55038166650255,
+ 45.53418705024247
+ ],
+ [
+ -73.55038136612899,
+ 45.534202349509115
+ ],
+ [
+ -73.55038786642874,
+ 45.53420245023319
+ ],
+ [
+ -73.5506478658282,
+ 45.53420484962441
+ ],
+ [
+ -73.5506470663309,
+ 45.53424615009005
+ ],
+ [
+ -73.55071236610466,
+ 45.53424674993786
+ ],
+ [
+ -73.55071236610466,
+ 45.53424284957814
+ ],
+ [
+ -73.55071386617384,
+ 45.53420684971664
+ ],
+ [
+ -73.55071386617384,
+ 45.53420634969358
+ ],
+ [
+ -73.5506939659756,
+ 45.534206550242395
+ ],
+ [
+ -73.55069366650136,
+ 45.53419104952761
+ ],
+ [
+ -73.5507217541275,
+ 45.534190798616756
+ ],
+ [
+ -73.55072745582927,
+ 45.53359569563514
+ ],
+ [
+ -73.5506585371836,
+ 45.53359566505819
+ ],
+ [
+ -73.5506676221349,
+ 45.53316342300386
+ ],
+ [
+ -73.5506870636789,
+ 45.53313588756146
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54936516639115,
+ 45.53315675003428
+ ],
+ [
+ -73.54941276570841,
+ 45.533158250103455
+ ],
+ [
+ -73.54941516599895,
+ 45.53312144984533
+ ],
+ [
+ -73.54936756578238,
+ 45.53311994977616
+ ],
+ [
+ -73.54936516639115,
+ 45.53315675003428
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1016,
+ "ID_UEV":"01019079",
+ "CIVIQUE_DE":" 1800",
+ "CIVIQUE_FI":" 1850",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":15,
+ "NOMBRE_LOG":782,
+ "ANNEE_CONS":1972,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-87-9829-0-000-0000",
+ "SUPERFICIE":16962,
+ "SUPERFIC_1":61839,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00679705993256,
+ "OBJECTID":86665,
+ "Join_Count":2,
+ "TARGET_FID":86665,
+ "feature_id":"049887c1-3602-4038-8b1c-94e874abd47d",
+ "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":77.38,
+ "elevmin":20.89,
+ "elevmax":25.85,
+ "bldgarea":11755.37,
+ "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_2":86665,
+ "Shape_Le_1":0.00679705993256,
+ "Shape_Ar_1":9.3338621517e-07,
+ "OBJECTID_3":86665,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86664,
+ "g_objectid":"938256",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1424774",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5002",
+ "g_nb_logem":" ",
+ "g_nb_locau":"12",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004387055760000000",
+ "g_sup_tota":"8888.2",
+ "g_geometry":"0.00484705",
+ "g_geomet_1":"1.02452e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00679705993256,
+ "Shape_Area":9.3338621517e-07,
+ "Shape_Le_3":0.00679706075724,
+ "Shape_Ar_2":9.3338621517e-07,
+ "building_height":38.44
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1017,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55255648081878,
+ 45.521878013210035
+ ],
+ [
+ -73.55278542123204,
+ 45.52198366286604
+ ],
+ [
+ -73.55289188477451,
+ 45.52186799116515
+ ],
+ [
+ -73.552667266503,
+ 45.52176544776749
+ ],
+ [
+ -73.55262036595897,
+ 45.521744047500086
+ ],
+ [
+ -73.55261596647551,
+ 45.521742047407855
+ ],
+ [
+ -73.55254996612987,
+ 45.52181384748137
+ ],
+ [
+ -73.55259616610203,
+ 45.52183484755047
+ ],
+ [
+ -73.55255648081878,
+ 45.521878013210035
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1017,
+ "ID_UEV":"01022428",
+ "CIVIQUE_DE":" 1650",
+ "CIVIQUE_FI":" 1656",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-64-8138-8-000-0000",
+ "SUPERFICIE":407,
+ "SUPERFIC_1":4620,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000919563689838,
+ "OBJECTID":86666,
+ "Join_Count":1,
+ "TARGET_FID":86666,
+ "feature_id":"5d9266e3-69ab-4ab4-9446-6746c4c66d49",
+ "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.48,
+ "heightmax":29.12,
+ "elevmin":17.13,
+ "elevmax":19.04,
+ "bldgarea":1664.97,
+ "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_2":86666,
+ "Shape_Le_1":0.000919563689838,
+ "Shape_Ar_1":4.23083528845e-08,
+ "OBJECTID_3":86666,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86665,
+ "g_objectid":"942285",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567777",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004264905200000000",
+ "g_sup_tota":"419.3",
+ "g_geometry":"0.000943088",
+ "g_geomet_1":"4.74875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000919563689838,
+ "Shape_Area":4.23083528845e-08,
+ "Shape_Le_3":0.000919564035846,
+ "Shape_Ar_2":4.23083528845e-08,
+ "building_height":13.32
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1018,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55532705731969,
+ 45.53444515926698
+ ],
+ [
+ -73.55519474186569,
+ 45.534603667475565
+ ],
+ [
+ -73.55545280142749,
+ 45.5347035012159
+ ],
+ [
+ -73.55557756797224,
+ 45.534553950254896
+ ],
+ [
+ -73.55559106319885,
+ 45.53455955662853
+ ],
+ [
+ -73.55559261273073,
+ 45.53455773550139
+ ],
+ [
+ -73.55532705731969,
+ 45.53444515926698
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1018,
+ "ID_UEV":"01025830",
+ "CIVIQUE_DE":" 2574",
+ "CIVIQUE_FI":" 2590",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-48-7352-7-000-0000",
+ "SUPERFICIE":485,
+ "SUPERFIC_1":1065,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000983372728261,
+ "OBJECTID":86667,
+ "Join_Count":1,
+ "TARGET_FID":86667,
+ "feature_id":"44b4eb54-fa17-4298-8374-80608d739c27",
+ "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.51,
+ "heightmax":31.58,
+ "elevmin":19.02,
+ "elevmax":20.23,
+ "bldgarea":912.54,
+ "comment":" ",
+ "OBJECTID_2":86667,
+ "Shape_Le_1":0.000983372728261,
+ "Shape_Ar_1":5.29366829439e-08,
+ "OBJECTID_3":86667,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86666,
+ "g_objectid":"941096",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425000",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004348735270000000",
+ "g_sup_tota":"485",
+ "g_geometry":"0.000990916",
+ "g_geomet_1":"5.63961e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000983372728261,
+ "Shape_Area":5.29366829439e-08,
+ "Shape_Le_3":0.000983371802356,
+ "Shape_Ar_2":5.29366829439e-08,
+ "building_height":14.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1019,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55532705731969,
+ 45.53444515926698
+ ],
+ [
+ -73.55559261273073,
+ 45.53455773550139
+ ],
+ [
+ -73.55568099450414,
+ 45.5344538611071
+ ],
+ [
+ -73.55547702646544,
+ 45.53436670600897
+ ],
+ [
+ -73.55547126810639,
+ 45.534373649674485
+ ],
+ [
+ -73.55540836772384,
+ 45.53434775009888
+ ],
+ [
+ -73.55532705731969,
+ 45.53444515926698
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1019,
+ "ID_UEV":"01025831",
+ "CIVIQUE_DE":" 2558",
+ "CIVIQUE_FI":" 2568",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-48-6538-2-000-0000",
+ "SUPERFICIE":327,
+ "SUPERFIC_1":802,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000850557725815,
+ "OBJECTID":86668,
+ "Join_Count":1,
+ "TARGET_FID":86668,
+ "feature_id":"44b4eb54-fa17-4298-8374-80608d739c27",
+ "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.51,
+ "heightmax":31.58,
+ "elevmin":19.02,
+ "elevmax":20.23,
+ "bldgarea":912.54,
+ "comment":" ",
+ "OBJECTID_2":86668,
+ "Shape_Le_1":0.000850557725815,
+ "Shape_Ar_1":3.71250378351e-08,
+ "OBJECTID_3":86668,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86667,
+ "g_objectid":"941094",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424998",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004348602920000000",
+ "g_sup_tota":"166.9",
+ "g_geometry":"0.000716659",
+ "g_geomet_1":"1.922e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000850557725815,
+ "Shape_Area":3.71250378351e-08,
+ "Shape_Le_3":0.000850556909903,
+ "Shape_Ar_2":3.71250378351e-08,
+ "building_height":14.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1020,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55547702646544,
+ 45.53436670600897
+ ],
+ [
+ -73.55568099450414,
+ 45.5344538611071
+ ],
+ [
+ -73.55571768324633,
+ 45.534410740413634
+ ],
+ [
+ -73.55571517503714,
+ 45.534405553124074
+ ],
+ [
+ -73.5555142682907,
+ 45.53432155014971
+ ],
+ [
+ -73.55551206854896,
+ 45.53432444956399
+ ],
+ [
+ -73.55547702646544,
+ 45.53436670600897
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1020,
+ "ID_UEV":"01025834",
+ "CIVIQUE_DE":" 2550",
+ "CIVIQUE_FI":" 2552",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-48-6029-2-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":252,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00056048429612,
+ "OBJECTID":86669,
+ "Join_Count":1,
+ "TARGET_FID":86669,
+ "feature_id":"44b4eb54-fa17-4298-8374-80608d739c27",
+ "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.51,
+ "heightmax":31.58,
+ "elevmin":19.02,
+ "elevmax":20.23,
+ "bldgarea":912.54,
+ "comment":" ",
+ "OBJECTID_2":86669,
+ "Shape_Le_1":0.00056048429612,
+ "Shape_Ar_1":1.26613781532e-08,
+ "OBJECTID_3":86669,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86668,
+ "g_objectid":"941094",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424998",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004348602920000000",
+ "g_sup_tota":"166.9",
+ "g_geometry":"0.000716659",
+ "g_geomet_1":"1.922e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00056048429612,
+ "Shape_Area":1.26613781532e-08,
+ "Shape_Le_3":0.000560483712168,
+ "Shape_Ar_2":1.26613781532e-08,
+ "building_height":14.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1021,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55883228280545,
+ 45.53755648979047
+ ],
+ [
+ -73.55886556941235,
+ 45.537566849980436
+ ],
+ [
+ -73.55885016942163,
+ 45.53759124948687
+ ],
+ [
+ -73.55884826915414,
+ 45.537593849426905
+ ],
+ [
+ -73.55891776876186,
+ 45.53761924987877
+ ],
+ [
+ -73.5589203687019,
+ 45.53761574971737
+ ],
+ [
+ -73.5590043689783,
+ 45.53750194950566
+ ],
+ [
+ -73.55900096954096,
+ 45.53750074981005
+ ],
+ [
+ -73.55889905297076,
+ 45.537464463964135
+ ],
+ [
+ -73.55883228280545,
+ 45.53755648979047
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1021,
+ "ID_UEV":"01024398",
+ "CIVIQUE_DE":" 2585",
+ "CIVIQUE_FI":" 2585",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1951,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-9785-2-000-0000",
+ "SUPERFICIE":383,
+ "SUPERFIC_1":253,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000512220343418,
+ "OBJECTID":86674,
+ "Join_Count":1,
+ "TARGET_FID":86674,
+ "feature_id":"1d4a8f32-da17-4ad3-9db5-3bb00f68c862",
+ "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.55,
+ "heightmax":46.93,
+ "elevmin":32.54,
+ "elevmax":38.16,
+ "bldgarea":400.4,
+ "comment":" ",
+ "OBJECTID_2":86674,
+ "Shape_Le_1":0.000512220343418,
+ "Shape_Ar_1":1.43821433197e-08,
+ "OBJECTID_3":86674,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86673,
+ "g_objectid":"944154",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361414",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411978520000000",
+ "g_sup_tota":"383.2",
+ "g_geometry":"0.000871209",
+ "g_geomet_1":"4.45211e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000512220343418,
+ "Shape_Area":1.43821433197e-08,
+ "Shape_Le_3":0.000512220691389,
+ "Shape_Ar_2":1.43821433197e-08,
+ "building_height":23.19
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1022,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55870089994842,
+ 45.53788763365766
+ ],
+ [
+ -73.5587898150198,
+ 45.537915985684485
+ ],
+ [
+ -73.55885103906604,
+ 45.53783057077452
+ ],
+ [
+ -73.55876893096324,
+ 45.53779272100756
+ ],
+ [
+ -73.55870089994842,
+ 45.53788763365766
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1022,
+ "ID_UEV":"01024592",
+ "CIVIQUE_DE":" 2590",
+ "CIVIQUE_FI":" 2590",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-0814-6-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":157,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000405605107915,
+ "OBJECTID":86675,
+ "Join_Count":1,
+ "TARGET_FID":86675,
+ "feature_id":"7de3239f-60f9-4083-bdc2-09487c2a41b2",
+ "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":47.81,
+ "elevmin":27.08,
+ "elevmax":40.05,
+ "bldgarea":1333.88,
+ "comment":" ",
+ "OBJECTID_2":86675,
+ "Shape_Le_1":0.000405605107915,
+ "Shape_Ar_1":9.84929375828e-09,
+ "OBJECTID_3":86675,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86674,
+ "g_objectid":"944138",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361396",
+ "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":"66023004422081460000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000682377",
+ "g_geomet_1":"2.2088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000405605107915,
+ "Shape_Area":9.84929375828e-09,
+ "Shape_Le_3":0.000405604857892,
+ "Shape_Ar_2":9.84929375828e-09,
+ "building_height":23.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1023,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56044789237818,
+ 45.536726583715165
+ ],
+ [
+ -73.56063288831899,
+ 45.5367843642573
+ ],
+ [
+ -73.56067277055377,
+ 45.536722249882224
+ ],
+ [
+ -73.56066537003265,
+ 45.536719849591684
+ ],
+ [
+ -73.56049106972893,
+ 45.5366650494028
+ ],
+ [
+ -73.5604822698627,
+ 45.5366788494996
+ ],
+ [
+ -73.5604666702225,
+ 45.53670404940265
+ ],
+ [
+ -73.56045367052232,
+ 45.53670014994226
+ ],
+ [
+ -73.56045346997351,
+ 45.536701149988374
+ ],
+ [
+ -73.56044789237818,
+ 45.536726583715165
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1023,
+ "ID_UEV":"01026135",
+ "CIVIQUE_DE":" 2566",
+ "CIVIQUE_FI":" 2572",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1943,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-00-7390-6-000-0000",
+ "SUPERFICIE":245,
+ "SUPERFIC_1":268,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000544751374244,
+ "OBJECTID":86677,
+ "Join_Count":1,
+ "TARGET_FID":86677,
+ "feature_id":"edeb1d96-3d24-4caa-a28c-15bb47bb7b26",
+ "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.39,
+ "heightmax":53.09,
+ "elevmin":41.71,
+ "elevmax":43.13,
+ "bldgarea":667.98,
+ "comment":" ",
+ "OBJECTID_2":86677,
+ "Shape_Le_1":0.000544751374244,
+ "Shape_Ar_1":1.38240927483e-08,
+ "OBJECTID_3":86677,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86676,
+ "g_objectid":"944202",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361477",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004400769820000000",
+ "g_sup_tota":"245.9",
+ "g_geometry":"0.000892256",
+ "g_geomet_1":"2.83207e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000544751374244,
+ "Shape_Area":1.38240927483e-08,
+ "Shape_Le_3":0.000544751948712,
+ "Shape_Ar_2":1.38240927483e-08,
+ "building_height":25.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1024,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55471934494366,
+ 45.51947681165583
+ ],
+ [
+ -73.55498350011028,
+ 45.519595944847275
+ ],
+ [
+ -73.55502878816988,
+ 45.51954688413169
+ ],
+ [
+ -73.55470626790179,
+ 45.51939738892865
+ ],
+ [
+ -73.55467246598336,
+ 45.51943374672033
+ ],
+ [
+ -73.55467706601563,
+ 45.51943584663731
+ ],
+ [
+ -73.55473296607536,
+ 45.519462846983096
+ ],
+ [
+ -73.55471934494366,
+ 45.51947681165583
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1024,
+ "ID_UEV":"01022462",
+ "CIVIQUE_DE":" 1324",
+ "CIVIQUE_FI":" 1326",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-1577-1-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000848314506538,
+ "OBJECTID":86683,
+ "Join_Count":1,
+ "TARGET_FID":86683,
+ "feature_id":"db3ce713-c3b9-41d2-8b27-3868938324c4",
+ "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.45,
+ "heightmax":16.27,
+ "elevmin":18.63,
+ "elevmax":20.96,
+ "bldgarea":1812.53,
+ "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_2":86683,
+ "Shape_Le_1":0.000848314506538,
+ "Shape_Ar_1":2.19638049032e-08,
+ "OBJECTID_3":86683,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86682,
+ "g_objectid":"938279",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1566647",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251157710000000",
+ "g_sup_tota":"198.2",
+ "g_geometry":"0.000856105",
+ "g_geomet_1":"2.34687e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000848314506538,
+ "Shape_Area":2.19638049032e-08,
+ "Shape_Le_3":0.000848314745871,
+ "Shape_Ar_2":2.19638049032e-08,
+ "building_height":6.91
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1025,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55402092155013,
+ 45.52094891281237
+ ],
+ [
+ -73.55387876571432,
+ 45.521104547687024
+ ],
+ [
+ -73.55383195780045,
+ 45.52115586660026
+ ],
+ [
+ -73.554097341441,
+ 45.52127929045719
+ ],
+ [
+ -73.55423346642318,
+ 45.52112624742867
+ ],
+ [
+ -73.55422876656617,
+ 45.521124248235765
+ ],
+ [
+ -73.55415006599459,
+ 45.5210891476963
+ ],
+ [
+ -73.55419476589758,
+ 45.52103964811157
+ ],
+ [
+ -73.55423356624793,
+ 45.52105714801926
+ ],
+ [
+ -73.5542385664785,
+ 45.52105934776099
+ ],
+ [
+ -73.55424297045856,
+ 45.52105416946464
+ ],
+ [
+ -73.55402092155013,
+ 45.52094891281237
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1025,
+ "ID_UEV":"01022370",
+ "CIVIQUE_DE":" 1481",
+ "CIVIQUE_FI":" 1495",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1940,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-7556-5-000-0000",
+ "SUPERFICIE":742,
+ "SUPERFIC_1":1094,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00123628037939,
+ "OBJECTID":86693,
+ "Join_Count":1,
+ "TARGET_FID":86693,
+ "feature_id":"bb334a25-b82d-4066-be5d-5fe0183748e4",
+ "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.48,
+ "heightmax":13.39,
+ "elevmin":16.89,
+ "elevmax":19.55,
+ "bldgarea":1730.18,
+ "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_2":86693,
+ "Shape_Le_1":0.00123628037939,
+ "Shape_Ar_1":7.14186919582e-08,
+ "OBJECTID_3":86693,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86692,
+ "g_objectid":"942254",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567711",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004253755650000000",
+ "g_sup_tota":"741.5",
+ "g_geometry":"0.00120007",
+ "g_geomet_1":"8.53756e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00123628037939,
+ "Shape_Area":7.14186919582e-08,
+ "Shape_Le_3":0.001236281549,
+ "Shape_Ar_2":7.14186919582e-08,
+ "building_height":5.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1026,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56088088176912,
+ 45.53114916465252
+ ],
+ [
+ -73.56088129545726,
+ 45.531149358006765
+ ],
+ [
+ -73.56097846900299,
+ 45.531046348760285
+ ],
+ [
+ -73.56103406868917,
+ 45.53107224923521
+ ],
+ [
+ -73.56107486913174,
+ 45.531029048502084
+ ],
+ [
+ -73.56110126873041,
+ 45.531001248658995
+ ],
+ [
+ -73.56112584630262,
+ 45.531012786960844
+ ],
+ [
+ -73.56120322127349,
+ 45.5309304000682
+ ],
+ [
+ -73.56118776912209,
+ 45.530922949185054
+ ],
+ [
+ -73.56118376893762,
+ 45.53092104891757
+ ],
+ [
+ -73.56112166085781,
+ 45.53089278952091
+ ],
+ [
+ -73.56088088176912,
+ 45.53114916465252
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1026,
+ "ID_UEV":"01022682",
+ "CIVIQUE_DE":" 2331",
+ "CIVIQUE_FI":" 2335",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-04-3157-7-000-0000",
+ "SUPERFICIE":287,
+ "SUPERFIC_1":324,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000882868977025,
+ "OBJECTID":86699,
+ "Join_Count":1,
+ "TARGET_FID":86699,
+ "feature_id":"25ce4e3a-81cc-4582-a3df-afc9c7910049",
+ "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.47,
+ "heightmax":48.09,
+ "elevmin":30.91,
+ "elevmax":34.75,
+ "bldgarea":1369.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_2":86699,
+ "Shape_Le_1":0.000882868977025,
+ "Shape_Ar_1":1.54835585104e-08,
+ "OBJECTID_3":86699,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86698,
+ "g_objectid":"940372",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423707",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004304315770000000",
+ "g_sup_tota":"286.8",
+ "g_geometry":"0.000954827",
+ "g_geomet_1":"3.30364e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000882868977025,
+ "Shape_Area":1.54835585104e-08,
+ "Shape_Le_3":0.000882871289367,
+ "Shape_Ar_2":1.54835585104e-08,
+ "building_height":22.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1027,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55196749592504,
+ 45.536188004922785
+ ],
+ [
+ -73.55205235685263,
+ 45.53622200289342
+ ],
+ [
+ -73.55213924755007,
+ 45.53610100540737
+ ],
+ [
+ -73.55205126687432,
+ 45.536077149990774
+ ],
+ [
+ -73.55206442125788,
+ 45.536053033770784
+ ],
+ [
+ -73.55204669112373,
+ 45.53607772285892
+ ],
+ [
+ -73.55205146742313,
+ 45.536079749930806
+ ],
+ [
+ -73.55202886746011,
+ 45.53610625025354
+ ],
+ [
+ -73.55202682509974,
+ 45.536105386904374
+ ],
+ [
+ -73.55196749592504,
+ 45.536188004922785
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1027,
+ "ID_UEV":"01024790",
+ "CIVIQUE_DE":" 2076",
+ "CIVIQUE_FI":" 2076",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-3528-8-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":92,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00053335155156,
+ "OBJECTID":86700,
+ "Join_Count":1,
+ "TARGET_FID":86700,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":86700,
+ "Shape_Le_1":0.00053335155156,
+ "Shape_Ar_1":1.2644784532e-08,
+ "OBJECTID_3":86700,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86699,
+ "g_objectid":"943712",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360859",
+ "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":"66023004470352880000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668834",
+ "g_geomet_1":"2.14806e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00053335155156,
+ "Shape_Area":1.2644784532e-08,
+ "Shape_Le_3":0.000533354411375,
+ "Shape_Ar_2":1.2644784532e-08,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1028,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55205235685263,
+ 45.53622200289342
+ ],
+ [
+ -73.55205796682355,
+ 45.536224250299206
+ ],
+ [
+ -73.55202636734482,
+ 45.53626325029906
+ ],
+ [
+ -73.55209316718776,
+ 45.53629005009603
+ ],
+ [
+ -73.55209326701251,
+ 45.53628995027128
+ ],
+ [
+ -73.55210904921509,
+ 45.536295231090335
+ ],
+ [
+ -73.55219204045216,
+ 45.53617966461013
+ ],
+ [
+ -73.55211266718769,
+ 45.53615815012882
+ ],
+ [
+ -73.55214346716912,
+ 45.53610215024433
+ ],
+ [
+ -73.55213924755007,
+ 45.53610100540737
+ ],
+ [
+ -73.55205235685263,
+ 45.53622200289342
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1028,
+ "ID_UEV":"01024792",
+ "CIVIQUE_DE":" 2082",
+ "CIVIQUE_FI":" 2084",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-2831-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000586759855712,
+ "OBJECTID":86701,
+ "Join_Count":1,
+ "TARGET_FID":86701,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":86701,
+ "Shape_Le_1":0.000586759855712,
+ "Shape_Ar_1":1.2522309741e-08,
+ "OBJECTID_3":86701,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86700,
+ "g_objectid":"943714",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360861",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470223510000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668839",
+ "g_geomet_1":"2.1481e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000586759855712,
+ "Shape_Area":1.2522309741e-08,
+ "Shape_Le_3":0.000586760507491,
+ "Shape_Ar_2":1.2522309741e-08,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1029,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55229061694027,
+ 45.536355794134884
+ ],
+ [
+ -73.55237879276892,
+ 45.53638517588546
+ ],
+ [
+ -73.55245860490254,
+ 45.53627403676768
+ ],
+ [
+ -73.55237326733426,
+ 45.53624704991172
+ ],
+ [
+ -73.55241077895613,
+ 45.53618846717431
+ ],
+ [
+ -73.55229061694027,
+ 45.536355794134884
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1029,
+ "ID_UEV":"01024798",
+ "CIVIQUE_DE":" 2100",
+ "CIVIQUE_FI":" 2102",
+ "NOM_RUE":"rue Montgomery (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-0741-0-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":188,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00059484048625,
+ "OBJECTID":86703,
+ "Join_Count":1,
+ "TARGET_FID":86703,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":86703,
+ "Shape_Le_1":0.00059484048625,
+ "Shape_Ar_1":1.22089898458e-08,
+ "OBJECTID_3":86703,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86702,
+ "g_objectid":"943716",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360864",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470014540000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.00066884",
+ "g_geomet_1":"2.14812e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00059484048625,
+ "Shape_Area":1.22089898458e-08,
+ "Shape_Le_3":0.00059483951547,
+ "Shape_Ar_2":1.22089898458e-08,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1030,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55649142036461,
+ 45.537465263461435
+ ],
+ [
+ -73.55649166767816,
+ 45.53746534979635
+ ],
+ [
+ -73.55643843410829,
+ 45.53754131912687
+ ],
+ [
+ -73.55647751594645,
+ 45.5375551938674
+ ],
+ [
+ -73.55648796786727,
+ 45.537540050183466
+ ],
+ [
+ -73.55653564452622,
+ 45.53755634949623
+ ],
+ [
+ -73.55659011376459,
+ 45.53748016522774
+ ],
+ [
+ -73.55658766850794,
+ 45.53747934954264
+ ],
+ [
+ -73.55650626817159,
+ 45.5374516495243
+ ],
+ [
+ -73.55651296812083,
+ 45.537441849611966
+ ],
+ [
+ -73.55657466790844,
+ 45.53735234998126
+ ],
+ [
+ -73.55657656817593,
+ 45.53734975004123
+ ],
+ [
+ -73.5565743108776,
+ 45.53734897302698
+ ],
+ [
+ -73.55649142036461,
+ 45.537465263461435
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1030,
+ "ID_UEV":"01024682",
+ "CIVIQUE_DE":" 2399",
+ "CIVIQUE_FI":" 2399",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-31-8373-6-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":71,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000654495658559,
+ "OBJECTID":86705,
+ "Join_Count":1,
+ "TARGET_FID":86705,
+ "feature_id":"caf887d4-e503-481f-99c1-1bc02a61d51a",
+ "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":32.03,
+ "elevmin":20.72,
+ "elevmax":24.62,
+ "bldgarea":855.9,
+ "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_2":86705,
+ "Shape_Le_1":0.000654495658559,
+ "Shape_Ar_1":9.39819692489e-09,
+ "OBJECTID_3":86705,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86704,
+ "g_objectid":"943937",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361140",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431907070000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668425",
+ "g_geomet_1":"2.14849e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000654495658559,
+ "Shape_Area":9.39819692489e-09,
+ "Shape_Le_3":0.000654492926041,
+ "Shape_Ar_2":9.39819692489e-09,
+ "building_height":15.76
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1031,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5598238078443,
+ 45.53337219252296
+ ],
+ [
+ -73.55988017015558,
+ 45.53339780341619
+ ],
+ [
+ -73.55999734372428,
+ 45.53327187314872
+ ],
+ [
+ -73.55994976868872,
+ 45.53325055022301
+ ],
+ [
+ -73.55998226928814,
+ 45.533214750011
+ ],
+ [
+ -73.55997382645278,
+ 45.53321096476451
+ ],
+ [
+ -73.5598238078443,
+ 45.53337219252296
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1031,
+ "ID_UEV":"01023119",
+ "CIVIQUE_DE":" 2376",
+ "CIVIQUE_FI":" 2380",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-1810-5-000-0000",
+ "SUPERFICIE":160,
+ "SUPERFIC_1":224,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000563886777501,
+ "OBJECTID":86708,
+ "Join_Count":1,
+ "TARGET_FID":86708,
+ "feature_id":"ea5c0bbc-ef1d-4d43-87d6-830780f61401",
+ "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.49,
+ "heightmax":44.42,
+ "elevmin":27.09,
+ "elevmax":32.72,
+ "bldgarea":1942,
+ "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_2":86708,
+ "Shape_Le_1":0.000563886777501,
+ "Shape_Ar_1":1.05283854462e-08,
+ "OBJECTID_3":86708,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86707,
+ "g_objectid":"940546",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424047",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317240610000000",
+ "g_sup_tota":"245.3",
+ "g_geometry":"0.000816802",
+ "g_geomet_1":"2.82514e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000563886777501,
+ "Shape_Area":1.05283854462e-08,
+ "Shape_Le_3":0.000563886936938,
+ "Shape_Ar_2":1.05283854462e-08,
+ "building_height":20.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1032,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55940485597117,
+ 45.50821885816407
+ ],
+ [
+ -73.55940506731186,
+ 45.508218944498985
+ ],
+ [
+ -73.55931246681874,
+ 45.508330044945914
+ ],
+ [
+ -73.55931266736755,
+ 45.50832994512117
+ ],
+ [
+ -73.55944078838353,
+ 45.50838680385821
+ ],
+ [
+ -73.55952103219172,
+ 45.508303942123526
+ ],
+ [
+ -73.5595820413,
+ 45.5082409446142
+ ],
+ [
+ -73.55958207277628,
+ 45.508240912238605
+ ],
+ [
+ -73.55958205389052,
+ 45.50824090414471
+ ],
+ [
+ -73.55972494806974,
+ 45.50809337036305
+ ],
+ [
+ -73.5597237672599,
+ 45.50809284515897
+ ],
+ [
+ -73.55958481570852,
+ 45.50803107972085
+ ],
+ [
+ -73.55940485597117,
+ 45.50821885816407
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1032,
+ "ID_UEV":"01020530",
+ "CIVIQUE_DE":" 1017",
+ "CIVIQUE_FI":" 1023",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1978,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-19-5125-6-000-0000",
+ "SUPERFICIE":604,
+ "SUPERFIC_1":963,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00110717388246,
+ "OBJECTID":86709,
+ "Join_Count":1,
+ "TARGET_FID":86709,
+ "feature_id":"e2283162-ba44-4070-a7cd-5c75a66bb0d8",
+ "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.98,
+ "heightmax":17.98,
+ "elevmin":15.4,
+ "elevmax":17.95,
+ "bldgarea":1979.75,
+ "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_2":86709,
+ "Shape_Le_1":0.00110717388246,
+ "Shape_Ar_1":5.76241482708e-08,
+ "OBJECTID_3":86709,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86708,
+ "g_objectid":"939524",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180677",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019393430000000",
+ "g_sup_tota":"137.4",
+ "g_geometry":"0.000576893",
+ "g_geomet_1":"1.58222e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00110717388246,
+ "Shape_Area":5.76241482708e-08,
+ "Shape_Le_3":0.00110717593549,
+ "Shape_Ar_2":5.76241482708e-08,
+ "building_height":8.5
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1033,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56086906647609,
+ 45.53077786245868
+ ],
+ [
+ -73.56079386876388,
+ 45.53074364865076
+ ],
+ [
+ -73.56070546900403,
+ 45.530839648581214
+ ],
+ [
+ -73.56073236952508,
+ 45.53085184878409
+ ],
+ [
+ -73.56070416948369,
+ 45.530881849268226
+ ],
+ [
+ -73.56075035956329,
+ 45.53090332417936
+ ],
+ [
+ -73.56086906647609,
+ 45.53077786245868
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1033,
+ "ID_UEV":"01022684",
+ "CIVIQUE_DE":" 2301",
+ "CIVIQUE_FI":" 2303",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-04-5740-8-000-0000",
+ "SUPERFICIE":287,
+ "SUPERFIC_1":211,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000507483437087,
+ "OBJECTID":86710,
+ "Join_Count":1,
+ "TARGET_FID":86710,
+ "feature_id":"25ce4e3a-81cc-4582-a3df-afc9c7910049",
+ "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.47,
+ "heightmax":48.09,
+ "elevmin":30.91,
+ "elevmax":34.75,
+ "bldgarea":1369.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_2":86710,
+ "Shape_Le_1":0.000507483437087,
+ "Shape_Ar_1":1.21300688076e-08,
+ "OBJECTID_3":86710,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86709,
+ "g_objectid":"940381",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423726",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004304574080000000",
+ "g_sup_tota":"286.8",
+ "g_geometry":"0.000955776",
+ "g_geomet_1":"3.30363e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000507483437087,
+ "Shape_Area":1.21300688076e-08,
+ "Shape_Le_3":0.000507485229809,
+ "Shape_Ar_2":1.21300688076e-08,
+ "building_height":22.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1034,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5508699300251,
+ 45.53124392621652
+ ],
+ [
+ -73.55095921201986,
+ 45.53128223283907
+ ],
+ [
+ -73.55102496595126,
+ 45.53120985000487
+ ],
+ [
+ -73.55093676584092,
+ 45.53117034998196
+ ],
+ [
+ -73.55093366587782,
+ 45.531173749419295
+ ],
+ [
+ -73.5508699300251,
+ 45.53124392621652
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1034,
+ "ID_UEV":"01019210",
+ "CIVIQUE_DE":" 2471",
+ "CIVIQUE_FI":" 2477",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-84-1880-8-000-0000",
+ "SUPERFICIE":153,
+ "SUPERFIC_1":265,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000390984639141,
+ "OBJECTID":86715,
+ "Join_Count":1,
+ "TARGET_FID":86715,
+ "feature_id":"bb869f13-2c8f-4d4b-89a5-55a36ab08f35",
+ "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.17,
+ "heightmax":32.26,
+ "elevmin":19.23,
+ "elevmax":22.42,
+ "bldgarea":1461.75,
+ "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_2":86715,
+ "Shape_Le_1":0.000390984639141,
+ "Shape_Ar_1":9.0558029437e-09,
+ "OBJECTID_3":86715,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86714,
+ "g_objectid":"940666",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424240",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004384188080000000",
+ "g_sup_tota":"152.9",
+ "g_geometry":"0.000550512",
+ "g_geomet_1":"1.75722e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000390984639141,
+ "Shape_Area":9.0558029437e-09,
+ "Shape_Le_3":0.00039098447722,
+ "Shape_Ar_2":9.0558029437e-09,
+ "building_height":15.044999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1035,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5508699300251,
+ 45.53124392621652
+ ],
+ [
+ -73.55078054370897,
+ 45.531342344423955
+ ],
+ [
+ -73.55092361145735,
+ 45.53140322852647
+ ],
+ [
+ -73.55100231742486,
+ 45.531311865500484
+ ],
+ [
+ -73.55095256602995,
+ 45.53128954972323
+ ],
+ [
+ -73.55095921201986,
+ 45.53128223283907
+ ],
+ [
+ -73.5508699300251,
+ 45.53124392621652
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1035,
+ "ID_UEV":"01019212",
+ "CIVIQUE_DE":" 2479",
+ "CIVIQUE_FI":" 2485",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-84-2590-2-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":411,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000570588886497,
+ "OBJECTID":86716,
+ "Join_Count":1,
+ "TARGET_FID":86716,
+ "feature_id":"bb869f13-2c8f-4d4b-89a5-55a36ab08f35",
+ "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.17,
+ "heightmax":32.26,
+ "elevmin":19.23,
+ "elevmax":22.42,
+ "bldgarea":1461.75,
+ "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_2":86716,
+ "Shape_Le_1":0.000570588886497,
+ "Shape_Ar_1":1.87236887405e-08,
+ "OBJECTID_3":86716,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86715,
+ "g_objectid":"940666",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424240",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004384188080000000",
+ "g_sup_tota":"152.9",
+ "g_geometry":"0.000550512",
+ "g_geomet_1":"1.75722e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000570588886497,
+ "Shape_Area":1.87236887405e-08,
+ "Shape_Le_3":0.00057058926267,
+ "Shape_Ar_2":1.87236887405e-08,
+ "building_height":15.044999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1036,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55939430872222,
+ 45.53317702704845
+ ],
+ [
+ -73.5594797362227,
+ 45.53321584448593
+ ],
+ [
+ -73.55960414843454,
+ 45.533082136881404
+ ],
+ [
+ -73.55952646949282,
+ 45.533054149979336
+ ],
+ [
+ -73.5595219692853,
+ 45.53305264991016
+ ],
+ [
+ -73.55951258126245,
+ 45.533049809851136
+ ],
+ [
+ -73.55939430872222,
+ 45.53317702704845
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1036,
+ "ID_UEV":"01023114",
+ "CIVIQUE_DE":" 2336",
+ "CIVIQUE_FI":" 2342",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-16-5089-4-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":384,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000547290264618,
+ "OBJECTID":86717,
+ "Join_Count":1,
+ "TARGET_FID":86717,
+ "feature_id":"ea5c0bbc-ef1d-4d43-87d6-830780f61401",
+ "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.49,
+ "heightmax":44.42,
+ "elevmin":27.09,
+ "elevmax":32.72,
+ "bldgarea":1942,
+ "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_2":86717,
+ "Shape_Le_1":0.000547290264618,
+ "Shape_Ar_1":1.58884074476e-08,
+ "OBJECTID_3":86717,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86716,
+ "g_objectid":"940543",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424044",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316449390000000",
+ "g_sup_tota":"244.3",
+ "g_geometry":"0.000816081",
+ "g_geomet_1":"2.81442e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000547290264618,
+ "Shape_Area":1.58884074476e-08,
+ "Shape_Le_3":0.000547291024489,
+ "Shape_Ar_2":1.58884074476e-08,
+ "building_height":20.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1037,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55295578969978,
+ 45.536494723203205
+ ],
+ [
+ -73.55295586704148,
+ 45.53649475018287
+ ],
+ [
+ -73.55289976733224,
+ 45.53657285000732
+ ],
+ [
+ -73.55298526677848,
+ 45.53660324979044
+ ],
+ [
+ -73.55306907100267,
+ 45.53648914920517
+ ],
+ [
+ -73.55308429292762,
+ 45.53646795218454
+ ],
+ [
+ -73.55308036738688,
+ 45.53646655014147
+ ],
+ [
+ -73.55300156699057,
+ 45.53643994999399
+ ],
+ [
+ -73.55303626733172,
+ 45.53638905016483
+ ],
+ [
+ -73.55303258011133,
+ 45.53638779111397
+ ],
+ [
+ -73.55295578969978,
+ 45.536494723203205
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1037,
+ "ID_UEV":"01024812",
+ "CIVIQUE_DE":" 2148",
+ "CIVIQUE_FI":" 2154",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-6066-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":348,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000639136296004,
+ "OBJECTID":86718,
+ "Join_Count":1,
+ "TARGET_FID":86718,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":86718,
+ "Shape_Le_1":0.000639136296004,
+ "Shape_Ar_1":1.49447794787e-08,
+ "OBJECTID_3":86718,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86717,
+ "g_objectid":"943721",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360869",
+ "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":"66023004460676210000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668841",
+ "g_geomet_1":"2.14813e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000639136296004,
+ "Shape_Area":1.49447794787e-08,
+ "Shape_Le_3":0.000639136069616,
+ "Shape_Ar_2":1.49447794787e-08,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1038,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56107081318932,
+ 45.53238649958758
+ ],
+ [
+ -73.56115500142403,
+ 45.53242629548744
+ ],
+ [
+ -73.56126796706488,
+ 45.53230548146309
+ ],
+ [
+ -73.56118368080408,
+ 45.53226578988459
+ ],
+ [
+ -73.56107081318932,
+ 45.53238649958758
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1038,
+ "ID_UEV":"01022749",
+ "CIVIQUE_DE":" 2310",
+ "CIVIQUE_FI":" 2314",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1970,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-2103-7-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":341,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000516942512985,
+ "OBJECTID":86722,
+ "Join_Count":1,
+ "TARGET_FID":86722,
+ "feature_id":"243fd313-8d28-4ecd-be35-5fe3323f92ca",
+ "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":47.61,
+ "elevmin":33.17,
+ "elevmax":37.36,
+ "bldgarea":498.11,
+ "comment":" ",
+ "OBJECTID_2":86722,
+ "Shape_Le_1":0.000516942512985,
+ "Shape_Ar_1":1.46604018382e-08,
+ "OBJECTID_3":86722,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86721,
+ "g_objectid":"940424",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423874",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004305279860000000",
+ "g_sup_tota":"198.1",
+ "g_geometry":"0.000702448",
+ "g_geomet_1":"2.2862e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000516942512985,
+ "Shape_Area":1.46604018382e-08,
+ "Shape_Le_3":0.00051694203125,
+ "Shape_Ar_2":1.46604018382e-08,
+ "building_height":22.544999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1039,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54587390018219,
+ 45.527464129616185
+ ],
+ [
+ -73.54599584735232,
+ 45.52751862043828
+ ],
+ [
+ -73.54599746433335,
+ 45.52751704842334
+ ],
+ [
+ -73.54606517698818,
+ 45.52745223967941
+ ],
+ [
+ -73.54591982855908,
+ 45.527387171031414
+ ],
+ [
+ -73.5459193645089,
+ 45.52738764857142
+ ],
+ [
+ -73.54586536381733,
+ 45.527443448806416
+ ],
+ [
+ -73.54588486381725,
+ 45.527452748695694
+ ],
+ [
+ -73.54587390018219,
+ 45.527464129616185
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1039,
+ "ID_UEV":"01018610",
+ "CIVIQUE_DE":" 2381",
+ "CIVIQUE_FI":" 2383",
+ "NOM_RUE":"rue Jean-Langlois (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1876,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-20-0960-1-000-0000",
+ "SUPERFICIE":132,
+ "SUPERFIC_1":181,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000504525963836,
+ "OBJECTID":86723,
+ "Join_Count":1,
+ "TARGET_FID":86723,
+ "feature_id":"b00ab300-31ea-4632-8583-3f8d837da58b",
+ "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.16,
+ "heightmax":13.72,
+ "elevmin":19.27,
+ "elevmax":21.01,
+ "bldgarea":1205.67,
+ "comment":" ",
+ "OBJECTID_2":86723,
+ "Shape_Le_1":0.000504525963836,
+ "Shape_Ar_1":1.3664261186e-08,
+ "OBJECTID_3":86723,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86722,
+ "g_objectid":"940943",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424716",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014320187350000000",
+ "g_sup_tota":"302.7",
+ "g_geometry":"0.000772417",
+ "g_geomet_1":"3.48617e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000504525963836,
+ "Shape_Area":1.3664261186e-08,
+ "Shape_Le_3":0.000504524948495,
+ "Shape_Ar_2":1.3664261186e-08,
+ "building_height":6.28
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1040,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54660583591244,
+ 45.52778773806396
+ ],
+ [
+ -73.5467094477047,
+ 45.527835225865275
+ ],
+ [
+ -73.54673783390575,
+ 45.52780517681775
+ ],
+ [
+ -73.54670906369418,
+ 45.527791548491464
+ ],
+ [
+ -73.54673446414604,
+ 45.527765148892804
+ ],
+ [
+ -73.54673656406302,
+ 45.52776264877751
+ ],
+ [
+ -73.54665546410023,
+ 45.527728748832985
+ ],
+ [
+ -73.54663196391584,
+ 45.52775664850082
+ ],
+ [
+ -73.54660583591244,
+ 45.52778773806396
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1040,
+ "ID_UEV":"01018616",
+ "CIVIQUE_DE":" 2381",
+ "CIVIQUE_FI":" 2385",
+ "NOM_RUE":"rue Grant (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-10-5595-1-000-0000",
+ "SUPERFICIE":126,
+ "SUPERFIC_1":225,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000392035649348,
+ "OBJECTID":86724,
+ "Join_Count":1,
+ "TARGET_FID":86724,
+ "feature_id":"1f17d195-dfa2-4e7f-81c8-92b192f0b6e5",
+ "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.88,
+ "heightmax":9.95,
+ "elevmin":19.29,
+ "elevmax":19.78,
+ "bldgarea":73.06,
+ "comment":" ",
+ "OBJECTID_2":86724,
+ "Shape_Le_1":0.000392035649348,
+ "Shape_Ar_1":7.66137458169e-09,
+ "OBJECTID_3":86724,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86723,
+ "g_objectid":"944902",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel institutionnel",
+ "g_no_lot":"1424706",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1543",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014310279760000000",
+ "g_sup_tota":"3857.3",
+ "g_geometry":"0.00287817",
+ "g_geomet_1":"4.44216e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000392035649348,
+ "Shape_Area":7.66137458169e-09,
+ "Shape_Le_3":0.000392036182582,
+ "Shape_Ar_2":7.66137458169e-09,
+ "building_height":3.5349999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1041,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5462713735469,
+ 45.53020081876307
+ ],
+ [
+ -73.54634822241438,
+ 45.530233394905544
+ ],
+ [
+ -73.54642150636927,
+ 45.53014840627422
+ ],
+ [
+ -73.54634508378044,
+ 45.530115334605306
+ ],
+ [
+ -73.5462713735469,
+ 45.53020081876307
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1041,
+ "ID_UEV":"01019000",
+ "CIVIQUE_DE":" 1434",
+ "CIVIQUE_FI":" 1436",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-13-7657-1-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":184,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000391835876331,
+ "OBJECTID":86725,
+ "Join_Count":1,
+ "TARGET_FID":86725,
+ "feature_id":"42d18462-3f68-477c-a1eb-dbacfbfd7f0a",
+ "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.14,
+ "heightmax":10.94,
+ "elevmin":19.31,
+ "elevmax":19.92,
+ "bldgarea":554.71,
+ "comment":" ",
+ "OBJECTID_2":86725,
+ "Shape_Le_1":0.000391835876331,
+ "Shape_Ar_1":8.94458698419e-09,
+ "OBJECTID_3":86725,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86724,
+ "g_objectid":"941057",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424912",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014313765710000000",
+ "g_sup_tota":"170.9",
+ "g_geometry":"0.000665613",
+ "g_geomet_1":"1.98176e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000391835876331,
+ "Shape_Area":8.94458698419e-09,
+ "Shape_Le_3":0.000391835926367,
+ "Shape_Ar_2":8.94458698419e-09,
+ "building_height":4.8999999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1042,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55045854145037,
+ 45.53858202089384
+ ],
+ [
+ -73.55046396616095,
+ 45.538583751189464
+ ],
+ [
+ -73.55047076593495,
+ 45.538570451115724
+ ],
+ [
+ -73.55050286633606,
+ 45.53857925098194
+ ],
+ [
+ -73.55054053174199,
+ 45.538589546420724
+ ],
+ [
+ -73.55060480269134,
+ 45.53849985973104
+ ],
+ [
+ -73.55054366587932,
+ 45.53847995053958
+ ],
+ [
+ -73.55053756577789,
+ 45.53847795044735
+ ],
+ [
+ -73.55052936575947,
+ 45.53849125052109
+ ],
+ [
+ -73.55052461284245,
+ 45.53848981880039
+ ],
+ [
+ -73.55045854145037,
+ 45.53858202089384
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1042,
+ "ID_UEV":"01025626",
+ "CIVIQUE_DE":" 3049",
+ "CIVIQUE_FI":" 3049",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-5290-8-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000408038872567,
+ "OBJECTID":86729,
+ "Join_Count":1,
+ "TARGET_FID":86729,
+ "feature_id":"fb799dfc-15ad-4735-937b-a4d19bbcca51",
+ "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,
+ "heightmax":32.29,
+ "elevmin":21.17,
+ "elevmax":21.89,
+ "bldgarea":541.06,
+ "comment":" ",
+ "OBJECTID_2":86729,
+ "Shape_Le_1":0.000408038872567,
+ "Shape_Ar_1":7.97227088479e-09,
+ "OBJECTID_3":86729,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86728,
+ "g_objectid":"944268",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361941",
+ "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":"66023004482479240000000",
+ "g_sup_tota":"167.1",
+ "g_geometry":"0.000694846",
+ "g_geomet_1":"1.92592e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000408038872567,
+ "Shape_Area":7.97227088479e-09,
+ "Shape_Le_3":0.000408037638204,
+ "Shape_Ar_2":7.97227088479e-09,
+ "building_height":15.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1043,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55038682231584,
+ 45.538560153878294
+ ],
+ [
+ -73.55045706656222,
+ 45.538581550548415
+ ],
+ [
+ -73.55045854145037,
+ 45.53858202089384
+ ],
+ [
+ -73.55052461284245,
+ 45.53848981880039
+ ],
+ [
+ -73.55045273812522,
+ 45.53846817121942
+ ],
+ [
+ -73.55038682231584,
+ 45.538560153878294
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1043,
+ "ID_UEV":"01025628",
+ "CIVIQUE_DE":" 3039",
+ "CIVIQUE_FI":" 3039",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-5888-9-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000376637207421,
+ "OBJECTID":86730,
+ "Join_Count":1,
+ "TARGET_FID":86730,
+ "feature_id":"fb799dfc-15ad-4735-937b-a4d19bbcca51",
+ "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,
+ "heightmax":32.29,
+ "elevmin":21.17,
+ "elevmax":21.89,
+ "bldgarea":541.06,
+ "comment":" ",
+ "OBJECTID_2":86730,
+ "Shape_Le_1":0.000376637207421,
+ "Shape_Ar_1":8.04710262492e-09,
+ "OBJECTID_3":86730,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86729,
+ "g_objectid":"944271",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361944",
+ "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":"66023004482648610000000",
+ "g_sup_tota":"183.4",
+ "g_geometry":"0.000747628",
+ "g_geomet_1":"2.11331e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000376637207421,
+ "Shape_Area":8.04710262492e-09,
+ "Shape_Le_3":0.000376636287326,
+ "Shape_Ar_2":8.04710262492e-09,
+ "building_height":15.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1044,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55185936144223,
+ 45.53548720012448
+ ],
+ [
+ -73.55194647427221,
+ 45.53551806305846
+ ],
+ [
+ -73.5520182041986,
+ 45.53541805395032
+ ],
+ [
+ -73.55193330549949,
+ 45.535384103643764
+ ],
+ [
+ -73.55185936144223,
+ 45.53548720012448
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55205644337201,
+ 45.53536473944147
+ ],
+ [
+ -73.55203956669449,
+ 45.53535724988747
+ ],
+ [
+ -73.55202246698511,
+ 45.53537644951383
+ ],
+ [
+ -73.55204222149317,
+ 45.53538456769394
+ ],
+ [
+ -73.55205644337201,
+ 45.53536473944147
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1044,
+ "ID_UEV":"01024497",
+ "CIVIQUE_DE":" 2032",
+ "CIVIQUE_FI":" 2034",
+ "NOM_RUE":"rue Hogan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-4144-6-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":178,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000523731674789,
+ "OBJECTID":86735,
+ "Join_Count":2,
+ "TARGET_FID":86735,
+ "feature_id":"eb231f79-3f89-4e44-bfc9-97de87e22a5f",
+ "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,
+ "heightmax":31.55,
+ "elevmin":18.92,
+ "elevmax":21.51,
+ "bldgarea":1919.77,
+ "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_2":86735,
+ "Shape_Le_1":0.000523731674789,
+ "Shape_Ar_1":1.15741339082e-08,
+ "OBJECTID_3":86735,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86734,
+ "g_objectid":"943637",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360795",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379474190000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000682144",
+ "g_geomet_1":"2.2074e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000523731674789,
+ "Shape_Area":1.15741339082e-08,
+ "Shape_Le_3":0.000523732434854,
+ "Shape_Ar_2":1.15741339082e-08,
+ "building_height":15.775
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1045,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55203358890085,
+ 45.53554892419379
+ ],
+ [
+ -73.5520633654538,
+ 45.53555947324139
+ ],
+ [
+ -73.55212470731124,
+ 45.53558014415862
+ ],
+ [
+ -73.55219280307725,
+ 45.535485512097004
+ ],
+ [
+ -73.55218116674929,
+ 45.53548204970712
+ ],
+ [
+ -73.55218066672623,
+ 45.53548294992849
+ ],
+ [
+ -73.55210310289773,
+ 45.53545200425689
+ ],
+ [
+ -73.55203358890085,
+ 45.53554892419379
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5521266723299,
+ 45.53541914392864
+ ],
+ [
+ -73.55219486702134,
+ 45.53544704989174
+ ],
+ [
+ -73.55219766751019,
+ 45.53544364955508
+ ],
+ [
+ -73.55224406713184,
+ 45.53538425023326
+ ],
+ [
+ -73.55223926745008,
+ 45.53538234996577
+ ],
+ [
+ -73.55217259351222,
+ 45.5353551175949
+ ],
+ [
+ -73.5521266723299,
+ 45.53541914392864
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1045,
+ "ID_UEV":"01024501",
+ "CIVIQUE_DE":" 2044",
+ "CIVIQUE_FI":" 2044",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-2751-0-000-0000",
+ "SUPERFICIE":200,
+ "SUPERFIC_1":212,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000738294548994,
+ "OBJECTID":86736,
+ "Join_Count":2,
+ "TARGET_FID":86736,
+ "feature_id":"eb231f79-3f89-4e44-bfc9-97de87e22a5f",
+ "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,
+ "heightmax":31.55,
+ "elevmin":18.92,
+ "elevmax":21.51,
+ "bldgarea":1919.77,
+ "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_2":86736,
+ "Shape_Le_1":0.000738294548994,
+ "Shape_Ar_1":1.66063533361e-08,
+ "OBJECTID_3":86736,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86735,
+ "g_objectid":"943659",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360797",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379344820000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.00068215",
+ "g_geomet_1":"2.20746e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000738294548994,
+ "Shape_Area":1.66063533361e-08,
+ "Shape_Le_3":0.000738294900501,
+ "Shape_Ar_2":1.66063533361e-08,
+ "building_height":15.775
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1046,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56412372285337,
+ 45.51014041349958
+ ],
+ [
+ -73.56385186949004,
+ 45.51001534478263
+ ],
+ [
+ -73.56371586951362,
+ 45.51016144504495
+ ],
+ [
+ -73.56356606674242,
+ 45.51032243088577
+ ],
+ [
+ -73.56354009432174,
+ 45.510352095922784
+ ],
+ [
+ -73.56382022324655,
+ 45.51048205605234
+ ],
+ [
+ -73.56412372285337,
+ 45.51014041349958
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1046,
+ "ID_UEV":"01021622",
+ "CIVIQUE_DE":" 1",
+ "CIVIQUE_FI":" 19",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-81-1248-0-000-0000",
+ "SUPERFICIE":1209,
+ "SUPERFIC_1":3573,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00152396552367,
+ "OBJECTID":86739,
+ "Join_Count":1,
+ "TARGET_FID":86739,
+ "feature_id":"acb26695-afc6-44d8-9119-4ab31f0aec24",
+ "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":16.09,
+ "elevmin":23.38,
+ "elevmax":25.21,
+ "bldgarea":3553.78,
+ "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_2":86739,
+ "Shape_Le_1":0.00152396552367,
+ "Shape_Ar_1":1.3309879055e-07,
+ "OBJECTID_3":86739,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86738,
+ "g_objectid":"938300",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2160643",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994181124800000000",
+ "g_sup_tota":"1209.4",
+ "g_geometry":"0.00155725",
+ "g_geomet_1":"1.39436e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00152396552367,
+ "Shape_Area":1.3309879055e-07,
+ "Shape_Le_3":0.00152396519642,
+ "Shape_Ar_2":1.3309879055e-07,
+ "building_height":7.79
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1047,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55440116030715,
+ 45.53364755324228
+ ],
+ [
+ -73.55454816079083,
+ 45.53370989964245
+ ],
+ [
+ -73.55470910256487,
+ 45.53352226599008
+ ],
+ [
+ -73.55470707549298,
+ 45.53352140713753
+ ],
+ [
+ -73.5546057668645,
+ 45.53348174973326
+ ],
+ [
+ -73.55456626684159,
+ 45.533466249917794
+ ],
+ [
+ -73.55450226748749,
+ 45.533546949682275
+ ],
+ [
+ -73.55449118154463,
+ 45.53354260415815
+ ],
+ [
+ -73.55440116030715,
+ 45.53364755324228
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1047,
+ "ID_UEV":"01023658",
+ "CIVIQUE_DE":" 2110",
+ "CIVIQUE_FI":" 2120",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":11,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-3942-0-000-0000",
+ "SUPERFICIE":327,
+ "SUPERFIC_1":932,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000813477650859,
+ "OBJECTID":86742,
+ "Join_Count":1,
+ "TARGET_FID":86742,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":86742,
+ "Shape_Le_1":0.000813477650859,
+ "Shape_Ar_1":3.6300451592e-08,
+ "OBJECTID_3":86742,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86741,
+ "g_objectid":"941192",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425128",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357304780000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654119",
+ "g_geomet_1":"1.88091e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000813477650859,
+ "Shape_Area":3.6300451592e-08,
+ "Shape_Le_3":0.000813477282276,
+ "Shape_Ar_2":3.6300451592e-08,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1048,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55462165878437,
+ 45.53374107284253
+ ],
+ [
+ -73.55473190937197,
+ 45.53378783399164
+ ],
+ [
+ -73.55485054254035,
+ 45.533649523656884
+ ],
+ [
+ -73.55474666814607,
+ 45.53360725012479
+ ],
+ [
+ -73.55474656832132,
+ 45.53360725012479
+ ],
+ [
+ -73.55470636682722,
+ 45.53365794940514
+ ],
+ [
+ -73.5546963393864,
+ 45.53365400767661
+ ],
+ [
+ -73.55462165878437,
+ 45.53374107284253
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1048,
+ "ID_UEV":"01023663",
+ "CIVIQUE_DE":" 2128",
+ "CIVIQUE_FI":" 2128",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2016,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-2351-5-000-0000",
+ "SUPERFICIE":245,
+ "SUPERFIC_1":115,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00060440632394,
+ "OBJECTID":86743,
+ "Join_Count":1,
+ "TARGET_FID":86743,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":86743,
+ "Shape_Le_1":0.00060440632394,
+ "Shape_Ar_1":2.01046133899e-08,
+ "OBJECTID_3":86743,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86742,
+ "g_objectid":"941192",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425128",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357304780000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654119",
+ "g_geomet_1":"1.88091e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00060440632394,
+ "Shape_Area":2.01046133899e-08,
+ "Shape_Le_3":0.000604406941553,
+ "Shape_Ar_2":2.01046133899e-08,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1049,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55473190937197,
+ 45.53378783399164
+ ],
+ [
+ -73.55477837554344,
+ 45.53380754173496
+ ],
+ [
+ -73.55478566814591,
+ 45.53379894961213
+ ],
+ [
+ -73.5548414683809,
+ 45.53382234997177
+ ],
+ [
+ -73.55492046842672,
+ 45.533855349694925
+ ],
+ [
+ -73.5549618678178,
+ 45.533872649953125
+ ],
+ [
+ -73.55495496821905,
+ 45.53388064942273
+ ],
+ [
+ -73.55499022973716,
+ 45.53389569148327
+ ],
+ [
+ -73.55507474442575,
+ 45.53379715996126
+ ],
+ [
+ -73.55482486779526,
+ 45.53369235027204
+ ],
+ [
+ -73.55485556795195,
+ 45.533656249686466
+ ],
+ [
+ -73.55485846826554,
+ 45.53365274952507
+ ],
+ [
+ -73.55485054254035,
+ 45.533649523656884
+ ],
+ [
+ -73.55473190937197,
+ 45.53378783399164
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1049,
+ "ID_UEV":"01023665",
+ "CIVIQUE_DE":" 2140",
+ "CIVIQUE_FI":" 2150",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-0860-7-000-0000",
+ "SUPERFICIE":572,
+ "SUPERFIC_1":807,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000945124728625,
+ "OBJECTID":86744,
+ "Join_Count":1,
+ "TARGET_FID":86744,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":86744,
+ "Shape_Le_1":0.000945124728625,
+ "Shape_Ar_1":3.30838134021e-08,
+ "OBJECTID_3":86744,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86743,
+ "g_objectid":"941191",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425127",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357235150000000",
+ "g_sup_tota":"245.3",
+ "g_geometry":"0.000734044",
+ "g_geomet_1":"2.82188e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000945124728625,
+ "Shape_Area":3.30838134021e-08,
+ "Shape_Le_3":0.000945124846656,
+ "Shape_Ar_2":3.30838134021e-08,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1050,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56028245309457,
+ 45.53401328503537
+ ],
+ [
+ -73.56028966925467,
+ 45.53401625010016
+ ],
+ [
+ -73.56026816916253,
+ 45.53404224950051
+ ],
+ [
+ -73.56026836881202,
+ 45.53404235022458
+ ],
+ [
+ -73.56035826324509,
+ 45.534082402431224
+ ],
+ [
+ -73.56047062274288,
+ 45.53396205245705
+ ],
+ [
+ -73.56037217755579,
+ 45.53391649819813
+ ],
+ [
+ -73.56028245309457,
+ 45.53401328503537
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1050,
+ "ID_UEV":"01023163",
+ "CIVIQUE_DE":" 2509",
+ "CIVIQUE_FI":" 2515",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-8691-3-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":415,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000545276975711,
+ "OBJECTID":86745,
+ "Join_Count":1,
+ "TARGET_FID":86745,
+ "feature_id":"228f7c1f-91c7-40c1-8e1f-5aec2ebf83d7",
+ "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.51,
+ "heightmax":50.56,
+ "elevmin":31.57,
+ "elevmax":39.27,
+ "bldgarea":1377.3,
+ "comment":" ",
+ "OBJECTID_2":86745,
+ "Shape_Le_1":0.000545276975711,
+ "Shape_Ar_1":1.67191176316e-08,
+ "OBJECTID_3":86745,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86744,
+ "g_objectid":"941418",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425427",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307948670000000",
+ "g_sup_tota":"272.4",
+ "g_geometry":"0.000836562",
+ "g_geomet_1":"3.13644e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000545276975711,
+ "Shape_Area":1.67191176316e-08,
+ "Shape_Le_3":0.000545275613094,
+ "Shape_Ar_2":1.67191176316e-08,
+ "building_height":24.025000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1051,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5596787642854,
+ 45.53374928904874
+ ],
+ [
+ -73.55978663436753,
+ 45.53380031927961
+ ],
+ [
+ -73.55988330249426,
+ 45.5336964277982
+ ],
+ [
+ -73.55984436904424,
+ 45.53367805015219
+ ],
+ [
+ -73.55977535147314,
+ 45.5336454857009
+ ],
+ [
+ -73.5596787642854,
+ 45.53374928904874
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1051,
+ "ID_UEV":"01023172",
+ "CIVIQUE_DE":" 2411",
+ "CIVIQUE_FI":" 2421",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-3361-7-000-0000",
+ "SUPERFICIE":310,
+ "SUPERFIC_1":393,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000522396104688,
+ "OBJECTID":86746,
+ "Join_Count":1,
+ "TARGET_FID":86746,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":86746,
+ "Shape_Le_1":0.000522396104688,
+ "Shape_Ar_1":1.6133130705e-08,
+ "OBJECTID_3":86746,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86745,
+ "g_objectid":"941323",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425329",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317395720000000",
+ "g_sup_tota":"154.8",
+ "g_geometry":"0.000748271",
+ "g_geomet_1":"1.79573e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000522396104688,
+ "Shape_Area":1.6133130705e-08,
+ "Shape_Le_3":0.000522397159408,
+ "Shape_Ar_2":1.6133130705e-08,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1052,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5595683095517,
+ 45.53378401547023
+ ],
+ [
+ -73.55956906947881,
+ 45.53378435001803
+ ],
+ [
+ -73.55956916930357,
+ 45.53378435001803
+ ],
+ [
+ -73.55962646870842,
+ 45.53372454959858
+ ],
+ [
+ -73.5596787642854,
+ 45.53374928904874
+ ],
+ [
+ -73.55977535147314,
+ 45.5336454857009
+ ],
+ [
+ -73.55972104771003,
+ 45.53361986491513
+ ],
+ [
+ -73.5595683095517,
+ 45.53378401547023
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1052,
+ "ID_UEV":"01023174",
+ "CIVIQUE_DE":" 2405",
+ "CIVIQUE_FI":" 2409",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-3957-2-000-0000",
+ "SUPERFICIE":155,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000567655668359,
+ "OBJECTID":86747,
+ "Join_Count":1,
+ "TARGET_FID":86747,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":86747,
+ "Shape_Le_1":0.000567655668359,
+ "Shape_Ar_1":8.23030309268e-09,
+ "OBJECTID_3":86747,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86746,
+ "g_objectid":"941323",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425329",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317395720000000",
+ "g_sup_tota":"154.8",
+ "g_geometry":"0.000748271",
+ "g_geomet_1":"1.79573e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000567655668359,
+ "Shape_Area":8.23030309268e-09,
+ "Shape_Le_3":0.000567656334316,
+ "Shape_Ar_2":8.23030309268e-09,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1053,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55951310017129,
+ 45.533759821908546
+ ],
+ [
+ -73.5595683095517,
+ 45.53378401547023
+ ],
+ [
+ -73.55972104771003,
+ 45.53361986491513
+ ],
+ [
+ -73.55966703802522,
+ 45.53359438172563
+ ],
+ [
+ -73.55951310017129,
+ 45.533759821908546
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1053,
+ "ID_UEV":"01023177",
+ "CIVIQUE_DE":" 2399",
+ "CIVIQUE_FI":" 2403",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-4354-1-000-0000",
+ "SUPERFICIE":155,
+ "SUPERFIC_1":232,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000570198503547,
+ "OBJECTID":86748,
+ "Join_Count":1,
+ "TARGET_FID":86748,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":86748,
+ "Shape_Le_1":0.000570198503547,
+ "Shape_Ar_1":1.28080981903e-08,
+ "OBJECTID_3":86748,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86747,
+ "g_objectid":"941325",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425331",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317485080000000",
+ "g_sup_tota":"233.7",
+ "g_geometry":"0.000808686",
+ "g_geomet_1":"2.69589e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000570198503547,
+ "Shape_Area":1.28080981903e-08,
+ "Shape_Le_3":0.000570197607165,
+ "Shape_Ar_2":1.28080981903e-08,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1054,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55948871415468,
+ 45.53365995669194
+ ],
+ [
+ -73.55953286906849,
+ 45.533678949474236
+ ],
+ [
+ -73.5595155688103,
+ 45.53369874984772
+ ],
+ [
+ -73.55949816872734,
+ 45.53369124950186
+ ],
+ [
+ -73.55949776942836,
+ 45.533691049852365
+ ],
+ [
+ -73.55945816868139,
+ 45.533735749755344
+ ],
+ [
+ -73.55951310017129,
+ 45.533759821908546
+ ],
+ [
+ -73.55966703802522,
+ 45.53359438172563
+ ],
+ [
+ -73.55958551897837,
+ 45.53355592041969
+ ],
+ [
+ -73.55948871415468,
+ 45.53365995669194
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1054,
+ "ID_UEV":"01023178",
+ "CIVIQUE_DE":" 2393",
+ "CIVIQUE_FI":" 2397",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-4850-8-000-0000",
+ "SUPERFICIE":234,
+ "SUPERFIC_1":398,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000671671919286,
+ "OBJECTID":86749,
+ "Join_Count":1,
+ "TARGET_FID":86749,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":86749,
+ "Shape_Le_1":0.000671671919286,
+ "Shape_Ar_1":1.65935647103e-08,
+ "OBJECTID_3":86749,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86748,
+ "g_objectid":"941325",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425331",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317485080000000",
+ "g_sup_tota":"233.7",
+ "g_geometry":"0.000808686",
+ "g_geomet_1":"2.69589e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000671671919286,
+ "Shape_Area":1.65935647103e-08,
+ "Shape_Le_3":0.000671672853937,
+ "Shape_Ar_2":1.65935647103e-08,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1055,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55026170953211,
+ 45.528482661296074
+ ],
+ [
+ -73.55010696588562,
+ 45.52840674862284
+ ],
+ [
+ -73.55003878288537,
+ 45.528475417257
+ ],
+ [
+ -73.55019700510954,
+ 45.528549837954955
+ ],
+ [
+ -73.55026170953211,
+ 45.528482661296074
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1055,
+ "ID_UEV":"01018624",
+ "CIVIQUE_DE":" 2315",
+ "CIVIQUE_FI":" 2315",
+ "NOM_RUE":"rue Olivier-Robert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-81-8273-5-000-0000",
+ "SUPERFICIE":162,
+ "SUPERFIC_1":365,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000537249859076,
+ "OBJECTID":86750,
+ "Join_Count":1,
+ "TARGET_FID":86750,
+ "feature_id":"0870e441-7ea0-4af5-be51-22b3d239291d",
+ "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":3.13,
+ "heightmax":25.91,
+ "elevmin":18.21,
+ "elevmax":18.85,
+ "bldgarea":145.38,
+ "comment":" ",
+ "OBJECTID_2":86750,
+ "Shape_Le_1":0.000537249859076,
+ "Shape_Ar_1":1.56230079524e-08,
+ "OBJECTID_3":86750,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86749,
+ "g_objectid":"940801",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424455",
+ "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":"66023004381827350000000",
+ "g_sup_tota":"162.4",
+ "g_geometry":"0.000583644",
+ "g_geomet_1":"1.87465e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000537249859076,
+ "Shape_Area":1.56230079524e-08,
+ "Shape_Le_3":0.000537251307857,
+ "Shape_Ar_2":1.56230079524e-08,
+ "building_height":11.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1056,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54996815193051,
+ 45.528574186200025
+ ],
+ [
+ -73.55013644026636,
+ 45.52865334272788
+ ],
+ [
+ -73.55018256649409,
+ 45.528606149004865
+ ],
+ [
+ -73.55002156626412,
+ 45.528528248829915
+ ],
+ [
+ -73.55001546616268,
+ 45.52852534851632
+ ],
+ [
+ -73.54996815193051,
+ 45.528574186200025
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1056,
+ "ID_UEV":"01018626",
+ "CIVIQUE_DE":" 2325",
+ "CIVIQUE_FI":" 2329",
+ "NOM_RUE":"rue Olivier-Robert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-81-8687-6-000-0000",
+ "SUPERFICIE":190,
+ "SUPERFIC_1":333,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000505574121271,
+ "OBJECTID":86751,
+ "Join_Count":1,
+ "TARGET_FID":86751,
+ "feature_id":"4169cfd2-1f17-4dfc-aaa2-7d455ddc776c",
+ "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.51,
+ "heightmax":32.13,
+ "elevmin":18.55,
+ "elevmax":20.51,
+ "bldgarea":943.2,
+ "comment":" ",
+ "OBJECTID_2":86751,
+ "Shape_Le_1":0.000505574121271,
+ "Shape_Ar_1":1.17926517793e-08,
+ "OBJECTID_3":86751,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86750,
+ "g_objectid":"940788",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424436",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004381919670000000",
+ "g_sup_tota":"303.7",
+ "g_geometry":"0.000837846",
+ "g_geomet_1":"3.53042e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000505574121271,
+ "Shape_Area":1.17926517793e-08,
+ "Shape_Le_3":0.000505575347385,
+ "Shape_Ar_2":1.17926517793e-08,
+ "building_height":14.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1057,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56338586149016,
+ 45.51053354223948
+ ],
+ [
+ -73.56356029579287,
+ 45.510613156522254
+ ],
+ [
+ -73.56356902101535,
+ 45.51060318124212
+ ],
+ [
+ -73.56360379779888,
+ 45.510563425811746
+ ],
+ [
+ -73.5636027995514,
+ 45.51056296985547
+ ],
+ [
+ -73.56365187555545,
+ 45.510506866548944
+ ],
+ [
+ -73.56347906902566,
+ 45.510427844919406
+ ],
+ [
+ -73.56347576941307,
+ 45.51042654449972
+ ],
+ [
+ -73.56338586149016,
+ 45.51053354223948
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1057,
+ "ID_UEV":"01021624",
+ "CIVIQUE_DE":" 55",
+ "CIVIQUE_FI":" 57",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":6,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1916,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Auberge ou g\u00c3\u00aete touristique (H\u00c3\u00b4tel \u00c3\u00a0 caract\u00c3\u00a8re familial, d'au plus 3 \u00c3\u00a9tages en hauteur de b\u00c3\u00a2timent)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-81-3679-4-000-0000",
+ "SUPERFICIE":239,
+ "SUPERFIC_1":1370,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00066677420717,
+ "OBJECTID":86752,
+ "Join_Count":1,
+ "TARGET_FID":86752,
+ "feature_id":"dae7dd64-9fd6-4bb7-a5b2-6d3e752b3f46",
+ "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.53,
+ "heightmax":27.45,
+ "elevmin":24.68,
+ "elevmax":26.1,
+ "bldgarea":3547.96,
+ "comment":" ",
+ "OBJECTID_2":86752,
+ "Shape_Le_1":0.00066677420717,
+ "Shape_Ar_1":2.5961650453e-08,
+ "OBJECTID_3":86752,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86751,
+ "g_objectid":"1839503",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Restauration et h\u00c3\u00a9bergement",
+ "g_no_lot":"2160668",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5833",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994181367940000000",
+ "g_sup_tota":"238.9",
+ "g_geometry":"0.000684949",
+ "g_geomet_1":"2.74548e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00066677420717,
+ "Shape_Area":2.5961650453e-08,
+ "Shape_Le_3":0.000666773229687,
+ "Shape_Ar_2":2.5961650453e-08,
+ "building_height":13.459999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1058,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55525927811503,
+ 45.52939217715755
+ ],
+ [
+ -73.55534957634372,
+ 45.52944458065317
+ ],
+ [
+ -73.55536485312732,
+ 45.52945065467427
+ ],
+ [
+ -73.55541426727646,
+ 45.52940214884039
+ ],
+ [
+ -73.5554176667138,
+ 45.5293988492278
+ ],
+ [
+ -73.55539206751175,
+ 45.529386748849674
+ ],
+ [
+ -73.55540684786958,
+ 45.52937127961116
+ ],
+ [
+ -73.55539935471829,
+ 45.52936405895445
+ ],
+ [
+ -73.55539039027613,
+ 45.52935541646959
+ ],
+ [
+ -73.55532501406,
+ 45.52932631440818
+ ],
+ [
+ -73.55525927811503,
+ 45.52939217715755
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1058,
+ "ID_UEV":"01018367",
+ "CIVIQUE_DE":" 2209",
+ "CIVIQUE_FI":" 2213",
+ "NOM_RUE":"rue Coupal (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-42-7478-3-000-0000",
+ "SUPERFICIE":174,
+ "SUPERFIC_1":165,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000432007845823,
+ "OBJECTID":86754,
+ "Join_Count":1,
+ "TARGET_FID":86754,
+ "feature_id":"27fedf68-4ae9-480c-bc9b-60e9a84a5396",
+ "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.45,
+ "heightmax":34.81,
+ "elevmin":18.8,
+ "elevmax":21.06,
+ "bldgarea":1672.46,
+ "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_2":86754,
+ "Shape_Le_1":0.000432007845823,
+ "Shape_Ar_1":1.07156816783e-08,
+ "OBJECTID_3":86754,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86753,
+ "g_objectid":"940890",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424596",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004342747830000000",
+ "g_sup_tota":"174",
+ "g_geometry":"0.000641373",
+ "g_geomet_1":"2.00467e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000432007845823,
+ "Shape_Area":1.07156816783e-08,
+ "Shape_Le_3":0.000432006602178,
+ "Shape_Ar_2":1.07156816783e-08,
+ "building_height":16.18
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1059,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56326078108202,
+ 45.51068239172929
+ ],
+ [
+ -73.56343602927117,
+ 45.51075764879675
+ ],
+ [
+ -73.56348111318466,
+ 45.51070372904415
+ ],
+ [
+ -73.56330603226942,
+ 45.51062854302314
+ ],
+ [
+ -73.56326078108202,
+ 45.51068239172929
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1059,
+ "ID_UEV":"01021628",
+ "CIVIQUE_DE":" 67",
+ "CIVIQUE_FI":" 69",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1902,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-81-4898-9-000-0000",
+ "SUPERFICIE":117,
+ "SUPERFIC_1":340,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000521887849174,
+ "OBJECTID":86756,
+ "Join_Count":1,
+ "TARGET_FID":86756,
+ "feature_id":"dae7dd64-9fd6-4bb7-a5b2-6d3e752b3f46",
+ "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.53,
+ "heightmax":27.45,
+ "elevmin":24.68,
+ "elevmax":26.1,
+ "bldgarea":3547.96,
+ "comment":" ",
+ "OBJECTID_2":86756,
+ "Shape_Le_1":0.000521887849174,
+ "Shape_Ar_1":1.28362185991e-08,
+ "OBJECTID_3":86756,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86755,
+ "g_objectid":"943048",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160672",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994182520540000000",
+ "g_sup_tota":"141.6",
+ "g_geometry":"0.000571732",
+ "g_geomet_1":"1.65858e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000521887849174,
+ "Shape_Area":1.28362185991e-08,
+ "Shape_Le_3":0.000521887630348,
+ "Shape_Ar_2":1.28362185991e-08,
+ "building_height":13.459999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1060,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55295132726378,
+ 45.530454511217016
+ ],
+ [
+ -73.55304894777257,
+ 45.53049845299151
+ ],
+ [
+ -73.55311523680058,
+ 45.53042997861092
+ ],
+ [
+ -73.55301247756563,
+ 45.530382836149265
+ ],
+ [
+ -73.55295132726378,
+ 45.530454511217016
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1060,
+ "ID_UEV":"01018474",
+ "CIVIQUE_DE":" 2348",
+ "CIVIQUE_FI":" 2348",
+ "NOM_RUE":"avenue Lalonde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-6190-1-000-0000",
+ "SUPERFICIE":163,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000409633010878,
+ "OBJECTID":86764,
+ "Join_Count":1,
+ "TARGET_FID":86764,
+ "feature_id":"e27363a1-ca8f-4194-a825-66f1a6dad90b",
+ "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":30.57,
+ "elevmin":16.92,
+ "elevmax":19.79,
+ "bldgarea":1403.12,
+ "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_2":86764,
+ "Shape_Le_1":0.000409633010878,
+ "Shape_Ar_1":9.92274452279e-09,
+ "OBJECTID_3":86764,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86763,
+ "g_objectid":"940632",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424175",
+ "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":"66023004363659770000000",
+ "g_sup_tota":"113.3",
+ "g_geometry":"0.000551259",
+ "g_geomet_1":"1.30511e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000409633010878,
+ "Shape_Area":9.92274452279e-09,
+ "Shape_Le_3":0.000409632090848,
+ "Shape_Ar_2":9.92274452279e-09,
+ "building_height":14.025
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1061,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55286704639892,
+ 45.530553299045806
+ ],
+ [
+ -73.55295675647098,
+ 45.53059368040432
+ ],
+ [
+ -73.5530028530211,
+ 45.530546066697916
+ ],
+ [
+ -73.55290918683136,
+ 45.53050390468175
+ ],
+ [
+ -73.55286704639892,
+ 45.530553299045806
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1061,
+ "ID_UEV":"01018476",
+ "CIVIQUE_DE":" 2360",
+ "CIVIQUE_FI":" 2360",
+ "NOM_RUE":"avenue Lalonde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-6902-7-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":128,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000332297918101,
+ "OBJECTID":86765,
+ "Join_Count":1,
+ "TARGET_FID":86765,
+ "feature_id":"e27363a1-ca8f-4194-a825-66f1a6dad90b",
+ "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":30.57,
+ "elevmin":16.92,
+ "elevmax":19.79,
+ "bldgarea":1403.12,
+ "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_2":86765,
+ "Shape_Le_1":0.000332297918101,
+ "Shape_Ar_1":6.26811411913e-09,
+ "OBJECTID_3":86765,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86764,
+ "g_objectid":"940632",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424175",
+ "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":"66023004363659770000000",
+ "g_sup_tota":"113.3",
+ "g_geometry":"0.000551259",
+ "g_geomet_1":"1.30511e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000332297918101,
+ "Shape_Area":6.26811411913e-09,
+ "Shape_Le_3":0.000332297284901,
+ "Shape_Ar_2":6.26811411913e-09,
+ "building_height":14.025
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1062,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5576363688452,
+ 45.50669641475803
+ ],
+ [
+ -73.55781579528457,
+ 45.506778410445584
+ ],
+ [
+ -73.5579092159594,
+ 45.50667719894387
+ ],
+ [
+ -73.55772796749355,
+ 45.506595744648195
+ ],
+ [
+ -73.5576363688452,
+ 45.50669641475803
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1062,
+ "ID_UEV":"01058884",
+ "CIVIQUE_DE":" 11",
+ "CIVIQUE_FI":" 17",
+ "NOM_RUE":"rue Saint-Antoine Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1850,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-27-8652-9-000-0000",
+ "SUPERFICIE":266,
+ "SUPERFIC_1":454,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000669826530265,
+ "OBJECTID":86771,
+ "Join_Count":1,
+ "TARGET_FID":86771,
+ "feature_id":"2c568911-3697-4d60-86ca-0131a07cc633",
+ "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.97,
+ "heightmax":26.01,
+ "elevmin":14.79,
+ "elevmax":15.67,
+ "bldgarea":1474.99,
+ "comment":" ",
+ "OBJECTID_2":86771,
+ "Shape_Le_1":0.000669826530265,
+ "Shape_Ar_1":2.57637864768e-08,
+ "OBJECTID_3":86771,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86770,
+ "g_objectid":"939537",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180849",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004027956780000000",
+ "g_sup_tota":"396.1",
+ "g_geometry":"0.000858362",
+ "g_geomet_1":"4.56094e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000669826530265,
+ "Shape_Area":2.57637864768e-08,
+ "Shape_Le_3":0.000669826364792,
+ "Shape_Ar_2":2.57637864768e-08,
+ "building_height":12.520000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1063,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56519861594522,
+ 45.51537449029079
+ ],
+ [
+ -73.56530267110324,
+ 45.51539084176423
+ ],
+ [
+ -73.5653419408997,
+ 45.51526838287986
+ ],
+ [
+ -73.56521821127328,
+ 45.51523904249811
+ ],
+ [
+ -73.56520315932019,
+ 45.51528598171298
+ ],
+ [
+ -73.56518727999082,
+ 45.51528319291532
+ ],
+ [
+ -73.56518267006602,
+ 45.51529284623816
+ ],
+ [
+ -73.56518247041652,
+ 45.51529284623816
+ ],
+ [
+ -73.56511725967565,
+ 45.515360155996696
+ ],
+ [
+ -73.56519861594522,
+ 45.51537449029079
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1063,
+ "ID_UEV":"01021733",
+ "CIVIQUE_DE":" 336",
+ "CIVIQUE_FI":" 344",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-77-0312-3-000-0000",
+ "SUPERFICIE":210,
+ "SUPERFIC_1":522,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000613733954546,
+ "OBJECTID":86772,
+ "Join_Count":1,
+ "TARGET_FID":86772,
+ "feature_id":"36e64f7a-bd36-4f21-b0e7-ea3e7953f79d",
+ "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":21.99,
+ "elevmin":23.69,
+ "elevmax":26.31,
+ "bldgarea":3784.88,
+ "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_2":86772,
+ "Shape_Le_1":0.000613733954546,
+ "Shape_Ar_1":2.0106441636e-08,
+ "OBJECTID_3":86772,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86771,
+ "g_objectid":"943147",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161370",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994177222300000000",
+ "g_sup_tota":"394.7",
+ "g_geometry":"0.00127652",
+ "g_geomet_1":"4.62324e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000613733954546,
+ "Shape_Area":2.0106441636e-08,
+ "Shape_Le_3":0.00061373462793,
+ "Shape_Ar_2":2.0106441636e-08,
+ "building_height":10.739999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1064,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54626866388958,
+ 45.530082261137736
+ ],
+ [
+ -73.54623676403727,
+ 45.53006844845043
+ ],
+ [
+ -73.54626446405561,
+ 45.53003704862119
+ ],
+ [
+ -73.54622536423102,
+ 45.53002004873655
+ ],
+ [
+ -73.54622226426793,
+ 45.53002344907321
+ ],
+ [
+ -73.54612084052621,
+ 45.53013701006526
+ ],
+ [
+ -73.54619452288077,
+ 45.53016824351992
+ ],
+ [
+ -73.54626866388958,
+ 45.530082261137736
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1064,
+ "ID_UEV":"01018995",
+ "CIVIQUE_DE":" 1422",
+ "CIVIQUE_FI":" 1426",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-13-8849-3-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":260,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000469693532826,
+ "OBJECTID":86773,
+ "Join_Count":1,
+ "TARGET_FID":86773,
+ "feature_id":"42d18462-3f68-477c-a1eb-dbacfbfd7f0a",
+ "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.14,
+ "heightmax":10.94,
+ "elevmin":19.31,
+ "elevmax":19.92,
+ "bldgarea":554.71,
+ "comment":" ",
+ "OBJECTID_2":86773,
+ "Shape_Le_1":0.000469693532826,
+ "Shape_Ar_1":1.02687990375e-08,
+ "OBJECTID_3":86773,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86772,
+ "g_objectid":"941258",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425229",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014313884930000000",
+ "g_sup_tota":"170.9",
+ "g_geometry":"0.000669265",
+ "g_geomet_1":"2.02205e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000469693532826,
+ "Shape_Area":1.02687990375e-08,
+ "Shape_Le_3":0.000469692124249,
+ "Shape_Ar_2":1.02687990375e-08,
+ "building_height":4.8999999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1065,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56631341015759,
+ 45.51531348388047
+ ],
+ [
+ -73.56634997029674,
+ 45.51532244562466
+ ],
+ [
+ -73.56632306977569,
+ 45.515376945439975
+ ],
+ [
+ -73.56632306977569,
+ 45.51537704616405
+ ],
+ [
+ -73.5663617172413,
+ 45.515391579208305
+ ],
+ [
+ -73.56649095881255,
+ 45.51525253592609
+ ],
+ [
+ -73.56648127041615,
+ 45.515248145435855
+ ],
+ [
+ -73.5664056185463,
+ 45.51521396220489
+ ],
+ [
+ -73.56631341015759,
+ 45.51531348388047
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56626457786982,
+ 45.51536618774966
+ ],
+ [
+ -73.5662802701402,
+ 45.51537004584124
+ ],
+ [
+ -73.56630226935609,
+ 45.51532550781623
+ ],
+ [
+ -73.56626457786982,
+ 45.51536618774966
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1065,
+ "ID_UEV":"01021101",
+ "CIVIQUE_DE":" 2037",
+ "CIVIQUE_FI":" 2041",
+ "NOM_RUE":"rue Sanguinet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-67-1311-5-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":537,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000680258563069,
+ "OBJECTID":86774,
+ "Join_Count":1,
+ "TARGET_FID":86774,
+ "feature_id":"8e1da87e-3f79-40b6-947c-b870b1e48e84",
+ "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":25.2,
+ "elevmin":25.38,
+ "elevmax":42.64,
+ "bldgarea":8192.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_2":86774,
+ "Shape_Le_1":0.000680258563069,
+ "Shape_Ar_1":1.48631182753e-08,
+ "OBJECTID_3":86774,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86773,
+ "g_objectid":"943091",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161248",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994167071580000000",
+ "g_sup_tota":"139.4",
+ "g_geometry":"0.000614208",
+ "g_geomet_1":"1.60781e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000680258563069,
+ "Shape_Area":1.48631182753e-08,
+ "Shape_Le_3":0.000680259720186,
+ "Shape_Ar_2":1.48631182753e-08,
+ "building_height":12.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1066,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55897756468471,
+ 45.532011371677754
+ ],
+ [
+ -73.55901056890448,
+ 45.53197484841082
+ ],
+ [
+ -73.55894436890934,
+ 45.531945348849064
+ ],
+ [
+ -73.55895716896002,
+ 45.53193114855396
+ ],
+ [
+ -73.55895686948578,
+ 45.53193104872921
+ ],
+ [
+ -73.55889266868355,
+ 45.53190234866475
+ ],
+ [
+ -73.55878046926509,
+ 45.532026448811855
+ ],
+ [
+ -73.558837869394,
+ 45.53205214873797
+ ],
+ [
+ -73.55885256881284,
+ 45.532058649037715
+ ],
+ [
+ -73.5589098727143,
+ 45.532084269823486
+ ],
+ [
+ -73.55897756468471,
+ 45.532011371677754
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55896381854723,
+ 45.531873426467754
+ ],
+ [
+ -73.55895936870175,
+ 45.53187804898307
+ ],
+ [
+ -73.55905782737868,
+ 45.53192493783591
+ ],
+ [
+ -73.55906316935163,
+ 45.531919185772104
+ ],
+ [
+ -73.55896381854723,
+ 45.531873426467754
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1066,
+ "ID_UEV":"01022842",
+ "CIVIQUE_DE":" 2250",
+ "CIVIQUE_FI":" 2260",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-15-9863-0-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":520,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000852674878096,
+ "OBJECTID":86776,
+ "Join_Count":2,
+ "TARGET_FID":86776,
+ "feature_id":"e43213c6-2a8d-4d10-bb6c-a89bfec37f83",
+ "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.51,
+ "heightmax":39.78,
+ "elevmin":26.19,
+ "elevmax":27.97,
+ "bldgarea":481.13,
+ "comment":" ",
+ "OBJECTID_2":86776,
+ "Shape_Le_1":0.000852674878096,
+ "Shape_Ar_1":2.21286180438e-08,
+ "OBJECTID_3":86776,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86775,
+ "g_objectid":"941456",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425511",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"18",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004315734270000000",
+ "g_sup_tota":"1144.8",
+ "g_geometry":"0.0015323",
+ "g_geomet_1":"1.32032e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000852674878096,
+ "Shape_Area":2.21286180438e-08,
+ "Shape_Le_3":0.000852676287411,
+ "Shape_Ar_2":2.21286180438e-08,
+ "building_height":18.635
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1067,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55920154893418,
+ 45.53202489478336
+ ],
+ [
+ -73.55907476880738,
+ 45.531968648484636
+ ],
+ [
+ -73.55895536941661,
+ 45.53210164922203
+ ],
+ [
+ -73.55897646931045,
+ 45.53211104893605
+ ],
+ [
+ -73.55897237739515,
+ 45.53211562828391
+ ],
+ [
+ -73.55907378135177,
+ 45.5321621601059
+ ],
+ [
+ -73.55920154893418,
+ 45.53202489478336
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5589098727143,
+ 45.532084269823486
+ ],
+ [
+ -73.55891116953669,
+ 45.532084848986884
+ ],
+ [
+ -73.55897756468471,
+ 45.532011371677754
+ ],
+ [
+ -73.5589098727143,
+ 45.532084269823486
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55905782737868,
+ 45.53192493783591
+ ],
+ [
+ -73.55907296926397,
+ 45.53193214860007
+ ],
+ [
+ -73.55909382993815,
+ 45.53191047403944
+ ],
+ [
+ -73.55907800187013,
+ 45.531903211114596
+ ],
+ [
+ -73.55906316935163,
+ 45.531919185772104
+ ],
+ [
+ -73.55905782737868,
+ 45.53192493783591
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1067,
+ "ID_UEV":"01022844",
+ "CIVIQUE_DE":" 2262",
+ "CIVIQUE_FI":" 2272",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-15-8570-2-000-0000",
+ "SUPERFICIE":376,
+ "SUPERFIC_1":580,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000939617250919,
+ "OBJECTID":86777,
+ "Join_Count":3,
+ "TARGET_FID":86777,
+ "feature_id":"e43213c6-2a8d-4d10-bb6c-a89bfec37f83",
+ "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.51,
+ "heightmax":39.78,
+ "elevmin":26.19,
+ "elevmax":27.97,
+ "bldgarea":481.13,
+ "comment":" ",
+ "OBJECTID_2":86777,
+ "Shape_Le_1":0.000939617250919,
+ "Shape_Ar_1":2.45782207599e-08,
+ "OBJECTID_3":86777,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86776,
+ "g_objectid":"940482",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423964",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004315747480000000",
+ "g_sup_tota":"236.7",
+ "g_geometry":"0.00081221",
+ "g_geomet_1":"2.72856e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000939617250919,
+ "Shape_Area":2.45782207599e-08,
+ "Shape_Le_3":0.000939616752337,
+ "Shape_Ar_2":2.45782207599e-08,
+ "building_height":18.635
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1068,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55025436117168,
+ 45.52964588849725
+ ],
+ [
+ -73.55032708125164,
+ 45.529678305459726
+ ],
+ [
+ -73.55045000148823,
+ 45.52954430917283
+ ],
+ [
+ -73.55043376602733,
+ 45.5295550488767
+ ],
+ [
+ -73.55041636594437,
+ 45.529539549061234
+ ],
+ [
+ -73.5503811664795,
+ 45.52956154917645
+ ],
+ [
+ -73.55035287200928,
+ 45.52953869020868
+ ],
+ [
+ -73.55025436117168,
+ 45.52964588849725
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1068,
+ "ID_UEV":"01018530",
+ "CIVIQUE_DE":" 1662",
+ "CIVIQUE_FI":" 1666",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-82-6495-4-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000527695608243,
+ "OBJECTID":86778,
+ "Join_Count":1,
+ "TARGET_FID":86778,
+ "feature_id":"be07657b-abdc-4b55-b09c-a26bc84bda09",
+ "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.76,
+ "heightmax":33.77,
+ "elevmin":19.71,
+ "elevmax":21.09,
+ "bldgarea":883.13,
+ "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_2":86778,
+ "Shape_Le_1":0.000527695608243,
+ "Shape_Ar_1":1.15511700673e-08,
+ "OBJECTID_3":86778,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86777,
+ "g_objectid":"940593",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424122",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004382649540000000",
+ "g_sup_tota":"178.4",
+ "g_geometry":"0.000704822",
+ "g_geomet_1":"2.0584e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000527695608243,
+ "Shape_Area":1.15511700673e-08,
+ "Shape_Le_3":0.000527694779702,
+ "Shape_Ar_2":1.15511700673e-08,
+ "building_height":15.505000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1069,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5504007555123,
+ 45.529709736765234
+ ],
+ [
+ -73.55047524006213,
+ 45.52974028043989
+ ],
+ [
+ -73.55056705454777,
+ 45.52963977490598
+ ],
+ [
+ -73.55049491992646,
+ 45.52960687410825
+ ],
+ [
+ -73.5504007555123,
+ 45.529709736765234
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1069,
+ "ID_UEV":"01018532",
+ "CIVIQUE_DE":" 1674",
+ "CIVIQUE_FI":" 1678",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-5302-1-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":246,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000435372449493,
+ "OBJECTID":86779,
+ "Join_Count":1,
+ "TARGET_FID":86779,
+ "feature_id":"be07657b-abdc-4b55-b09c-a26bc84bda09",
+ "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.76,
+ "heightmax":33.77,
+ "elevmin":19.71,
+ "elevmax":21.09,
+ "bldgarea":883.13,
+ "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_2":86779,
+ "Shape_Le_1":0.000435372449493,
+ "Shape_Ar_1":1.04042992643e-08,
+ "OBJECTID_3":86779,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86778,
+ "g_objectid":"940582",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424103",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383470560000000",
+ "g_sup_tota":"168.1",
+ "g_geometry":"0.000690068",
+ "g_geomet_1":"1.94066e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000435372449493,
+ "Shape_Area":1.04042992643e-08,
+ "Shape_Le_3":0.000435371725782,
+ "Shape_Ar_2":1.04042992643e-08,
+ "building_height":15.505000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1070,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55054630988614,
+ 45.529769424769434
+ ],
+ [
+ -73.5506207512685,
+ 45.52979995225628
+ ],
+ [
+ -73.55071660191149,
+ 45.52969481791181
+ ],
+ [
+ -73.55076494856537,
+ 45.529641792984656
+ ],
+ [
+ -73.55072656639976,
+ 45.529624249010176
+ ],
+ [
+ -73.55066916627085,
+ 45.5296863489961
+ ],
+ [
+ -73.55063595250904,
+ 45.52967119991624
+ ],
+ [
+ -73.55054630988614,
+ 45.529769424769434
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1070,
+ "ID_UEV":"01018534",
+ "CIVIQUE_DE":" 1686",
+ "CIVIQUE_FI":" 1690",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-4209-9-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":250,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000590735365461,
+ "OBJECTID":86780,
+ "Join_Count":1,
+ "TARGET_FID":86780,
+ "feature_id":"be07657b-abdc-4b55-b09c-a26bc84bda09",
+ "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.76,
+ "heightmax":33.77,
+ "elevmin":19.71,
+ "elevmax":21.09,
+ "bldgarea":883.13,
+ "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_2":86780,
+ "Shape_Le_1":0.000590735365461,
+ "Shape_Ar_1":1.33346499788e-08,
+ "OBJECTID_3":86780,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86779,
+ "g_objectid":"940582",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424103",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383470560000000",
+ "g_sup_tota":"168.1",
+ "g_geometry":"0.000690068",
+ "g_geomet_1":"1.94066e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000590735365461,
+ "Shape_Area":1.33346499788e-08,
+ "Shape_Le_3":0.000590736649893,
+ "Shape_Ar_2":1.33346499788e-08,
+ "building_height":15.505000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1071,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55944404123136,
+ 45.53230541851055
+ ],
+ [
+ -73.55951856894865,
+ 45.53233994887983
+ ],
+ [
+ -73.55953195985391,
+ 45.53234615779924
+ ],
+ [
+ -73.5596438301205,
+ 45.53222572958405
+ ],
+ [
+ -73.55955548072271,
+ 45.53218538599706
+ ],
+ [
+ -73.55944404123136,
+ 45.53230541851055
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55957940628642,
+ 45.53215962221908
+ ],
+ [
+ -73.55963326938172,
+ 45.532188248539136
+ ],
+ [
+ -73.55967346907718,
+ 45.53215094915727
+ ],
+ [
+ -73.55961956910967,
+ 45.532122249092815
+ ],
+ [
+ -73.55958080743017,
+ 45.5321581257472
+ ],
+ [
+ -73.55957940628642,
+ 45.53215962221908
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1071,
+ "ID_UEV":"01022854",
+ "CIVIQUE_DE":" 2308",
+ "CIVIQUE_FI":" 2316",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-15-4793-4-000-0000",
+ "SUPERFICIE":228,
+ "SUPERFIC_1":384,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000754000666216,
+ "OBJECTID":86783,
+ "Join_Count":2,
+ "TARGET_FID":86783,
+ "feature_id":"cc3da53d-7edb-4a23-8301-e1f5be4edcbb",
+ "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.53,
+ "heightmax":32.38,
+ "elevmin":28.21,
+ "elevmax":29.1,
+ "bldgarea":27.5,
+ "comment":" ",
+ "OBJECTID_2":86783,
+ "Shape_Le_1":0.000754000666216,
+ "Shape_Ar_1":1.82936655543e-08,
+ "OBJECTID_3":86783,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86782,
+ "g_objectid":"940489",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423974",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004315409700000000",
+ "g_sup_tota":"236.7",
+ "g_geometry":"0.000770217",
+ "g_geomet_1":"2.72425e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000754000666216,
+ "Shape_Area":1.82936655543e-08,
+ "Shape_Le_3":0.000753999406652,
+ "Shape_Ar_2":1.82936655543e-08,
+ "building_height":14.925
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1072,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55802192529346,
+ 45.510063233681585
+ ],
+ [
+ -73.55804866753382,
+ 45.51007594559871
+ ],
+ [
+ -73.55804856680976,
+ 45.51007604542345
+ ],
+ [
+ -73.55808836720622,
+ 45.51008514566324
+ ],
+ [
+ -73.5580677988117,
+ 45.51012825646416
+ ],
+ [
+ -73.55819421471308,
+ 45.5099951675932
+ ],
+ [
+ -73.55811860780935,
+ 45.5099612235819
+ ],
+ [
+ -73.55802192529346,
+ 45.510063233681585
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1072,
+ "ID_UEV":"01020899",
+ "CIVIQUE_DE":" 999",
+ "CIVIQUE_FI":" 1001",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-21-6026-9-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":245,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000525327374759,
+ "OBJECTID":86785,
+ "Join_Count":1,
+ "TARGET_FID":86785,
+ "feature_id":"836463c5-05bc-4b24-bab9-5368caaaf25b",
+ "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.55,
+ "heightmax":32.26,
+ "elevmin":14.7,
+ "elevmax":17.93,
+ "bldgarea":1063.09,
+ "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_2":86785,
+ "Shape_Le_1":0.000525327374759,
+ "Shape_Ar_1":1.11341065507e-08,
+ "OBJECTID_3":86785,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86784,
+ "g_objectid":"939545",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180866",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004121542960000000",
+ "g_sup_tota":"155.1",
+ "g_geometry":"0.000624962",
+ "g_geomet_1":"1.77831e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000525327374759,
+ "Shape_Area":1.11341065507e-08,
+ "Shape_Le_3":0.000525327870583,
+ "Shape_Ar_2":1.11341065507e-08,
+ "building_height":15.854999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1073,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55157762273095,
+ 45.53168154261939
+ ],
+ [
+ -73.5517064650032,
+ 45.53173636888861
+ ],
+ [
+ -73.55178264297643,
+ 45.53164965176032
+ ],
+ [
+ -73.55164999747124,
+ 45.531597530651815
+ ],
+ [
+ -73.55157762273095,
+ 45.53168154261939
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1073,
+ "ID_UEV":"01018868",
+ "CIVIQUE_DE":" 1862",
+ "CIVIQUE_FI":" 1870",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-75-6023-8-000-0000",
+ "SUPERFICIE":287,
+ "SUPERFIC_1":229,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000508852960589,
+ "OBJECTID":86791,
+ "Join_Count":1,
+ "TARGET_FID":86791,
+ "feature_id":"bb869f13-2c8f-4d4b-89a5-55a36ab08f35",
+ "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.17,
+ "heightmax":32.26,
+ "elevmin":19.23,
+ "elevmax":22.42,
+ "bldgarea":1461.75,
+ "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_2":86791,
+ "Shape_Le_1":0.000508852960589,
+ "Shape_Ar_1":1.51326938738e-08,
+ "OBJECTID_3":86791,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86790,
+ "g_objectid":"941271",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425245",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004375701790000000",
+ "g_sup_tota":"285.4",
+ "g_geometry":"0.000777113",
+ "g_geomet_1":"3.31014e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000508852960589,
+ "Shape_Area":1.51326938738e-08,
+ "Shape_Le_3":0.000508853432974,
+ "Shape_Ar_2":1.51326938738e-08,
+ "building_height":15.044999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1074,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55213113926251,
+ 45.5319170849558
+ ],
+ [
+ -73.5523078128771,
+ 45.53199226558089
+ ],
+ [
+ -73.5523148698572,
+ 45.531984304782135
+ ],
+ [
+ -73.5523927880186,
+ 45.531896433823654
+ ],
+ [
+ -73.55234506729286,
+ 45.531877049836275
+ ],
+ [
+ -73.55234496746812,
+ 45.531877049836275
+ ],
+ [
+ -73.55232356720072,
+ 45.531903449434935
+ ],
+ [
+ -73.55224476680439,
+ 45.53187214943045
+ ],
+ [
+ -73.55226476682738,
+ 45.531847249900956
+ ],
+ [
+ -73.55221896705353,
+ 45.53182904942139
+ ],
+ [
+ -73.55221886722879,
+ 45.53182904942139
+ ],
+ [
+ -73.5521996667031,
+ 45.53185154955966
+ ],
+ [
+ -73.55219209441147,
+ 45.53184834527521
+ ],
+ [
+ -73.55213113926251,
+ 45.5319170849558
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1074,
+ "ID_UEV":"01018878",
+ "CIVIQUE_DE":" 1906",
+ "CIVIQUE_FI":" 1912",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-75-1450-8-000-0000",
+ "SUPERFICIE":400,
+ "SUPERFIC_1":305,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000701461872012,
+ "OBJECTID":86792,
+ "Join_Count":1,
+ "TARGET_FID":86792,
+ "feature_id":"ff7aa814-6953-43ee-98e8-97f6e35cfc2d",
+ "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.5,
+ "heightmax":30.71,
+ "elevmin":18.79,
+ "elevmax":19.83,
+ "bldgarea":896.14,
+ "comment":" ",
+ "OBJECTID_2":86792,
+ "Shape_Le_1":0.000701461872012,
+ "Shape_Ar_1":1.98459905301e-08,
+ "OBJECTID_3":86792,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86791,
+ "g_objectid":"941283",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425262",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004375145080000000",
+ "g_sup_tota":"400.2",
+ "g_geometry":"0.000889117",
+ "g_geomet_1":"4.60353e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000701461872012,
+ "Shape_Area":1.98459905301e-08,
+ "Shape_Le_3":0.000701459889647,
+ "Shape_Ar_2":1.98459905301e-08,
+ "building_height":14.105
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1075,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5585099927638,
+ 45.53408447986515
+ ],
+ [
+ -73.55851326899402,
+ 45.53408605008144
+ ],
+ [
+ -73.55849646875888,
+ 45.53410334944032
+ ],
+ [
+ -73.55849656948294,
+ 45.53410345016439
+ ],
+ [
+ -73.55857349389348,
+ 45.53414152386253
+ ],
+ [
+ -73.55869431870968,
+ 45.53401153765264
+ ],
+ [
+ -73.55861218722451,
+ 45.53397453864434
+ ],
+ [
+ -73.5585099927638,
+ 45.53408447986515
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1075,
+ "ID_UEV":"01023359",
+ "CIVIQUE_DE":" 2343",
+ "CIVIQUE_FI":" 2349",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-2597-6-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":351,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000531372395997,
+ "OBJECTID":86793,
+ "Join_Count":1,
+ "TARGET_FID":86793,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":86793,
+ "Shape_Le_1":0.000531372395997,
+ "Shape_Ar_1":1.49239467698e-08,
+ "OBJECTID_3":86793,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86792,
+ "g_objectid":"941374",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425381",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327319330000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000808107",
+ "g_geomet_1":"2.68166e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000531372395997,
+ "Shape_Area":1.49239467698e-08,
+ "Shape_Le_3":0.000531372800677,
+ "Shape_Ar_2":1.49239467698e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1076,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55842936674372,
+ 45.53404585758056
+ ],
+ [
+ -73.5585099927638,
+ 45.53408447986515
+ ],
+ [
+ -73.55861218722451,
+ 45.53397453864434
+ ],
+ [
+ -73.55853005214203,
+ 45.533937538736716
+ ],
+ [
+ -73.55842936674372,
+ 45.53404585758056
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1076,
+ "ID_UEV":"01023361",
+ "CIVIQUE_DE":" 2333",
+ "CIVIQUE_FI":" 2341",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-3193-3-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477472123663,
+ "OBJECTID":86794,
+ "Join_Count":1,
+ "TARGET_FID":86794,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":86794,
+ "Shape_Le_1":0.000477472123663,
+ "Shape_Ar_1":1.27165828934e-08,
+ "OBJECTID_3":86794,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86793,
+ "g_objectid":"941374",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425381",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327319330000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000808107",
+ "g_geomet_1":"2.68166e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477472123663,
+ "Shape_Area":1.27165828934e-08,
+ "Shape_Le_3":0.000477472934211,
+ "Shape_Ar_2":1.27165828934e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1077,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5513129729372,
+ 45.53233868263439
+ ],
+ [
+ -73.55138717240193,
+ 45.53237010045007
+ ],
+ [
+ -73.55144942707125,
+ 45.53229747659756
+ ],
+ [
+ -73.55137276886003,
+ 45.53226892851853
+ ],
+ [
+ -73.5513129729372,
+ 45.53233868263439
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1077,
+ "ID_UEV":"01019039",
+ "CIVIQUE_DE":" 1894",
+ "CIVIQUE_FI":" 1896",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-75-8295-0-000-0000",
+ "SUPERFICIE":165,
+ "SUPERFIC_1":108,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00034990894239,
+ "OBJECTID":86798,
+ "Join_Count":1,
+ "TARGET_FID":86798,
+ "feature_id":"bdf1f075-d706-43d6-bd43-be32017d6e46",
+ "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.7,
+ "heightmax":35.59,
+ "elevmin":20.02,
+ "elevmax":23.88,
+ "bldgarea":1603.76,
+ "comment":" ",
+ "OBJECTID_2":86798,
+ "Shape_Le_1":0.00034990894239,
+ "Shape_Ar_1":7.19940705295e-09,
+ "OBJECTID_3":86798,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86797,
+ "g_objectid":"941212",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425161",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004375829500000000",
+ "g_sup_tota":"165",
+ "g_geometry":"0.000656025",
+ "g_geomet_1":"1.89988e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00034990894239,
+ "Shape_Area":7.19940705295e-09,
+ "Shape_Le_3":0.000349909234446,
+ "Shape_Ar_2":7.19940705295e-09,
+ "building_height":16.445
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1078,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54908314619209,
+ 45.5309596442225
+ ],
+ [
+ -73.54908126481037,
+ 45.53096174953541
+ ],
+ [
+ -73.54916930843868,
+ 45.53100049592644
+ ],
+ [
+ -73.54917205496821,
+ 45.53099728894402
+ ],
+ [
+ -73.54908314619209,
+ 45.5309596442225
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54886491040914,
+ 45.53093928087341
+ ],
+ [
+ -73.54898773082097,
+ 45.530991285070044
+ ],
+ [
+ -73.54902476490282,
+ 45.53094414980296
+ ],
+ [
+ -73.54903020849916,
+ 45.53093722951982
+ ],
+ [
+ -73.54902569480181,
+ 45.53093531846047
+ ],
+ [
+ -73.54901727085222,
+ 45.530931751749236
+ ],
+ [
+ -73.5490099359816,
+ 45.530928647289535
+ ],
+ [
+ -73.54900514889036,
+ 45.53092662021764
+ ],
+ [
+ -73.54891231187554,
+ 45.53088731085101
+ ],
+ [
+ -73.54886491040914,
+ 45.53093928087341
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1078,
+ "ID_UEV":"01019303",
+ "CIVIQUE_DE":" 2513",
+ "CIVIQUE_FI":" 2515",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-7151-7-000-0000",
+ "SUPERFICIE":176,
+ "SUPERFIC_1":156,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000600282474178,
+ "OBJECTID":86800,
+ "Join_Count":2,
+ "TARGET_FID":86800,
+ "feature_id":"1b964768-68f7-4e44-b1a7-601754b21582",
+ "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.27,
+ "heightmax":35.33,
+ "elevmin":22.62,
+ "elevmax":23.34,
+ "bldgarea":108.8,
+ "comment":" ",
+ "OBJECTID_2":86800,
+ "Shape_Le_1":0.000600282474178,
+ "Shape_Ar_1":8.99395190259e-09,
+ "OBJECTID_3":86800,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86799,
+ "g_objectid":"941248",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425208",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394715170000000",
+ "g_sup_tota":"176",
+ "g_geometry":"0.000720226",
+ "g_geomet_1":"1.9271e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000600282474178,
+ "Shape_Area":8.99395190259e-09,
+ "Shape_Le_3":0.000600282803527,
+ "Shape_Ar_2":8.99395190259e-09,
+ "building_height":14.53
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1079,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55149941948447,
+ 45.519935047714576
+ ],
+ [
+ -73.5514112310653,
+ 45.52002759065108
+ ],
+ [
+ -73.5516760580255,
+ 45.52015029415105
+ ],
+ [
+ -73.55175416504453,
+ 45.52006824810147
+ ],
+ [
+ -73.55169266490641,
+ 45.52003934748819
+ ],
+ [
+ -73.55170146477262,
+ 45.52003010515553
+ ],
+ [
+ -73.55149941948447,
+ 45.519935047714576
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1079,
+ "ID_UEV":"01022004",
+ "CIVIQUE_DE":" 1152",
+ "CIVIQUE_FI":" 1160",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-72-6937-8-000-0000",
+ "SUPERFICIE":327,
+ "SUPERFIC_1":794,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00083698896309,
+ "OBJECTID":86804,
+ "Join_Count":1,
+ "TARGET_FID":86804,
+ "feature_id":"bb692c5e-d245-4c85-905d-f9e8b7690159",
+ "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.36,
+ "heightmax":15.12,
+ "elevmin":19.31,
+ "elevmax":20.42,
+ "bldgarea":800.43,
+ "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_2":86804,
+ "Shape_Le_1":0.00083698896309,
+ "Shape_Ar_1":3.42539660631e-08,
+ "OBJECTID_3":86804,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86803,
+ "g_objectid":"942289",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567803",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004272693780000000",
+ "g_sup_tota":"327",
+ "g_geometry":"0.000884288",
+ "g_geomet_1":"3.799e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00083698896309,
+ "Shape_Area":3.42539660631e-08,
+ "Shape_Le_3":0.000836988783153,
+ "Shape_Ar_2":3.42539660631e-08,
+ "building_height":6.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1080,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55202485288649,
+ 45.52031189872544
+ ],
+ [
+ -73.55202665872517,
+ 45.52031273599427
+ ],
+ [
+ -73.55206676579046,
+ 45.52027954741348
+ ],
+ [
+ -73.55206686651452,
+ 45.52027954741348
+ ],
+ [
+ -73.55206056586427,
+ 45.520318947611635
+ ],
+ [
+ -73.55205976636697,
+ 45.52032364746865
+ ],
+ [
+ -73.55210096610854,
+ 45.52032694798056
+ ],
+ [
+ -73.55210096610854,
+ 45.520326747431746
+ ],
+ [
+ -73.55211876728913,
+ 45.520331045291805
+ ],
+ [
+ -73.55226070728766,
+ 45.520176164049026
+ ],
+ [
+ -73.55224316601115,
+ 45.52017184820253
+ ],
+ [
+ -73.55223246587744,
+ 45.52019364776893
+ ],
+ [
+ -73.55220146624652,
+ 45.52018614742306
+ ],
+ [
+ -73.55215256650958,
+ 45.52017454796731
+ ],
+ [
+ -73.5521546232591,
+ 45.52017029777132
+ ],
+ [
+ -73.55202485288649,
+ 45.52031189872544
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1080,
+ "ID_UEV":"01022007",
+ "CIVIQUE_DE":" 1204",
+ "CIVIQUE_FI":" 1204",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-72-2255-9-000-0000",
+ "SUPERFICIE":256,
+ "SUPERFIC_1":306,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00069003629873,
+ "OBJECTID":86805,
+ "Join_Count":1,
+ "TARGET_FID":86805,
+ "feature_id":"017a301b-c4e3-4a78-af3a-c68a1b47ec3c",
+ "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.46,
+ "heightmax":14.21,
+ "elevmin":18.51,
+ "elevmax":20.32,
+ "bldgarea":1518.91,
+ "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_2":86805,
+ "Shape_Le_1":0.00069003629873,
+ "Shape_Ar_1":1.49344772456e-08,
+ "OBJECTID_3":86805,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86804,
+ "g_objectid":"942278",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567761",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004272225590000000",
+ "g_sup_tota":"255.7",
+ "g_geometry":"0.000889231",
+ "g_geomet_1":"2.94523e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00069003629873,
+ "Shape_Area":1.49344772456e-08,
+ "Shape_Le_3":0.000690037898428,
+ "Shape_Ar_2":1.49344772456e-08,
+ "building_height":5.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1081,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55211876728913,
+ 45.520331045291805
+ ],
+ [
+ -73.55214156600232,
+ 45.5203365482434
+ ],
+ [
+ -73.55213056639437,
+ 45.52035904748235
+ ],
+ [
+ -73.55217186596069,
+ 45.520369047943504
+ ],
+ [
+ -73.55219926650479,
+ 45.52034214742246
+ ],
+ [
+ -73.55221382383075,
+ 45.5203494265351
+ ],
+ [
+ -73.5523068982666,
+ 45.520249262743576
+ ],
+ [
+ -73.55230714108355,
+ 45.52024900194018
+ ],
+ [
+ -73.55227526641227,
+ 45.52023424766269
+ ],
+ [
+ -73.55229016637992,
+ 45.520218247824175
+ ],
+ [
+ -73.55226616617247,
+ 45.52020724821623
+ ],
+ [
+ -73.55228686586801,
+ 45.52018474807796
+ ],
+ [
+ -73.55228786591412,
+ 45.520182847810474
+ ],
+ [
+ -73.55226070728766,
+ 45.520176164049026
+ ],
+ [
+ -73.55211876728913,
+ 45.520331045291805
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1081,
+ "ID_UEV":"01022008",
+ "CIVIQUE_DE":" 1210",
+ "CIVIQUE_FI":" 1210",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-72-1759-1-000-0000",
+ "SUPERFICIE":259,
+ "SUPERFIC_1":309,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000636916154268,
+ "OBJECTID":86806,
+ "Join_Count":1,
+ "TARGET_FID":86806,
+ "feature_id":"017a301b-c4e3-4a78-af3a-c68a1b47ec3c",
+ "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.46,
+ "heightmax":14.21,
+ "elevmin":18.51,
+ "elevmax":20.32,
+ "bldgarea":1518.91,
+ "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_2":86806,
+ "Shape_Le_1":0.000636916154268,
+ "Shape_Ar_1":1.54512428978e-08,
+ "OBJECTID_3":86806,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86805,
+ "g_objectid":"942274",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567756",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004272055540000000",
+ "g_sup_tota":"126",
+ "g_geometry":"0.000528799",
+ "g_geomet_1":"1.4905e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000636916154268,
+ "Shape_Area":1.54512428978e-08,
+ "Shape_Le_3":0.000636914386568,
+ "Shape_Ar_2":1.54512428978e-08,
+ "building_height":5.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1082,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54801221911048,
+ 45.53068620895168
+ ],
+ [
+ -73.54769026541526,
+ 45.53055524967533
+ ],
+ [
+ -73.54768776529997,
+ 45.53055834963842
+ ],
+ [
+ -73.54753888523321,
+ 45.530736927117786
+ ],
+ [
+ -73.54785387277985,
+ 45.53087054119282
+ ],
+ [
+ -73.54801221911048,
+ 45.53068620895168
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1082,
+ "ID_UEV":"01019008",
+ "CIVIQUE_DE":" 1580",
+ "CIVIQUE_FI":" 1580",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1945,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres transports par v\u00c3\u00a9hicule automobile",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-04-6822-1-000-0000",
+ "SUPERFICIE":721,
+ "SUPERFIC_1":732,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00116921017145,
+ "OBJECTID":86807,
+ "Join_Count":1,
+ "TARGET_FID":86807,
+ "feature_id":"233971db-8994-4ae4-b1fd-16383aa54f0a",
+ "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":10.82,
+ "elevmin":19.2,
+ "elevmax":21.76,
+ "bldgarea":1007.45,
+ "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_2":86807,
+ "Shape_Le_1":0.00116921017145,
+ "Shape_Ar_1":7.87603676279e-08,
+ "OBJECTID_3":86807,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86806,
+ "g_objectid":"941255",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425218",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014304493380000000",
+ "g_sup_tota":"360.5",
+ "g_geometry":"0.000847207",
+ "g_geomet_1":"4.15209e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00116921017145,
+ "Shape_Area":7.87603676279e-08,
+ "Shape_Le_3":0.00116921045801,
+ "Shape_Ar_2":7.87603676279e-08,
+ "building_height":5.16
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1083,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54973972233216,
+ 45.53088831269577
+ ],
+ [
+ -73.54981010687278,
+ 45.53091978267213
+ ],
+ [
+ -73.54988828853553,
+ 45.53083749470491
+ ],
+ [
+ -73.5498144317125,
+ 45.530805217137356
+ ],
+ [
+ -73.54973972233216,
+ 45.53088831269577
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1083,
+ "ID_UEV":"01018841",
+ "CIVIQUE_DE":" 1686",
+ "CIVIQUE_FI":" 1686",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-0635-6-000-0000",
+ "SUPERFICIE":169,
+ "SUPERFIC_1":129,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000382950361891,
+ "OBJECTID":86812,
+ "Join_Count":1,
+ "TARGET_FID":86812,
+ "feature_id":"6f30f9af-b226-4124-b778-93c9694c9bb7",
+ "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":34.35,
+ "elevmin":22,
+ "elevmax":23.39,
+ "bldgarea":1398.34,
+ "comment":" ",
+ "OBJECTID_2":86812,
+ "Shape_Le_1":0.000382950361891,
+ "Shape_Ar_1":8.40041225285e-09,
+ "OBJECTID_3":86812,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86811,
+ "g_objectid":"940694",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424284",
+ "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":"66023004394013990000000",
+ "g_sup_tota":"153.6",
+ "g_geometry":"0.000650542",
+ "g_geomet_1":"1.79057e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000382950361891,
+ "Shape_Area":8.40041225285e-09,
+ "Shape_Le_3":0.000382950203953,
+ "Shape_Ar_2":8.40041225285e-09,
+ "building_height":15.915000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1084,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56735467040356,
+ 45.513937345782175
+ ],
+ [
+ -73.56749467056444,
+ 45.51395034548236
+ ],
+ [
+ -73.56750636984493,
+ 45.5138883462205
+ ],
+ [
+ -73.56751847022306,
+ 45.51382444579183
+ ],
+ [
+ -73.56743906997895,
+ 45.51381414585644
+ ],
+ [
+ -73.56743637021415,
+ 45.51382864562579
+ ],
+ [
+ -73.56737646996996,
+ 45.51382294572266
+ ],
+ [
+ -73.56735467040356,
+ 45.513937345782175
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56722631916115,
+ 45.51389200376326
+ ],
+ [
+ -73.5672317348785,
+ 45.51389444272465
+ ],
+ [
+ -73.56729407048681,
+ 45.51383174558888
+ ],
+ [
+ -73.56740507020967,
+ 45.51372014601822
+ ],
+ [
+ -73.5674017472147,
+ 45.51371851284939
+ ],
+ [
+ -73.5673632913047,
+ 45.513756545178715
+ ],
+ [
+ -73.56722631916115,
+ 45.51389200376326
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1084,
+ "ID_UEV":"01021837",
+ "CIVIQUE_DE":" 190",
+ "CIVIQUE_FI":" 190",
+ "NOM_RUE":"rue Saint-Norbert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-55-3050-2-000-0000",
+ "SUPERFICIE":609,
+ "SUPERFIC_1":257,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00104235888462,
+ "OBJECTID":86817,
+ "Join_Count":2,
+ "TARGET_FID":86817,
+ "feature_id":"e3375b24-c58b-421e-885b-178a9428d620",
+ "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":16.46,
+ "elevmin":21.61,
+ "elevmax":32.17,
+ "bldgarea":3099.27,
+ "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_2":86817,
+ "Shape_Le_1":0.00104235888462,
+ "Shape_Ar_1":1.84483711599e-08,
+ "OBJECTID_3":86817,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86816,
+ "g_objectid":"943080",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161032",
+ "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":"66023994155305020000000",
+ "g_sup_tota":"609.4",
+ "g_geometry":"0.00109404",
+ "g_geomet_1":"7.10893e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00104235888462,
+ "Shape_Area":1.84483711599e-08,
+ "Shape_Le_3":0.00104235862445,
+ "Shape_Ar_2":1.84483711599e-08,
+ "building_height":7.9750000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1085,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56772605623435,
+ 45.512086334167286
+ ],
+ [
+ -73.56772316851126,
+ 45.51208940715072
+ ],
+ [
+ -73.5679286887798,
+ 45.51216086997846
+ ],
+ [
+ -73.56793549035244,
+ 45.512149646439326
+ ],
+ [
+ -73.56798392783784,
+ 45.511946941048784
+ ],
+ [
+ -73.56798071276152,
+ 45.51194543918097
+ ],
+ [
+ -73.56789677004176,
+ 45.51192034629724
+ ],
+ [
+ -73.56788524612905,
+ 45.511916894699226
+ ],
+ [
+ -73.56780538992865,
+ 45.51200189142445
+ ],
+ [
+ -73.56774977045738,
+ 45.51209344600603
+ ],
+ [
+ -73.56772605623435,
+ 45.512086334167286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1085,
+ "ID_UEV":"01020626",
+ "CIVIQUE_DE":" 2071",
+ "CIVIQUE_FI":" 2075",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-43-9648-3-000-0000",
+ "SUPERFICIE":320,
+ "SUPERFIC_1":723,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000795043000692,
+ "OBJECTID":86821,
+ "Join_Count":1,
+ "TARGET_FID":86821,
+ "feature_id":"67aad705-2868-45a2-819b-057e1c41d8f4",
+ "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":15.96,
+ "elevmin":28.95,
+ "elevmax":34.74,
+ "bldgarea":926.94,
+ "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_2":86821,
+ "Shape_Le_1":0.000795043000692,
+ "Shape_Ar_1":3.40636902899e-08,
+ "OBJECTID_3":86821,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86820,
+ "g_objectid":"943079",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160998",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994143964830000000",
+ "g_sup_tota":"320",
+ "g_geometry":"0.000792296",
+ "g_geomet_1":"3.60555e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000795043000692,
+ "Shape_Area":3.40636902899e-08,
+ "Shape_Le_3":0.000795042223313,
+ "Shape_Ar_2":3.40636902899e-08,
+ "building_height":7.7250000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1086,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54634822241438,
+ 45.530233394905544
+ ],
+ [
+ -73.54635689817415,
+ 45.53023707223339
+ ],
+ [
+ -73.54636456399528,
+ 45.53022974995329
+ ],
+ [
+ -73.54640846440095,
+ 45.5302525495658
+ ],
+ [
+ -73.5464039138314,
+ 45.53025700210925
+ ],
+ [
+ -73.54648740509151,
+ 45.530292392230415
+ ],
+ [
+ -73.5464908638841,
+ 45.530288449602565
+ ],
+ [
+ -73.54655986526741,
+ 45.53031854991144
+ ],
+ [
+ -73.54660906537791,
+ 45.5303400500036
+ ],
+ [
+ -73.54665296488427,
+ 45.53035904998047
+ ],
+ [
+ -73.54672316506387,
+ 45.53027895006379
+ ],
+ [
+ -73.54642150636927,
+ 45.53014840627422
+ ],
+ [
+ -73.54634822241438,
+ 45.530233394905544
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1086,
+ "ID_UEV":"01019002",
+ "CIVIQUE_DE":" 1450",
+ "CIVIQUE_FI":" 1454",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-13-6166-4-000-0000",
+ "SUPERFICIE":676,
+ "SUPERFIC_1":987,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000896016094493,
+ "OBJECTID":86826,
+ "Join_Count":1,
+ "TARGET_FID":86826,
+ "feature_id":"42d18462-3f68-477c-a1eb-dbacfbfd7f0a",
+ "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.14,
+ "heightmax":10.94,
+ "elevmin":19.31,
+ "elevmax":19.92,
+ "bldgarea":554.71,
+ "comment":" ",
+ "OBJECTID_2":86826,
+ "Shape_Le_1":0.000896016094493,
+ "Shape_Ar_1":3.36313266858e-08,
+ "OBJECTID_3":86826,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86825,
+ "g_objectid":"941057",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424912",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014313765710000000",
+ "g_sup_tota":"170.9",
+ "g_geometry":"0.000665613",
+ "g_geomet_1":"1.98176e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000896016094493,
+ "Shape_Area":3.36313266858e-08,
+ "Shape_Le_3":0.000896017189898,
+ "Shape_Ar_2":3.36313266858e-08,
+ "building_height":4.8999999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1087,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55727629198913,
+ 45.53835218925243
+ ],
+ [
+ -73.55725276932169,
+ 45.53834365108892
+ ],
+ [
+ -73.55719846915588,
+ 45.53832395054018
+ ],
+ [
+ -73.55710096915625,
+ 45.538457150927066
+ ],
+ [
+ -73.55710496934071,
+ 45.538458551171495
+ ],
+ [
+ -73.55718138743293,
+ 45.538485521839654
+ ],
+ [
+ -73.55727629198913,
+ 45.53835218925243
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1087,
+ "ID_UEV":"01024947",
+ "CIVIQUE_DE":" 2515",
+ "CIVIQUE_FI":" 2525",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-3478-6-000-0000",
+ "SUPERFICIE":190,
+ "SUPERFIC_1":363,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000496794881417,
+ "OBJECTID":86827,
+ "Join_Count":1,
+ "TARGET_FID":86827,
+ "feature_id":"2a540e9d-5f42-4b5a-9b81-dc3f2618e82a",
+ "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":42.58,
+ "elevmin":26.8,
+ "elevmax":34.1,
+ "bldgarea":1269.01,
+ "comment":" ",
+ "OBJECTID_2":86827,
+ "Shape_Le_1":0.000496794881417,
+ "Shape_Ar_1":1.32667315254e-08,
+ "OBJECTID_3":86827,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86826,
+ "g_objectid":"944061",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361305",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004432347860000000",
+ "g_sup_tota":"190.1",
+ "g_geometry":"0.000674438",
+ "g_geomet_1":"2.19256e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000496794881417,
+ "Shape_Area":1.32667315254e-08,
+ "Shape_Le_3":0.000496794917298,
+ "Shape_Ar_2":1.32667315254e-08,
+ "building_height":21.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1088,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55100033801703,
+ 45.536972621139846
+ ],
+ [
+ -73.55102946615878,
+ 45.53698375114949
+ ],
+ [
+ -73.55099106600673,
+ 45.53703325073423
+ ],
+ [
+ -73.55103299599782,
+ 45.537049292840884
+ ],
+ [
+ -73.55113494404428,
+ 45.53690619361624
+ ],
+ [
+ -73.55106437694128,
+ 45.5368827321027
+ ],
+ [
+ -73.55100033801703,
+ 45.536972621139846
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1088,
+ "ID_UEV":"01025297",
+ "CIVIQUE_DE":" 2051",
+ "CIVIQUE_FI":" 2055",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-1317-5-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":219,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000499157727569,
+ "OBJECTID":86828,
+ "Join_Count":1,
+ "TARGET_FID":86828,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":86828,
+ "Shape_Le_1":0.000499157727569,
+ "Shape_Ar_1":1.05786468007e-08,
+ "OBJECTID_3":86828,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86827,
+ "g_objectid":"943806",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360964",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481181410000000",
+ "g_sup_tota":"151.9",
+ "g_geometry":"0.000637366",
+ "g_geomet_1":"1.75015e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000499157727569,
+ "Shape_Area":1.05786468007e-08,
+ "Shape_Le_3":0.000499157798677,
+ "Shape_Ar_2":1.05786468007e-08,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1089,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5558708755623,
+ 45.53049276927618
+ ],
+ [
+ -73.55573901696391,
+ 45.530627011977316
+ ],
+ [
+ -73.55581209227608,
+ 45.53066069248727
+ ],
+ [
+ -73.55594022588257,
+ 45.53052473298034
+ ],
+ [
+ -73.5558708755623,
+ 45.53049276927618
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1089,
+ "ID_UEV":"01022810",
+ "CIVIQUE_DE":" 2024",
+ "CIVIQUE_FI":" 2024",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-44-3807-3-000-0000",
+ "SUPERFICIE":136,
+ "SUPERFIC_1":399,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000531820130942,
+ "OBJECTID":86833,
+ "Join_Count":1,
+ "TARGET_FID":86833,
+ "feature_id":"3e049d51-dd6c-4762-9d7a-e73f58a07e75",
+ "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":32.14,
+ "elevmin":18.99,
+ "elevmax":20.54,
+ "bldgarea":2214.77,
+ "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_2":86833,
+ "Shape_Le_1":0.000531820130942,
+ "Shape_Ar_1":1.38877768328e-08,
+ "OBJECTID_3":86833,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86832,
+ "g_objectid":"940505",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423993",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004344380730000000",
+ "g_sup_tota":"135.5",
+ "g_geometry":"0.00054922",
+ "g_geomet_1":"1.55518e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000531820130942,
+ "Shape_Area":1.38877768328e-08,
+ "Shape_Le_3":0.000531819045473,
+ "Shape_Ar_2":1.38877768328e-08,
+ "building_height":14.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1090,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55086002669073,
+ 45.536922521707304
+ ],
+ [
+ -73.55087396618244,
+ 45.53691255092378
+ ],
+ [
+ -73.55087436638075,
+ 45.53691295112209
+ ],
+ [
+ -73.55086076593345,
+ 45.53695665097896
+ ],
+ [
+ -73.5508468660119,
+ 45.53700025101107
+ ],
+ [
+ -73.55088800909618,
+ 45.53700673512302
+ ],
+ [
+ -73.55099321088981,
+ 45.53685907004034
+ ],
+ [
+ -73.55092208081122,
+ 45.5368354205685
+ ],
+ [
+ -73.55086002669073,
+ 45.536922521707304
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1090,
+ "ID_UEV":"01025301",
+ "CIVIQUE_DE":" 2039",
+ "CIVIQUE_FI":" 2043",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-2411-5-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":218,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000514095169358,
+ "OBJECTID":86836,
+ "Join_Count":1,
+ "TARGET_FID":86836,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":86836,
+ "Shape_Le_1":0.000514095169358,
+ "Shape_Ar_1":1.14625305989e-08,
+ "OBJECTID_3":86836,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86835,
+ "g_objectid":"943806",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360964",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481181410000000",
+ "g_sup_tota":"151.9",
+ "g_geometry":"0.000637366",
+ "g_geomet_1":"1.75015e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000514095169358,
+ "Shape_Area":1.14625305989e-08,
+ "Shape_Le_3":0.000514096181474,
+ "Shape_Ar_2":1.14625305989e-08,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1091,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5507579293568,
+ 45.53694074466993
+ ],
+ [
+ -73.55077096592917,
+ 45.53694975048089
+ ],
+ [
+ -73.55080566627032,
+ 45.5369250506009
+ ],
+ [
+ -73.55083146602118,
+ 45.5369429507069
+ ],
+ [
+ -73.55086002669073,
+ 45.536922521707304
+ ],
+ [
+ -73.55092208081122,
+ 45.5368354205685
+ ],
+ [
+ -73.55085002982686,
+ 45.536811464427835
+ ],
+ [
+ -73.5507579293568,
+ 45.53694074466993
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1091,
+ "ID_UEV":"01025303",
+ "CIVIQUE_DE":" 2033",
+ "CIVIQUE_FI":" 2037",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-2909-8-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00046656161521,
+ "OBJECTID":86837,
+ "Join_Count":1,
+ "TARGET_FID":86837,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":86837,
+ "Shape_Le_1":0.00046656161521,
+ "Shape_Ar_1":1.01117851165e-08,
+ "OBJECTID_3":86837,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86836,
+ "g_objectid":"943805",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360963",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481241150000000",
+ "g_sup_tota":"151.9",
+ "g_geometry":"0.000637346",
+ "g_geomet_1":"1.74944e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00046656161521,
+ "Shape_Area":1.01117851165e-08,
+ "Shape_Le_3":0.000466561053079,
+ "Shape_Ar_2":1.01117851165e-08,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1092,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55215102776955,
+ 45.52985287466073
+ ],
+ [
+ -73.55230950719984,
+ 45.52992433389119
+ ],
+ [
+ -73.5523492662275,
+ 45.52988484915676
+ ],
+ [
+ -73.55235376643502,
+ 45.52988044877399
+ ],
+ [
+ -73.5523342664351,
+ 45.52987214893082
+ ],
+ [
+ -73.55234113815484,
+ 45.529864277164954
+ ],
+ [
+ -73.55220060289736,
+ 45.52980031468307
+ ],
+ [
+ -73.55215102776955,
+ 45.52985287466073
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1092,
+ "ID_UEV":"01019198",
+ "CIVIQUE_DE":" 2341",
+ "CIVIQUE_FI":" 2343",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-73-1530-2-000-0000",
+ "SUPERFICIE":155,
+ "SUPERFIC_1":289,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000494472340406,
+ "OBJECTID":86838,
+ "Join_Count":1,
+ "TARGET_FID":86838,
+ "feature_id":"3a8c55ac-ae15-45a4-8785-fdf662e6aaf7",
+ "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.57,
+ "heightmax":32.95,
+ "elevmin":18.56,
+ "elevmax":19.82,
+ "bldgarea":813.05,
+ "comment":" ",
+ "OBJECTID_2":86838,
+ "Shape_Le_1":0.000494472340406,
+ "Shape_Ar_1":1.16960902551e-08,
+ "OBJECTID_3":86838,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86837,
+ "g_objectid":"940602",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424134",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004373214170000000",
+ "g_sup_tota":"451.5",
+ "g_geometry":"0.000962792",
+ "g_geomet_1":"5.24812e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000494472340406,
+ "Shape_Area":1.16960902551e-08,
+ "Shape_Le_3":0.000494473159113,
+ "Shape_Ar_2":1.16960902551e-08,
+ "building_height":15.190000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1093,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55189044650875,
+ 45.53255144244541
+ ],
+ [
+ -73.55199825453766,
+ 45.532602112048124
+ ],
+ [
+ -73.55207797494043,
+ 45.53250911225602
+ ],
+ [
+ -73.55206146698495,
+ 45.53250195005525
+ ],
+ [
+ -73.55210696728456,
+ 45.53245224992169
+ ],
+ [
+ -73.55203496756155,
+ 45.532420350069394
+ ],
+ [
+ -73.55203136577676,
+ 45.532424950101664
+ ],
+ [
+ -73.55198946636263,
+ 45.53247644977863
+ ],
+ [
+ -73.55196365492058,
+ 45.532466041025266
+ ],
+ [
+ -73.55189044650875,
+ 45.53255144244541
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1093,
+ "ID_UEV":"01019050",
+ "CIVIQUE_DE":" 1938",
+ "CIVIQUE_FI":" 1948",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-76-3822-4-000-0000",
+ "SUPERFICIE":247,
+ "SUPERFIC_1":469,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000618291255015,
+ "OBJECTID":86839,
+ "Join_Count":1,
+ "TARGET_FID":86839,
+ "feature_id":"a36000fa-0fbb-452e-8dad-cbe3bba5679d",
+ "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":3.25,
+ "heightmax":31.89,
+ "elevmin":18.98,
+ "elevmax":20.92,
+ "bldgarea":925.75,
+ "comment":" ",
+ "OBJECTID_2":86839,
+ "Shape_Le_1":0.000618291255015,
+ "Shape_Ar_1":1.86102138987e-08,
+ "OBJECTID_3":86839,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86838,
+ "g_objectid":"941209",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425156",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004376382240000000",
+ "g_sup_tota":"246.8",
+ "g_geometry":"0.000735355",
+ "g_geomet_1":"2.83833e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000618291255015,
+ "Shape_Area":1.86102138987e-08,
+ "Shape_Le_3":0.000618290401442,
+ "Shape_Ar_2":1.86102138987e-08,
+ "building_height":14.32
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1094,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55199825453766,
+ 45.532602112048124
+ ],
+ [
+ -73.55200386720655,
+ 45.53260474975969
+ ],
+ [
+ -73.55199446749252,
+ 45.53261464949677
+ ],
+ [
+ -73.5520000675709,
+ 45.53261704978731
+ ],
+ [
+ -73.55228343405508,
+ 45.532739246069646
+ ],
+ [
+ -73.55243233210828,
+ 45.53256627586324
+ ],
+ [
+ -73.55214036720602,
+ 45.53244094994018
+ ],
+ [
+ -73.55213756671718,
+ 45.53244414972802
+ ],
+ [
+ -73.55208036713708,
+ 45.53251015007366
+ ],
+ [
+ -73.55207797494043,
+ 45.53250911225602
+ ],
+ [
+ -73.55199825453766,
+ 45.532602112048124
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1094,
+ "ID_UEV":"01019052",
+ "CIVIQUE_DE":" 1956",
+ "CIVIQUE_FI":" 1956",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-76-2231-9-000-0000",
+ "SUPERFICIE":657,
+ "SUPERFIC_1":622,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00109718476852,
+ "OBJECTID":86840,
+ "Join_Count":1,
+ "TARGET_FID":86840,
+ "feature_id":"a36000fa-0fbb-452e-8dad-cbe3bba5679d",
+ "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":3.25,
+ "heightmax":31.89,
+ "elevmin":18.98,
+ "elevmax":20.92,
+ "bldgarea":925.75,
+ "comment":" ",
+ "OBJECTID_2":86840,
+ "Shape_Le_1":0.00109718476852,
+ "Shape_Ar_1":6.93817387424e-08,
+ "OBJECTID_3":86840,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86839,
+ "g_objectid":"941209",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425156",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004376382240000000",
+ "g_sup_tota":"246.8",
+ "g_geometry":"0.000735355",
+ "g_geomet_1":"2.83833e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00109718476852,
+ "Shape_Area":6.93817387424e-08,
+ "Shape_Le_3":0.00109718356405,
+ "Shape_Ar_2":6.93817387424e-08,
+ "building_height":14.32
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1095,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55450693586825,
+ 45.521469782155016
+ ],
+ [
+ -73.55463708125814,
+ 45.52153030742804
+ ],
+ [
+ -73.55476340183138,
+ 45.52139745058217
+ ],
+ [
+ -73.55472586682714,
+ 45.52137964760295
+ ],
+ [
+ -73.55471946725146,
+ 45.521376647464606
+ ],
+ [
+ -73.55467026714096,
+ 45.52142914808701
+ ],
+ [
+ -73.55465086696579,
+ 45.52142024749672
+ ],
+ [
+ -73.55465026711798,
+ 45.52142074751978
+ ],
+ [
+ -73.55462606726104,
+ 45.52140984773658
+ ],
+ [
+ -73.55459016722428,
+ 45.521393148225506
+ ],
+ [
+ -73.55468746667509,
+ 45.52129034762174
+ ],
+ [
+ -73.55481047954184,
+ 45.521347937507606
+ ],
+ [
+ -73.55487112532401,
+ 45.52128415399081
+ ],
+ [
+ -73.55473983239919,
+ 45.52122271770455
+ ],
+ [
+ -73.55450693586825,
+ 45.521469782155016
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1095,
+ "ID_UEV":"01022025",
+ "CIVIQUE_DE":" 1452",
+ "CIVIQUE_FI":" 1464",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-2685-7-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":435,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00138554936429,
+ "OBJECTID":86841,
+ "Join_Count":1,
+ "TARGET_FID":86841,
+ "feature_id":"bc662e52-7b6f-49a1-ba69-77e9642c0849",
+ "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.49,
+ "heightmax":12.5,
+ "elevmin":18.44,
+ "elevmax":24.22,
+ "bldgarea":1047.73,
+ "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_2":86841,
+ "Shape_Le_1":0.00138554936429,
+ "Shape_Ar_1":3.16565268545e-08,
+ "OBJECTID_3":86841,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86840,
+ "g_objectid":"942211",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567642",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004253268570000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.0010043",
+ "g_geomet_1":"4.89755e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00138554936429,
+ "Shape_Area":3.16565268545e-08,
+ "Shape_Le_3":0.00138555015788,
+ "Shape_Ar_2":3.16565268545e-08,
+ "building_height":5.005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1096,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56091221594785,
+ 45.53388875411301
+ ],
+ [
+ -73.56093317015153,
+ 45.53389804950567
+ ],
+ [
+ -73.56097927029893,
+ 45.533918549551714
+ ],
+ [
+ -73.56097877027587,
+ 45.53391904957477
+ ],
+ [
+ -73.56099486993914,
+ 45.53390974968549
+ ],
+ [
+ -73.56101072948343,
+ 45.53392320714059
+ ],
+ [
+ -73.56113024578606,
+ 45.53379518864733
+ ],
+ [
+ -73.56103811204109,
+ 45.533753902570844
+ ],
+ [
+ -73.56091221594785,
+ 45.53388875411301
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1096,
+ "ID_UEV":"01023136",
+ "CIVIQUE_DE":" 2550",
+ "CIVIQUE_FI":" 2558",
+ "NOM_RUE":"rue Sheppard (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-3167-9-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":389,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000574058108336,
+ "OBJECTID":86842,
+ "Join_Count":1,
+ "TARGET_FID":86842,
+ "feature_id":"5f62825a-28c5-4384-9ef9-20328e7f4785",
+ "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":49.71,
+ "elevmin":32.12,
+ "elevmax":38.48,
+ "bldgarea":1378.45,
+ "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_2":86842,
+ "Shape_Le_1":0.000574058108336,
+ "Shape_Ar_1":1.7314621408e-08,
+ "OBJECTID_3":86842,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86841,
+ "g_objectid":"940556",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424058",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307386250000000",
+ "g_sup_tota":"260.6",
+ "g_geometry":"0.000830224",
+ "g_geomet_1":"3.0043e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000574058108336,
+ "Shape_Area":1.7314621408e-08,
+ "Shape_Le_3":0.000574058739972,
+ "Shape_Ar_2":1.7314621408e-08,
+ "building_height":23.595
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1097,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56101072948343,
+ 45.53392320714059
+ ],
+ [
+ -73.56103317026644,
+ 45.533942250284916
+ ],
+ [
+ -73.5610330704417,
+ 45.53394235010966
+ ],
+ [
+ -73.56109290773335,
+ 45.53397015804665
+ ],
+ [
+ -73.56121908891167,
+ 45.53383500073499
+ ],
+ [
+ -73.56113024578606,
+ 45.53379518864733
+ ],
+ [
+ -73.56101072948343,
+ 45.53392320714059
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1097,
+ "ID_UEV":"01023138",
+ "CIVIQUE_DE":" 2560",
+ "CIVIQUE_FI":" 2568",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-2471-6-000-0000",
+ "SUPERFICIE":252,
+ "SUPERFIC_1":371,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000552952254102,
+ "OBJECTID":86843,
+ "Join_Count":1,
+ "TARGET_FID":86843,
+ "feature_id":"5f62825a-28c5-4384-9ef9-20328e7f4785",
+ "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":49.71,
+ "elevmin":32.12,
+ "elevmax":38.48,
+ "bldgarea":1378.45,
+ "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_2":86843,
+ "Shape_Le_1":0.000552952254102,
+ "Shape_Ar_1":1.68415885609e-08,
+ "OBJECTID_3":86843,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86842,
+ "g_objectid":"940554",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424056",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307177690000000",
+ "g_sup_tota":"255.9",
+ "g_geometry":"0.000825522",
+ "g_geomet_1":"2.95062e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000552952254102,
+ "Shape_Area":1.68415885609e-08,
+ "Shape_Le_3":0.000552951649783,
+ "Shape_Ar_2":1.68415885609e-08,
+ "building_height":23.595
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1098,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55554702249893,
+ 45.53786801674587
+ ],
+ [
+ -73.55563424594554,
+ 45.537898729493065
+ ],
+ [
+ -73.5557264318512,
+ 45.53776994118014
+ ],
+ [
+ -73.55563232409433,
+ 45.53774884488358
+ ],
+ [
+ -73.55554702249893,
+ 45.53786801674587
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1098,
+ "ID_UEV":"01024965",
+ "CIVIQUE_DE":" 2359",
+ "CIVIQUE_FI":" 2363",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-5716-6-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":191,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000493853981239,
+ "OBJECTID":86844,
+ "Join_Count":1,
+ "TARGET_FID":86844,
+ "feature_id":"7075300e-10d1-4fc1-b33a-1cfddfec4ecc",
+ "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":35.88,
+ "elevmin":18.61,
+ "elevmax":24.32,
+ "bldgarea":2355.29,
+ "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_2":86844,
+ "Shape_Le_1":0.000493853981239,
+ "Shape_Ar_1":1.3539684957e-08,
+ "OBJECTID_3":86844,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86843,
+ "g_objectid":"943988",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361197",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442502030000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667785",
+ "g_geomet_1":"2.14432e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000493853981239,
+ "Shape_Area":1.3539684957e-08,
+ "Shape_Le_3":0.000493852241941,
+ "Shape_Ar_2":1.3539684957e-08,
+ "building_height":17.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1099,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56115500142403,
+ 45.53242629548744
+ ],
+ [
+ -73.5612390259821,
+ 45.53246601314628
+ ],
+ [
+ -73.56135081620904,
+ 45.532344495852094
+ ],
+ [
+ -73.56126796706488,
+ 45.53230548146309
+ ],
+ [
+ -73.56115500142403,
+ 45.53242629548744
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1099,
+ "ID_UEV":"01022750",
+ "CIVIQUE_DE":" 2320",
+ "CIVIQUE_FI":" 2324",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1970,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-1407-3-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":341,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000515031103566,
+ "OBJECTID":86847,
+ "Join_Count":1,
+ "TARGET_FID":86847,
+ "feature_id":"243fd313-8d28-4ecd-be35-5fe3323f92ca",
+ "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":47.61,
+ "elevmin":33.17,
+ "elevmax":37.36,
+ "bldgarea":498.11,
+ "comment":" ",
+ "OBJECTID_2":86847,
+ "Shape_Le_1":0.000515031103566,
+ "Shape_Ar_1":1.45335019828e-08,
+ "OBJECTID_3":86847,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86846,
+ "g_objectid":"940429",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423879",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306071190000000",
+ "g_sup_tota":"198.1",
+ "g_geometry":"0.000701611",
+ "g_geomet_1":"2.28854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000515031103566,
+ "Shape_Area":1.45335019828e-08,
+ "Shape_Le_3":0.000515031424416,
+ "Shape_Ar_2":1.45335019828e-08,
+ "building_height":22.544999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1100,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55352700129193,
+ 45.52485197229098
+ ],
+ [
+ -73.55355336581702,
+ 45.52486394766335
+ ],
+ [
+ -73.55355316616753,
+ 45.52486454751116
+ ],
+ [
+ -73.55356696626433,
+ 45.524911147681614
+ ],
+ [
+ -73.55364316582128,
+ 45.52489994752485
+ ],
+ [
+ -73.55364336637011,
+ 45.524899847700105
+ ],
+ [
+ -73.55366176649918,
+ 45.52490764752021
+ ],
+ [
+ -73.55374486745352,
+ 45.52481014752059
+ ],
+ [
+ -73.55361439201242,
+ 45.52475527448662
+ ],
+ [
+ -73.55352700129193,
+ 45.52485197229098
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1100,
+ "ID_UEV":"01022196",
+ "CIVIQUE_DE":" 1603",
+ "CIVIQUE_FI":" 1613",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1890,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-67-1681-7-000-0000",
+ "SUPERFICIE":608,
+ "SUPERFIC_1":464,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000575407445835,
+ "OBJECTID":86848,
+ "Join_Count":1,
+ "TARGET_FID":86848,
+ "feature_id":"1c3c3c83-cb79-4e71-a34c-c7d894f4513a",
+ "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.45,
+ "heightmax":33.34,
+ "elevmin":18.2,
+ "elevmax":22.66,
+ "bldgarea":756.42,
+ "comment":" ",
+ "OBJECTID_2":86848,
+ "Shape_Le_1":0.000575407445835,
+ "Shape_Ar_1":1.95328070453e-08,
+ "OBJECTID_3":86848,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86847,
+ "g_objectid":"942337",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729225",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004267186560000000",
+ "g_sup_tota":"120.4",
+ "g_geometry":"0.000509263",
+ "g_geomet_1":"1.38661e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000575407445835,
+ "Shape_Area":1.95328070453e-08,
+ "Shape_Le_3":0.000575407534778,
+ "Shape_Ar_2":1.95328070453e-08,
+ "building_height":15.445000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1101,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55210003800819,
+ 45.53515358312166
+ ],
+ [
+ -73.55211166714157,
+ 45.535144749980525
+ ],
+ [
+ -73.55218333141745,
+ 45.535191367238106
+ ],
+ [
+ -73.55225588422353,
+ 45.53508869074078
+ ],
+ [
+ -73.55216764274437,
+ 45.53505762096273
+ ],
+ [
+ -73.55210003800819,
+ 45.53515358312166
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1101,
+ "ID_UEV":"01024487",
+ "CIVIQUE_DE":" 2031",
+ "CIVIQUE_FI":" 2033",
+ "NOM_RUE":"rue Bercy (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-2717-1-000-0000",
+ "SUPERFICIE":194,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0004367540702,
+ "OBJECTID":86849,
+ "Join_Count":1,
+ "TARGET_FID":86849,
+ "feature_id":"8032f29a-ce7f-449c-86e6-bdf0dbe2cce4",
+ "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":32.01,
+ "elevmin":19.03,
+ "elevmax":21.28,
+ "bldgarea":1563.41,
+ "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_2":86849,
+ "Shape_Le_1":0.0004367540702,
+ "Shape_Ar_1":1.03433438017e-08,
+ "OBJECTID_3":86849,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86848,
+ "g_objectid":"943624",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360771",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379341440000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000680934",
+ "g_geomet_1":"2.20742e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0004367540702,
+ "Shape_Area":1.03433438017e-08,
+ "Shape_Le_3":0.000436755283934,
+ "Shape_Ar_2":1.03433438017e-08,
+ "building_height":14.989999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1102,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.553387774548,
+ 45.52451681924611
+ ],
+ [
+ -73.55342916584517,
+ 45.5245373498691
+ ],
+ [
+ -73.55342931783059,
+ 45.52453742271418
+ ],
+ [
+ -73.55346925312537,
+ 45.5245559964124
+ ],
+ [
+ -73.55356948526537,
+ 45.52445054640589
+ ],
+ [
+ -73.55348716941918,
+ 45.52441121815349
+ ],
+ [
+ -73.553387774548,
+ 45.52451681924611
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1102,
+ "ID_UEV":"01022182",
+ "CIVIQUE_DE":" 1578",
+ "CIVIQUE_FI":" 1582",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1905,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-67-2129-6-000-0000",
+ "SUPERFICIE":125,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000472151067944,
+ "OBJECTID":86850,
+ "Join_Count":1,
+ "TARGET_FID":86850,
+ "feature_id":"9cea23c5-4622-4c6f-8ffa-aa712b9c5cb8",
+ "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.49,
+ "heightmax":35.97,
+ "elevmin":16.42,
+ "elevmax":24.62,
+ "bldgarea":1312.65,
+ "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_2":86850,
+ "Shape_Le_1":0.000472151067944,
+ "Shape_Ar_1":1.25859446461e-08,
+ "OBJECTID_3":86850,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86849,
+ "g_objectid":"942360",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729241",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004267143410000000",
+ "g_sup_tota":"121",
+ "g_geometry":"0.000509076",
+ "g_geomet_1":"1.38566e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000472151067944,
+ "Shape_Area":1.25859446461e-08,
+ "Shape_Le_3":0.000472149950012,
+ "Shape_Ar_2":1.25859446461e-08,
+ "building_height":16.74
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1103,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5535487882678,
+ 45.52459298642748
+ ],
+ [
+ -73.5537112292117,
+ 45.52466853487528
+ ],
+ [
+ -73.55379775748237,
+ 45.524576607075055
+ ],
+ [
+ -73.55374446635588,
+ 45.52455504762764
+ ],
+ [
+ -73.55372176656812,
+ 45.52458284747073
+ ],
+ [
+ -73.55360776580758,
+ 45.5245368480474
+ ],
+ [
+ -73.55364475132606,
+ 45.524491571678986
+ ],
+ [
+ -73.5535487882678,
+ 45.52459298642748
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1103,
+ "ID_UEV":"01022184",
+ "CIVIQUE_DE":" 1600",
+ "CIVIQUE_FI":" 1600",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-67-0440-9-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":288,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000719785475829,
+ "OBJECTID":86851,
+ "Join_Count":1,
+ "TARGET_FID":86851,
+ "feature_id":"9cea23c5-4622-4c6f-8ffa-aa712b9c5cb8",
+ "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.49,
+ "heightmax":35.97,
+ "elevmin":16.42,
+ "elevmax":24.62,
+ "bldgarea":1312.65,
+ "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_2":86851,
+ "Shape_Le_1":0.000719785475829,
+ "Shape_Ar_1":1.64192553807e-08,
+ "OBJECTID_3":86851,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86850,
+ "g_objectid":"944644",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257944840010001",
+ "g_sup_tota":"122.6",
+ "g_geometry":"0.000571549",
+ "g_geomet_1":"1.43498e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000719785475829,
+ "Shape_Area":1.64192553807e-08,
+ "Shape_Le_3":0.000719786643177,
+ "Shape_Ar_2":1.64192553807e-08,
+ "building_height":16.74
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1104,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55319320712266,
+ 45.524720204524115
+ ],
+ [
+ -73.55325436641772,
+ 45.52474944777909
+ ],
+ [
+ -73.55334726638507,
+ 45.52479384820782
+ ],
+ [
+ -73.55334197387484,
+ 45.52479930799196
+ ],
+ [
+ -73.55334957404546,
+ 45.52480284142828
+ ],
+ [
+ -73.55345366607567,
+ 45.52468766705249
+ ],
+ [
+ -73.55342866582211,
+ 45.52467714768252
+ ],
+ [
+ -73.5533513663943,
+ 45.52464474780716
+ ],
+ [
+ -73.55328623929036,
+ 45.52461753971798
+ ],
+ [
+ -73.55319320712266,
+ 45.524720204524115
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1104,
+ "ID_UEV":"01022198",
+ "CIVIQUE_DE":" 1577",
+ "CIVIQUE_FI":" 1587",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-67-3455-4-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":530,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000662050436273,
+ "OBJECTID":86855,
+ "Join_Count":1,
+ "TARGET_FID":86855,
+ "feature_id":"1c3c3c83-cb79-4e71-a34c-c7d894f4513a",
+ "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.45,
+ "heightmax":33.34,
+ "elevmin":18.2,
+ "elevmax":22.66,
+ "bldgarea":756.42,
+ "comment":" ",
+ "OBJECTID_2":86855,
+ "Shape_Le_1":0.000662050436273,
+ "Shape_Ar_1":2.45925341424e-08,
+ "OBJECTID_3":86855,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86854,
+ "g_objectid":"944704",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004267464750000000",
+ "g_sup_tota":"328.9",
+ "g_geometry":"0.000954949",
+ "g_geomet_1":"3.75075e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000662050436273,
+ "Shape_Area":2.45925341424e-08,
+ "Shape_Le_3":0.000662050542918,
+ "Shape_Ar_2":2.45925341424e-08,
+ "building_height":15.445000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1105,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55328623929036,
+ 45.52461753971798
+ ],
+ [
+ -73.55312396651968,
+ 45.524549747922826
+ ],
+ [
+ -73.55312386579561,
+ 45.52454964809807
+ ],
+ [
+ -73.5531039664967,
+ 45.524577348116416
+ ],
+ [
+ -73.55306326587886,
+ 45.524657848231406
+ ],
+ [
+ -73.55306316605412,
+ 45.52465794805615
+ ],
+ [
+ -73.55311266653817,
+ 45.524681647890034
+ ],
+ [
+ -73.55317886653332,
+ 45.52471334809284
+ ],
+ [
+ -73.55319320712266,
+ 45.524720204524115
+ ],
+ [
+ -73.55328623929036,
+ 45.52461753971798
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1105,
+ "ID_UEV":"01022199",
+ "CIVIQUE_DE":" 1565",
+ "CIVIQUE_FI":" 1575",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-67-4647-5-000-0000",
+ "SUPERFICIE":329,
+ "SUPERFIC_1":538,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000583180087005,
+ "OBJECTID":86856,
+ "Join_Count":1,
+ "TARGET_FID":86856,
+ "feature_id":"1c3c3c83-cb79-4e71-a34c-c7d894f4513a",
+ "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.45,
+ "heightmax":33.34,
+ "elevmin":18.2,
+ "elevmax":22.66,
+ "bldgarea":756.42,
+ "comment":" ",
+ "OBJECTID_2":86856,
+ "Shape_Le_1":0.000583180087005,
+ "Shape_Ar_1":2.06549355967e-08,
+ "OBJECTID_3":86856,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86855,
+ "g_objectid":"944704",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004267464750000000",
+ "g_sup_tota":"328.9",
+ "g_geometry":"0.000954949",
+ "g_geomet_1":"3.75075e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000583180087005,
+ "Shape_Area":2.06549355967e-08,
+ "Shape_Le_3":0.00058317972657,
+ "Shape_Ar_2":2.06549355967e-08,
+ "building_height":15.445000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1106,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55697499212403,
+ 45.52261617404749
+ ],
+ [
+ -73.5569774751522,
+ 45.52261732158242
+ ],
+ [
+ -73.55705766679972,
+ 45.52253684754777
+ ],
+ [
+ -73.55705185897796,
+ 45.5225339930996
+ ],
+ [
+ -73.55697499212403,
+ 45.52261617404749
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1106,
+ "ID_UEV":"01032499",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-35-3310-8-000-0000",
+ "SUPERFICIE":423,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000235342186385,
+ "OBJECTID":86859,
+ "Join_Count":1,
+ "TARGET_FID":86859,
+ "feature_id":"ca92a226-4544-4963-ba9c-719d9dcfe7d5",
+ "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.5,
+ "heightmax":38.99,
+ "elevmin":26.17,
+ "elevmax":26.8,
+ "bldgarea":325.44,
+ "comment":" ",
+ "OBJECTID_2":86859,
+ "Shape_Le_1":0.000235342186385,
+ "Shape_Ar_1":4.94319944962e-10,
+ "OBJECTID_3":86859,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86858,
+ "g_objectid":"942157",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567509",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235471320000000",
+ "g_sup_tota":"112.9",
+ "g_geometry":"0.000476342",
+ "g_geomet_1":"1.3002e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000235342186385,
+ "Shape_Area":4.94319944962e-10,
+ "Shape_Le_3":0.00023534125137,
+ "Shape_Ar_2":4.94319944962e-10,
+ "building_height":18.245
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1107,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5571205680816,
+ 45.52268349819518
+ ],
+ [
+ -73.55720264470813,
+ 45.52272145588078
+ ],
+ [
+ -73.55731416783642,
+ 45.52261434752442
+ ],
+ [
+ -73.55727776777661,
+ 45.52259564792111
+ ],
+ [
+ -73.55727786850068,
+ 45.52259554809636
+ ],
+ [
+ -73.55722806854237,
+ 45.52257194808723
+ ],
+ [
+ -73.5571205680816,
+ 45.52268349819518
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1107,
+ "ID_UEV":"01032501",
+ "CIVIQUE_DE":" 1680",
+ "CIVIQUE_FI":" 1680",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1974,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-35-2217-6-000-0000",
+ "SUPERFICIE":423,
+ "SUPERFIC_1":393,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000496147304351,
+ "OBJECTID":86861,
+ "Join_Count":1,
+ "TARGET_FID":86861,
+ "feature_id":"72dd34d7-d404-461f-88c9-837efc145277",
+ "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":3.28,
+ "heightmax":37.54,
+ "elevmin":26.02,
+ "elevmax":26.64,
+ "bldgarea":120.09,
+ "comment":" ",
+ "OBJECTID_2":86861,
+ "Shape_Le_1":0.000496147304351,
+ "Shape_Ar_1":1.36303991739e-08,
+ "OBJECTID_3":86861,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86860,
+ "g_objectid":"942077",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567316",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235221760000000",
+ "g_sup_tota":"422.9",
+ "g_geometry":"0.00100839",
+ "g_geomet_1":"4.97674e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000496147304351,
+ "Shape_Area":1.36303991739e-08,
+ "Shape_Le_3":0.000496147797929,
+ "Shape_Ar_2":1.36303991739e-08,
+ "building_height":17.13
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1108,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55332450724207,
+ 45.52091404160004
+ ],
+ [
+ -73.55341236201274,
+ 45.52095474581516
+ ],
+ [
+ -73.55343516702119,
+ 45.52096531105056
+ ],
+ [
+ -73.55351645044567,
+ 45.52087683844563
+ ],
+ [
+ -73.55349368680605,
+ 45.52086622824413
+ ],
+ [
+ -73.5534065353052,
+ 45.52082560047138
+ ],
+ [
+ -73.55332450724207,
+ 45.52091404160004
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1108,
+ "ID_UEV":"01022021",
+ "CIVIQUE_DE":" 1314",
+ "CIVIQUE_FI":" 1318",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-63-2632-8-000-0000",
+ "SUPERFICIE":120,
+ "SUPERFIC_1":174,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000483998098467,
+ "OBJECTID":86864,
+ "Join_Count":1,
+ "TARGET_FID":86864,
+ "feature_id":"757feddf-ee8a-4aae-9b08-c1c41674b66a",
+ "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.45,
+ "heightmax":17.01,
+ "elevmin":16.87,
+ "elevmax":19.8,
+ "bldgarea":2340.76,
+ "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_2":86864,
+ "Shape_Le_1":0.000483998098467,
+ "Shape_Ar_1":1.39407984691e-08,
+ "OBJECTID_3":86864,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86863,
+ "g_objectid":"942249",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567695",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"19",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004263301630000000",
+ "g_sup_tota":"486.1",
+ "g_geometry":"0.00104786",
+ "g_geomet_1":"5.6908e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000483998098467,
+ "Shape_Area":1.39407984691e-08,
+ "Shape_Le_3":0.000483999073836,
+ "Shape_Ar_2":1.39407984691e-08,
+ "building_height":7.280000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1109,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55153774409347,
+ 45.53243385878585
+ ],
+ [
+ -73.55161177538497,
+ 45.532465203756445
+ ],
+ [
+ -73.55171061537445,
+ 45.5323499007776
+ ],
+ [
+ -73.55168376611476,
+ 45.53233744966386
+ ],
+ [
+ -73.55168126599948,
+ 45.5323400496039
+ ],
+ [
+ -73.55165286630857,
+ 45.53237255020333
+ ],
+ [
+ -73.55161056579682,
+ 45.53235424989901
+ ],
+ [
+ -73.55161046597208,
+ 45.53235424989901
+ ],
+ [
+ -73.55159476650711,
+ 45.532377250060335
+ ],
+ [
+ -73.55158817087923,
+ 45.532375034130816
+ ],
+ [
+ -73.55153774409347,
+ 45.53243385878585
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1109,
+ "ID_UEV":"01019045",
+ "CIVIQUE_DE":" 1912",
+ "CIVIQUE_FI":" 1916",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-76-6505-2-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000467099464741,
+ "OBJECTID":86867,
+ "Join_Count":1,
+ "TARGET_FID":86867,
+ "feature_id":"bdf1f075-d706-43d6-bd43-be32017d6e46",
+ "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.7,
+ "heightmax":35.59,
+ "elevmin":20.02,
+ "elevmax":23.88,
+ "bldgarea":1603.76,
+ "comment":" ",
+ "OBJECTID_2":86867,
+ "Shape_Le_1":0.000467099464741,
+ "Shape_Ar_1":9.34341693126e-09,
+ "OBJECTID_3":86867,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86866,
+ "g_objectid":"941210",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425158",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004376650520000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000655459",
+ "g_geomet_1":"1.89484e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000467099464741,
+ "Shape_Area":9.34341693126e-09,
+ "Shape_Le_3":0.000467100685297,
+ "Shape_Ar_2":9.34341693126e-09,
+ "building_height":16.445
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1110,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55455150626885,
+ 45.53788243197895
+ ],
+ [
+ -73.55458266777774,
+ 45.53789375084622
+ ],
+ [
+ -73.55463817123646,
+ 45.53791392443836
+ ],
+ [
+ -73.55471848429247,
+ 45.537801727717856
+ ],
+ [
+ -73.55463501191811,
+ 45.53776577372177
+ ],
+ [
+ -73.55455150626885,
+ 45.53788243197895
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55466417693206,
+ 45.537725029936475
+ ],
+ [
+ -73.55466476778665,
+ 45.537725251169704
+ ],
+ [
+ -73.554685668031,
+ 45.537697650976106
+ ],
+ [
+ -73.55468416346521,
+ 45.53769710868491
+ ],
+ [
+ -73.55466417693206,
+ 45.537725029936475
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1110,
+ "ID_UEV":"01025114",
+ "CIVIQUE_DE":" 2294",
+ "CIVIQUE_FI":" 2300",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-52-3111-1-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000535728548313,
+ "OBJECTID":86875,
+ "Join_Count":2,
+ "TARGET_FID":86875,
+ "feature_id":"ee598ffa-6e9b-4a71-ba9b-2c7cca213f6d",
+ "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":35.53,
+ "elevmin":18.68,
+ "elevmax":24.19,
+ "bldgarea":2418.71,
+ "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_2":86875,
+ "Shape_Le_1":0.000535728548313,
+ "Shape_Ar_1":1.25331309548e-08,
+ "OBJECTID_3":86875,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86874,
+ "g_objectid":"943998",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361208",
+ "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":"66023004452380820000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000669615",
+ "g_geomet_1":"2.15245e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000535728548313,
+ "Shape_Area":1.25331309548e-08,
+ "Shape_Le_3":0.000535728938208,
+ "Shape_Ar_2":1.25331309548e-08,
+ "building_height":17.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1111,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54851268193657,
+ 45.5291164279311
+ ],
+ [
+ -73.54863397529957,
+ 45.52917272998779
+ ],
+ [
+ -73.54868330671108,
+ 45.529118240964344
+ ],
+ [
+ -73.5486644650149,
+ 45.529111348560185
+ ],
+ [
+ -73.54867756543914,
+ 45.529093649002995
+ ],
+ [
+ -73.54867736489032,
+ 45.52909354917825
+ ],
+ [
+ -73.54857555533945,
+ 45.529047334816944
+ ],
+ [
+ -73.54851268193657,
+ 45.5291164279311
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1111,
+ "ID_UEV":"01019359",
+ "CIVIQUE_DE":" 2403",
+ "CIVIQUE_FI":" 2405",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-0344-6-000-0000",
+ "SUPERFICIE":111,
+ "SUPERFIC_1":265,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000454758821893,
+ "OBJECTID":86876,
+ "Join_Count":1,
+ "TARGET_FID":86876,
+ "feature_id":"72447a70-7754-47e9-94e3-b216251fd915",
+ "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,
+ "heightmax":32.42,
+ "elevmin":18.18,
+ "elevmax":21.24,
+ "bldgarea":2453.19,
+ "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_2":86876,
+ "Shape_Le_1":0.000454758821893,
+ "Shape_Ar_1":1.15547254737e-08,
+ "OBJECTID_3":86876,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86875,
+ "g_objectid":"940763",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424394",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004392985890000000",
+ "g_sup_tota":"387.8",
+ "g_geometry":"0.000915286",
+ "g_geomet_1":"4.45155e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000454758821893,
+ "Shape_Area":1.15547254737e-08,
+ "Shape_Le_3":0.000454759056223,
+ "Shape_Ar_2":1.15547254737e-08,
+ "building_height":16.21
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1112,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5506326052324,
+ 45.53056370420188
+ ],
+ [
+ -73.55063316640934,
+ 45.53056394881748
+ ],
+ [
+ -73.5506321690612,
+ 45.53056505678224
+ ],
+ [
+ -73.55079584027766,
+ 45.53063796661916
+ ],
+ [
+ -73.5508648839291,
+ 45.530561484675076
+ ],
+ [
+ -73.55087548873466,
+ 45.53054973773051
+ ],
+ [
+ -73.55080316615503,
+ 45.530515748753096
+ ],
+ [
+ -73.55081636640404,
+ 45.530501848831555
+ ],
+ [
+ -73.55081616585521,
+ 45.53050164918206
+ ],
+ [
+ -73.55076296645957,
+ 45.53046994897926
+ ],
+ [
+ -73.55076946586,
+ 45.53046464927444
+ ],
+ [
+ -73.55073570441107,
+ 45.530448585584054
+ ],
+ [
+ -73.5506326052324,
+ 45.53056370420188
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55075996182462,
+ 45.530421498903344
+ ],
+ [
+ -73.55075820544867,
+ 45.53042346122405
+ ],
+ [
+ -73.55076006614598,
+ 45.530421549265384
+ ],
+ [
+ -73.55075996182462,
+ 45.530421498903344
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1112,
+ "ID_UEV":"01018724",
+ "CIVIQUE_DE":" 1720",
+ "CIVIQUE_FI":" 1734",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-3199-3-000-0000",
+ "SUPERFICIE":421,
+ "SUPERFIC_1":511,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000667162416949,
+ "OBJECTID":86877,
+ "Join_Count":1,
+ "TARGET_FID":86877,
+ "feature_id":"16cb361e-6d2c-4f37-bd8c-6dbc953e0ff8",
+ "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.44,
+ "heightmax":34.14,
+ "elevmin":20.45,
+ "elevmax":22.01,
+ "bldgarea":1494.3,
+ "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_2":86877,
+ "Shape_Le_1":0.000667162416949,
+ "Shape_Ar_1":2.31832177411e-08,
+ "OBJECTID_3":86877,
+ "Join_Cou_1":9,
+ "TARGET_F_1":86876,
+ "g_objectid":"944657",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004384150930010001",
+ "g_sup_tota":"288.9",
+ "g_geometry":"0.000890535",
+ "g_geomet_1":"3.31112e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000667162416949,
+ "Shape_Area":2.31832177411e-08,
+ "Shape_Le_3":0.000667161522927,
+ "Shape_Ar_2":2.31832177411e-08,
+ "building_height":15.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1113,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55904722976769,
+ 45.53560965810953
+ ],
+ [
+ -73.55912396891787,
+ 45.535642350264546
+ ],
+ [
+ -73.55928319118817,
+ 45.53571009079835
+ ],
+ [
+ -73.55933714421568,
+ 45.5355704710507
+ ],
+ [
+ -73.55915188567283,
+ 45.535490640031306
+ ],
+ [
+ -73.55904722976769,
+ 45.53560965810953
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1113,
+ "ID_UEV":"01023738",
+ "CIVIQUE_DE":" 2526",
+ "CIVIQUE_FI":" 2546",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-7463-3-000-0000",
+ "SUPERFICIE":449,
+ "SUPERFIC_1":800,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000766341016165,
+ "OBJECTID":86882,
+ "Join_Count":1,
+ "TARGET_FID":86882,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":86882,
+ "Shape_Le_1":0.000766341016165,
+ "Shape_Ar_1":3.43871376413e-08,
+ "OBJECTID_3":86882,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86881,
+ "g_objectid":"944207",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361482",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319617050000000",
+ "g_sup_tota":"234.3",
+ "g_geometry":"0.000723218",
+ "g_geomet_1":"2.66183e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000766341016165,
+ "Shape_Area":3.43871376413e-08,
+ "Shape_Le_3":0.000766341558038,
+ "Shape_Ar_2":3.43871376413e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1114,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55819371828731,
+ 45.53845090873275
+ ],
+ [
+ -73.55828084640578,
+ 45.53848175727757
+ ],
+ [
+ -73.55835749022783,
+ 45.538374834181546
+ ],
+ [
+ -73.55828356955294,
+ 45.53834694980219
+ ],
+ [
+ -73.55827149975175,
+ 45.538342397433986
+ ],
+ [
+ -73.55819371828731,
+ 45.53845090873275
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1114,
+ "ID_UEV":"01024885",
+ "CIVIQUE_DE":" 2574",
+ "CIVIQUE_FI":" 2576",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-4775-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000449396415918,
+ "OBJECTID":86885,
+ "Join_Count":1,
+ "TARGET_FID":86885,
+ "feature_id":"854ff233-c513-43a8-ab8b-43c22e6fac50",
+ "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":48.02,
+ "elevmin":26.87,
+ "elevmax":42.24,
+ "bldgarea":1868.16,
+ "comment":" ",
+ "OBJECTID_2":86885,
+ "Shape_Le_1":0.000449396415918,
+ "Shape_Ar_1":1.17670713456e-08,
+ "OBJECTID_3":86885,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86884,
+ "g_objectid":"944095",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361345",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422407840000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667859",
+ "g_geomet_1":"2.14438e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000449396415918,
+ "Shape_Area":1.17670713456e-08,
+ "Shape_Le_3":0.000449397324082,
+ "Shape_Ar_2":1.17670713456e-08,
+ "building_height":23.755000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1115,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55937907150879,
+ 45.53575088404636
+ ],
+ [
+ -73.55945364599081,
+ 45.535782612128145
+ ],
+ [
+ -73.55954780231107,
+ 45.53567679699688
+ ],
+ [
+ -73.55943131402577,
+ 45.53562500953686
+ ],
+ [
+ -73.55942519413924,
+ 45.53563119417457
+ ],
+ [
+ -73.55937907150879,
+ 45.53575088404636
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1115,
+ "ID_UEV":"01023743",
+ "CIVIQUE_DE":" 2558",
+ "CIVIQUE_FI":" 2566",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-5374-4-000-0000",
+ "SUPERFICIE":240,
+ "SUPERFIC_1":328,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000487135258876,
+ "OBJECTID":86887,
+ "Join_Count":1,
+ "TARGET_FID":86887,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":86887,
+ "Shape_Le_1":0.000487135258876,
+ "Shape_Ar_1":1.43470660525e-08,
+ "OBJECTID_3":86887,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86886,
+ "g_objectid":"944207",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361482",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319617050000000",
+ "g_sup_tota":"234.3",
+ "g_geometry":"0.000723218",
+ "g_geomet_1":"2.66183e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000487135258876,
+ "Shape_Area":1.43470660525e-08,
+ "Shape_Le_3":0.000487135693765,
+ "Shape_Ar_2":1.43470660525e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1116,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55971035746887,
+ 45.535891831193354
+ ],
+ [
+ -73.55971956922458,
+ 45.535895749539506
+ ],
+ [
+ -73.55978436897529,
+ 45.535923349733096
+ ],
+ [
+ -73.55979006887843,
+ 45.53592575002364
+ ],
+ [
+ -73.55979378487712,
+ 45.535927366105355
+ ],
+ [
+ -73.55991667093946,
+ 45.535789266211964
+ ],
+ [
+ -73.55984246877676,
+ 45.5357564499505
+ ],
+ [
+ -73.55983936881367,
+ 45.5357599501119
+ ],
+ [
+ -73.5598195693395,
+ 45.535785050190206
+ ],
+ [
+ -73.55980903198308,
+ 45.53578094028846
+ ],
+ [
+ -73.55971035746887,
+ 45.535891831193354
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1116,
+ "ID_UEV":"01023750",
+ "CIVIQUE_DE":" 2600",
+ "CIVIQUE_FI":" 2606",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-2791-2-000-0000",
+ "SUPERFICIE":191,
+ "SUPERFIC_1":322,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000553065903287,
+ "OBJECTID":86888,
+ "Join_Count":1,
+ "TARGET_FID":86888,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":86888,
+ "Shape_Le_1":0.000553065903287,
+ "Shape_Ar_1":1.55861957435e-08,
+ "OBJECTID_3":86888,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86887,
+ "g_objectid":"944209",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361485",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319279120000000",
+ "g_sup_tota":"190.5",
+ "g_geometry":"0.000691182",
+ "g_geomet_1":"2.19057e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000553065903287,
+ "Shape_Area":1.55861957435e-08,
+ "Shape_Le_3":0.000553065274878,
+ "Shape_Ar_2":1.55861957435e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1117,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56004325411473,
+ 45.536035614802074
+ ],
+ [
+ -73.56021381953398,
+ 45.53610955975867
+ ],
+ [
+ -73.56029383041779,
+ 45.53601647273233
+ ],
+ [
+ -73.56026077044005,
+ 45.536002849801974
+ ],
+ [
+ -73.56027787014943,
+ 45.53598224993119
+ ],
+ [
+ -73.56015276905688,
+ 45.53593085007896
+ ],
+ [
+ -73.56018947038959,
+ 45.53588665019904
+ ],
+ [
+ -73.56017976040945,
+ 45.535882666202376
+ ],
+ [
+ -73.56004325411473,
+ 45.536035614802074
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1117,
+ "ID_UEV":"01023754",
+ "CIVIQUE_DE":" 2630",
+ "CIVIQUE_FI":" 2630",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":13,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-00-9809-3-000-0000",
+ "SUPERFICIE":386,
+ "SUPERFIC_1":601,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0007793815626,
+ "OBJECTID":86889,
+ "Join_Count":1,
+ "TARGET_FID":86889,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":86889,
+ "Shape_Le_1":0.0007793815626,
+ "Shape_Ar_1":2.57603058549e-08,
+ "OBJECTID_3":86889,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86888,
+ "g_objectid":"944213",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361489",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004400881510000000",
+ "g_sup_tota":"190.5",
+ "g_geometry":"0.000687648",
+ "g_geomet_1":"2.18774e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0007793815626,
+ "Shape_Area":2.57603058549e-08,
+ "Shape_Le_3":0.000779381569568,
+ "Shape_Ar_2":2.57603058549e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1118,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56021381953398,
+ 45.53610955975867
+ ],
+ [
+ -73.56029685213986,
+ 45.536145557821534
+ ],
+ [
+ -73.56042694986569,
+ 45.535994210015076
+ ],
+ [
+ -73.56034166985403,
+ 45.535967250138775
+ ],
+ [
+ -73.56034157002928,
+ 45.535967250138775
+ ],
+ [
+ -73.56029887021853,
+ 45.536018550166254
+ ],
+ [
+ -73.56029383041779,
+ 45.53601647273233
+ ],
+ [
+ -73.56021381953398,
+ 45.53610955975867
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1118,
+ "ID_UEV":"01023756",
+ "CIVIQUE_DE":" 2640",
+ "CIVIQUE_FI":" 2640",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-00-8815-1-000-0000",
+ "SUPERFICIE":191,
+ "SUPERFIC_1":399,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000574563664723,
+ "OBJECTID":86890,
+ "Join_Count":1,
+ "TARGET_FID":86890,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":86890,
+ "Shape_Le_1":0.000574563664723,
+ "Shape_Ar_1":1.65028945372e-08,
+ "OBJECTID_3":86890,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86889,
+ "g_objectid":"944213",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361489",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004400881510000000",
+ "g_sup_tota":"190.5",
+ "g_geometry":"0.000687648",
+ "g_geomet_1":"2.18774e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000574563664723,
+ "Shape_Area":1.65028945372e-08,
+ "Shape_Le_3":0.000574562626595,
+ "Shape_Ar_2":1.65028945372e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1119,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56257146872015,
+ 45.51322484619999
+ ],
+ [
+ -73.5626781687843,
+ 45.513270845623325
+ ],
+ [
+ -73.56275736937894,
+ 45.51318514562826
+ ],
+ [
+ -73.56270366906092,
+ 45.513160945771325
+ ],
+ [
+ -73.56262196925033,
+ 45.51312424623727
+ ],
+ [
+ -73.5623900691682,
+ 45.5130200462884
+ ],
+ [
+ -73.5623863693573,
+ 45.51302404557354
+ ],
+ [
+ -73.56231026872577,
+ 45.51310484606209
+ ],
+ [
+ -73.56231346941293,
+ 45.513106245407194
+ ],
+ [
+ -73.56242366873917,
+ 45.513161746167945
+ ],
+ [
+ -73.56242366873917,
+ 45.51316144579438
+ ],
+ [
+ -73.56257146872015,
+ 45.51322484619999
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5626800690518,
+ 45.51303134626991
+ ],
+ [
+ -73.56267706891344,
+ 45.5130346458825
+ ],
+ [
+ -73.56279086912515,
+ 45.513084645490295
+ ],
+ [
+ -73.56279716887609,
+ 45.51308764562864
+ ],
+ [
+ -73.56284726920795,
+ 45.51303254596552
+ ],
+ [
+ -73.56295916915218,
+ 45.512909545689276
+ ],
+ [
+ -73.56303186944706,
+ 45.51282954559735
+ ],
+ [
+ -73.56291746938754,
+ 45.51277814574512
+ ],
+ [
+ -73.56291256898172,
+ 45.5127759460034
+ ],
+ [
+ -73.5626800690518,
+ 45.51303134626991
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56333656874949,
+ 45.51252224545556
+ ],
+ [
+ -73.56333846901698,
+ 45.5125203460874
+ ],
+ [
+ -73.56344876906728,
+ 45.512410745709644
+ ],
+ [
+ -73.56332006888792,
+ 45.512346745456234
+ ],
+ [
+ -73.56331546885565,
+ 45.51234444588976
+ ],
+ [
+ -73.5633145695336,
+ 45.512346145608426
+ ],
+ [
+ -73.56327036875436,
+ 45.51232834622649
+ ],
+ [
+ -73.56320126934494,
+ 45.51230094568239
+ ],
+ [
+ -73.56315576904535,
+ 45.512282746102144
+ ],
+ [
+ -73.56316146894848,
+ 45.51227674582545
+ ],
+ [
+ -73.56312856905006,
+ 45.51226294572866
+ ],
+ [
+ -73.56302246883371,
+ 45.512218345650425
+ ],
+ [
+ -73.5629451694059,
+ 45.51230924552556
+ ],
+ [
+ -73.56292006932759,
+ 45.51233884581138
+ ],
+ [
+ -73.56292016915233,
+ 45.51233894563613
+ ],
+ [
+ -73.56301046917966,
+ 45.51238274621706
+ ],
+ [
+ -73.56302216935947,
+ 45.51238864576968
+ ],
+ [
+ -73.56304776946084,
+ 45.5124032462631
+ ],
+ [
+ -73.56304806893507,
+ 45.51240354573734
+ ],
+ [
+ -73.56306066933627,
+ 45.512394046198565
+ ],
+ [
+ -73.56316026925286,
+ 45.51245874612453
+ ],
+ [
+ -73.56316056872711,
+ 45.51245894577402
+ ],
+ [
+ -73.56317516922053,
+ 45.51244704594471
+ ],
+ [
+ -73.56323756868069,
+ 45.512485245547936
+ ],
+ [
+ -73.56323806870375,
+ 45.5124855459215
+ ],
+ [
+ -73.56324816898965,
+ 45.51247604548341
+ ],
+ [
+ -73.56333656874949,
+ 45.51252224545556
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1119,
+ "ID_UEV":"01021688",
+ "CIVIQUE_DE":" 250",
+ "CIVIQUE_FI":" 280",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":12,
+ "NOMBRE_LOG":129,
+ "ANNEE_CONS":1959,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-84-8824-5-000-0000",
+ "SUPERFICIE":6552,
+ "SUPERFIC_1":8587,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00328254501804,
+ "OBJECTID":86891,
+ "Join_Count":3,
+ "TARGET_FID":86891,
+ "feature_id":"e566f77c-241b-433f-a1be-fc00f0fb94cb",
+ "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":9.67,
+ "elevmin":27.08,
+ "elevmax":27.69,
+ "bldgarea":394.97,
+ "comment":" ",
+ "OBJECTID_2":86891,
+ "Shape_Le_1":0.00328254501804,
+ "Shape_Ar_1":1.5931844e-07,
+ "OBJECTID_3":86891,
+ "Join_Cou_1":1,
+ "TARGET_F_1":86890,
+ "g_objectid":"943244",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161591",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"129",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994184882450000000",
+ "g_sup_tota":"6552.2",
+ "g_geometry":"0.00382438",
+ "g_geomet_1":"7.55848e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00328254501804,
+ "Shape_Area":1.5931844e-07,
+ "Shape_Le_3":0.0032825453653,
+ "Shape_Ar_2":1.5931844e-07,
+ "building_height":4.58
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1120,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55690560043496,
+ 45.53653637980038
+ ],
+ [
+ -73.55698225145159,
+ 45.53656355101736
+ ],
+ [
+ -73.55710596668885,
+ 45.53639119145062
+ ],
+ [
+ -73.55708076768512,
+ 45.536384149759
+ ],
+ [
+ -73.55708066786038,
+ 45.53638424958375
+ ],
+ [
+ -73.55704406815107,
+ 45.53642874983723
+ ],
+ [
+ -73.55706806835852,
+ 45.536438449924816
+ ],
+ [
+ -73.55705186797117,
+ 45.53645804974949
+ ],
+ [
+ -73.55701756782834,
+ 45.53644395017845
+ ],
+ [
+ -73.5570155677361,
+ 45.53644664994324
+ ],
+ [
+ -73.55698646837266,
+ 45.53643654965734
+ ],
+ [
+ -73.55702126853856,
+ 45.536387149897344
+ ],
+ [
+ -73.55702116781448,
+ 45.536387149897344
+ ],
+ [
+ -73.55701442739576,
+ 45.536384762197315
+ ],
+ [
+ -73.55690560043496,
+ 45.53653637980038
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1120,
+ "ID_UEV":"01024303",
+ "CIVIQUE_DE":" 2344",
+ "CIVIQUE_FI":" 2346",
+ "NOM_RUE":"rue Bercy (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-4760-0-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":138,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000754283567061,
+ "OBJECTID":86894,
+ "Join_Count":1,
+ "TARGET_FID":86894,
+ "feature_id":"465326c4-255b-495a-8fdc-43800d1855ad",
+ "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.56,
+ "heightmax":36.73,
+ "elevmin":21.99,
+ "elevmax":25.2,
+ "bldgarea":1025.98,
+ "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_2":86894,
+ "Shape_Le_1":0.000754283567061,
+ "Shape_Ar_1":1.20323218926e-08,
+ "OBJECTID_3":86894,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86893,
+ "g_objectid":"940959",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424756",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430476000000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000657071",
+ "g_geomet_1":"1.93105e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000754283567061,
+ "Shape_Area":1.20323218926e-08,
+ "Shape_Le_3":0.000754282648643,
+ "Shape_Ar_2":1.20323218926e-08,
+ "building_height":18.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1121,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54725198171543,
+ 45.530044378095866
+ ],
+ [
+ -73.54708406479959,
+ 45.529978148423105
+ ],
+ [
+ -73.54708206470737,
+ 45.529980548713645
+ ],
+ [
+ -73.54702366543165,
+ 45.53004844842745
+ ],
+ [
+ -73.54702836528867,
+ 45.53005044851968
+ ],
+ [
+ -73.54718198208465,
+ 45.530116298678536
+ ],
+ [
+ -73.5471896982678,
+ 45.530107437658415
+ ],
+ [
+ -73.54719510948856,
+ 45.53010969405743
+ ],
+ [
+ -73.54725198171543,
+ 45.530044378095866
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1121,
+ "ID_UEV":"01018940",
+ "CIVIQUE_DE":" 1461",
+ "CIVIQUE_FI":" 1471",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-13-2052-0-000-0000",
+ "SUPERFICIE":307,
+ "SUPERFIC_1":423,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000549652431854,
+ "OBJECTID":86895,
+ "Join_Count":1,
+ "TARGET_FID":86895,
+ "feature_id":"55b51e6f-d4e7-410b-92d8-25000e280d6b",
+ "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":10.67,
+ "elevmin":18.7,
+ "elevmax":19.68,
+ "bldgarea":289.76,
+ "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_2":86895,
+ "Shape_Le_1":0.000549652431854,
+ "Shape_Ar_1":1.61751977254e-08,
+ "OBJECTID_3":86895,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86894,
+ "g_objectid":"941059",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424915",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014313105960000000",
+ "g_sup_tota":"195.6",
+ "g_geometry":"0.000652767",
+ "g_geomet_1":"2.2803e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000549652431854,
+ "Shape_Area":1.61751977254e-08,
+ "Shape_Le_3":0.000549651929117,
+ "Shape_Ar_2":1.61751977254e-08,
+ "building_height":5.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1122,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54662560211169,
+ 45.52991170651034
+ ],
+ [
+ -73.54663536425251,
+ 45.529918749101284
+ ],
+ [
+ -73.546687326181,
+ 45.52995653141908
+ ],
+ [
+ -73.54678354824401,
+ 45.52984494174096
+ ],
+ [
+ -73.54671060872946,
+ 45.52981312192833
+ ],
+ [
+ -73.54662560211169,
+ 45.52991170651034
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1122,
+ "ID_UEV":"01018944",
+ "CIVIQUE_DE":" 1441",
+ "CIVIQUE_FI":" 1443",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-13-5434-7-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":174,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000433381246976,
+ "OBJECTID":86896,
+ "Join_Count":1,
+ "TARGET_FID":86896,
+ "feature_id":"1a0bcbce-d278-45e8-8282-fca808f250d9",
+ "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":3.04,
+ "heightmax":9.59,
+ "elevmin":19.22,
+ "elevmax":20.21,
+ "bldgarea":706.35,
+ "comment":" ",
+ "OBJECTID_2":86896,
+ "Shape_Le_1":0.000433381246976,
+ "Shape_Ar_1":1.05468125605e-08,
+ "OBJECTID_3":86896,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86895,
+ "g_objectid":"941053",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424907",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014313603100000000",
+ "g_sup_tota":"170.9",
+ "g_geometry":"0.000665112",
+ "g_geomet_1":"1.97984e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000433381246976,
+ "Shape_Area":1.05468125605e-08,
+ "Shape_Le_3":0.000433380875876,
+ "Shape_Ar_2":1.05468125605e-08,
+ "building_height":3.275
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1123,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56089192094724,
+ 45.530089899979195
+ ],
+ [
+ -73.56089596879576,
+ 45.530091848810066
+ ],
+ [
+ -73.5608870691048,
+ 45.5301010488746
+ ],
+ [
+ -73.56088796932617,
+ 45.53010144907291
+ ],
+ [
+ -73.56093986920145,
+ 45.530121849294204
+ ],
+ [
+ -73.5609794690491,
+ 45.53007214916065
+ ],
+ [
+ -73.56099998618227,
+ 45.530080238562455
+ ],
+ [
+ -73.56107894306062,
+ 45.52999788044812
+ ],
+ [
+ -73.56100916736104,
+ 45.52996760117415
+ ],
+ [
+ -73.56089192094724,
+ 45.530089899979195
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1123,
+ "ID_UEV":"01022394",
+ "CIVIQUE_DE":" 2271",
+ "CIVIQUE_FI":" 2273",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-3852-5-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000519221727734,
+ "OBJECTID":86898,
+ "Join_Count":1,
+ "TARGET_FID":86898,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":86898,
+ "Shape_Le_1":0.000519221727734,
+ "Shape_Ar_1":1.17170470538e-08,
+ "OBJECTID_3":86898,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86897,
+ "g_objectid":"940371",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423706",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303335590000000",
+ "g_sup_tota":"181.4",
+ "g_geometry":"0.000735992",
+ "g_geomet_1":"2.08774e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000519221727734,
+ "Shape_Area":1.17170470538e-08,
+ "Shape_Le_3":0.000519221090568,
+ "Shape_Ar_2":1.17170470538e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1124,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55883623802382,
+ 45.533857074594614
+ ],
+ [
+ -73.55884306927408,
+ 45.53386025010076
+ ],
+ [
+ -73.55885446908033,
+ 45.53384814972263
+ ],
+ [
+ -73.55892923152066,
+ 45.533882895929196
+ ],
+ [
+ -73.55905253486843,
+ 45.53375024053147
+ ],
+ [
+ -73.55900526919966,
+ 45.533727250262686
+ ],
+ [
+ -73.55897126943039,
+ 45.53376184987977
+ ],
+ [
+ -73.55894396871103,
+ 45.53374854980602
+ ],
+ [
+ -73.55900026896909,
+ 45.53369124950186
+ ],
+ [
+ -73.55900016914434,
+ 45.53369114967711
+ ],
+ [
+ -73.55899343592017,
+ 45.53368795708385
+ ],
+ [
+ -73.55883623802382,
+ 45.533857074594614
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1124,
+ "ID_UEV":"01023243",
+ "CIVIQUE_DE":" 2358",
+ "CIVIQUE_FI":" 2362",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-9363-7-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":331,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000737965597015,
+ "OBJECTID":86899,
+ "Join_Count":1,
+ "TARGET_FID":86899,
+ "feature_id":"4bacb033-2d1d-46d5-a267-28cce712eae4",
+ "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.47,
+ "heightmax":42.06,
+ "elevmin":21.6,
+ "elevmax":31.04,
+ "bldgarea":2833.95,
+ "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_2":86899,
+ "Shape_Le_1":0.000737965597015,
+ "Shape_Ar_1":1.45291077039e-08,
+ "OBJECTID_3":86899,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86898,
+ "g_objectid":"941350",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425356",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317936370000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000808243",
+ "g_geomet_1":"2.6898e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000737965597015,
+ "Shape_Area":1.45291077039e-08,
+ "Shape_Le_3":0.00073796588907,
+ "Shape_Ar_2":1.45291077039e-08,
+ "building_height":19.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1125,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.559140797032,
+ 45.53398122510375
+ ],
+ [
+ -73.55924326938322,
+ 45.534028849602024
+ ],
+ [
+ -73.55925536616407,
+ 45.53403447666007
+ ],
+ [
+ -73.55935949686513,
+ 45.53392244811278
+ ],
+ [
+ -73.55924579288089,
+ 45.53386826575815
+ ],
+ [
+ -73.559140797032,
+ 45.53398122510375
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1125,
+ "ID_UEV":"01023249",
+ "CIVIQUE_DE":" 2388",
+ "CIVIQUE_FI":" 2398",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-17-6979-3-000-0000",
+ "SUPERFICIE":325,
+ "SUPERFIC_1":434,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000559464137456,
+ "OBJECTID":86900,
+ "Join_Count":1,
+ "TARGET_FID":86900,
+ "feature_id":"4bacb033-2d1d-46d5-a267-28cce712eae4",
+ "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.47,
+ "heightmax":42.06,
+ "elevmin":21.6,
+ "elevmax":31.04,
+ "bldgarea":2833.95,
+ "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_2":86900,
+ "Shape_Le_1":0.000559464137456,
+ "Shape_Ar_1":1.84562637961e-08,
+ "OBJECTID_3":86900,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86899,
+ "g_objectid":"941347",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425353",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004317697930000000",
+ "g_sup_tota":"325.2",
+ "g_geometry":"0.000880778",
+ "g_geomet_1":"3.77165e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000559464137456,
+ "Shape_Area":1.84562637961e-08,
+ "Shape_Le_3":0.000559463823832,
+ "Shape_Ar_2":1.84562637961e-08,
+ "building_height":19.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1126,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55553022046514,
+ 45.53604024900858
+ ],
+ [
+ -73.5555327682445,
+ 45.53604124995402
+ ],
+ [
+ -73.555532967894,
+ 45.53604124995402
+ ],
+ [
+ -73.55555546803227,
+ 45.53600654961287
+ ],
+ [
+ -73.5557027679902,
+ 45.53605384945588
+ ],
+ [
+ -73.55572636799933,
+ 45.536061449626494
+ ],
+ [
+ -73.55571106783336,
+ 45.536084750161386
+ ],
+ [
+ -73.55583676787438,
+ 45.53612554970465
+ ],
+ [
+ -73.55586396786967,
+ 45.53608414941426
+ ],
+ [
+ -73.55595306820138,
+ 45.53594854963615
+ ],
+ [
+ -73.55594696809995,
+ 45.53594654954392
+ ],
+ [
+ -73.55583966818799,
+ 45.53591054968242
+ ],
+ [
+ -73.55579736767622,
+ 45.535972850217156
+ ],
+ [
+ -73.55565576852075,
+ 45.53592544965008
+ ],
+ [
+ -73.55561836841481,
+ 45.53598044948845
+ ],
+ [
+ -73.55558486776928,
+ 45.535969250231005
+ ],
+ [
+ -73.55562956767226,
+ 45.53590334971012
+ ],
+ [
+ -73.55562874749054,
+ 45.535902988182656
+ ],
+ [
+ -73.55553022046514,
+ 45.53604024900858
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1126,
+ "ID_UEV":"01024292",
+ "CIVIQUE_DE":" 2290",
+ "CIVIQUE_FI":" 2290",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":19,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-4511-6-000-0000",
+ "SUPERFICIE":670,
+ "SUPERFIC_1":1504,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00129116153401,
+ "OBJECTID":86901,
+ "Join_Count":1,
+ "TARGET_FID":86901,
+ "feature_id":"2ee29968-0b2e-43d2-a3b0-66bd8f109b2f",
+ "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,
+ "heightmax":30.41,
+ "elevmin":19.34,
+ "elevmax":20.79,
+ "bldgarea":628.6,
+ "comment":" ",
+ "OBJECTID_2":86901,
+ "Shape_Le_1":0.00129116153401,
+ "Shape_Ar_1":4.31500870338e-08,
+ "OBJECTID_3":86901,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86900,
+ "g_objectid":"940954",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424751",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440600320000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000657814",
+ "g_geomet_1":"1.93399e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00129116153401,
+ "Shape_Area":4.31500870338e-08,
+ "Shape_Le_3":0.00129116168556,
+ "Shape_Ar_2":4.31500870338e-08,
+ "building_height":15.205
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1127,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55598066839498,
+ 45.536098849732426
+ ],
+ [
+ -73.55594906801691,
+ 45.53619114985198
+ ],
+ [
+ -73.55603246844551,
+ 45.536205350147085
+ ],
+ [
+ -73.55603376796586,
+ 45.536205749446076
+ ],
+ [
+ -73.55617566839423,
+ 45.53625815024373
+ ],
+ [
+ -73.55624636769755,
+ 45.536284249468835
+ ],
+ [
+ -73.5563279676834,
+ 45.536314249952966
+ ],
+ [
+ -73.55632376784945,
+ 45.53631994985609
+ ],
+ [
+ -73.5563255682922,
+ 45.5363203500544
+ ],
+ [
+ -73.55647286825011,
+ 45.53635365015113
+ ],
+ [
+ -73.5565426682314,
+ 45.53629005009603
+ ],
+ [
+ -73.55654136781172,
+ 45.536289349524154
+ ],
+ [
+ -73.55649646825925,
+ 45.53627374988395
+ ],
+ [
+ -73.55656116818521,
+ 45.536181349939646
+ ],
+ [
+ -73.55649186822698,
+ 45.5361573497322
+ ],
+ [
+ -73.55634186850428,
+ 45.53610544985692
+ ],
+ [
+ -73.55632406822302,
+ 45.53609915010599
+ ],
+ [
+ -73.55611916848667,
+ 45.536026449811104
+ ],
+ [
+ -73.55611856773956,
+ 45.53602625016161
+ ],
+ [
+ -73.55611166814082,
+ 45.53603574970038
+ ],
+ [
+ -73.55603316811806,
+ 45.53600754965898
+ ],
+ [
+ -73.55599286769854,
+ 45.53606294969567
+ ],
+ [
+ -73.5559929684226,
+ 45.53606294969567
+ ],
+ [
+ -73.55598066839498,
+ 45.536098849732426
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1127,
+ "ID_UEV":"01024294",
+ "CIVIQUE_DE":" 2310",
+ "CIVIQUE_FI":" 2310",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":46,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-0627-4-000-0000",
+ "SUPERFICIE":1859,
+ "SUPERFIC_1":3679,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00158397158443,
+ "OBJECTID":86902,
+ "Join_Count":1,
+ "TARGET_FID":86902,
+ "feature_id":"2eb22311-8e94-4ca9-b8f3-f505ac2a45b6",
+ "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.62,
+ "heightmax":15.03,
+ "elevmin":19.44,
+ "elevmax":22.12,
+ "bldgarea":966.13,
+ "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_2":86902,
+ "Shape_Le_1":0.00158397158443,
+ "Shape_Ar_1":1.11306370002e-07,
+ "OBJECTID_3":86902,
+ "Join_Cou_1":1,
+ "TARGET_F_1":86901,
+ "g_objectid":"940967",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424765",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"46",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440062740000000",
+ "g_sup_tota":"1858.6",
+ "g_geometry":"0.00228881",
+ "g_geomet_1":"2.14411e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00158397158443,
+ "Shape_Area":1.11306370002e-07,
+ "Shape_Le_3":0.00158397267845,
+ "Shape_Ar_2":1.11306370002e-07,
+ "building_height":7.205
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1128,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55675935897908,
+ 45.53633823217397
+ ],
+ [
+ -73.55673966832288,
+ 45.536330550165054
+ ],
+ [
+ -73.55674786834129,
+ 45.53632014950559
+ ],
+ [
+ -73.55674716776942,
+ 45.53631994985609
+ ],
+ [
+ -73.55664646798196,
+ 45.53628335014679
+ ],
+ [
+ -73.55663626787131,
+ 45.53629725006833
+ ],
+ [
+ -73.55661746844326,
+ 45.53629045029434
+ ],
+ [
+ -73.55661726789444,
+ 45.53629074976858
+ ],
+ [
+ -73.55653836767337,
+ 45.536394750067956
+ ],
+ [
+ -73.55653826784862,
+ 45.5363948498927
+ ],
+ [
+ -73.5565675677609,
+ 45.53640695027083
+ ],
+ [
+ -73.55667753236408,
+ 45.5364522329345
+ ],
+ [
+ -73.55675935897908,
+ 45.53633823217397
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1128,
+ "ID_UEV":"01024296",
+ "CIVIQUE_DE":" 2320",
+ "CIVIQUE_FI":" 2320",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":"F",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-7347-3-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":546,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00060148093512,
+ "OBJECTID":86903,
+ "Join_Count":1,
+ "TARGET_FID":86903,
+ "feature_id":"465326c4-255b-495a-8fdc-43800d1855ad",
+ "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.56,
+ "heightmax":36.73,
+ "elevmin":21.99,
+ "elevmax":25.2,
+ "bldgarea":1025.98,
+ "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_2":86903,
+ "Shape_Le_1":0.00060148093512,
+ "Shape_Ar_1":2.11838313008e-08,
+ "OBJECTID_3":86903,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86902,
+ "g_objectid":"940957",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424754",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430625340000000",
+ "g_sup_tota":"335.2",
+ "g_geometry":"0.000819677",
+ "g_geomet_1":"3.8621e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00060148093512,
+ "Shape_Area":2.11838313008e-08,
+ "Shape_Le_3":0.000601480755545,
+ "Shape_Ar_2":2.11838313008e-08,
+ "building_height":18.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1129,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56054416929982,
+ 45.508063099182976
+ ],
+ [
+ -73.5606568588488,
+ 45.508114573678924
+ ],
+ [
+ -73.56078042389929,
+ 45.50798625661075
+ ],
+ [
+ -73.56067176511172,
+ 45.50793620574159
+ ],
+ [
+ -73.56060548687556,
+ 45.50799954229534
+ ],
+ [
+ -73.56056839883438,
+ 45.50803807554704
+ ],
+ [
+ -73.56054416929982,
+ 45.508063099182976
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1129,
+ "ID_UEV":"01058667",
+ "CIVIQUE_DE":" 1075",
+ "CIVIQUE_FI":" 1081",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1866,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-09-5902-9-000-0000",
+ "SUPERFICIE":176,
+ "SUPERFIC_1":599,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000601650147906,
+ "OBJECTID":86904,
+ "Join_Count":1,
+ "TARGET_FID":86904,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":86904,
+ "Shape_Le_1":0.000601650147906,
+ "Shape_Ar_1":2.06590465911e-08,
+ "OBJECTID_3":86904,
+ "Join_Cou_1":7,
+ "TARGET_F_1":86903,
+ "g_objectid":"939512",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180598",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004009770880000000",
+ "g_sup_tota":"250.8",
+ "g_geometry":"0.000715273",
+ "g_geomet_1":"2.88771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000601650147906,
+ "Shape_Area":2.06590465911e-08,
+ "Shape_Le_3":0.000601649540468,
+ "Shape_Ar_2":2.06590465911e-08,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1130,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55676561556255,
+ 45.52803362260389
+ ],
+ [
+ -73.55712588127625,
+ 45.52820119418006
+ ],
+ [
+ -73.55717673523998,
+ 45.52814893277732
+ ],
+ [
+ -73.5568161682534,
+ 45.52798004909029
+ ],
+ [
+ -73.55681196841945,
+ 45.527984549297805
+ ],
+ [
+ -73.55676561556255,
+ 45.52803362260389
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1130,
+ "ID_UEV":"01019186",
+ "CIVIQUE_DE":" 2100",
+ "CIVIQUE_FI":" 2100",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1958,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-31-5031-5-000-0000",
+ "SUPERFICIE":274,
+ "SUPERFIC_1":817,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000942069445073,
+ "OBJECTID":86905,
+ "Join_Count":1,
+ "TARGET_FID":86905,
+ "feature_id":"8e066e7d-b470-4fd6-b4ee-1c790f350f52",
+ "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.64,
+ "heightmax":41.66,
+ "elevmin":24.18,
+ "elevmax":24.66,
+ "bldgarea":261.98,
+ "comment":" ",
+ "OBJECTID_2":86905,
+ "Shape_Le_1":0.000942069445073,
+ "Shape_Ar_1":2.76008243391e-08,
+ "OBJECTID_3":86905,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86904,
+ "g_objectid":"940911",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424631",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004331503150000000",
+ "g_sup_tota":"273.7",
+ "g_geometry":"0.000976524",
+ "g_geomet_1":"3.14847e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000942069445073,
+ "Shape_Area":2.76008243391e-08,
+ "Shape_Le_3":0.000942068982569,
+ "Shape_Ar_2":2.76008243391e-08,
+ "building_height":19.509999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1131,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5605671631659,
+ 45.50803751167212
+ ],
+ [
+ -73.56056839883438,
+ 45.50803807554704
+ ],
+ [
+ -73.56060548687556,
+ 45.50799954229534
+ ],
+ [
+ -73.56067176511172,
+ 45.50793620574159
+ ],
+ [
+ -73.56066458132722,
+ 45.50793289713579
+ ],
+ [
+ -73.56064836834936,
+ 45.507950444707554
+ ],
+ [
+ -73.5605671631659,
+ 45.50803751167212
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56020543155726,
+ 45.50790581405237
+ ],
+ [
+ -73.56039072517368,
+ 45.50799261211965
+ ],
+ [
+ -73.56039116853944,
+ 45.50799214447218
+ ],
+ [
+ -73.5604249677599,
+ 45.50795734520561
+ ],
+ [
+ -73.5602421670642,
+ 45.50786954529357
+ ],
+ [
+ -73.56023856707806,
+ 45.50787324510447
+ ],
+ [
+ -73.56020543155726,
+ 45.50790581405237
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1131,
+ "ID_UEV":"01058668",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc \u00c3\u00a0 caract\u00c3\u00a8re r\u00c3\u00a9cr\u00c3\u00a9atif et ornemental",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-08-7888-0-000-0000",
+ "SUPERFICIE":576,
+ "SUPERFIC_1":85,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000805565083724,
+ "OBJECTID":86908,
+ "Join_Count":2,
+ "TARGET_FID":86908,
+ "feature_id":"b43d918e-af49-44ee-a6e2-824996a28ecf",
+ "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":3.22,
+ "heightmax":5.77,
+ "elevmin":17.62,
+ "elevmax":18.68,
+ "bldgarea":90.01,
+ "comment":" ",
+ "OBJECTID_2":86908,
+ "Shape_Le_1":0.000805565083724,
+ "Shape_Ar_1":1.01982478913e-08,
+ "OBJECTID_3":86908,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86907,
+ "g_objectid":"939512",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180598",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004009770880000000",
+ "g_sup_tota":"250.8",
+ "g_geometry":"0.000715273",
+ "g_geomet_1":"2.88771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000805565083724,
+ "Shape_Area":1.01982478913e-08,
+ "Shape_Le_3":0.000805562679592,
+ "Shape_Ar_2":1.01982478913e-08,
+ "building_height":1.2749999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1132,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55989867280735,
+ 45.50774415551866
+ ],
+ [
+ -73.55996511292147,
+ 45.507773787280755
+ ],
+ [
+ -73.55996710851709,
+ 45.50777167387395
+ ],
+ [
+ -73.56006797827642,
+ 45.50766484250877
+ ],
+ [
+ -73.56000076744331,
+ 45.5076371451884
+ ],
+ [
+ -73.55993776723601,
+ 45.5077128447223
+ ],
+ [
+ -73.55993040088913,
+ 45.507709809510395
+ ],
+ [
+ -73.55989867280735,
+ 45.50774415551866
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1132,
+ "ID_UEV":"01058669",
+ "CIVIQUE_DE":" 1021",
+ "CIVIQUE_FI":" 1023",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-18-1265-6-000-0000",
+ "SUPERFICIE":93,
+ "SUPERFIC_1":252,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000448486567892,
+ "OBJECTID":86909,
+ "Join_Count":1,
+ "TARGET_FID":86909,
+ "feature_id":"42a97640-1a73-4856-a5b4-b32c962506ba",
+ "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":26.38,
+ "elevmin":16.09,
+ "elevmax":17.98,
+ "bldgarea":3386.31,
+ "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_2":86909,
+ "Shape_Le_1":0.000448486567892,
+ "Shape_Ar_1":9.83440097796e-09,
+ "OBJECTID_3":86909,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86908,
+ "g_objectid":"939513",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180606",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004018228040000000",
+ "g_sup_tota":"146.6",
+ "g_geometry":"0.000583479",
+ "g_geomet_1":"1.68943e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000448486567892,
+ "Shape_Area":9.83440097796e-09,
+ "Shape_Le_3":0.000448487611583,
+ "Shape_Ar_2":9.83440097796e-09,
+ "building_height":12.695
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1133,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55832454356468,
+ 45.51963040147214
+ ],
+ [
+ -73.55839562507988,
+ 45.51966298660784
+ ],
+ [
+ -73.55854004001269,
+ 45.51950863326711
+ ],
+ [
+ -73.55851726827915,
+ 45.51949854647104
+ ],
+ [
+ -73.55852866808542,
+ 45.51948574642036
+ ],
+ [
+ -73.5585282678871,
+ 45.51948554677086
+ ],
+ [
+ -73.55848087091731,
+ 45.5194633164292
+ ],
+ [
+ -73.55832454356468,
+ 45.51963040147214
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1133,
+ "ID_UEV":"01040329",
+ "CIVIQUE_DE":" 1603",
+ "CIVIQUE_FI":" 1607",
+ "NOM_RUE":"rue Montcalm (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1918,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-21-3383-5-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":342,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000613231939809,
+ "OBJECTID":86910,
+ "Join_Count":1,
+ "TARGET_FID":86910,
+ "feature_id":"3594f631-f15b-49f0-a2f5-8c027e63e0d7",
+ "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.85,
+ "heightmax":17.85,
+ "elevmin":26.19,
+ "elevmax":27.62,
+ "bldgarea":3426.19,
+ "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_2":86910,
+ "Shape_Le_1":0.000613231939809,
+ "Shape_Ar_1":1.65404496985e-08,
+ "OBJECTID_3":86910,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86909,
+ "g_objectid":"941751",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566448",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004222490110000000",
+ "g_sup_tota":"303.8",
+ "g_geometry":"0.000789721",
+ "g_geomet_1":"3.49394e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000613231939809,
+ "Shape_Area":1.65404496985e-08,
+ "Shape_Le_3":0.000613230743709,
+ "Shape_Ar_2":1.65404496985e-08,
+ "building_height":8.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1134,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55827132888056,
+ 45.51017364794579
+ ],
+ [
+ -73.55834126735745,
+ 45.510204645778074
+ ],
+ [
+ -73.55837836708982,
+ 45.51022134618847
+ ],
+ [
+ -73.55840989012617,
+ 45.51018658469342
+ ],
+ [
+ -73.55846205170417,
+ 45.51011538986365
+ ],
+ [
+ -73.5583487182406,
+ 45.51006452600736
+ ],
+ [
+ -73.55827132888056,
+ 45.51017364794579
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1134,
+ "ID_UEV":"01020894",
+ "CIVIQUE_DE":" 1011",
+ "CIVIQUE_FI":" 1013",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-21-3938-8-000-0000",
+ "SUPERFICIE":209,
+ "SUPERFIC_1":370,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000510372523168,
+ "OBJECTID":86911,
+ "Join_Count":1,
+ "TARGET_FID":86911,
+ "feature_id":"836463c5-05bc-4b24-bab9-5368caaaf25b",
+ "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.55,
+ "heightmax":32.26,
+ "elevmin":14.7,
+ "elevmax":17.93,
+ "bldgarea":1063.09,
+ "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_2":86911,
+ "Shape_Le_1":0.000510372523168,
+ "Shape_Ar_1":1.60248050999e-08,
+ "OBJECTID_3":86911,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86910,
+ "g_objectid":"939544",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180864",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004121393880000000",
+ "g_sup_tota":"208.7",
+ "g_geometry":"0.000644681",
+ "g_geomet_1":"2.40368e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000510372523168,
+ "Shape_Area":1.60248050999e-08,
+ "Shape_Le_3":0.000510372429805,
+ "Shape_Ar_2":1.60248050999e-08,
+ "building_height":15.854999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1135,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55402092155013,
+ 45.52094891281237
+ ],
+ [
+ -73.55424297045856,
+ 45.52105416946464
+ ],
+ [
+ -73.55428976578192,
+ 45.52099914804254
+ ],
+ [
+ -73.55435966648726,
+ 45.52102854777955
+ ],
+ [
+ -73.55435969976217,
+ 45.52102856396735
+ ],
+ [
+ -73.5543656604687,
+ 45.521022181478784
+ ],
+ [
+ -73.5540783810343,
+ 45.52088600523525
+ ],
+ [
+ -73.55402092155013,
+ 45.52094891281237
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1135,
+ "ID_UEV":"01022369",
+ "CIVIQUE_DE":" 1475",
+ "CIVIQUE_FI":" 1479",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1970,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-6642-4-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000805685537222,
+ "OBJECTID":86913,
+ "Join_Count":1,
+ "TARGET_FID":86913,
+ "feature_id":"bb334a25-b82d-4066-be5d-5fe0183748e4",
+ "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.48,
+ "heightmax":13.39,
+ "elevmin":16.89,
+ "elevmax":19.55,
+ "bldgarea":1730.18,
+ "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_2":86913,
+ "Shape_Le_1":0.000805685537222,
+ "Shape_Ar_1":2.06407715479e-08,
+ "OBJECTID_3":86913,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86912,
+ "g_objectid":"938255",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567709",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004253623650000000",
+ "g_sup_tota":"166.2",
+ "g_geometry":"0.000770943",
+ "g_geomet_1":"1.92965e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000805685537222,
+ "Shape_Area":2.06407715479e-08,
+ "Shape_Le_3":0.000805684649749,
+ "Shape_Ar_2":2.06407715479e-08,
+ "building_height":5.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1136,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55421574168497,
+ 45.533568910227324
+ ],
+ [
+ -73.55432766141429,
+ 45.53361637914288
+ ],
+ [
+ -73.55448329808758,
+ 45.533434929228896
+ ],
+ [
+ -73.55444906719254,
+ 45.53342174966431
+ ],
+ [
+ -73.55441316715579,
+ 45.53346765016222
+ ],
+ [
+ -73.55438256682385,
+ 45.53345585015765
+ ],
+ [
+ -73.55442166754776,
+ 45.53340574982579
+ ],
+ [
+ -73.5543720978159,
+ 45.53338661944723
+ ],
+ [
+ -73.55433150241875,
+ 45.53343395076651
+ ],
+ [
+ -73.55433946681478,
+ 45.53343704983028
+ ],
+ [
+ -73.5542865668934,
+ 45.53350424987153
+ ],
+ [
+ -73.55427504388001,
+ 45.53349977304639
+ ],
+ [
+ -73.55421574168497,
+ 45.533568910227324
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1136,
+ "ID_UEV":"01023653",
+ "CIVIQUE_DE":" 2098",
+ "CIVIQUE_FI":" 2100",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-5432-0-000-0000",
+ "SUPERFICIE":249,
+ "SUPERFIC_1":285,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000864930652768,
+ "OBJECTID":86915,
+ "Join_Count":1,
+ "TARGET_FID":86915,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":86915,
+ "Shape_Le_1":0.000864930652768,
+ "Shape_Ar_1":2.50316358866e-08,
+ "OBJECTID_3":86915,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86914,
+ "g_objectid":"941194",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425130",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357473730000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.00065393",
+ "g_geomet_1":"1.88022e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000864930652768,
+ "Shape_Area":2.50316358866e-08,
+ "Shape_Le_3":0.000864932877795,
+ "Shape_Ar_2":2.50316358866e-08,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1137,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56565385995951,
+ 45.515148179495185
+ ],
+ [
+ -73.5658325687399,
+ 45.51517689484811
+ ],
+ [
+ -73.56584896967605,
+ 45.51513104561156
+ ],
+ [
+ -73.56585584229514,
+ 45.51511184148859
+ ],
+ [
+ -73.56567754900153,
+ 45.515081898561064
+ ],
+ [
+ -73.56565385995951,
+ 45.515148179495185
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1137,
+ "ID_UEV":"01021749",
+ "CIVIQUE_DE":" 317",
+ "CIVIQUE_FI":" 317",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-66-5494-7-000-0000",
+ "SUPERFICIE":268,
+ "SUPERFIC_1":270,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000501268909163,
+ "OBJECTID":86920,
+ "Join_Count":1,
+ "TARGET_FID":86920,
+ "feature_id":"ad50070a-bfb0-4fa5-968b-9e6a25f15d0a",
+ "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":15.43,
+ "elevmin":23.86,
+ "elevmax":25.82,
+ "bldgarea":1340.36,
+ "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_2":86920,
+ "Shape_Le_1":0.000501268909163,
+ "Shape_Ar_1":1.24102446545e-08,
+ "OBJECTID_3":86920,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86919,
+ "g_objectid":"943134",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161340",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994166538650000000",
+ "g_sup_tota":"270.8",
+ "g_geometry":"0.00106922",
+ "g_geomet_1":"3.0138e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000501268909163,
+ "Shape_Area":1.24102446545e-08,
+ "Shape_Le_3":0.000501269503517,
+ "Shape_Ar_2":1.24102446545e-08,
+ "building_height":7.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1138,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54837820451237,
+ 45.529264200932424
+ ],
+ [
+ -73.5484931558563,
+ 45.529314820173106
+ ],
+ [
+ -73.54855919037618,
+ 45.52924244543281
+ ],
+ [
+ -73.54844523278311,
+ 45.529190546456846
+ ],
+ [
+ -73.54837820451237,
+ 45.529264200932424
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1138,
+ "ID_UEV":"01019363",
+ "CIVIQUE_DE":" 2413",
+ "CIVIQUE_FI":" 2417",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-1360-1-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":268,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000448382152933,
+ "OBJECTID":86921,
+ "Join_Count":1,
+ "TARGET_FID":86921,
+ "feature_id":"72447a70-7754-47e9-94e3-b216251fd915",
+ "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,
+ "heightmax":32.42,
+ "elevmin":18.18,
+ "elevmax":21.24,
+ "bldgarea":2453.19,
+ "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_2":86921,
+ "Shape_Le_1":0.000448382152933,
+ "Shape_Ar_1":1.17671190232e-08,
+ "OBJECTID_3":86921,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86920,
+ "g_objectid":"940762",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424391",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014302136010000000",
+ "g_sup_tota":"112.9",
+ "g_geometry":"0.000466723",
+ "g_geomet_1":"1.26313e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000448382152933,
+ "Shape_Area":1.17671190232e-08,
+ "Shape_Le_3":0.000448382937334,
+ "Shape_Ar_2":1.17671190232e-08,
+ "building_height":16.21
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1139,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54625951238843,
+ 45.52934995308816
+ ],
+ [
+ -73.54658542849657,
+ 45.52948996314158
+ ],
+ [
+ -73.5466275644324,
+ 45.5294379490524
+ ],
+ [
+ -73.5466335611118,
+ 45.52944036373209
+ ],
+ [
+ -73.54663489390707,
+ 45.52943892481682
+ ],
+ [
+ -73.54630886808164,
+ 45.52929728878914
+ ],
+ [
+ -73.54625951238843,
+ 45.52934995308816
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1139,
+ "ID_UEV":"01019472",
+ "CIVIQUE_DE":" 2467",
+ "CIVIQUE_FI":" 2469",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-12-7276-2-000-0000",
+ "SUPERFICIE":211,
+ "SUPERFIC_1":503,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000857722507921,
+ "OBJECTID":86924,
+ "Join_Count":1,
+ "TARGET_FID":86924,
+ "feature_id":"e90ff62e-db67-44fd-9a9f-d2f006349a1d",
+ "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.92,
+ "heightmax":12.61,
+ "elevmin":19.13,
+ "elevmax":20.05,
+ "bldgarea":857.9,
+ "comment":" ",
+ "OBJECTID_2":86924,
+ "Shape_Le_1":0.000857722507921,
+ "Shape_Ar_1":2.36548583354e-08,
+ "OBJECTID_3":86924,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86923,
+ "g_objectid":"940725",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424328",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014312768130000000",
+ "g_sup_tota":"210.8",
+ "g_geometry":"0.000867675",
+ "g_geomet_1":"2.43311e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000857722507921,
+ "Shape_Area":2.36548583354e-08,
+ "Shape_Le_3":0.000857721898223,
+ "Shape_Ar_2":2.36548583354e-08,
+ "building_height":5.845
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1140,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54925708946496,
+ 45.530504280598365
+ ],
+ [
+ -73.54923676478671,
+ 45.53052554866543
+ ],
+ [
+ -73.54912696475947,
+ 45.53064044874801
+ ],
+ [
+ -73.54915090201436,
+ 45.5306532164231
+ ],
+ [
+ -73.5492361235701,
+ 45.53069066329377
+ ],
+ [
+ -73.5493386651691,
+ 45.53058554873438
+ ],
+ [
+ -73.54936166533044,
+ 45.530561848900504
+ ],
+ [
+ -73.54936146478163,
+ 45.530561649251005
+ ],
+ [
+ -73.54934266535356,
+ 45.53055074856849
+ ],
+ [
+ -73.5493496135157,
+ 45.530544808546374
+ ],
+ [
+ -73.54925708946496,
+ 45.530504280598365
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1140,
+ "ID_UEV":"01019299",
+ "CIVIQUE_DE":" 2479",
+ "CIVIQUE_FI":" 2481",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-4912-5-000-0000",
+ "SUPERFICIE":396,
+ "SUPERFIC_1":577,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000620597691272,
+ "OBJECTID":86932,
+ "Join_Count":1,
+ "TARGET_FID":86932,
+ "feature_id":"82712f79-841d-4d1a-988c-5aec3689f3b2",
+ "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.15,
+ "heightmax":34.99,
+ "elevmin":21.24,
+ "elevmax":22.64,
+ "bldgarea":635.95,
+ "comment":" ",
+ "OBJECTID_2":86932,
+ "Shape_Le_1":0.000620597691272,
+ "Shape_Ar_1":2.16000359616e-08,
+ "OBJECTID_3":86932,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86931,
+ "g_objectid":"940689",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424279",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394410150000000",
+ "g_sup_tota":"196.3",
+ "g_geometry":"0.000697095",
+ "g_geomet_1":"2.26082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000620597691272,
+ "Shape_Area":2.16000359616e-08,
+ "Shape_Le_3":0.000620599483412,
+ "Shape_Ar_2":2.16000359616e-08,
+ "building_height":15.420000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1141,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56233018691044,
+ 45.51237639970138
+ ],
+ [
+ -73.5625098813478,
+ 45.512458388194354
+ ],
+ [
+ -73.56251937998724,
+ 45.512457860292315
+ ],
+ [
+ -73.56258136935655,
+ 45.51238814574663
+ ],
+ [
+ -73.56257936926433,
+ 45.512387245525254
+ ],
+ [
+ -73.56253936921836,
+ 45.512369645792816
+ ],
+ [
+ -73.56266066887662,
+ 45.51223354599165
+ ],
+ [
+ -73.56265476932398,
+ 45.512230946051616
+ ],
+ [
+ -73.56253326911693,
+ 45.51217764593191
+ ],
+ [
+ -73.56268589306136,
+ 45.51200594287026
+ ],
+ [
+ -73.56267057580827,
+ 45.51199894164813
+ ],
+ [
+ -73.56227576803411,
+ 45.5118255460624
+ ],
+ [
+ -73.56211128742781,
+ 45.51201063103609
+ ],
+ [
+ -73.56226563357397,
+ 45.51208064865331
+ ],
+ [
+ -73.56237615036089,
+ 45.512130789454666
+ ],
+ [
+ -73.56237618183717,
+ 45.5121308029445
+ ],
+ [
+ -73.56250831382947,
+ 45.51219075714802
+ ],
+ [
+ -73.56233018691044,
+ 45.51237639970138
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1141,
+ "ID_UEV":"01021648",
+ "CIVIQUE_DE":" 209",
+ "CIVIQUE_FI":" 209",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":7,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Universit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-93-2052-0-000-0000",
+ "SUPERFICIE":1683,
+ "SUPERFIC_1":8335,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00228627315339,
+ "OBJECTID":86938,
+ "Join_Count":1,
+ "TARGET_FID":86938,
+ "feature_id":"c38bebd0-a855-4522-96c5-b66aa9512541",
+ "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":32.97,
+ "elevmin":25.17,
+ "elevmax":26.28,
+ "bldgarea":2271.6,
+ "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_2":86938,
+ "Shape_Le_1":0.00228627315339,
+ "Shape_Ar_1":1.51609827076e-07,
+ "OBJECTID_3":86938,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86937,
+ "g_objectid":"938340",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161725",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994193405770000000",
+ "g_sup_tota":"304.7",
+ "g_geometry":"0.000845465",
+ "g_geomet_1":"3.58528e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00228627315339,
+ "Shape_Area":1.51609827076e-07,
+ "Shape_Le_3":0.00228627220213,
+ "Shape_Ar_2":1.51609827076e-07,
+ "building_height":16.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1142,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55432922353668,
+ 45.518961506418684
+ ],
+ [
+ -73.55435916646421,
+ 45.5189738469158
+ ],
+ [
+ -73.5544554658689,
+ 45.5190135465882
+ ],
+ [
+ -73.55443948311749,
+ 45.51903272013422
+ ],
+ [
+ -73.55454367677112,
+ 45.5189169818835
+ ],
+ [
+ -73.55441725817177,
+ 45.51886493991534
+ ],
+ [
+ -73.55432922353668,
+ 45.518961506418684
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1142,
+ "ID_UEV":"01021889",
+ "CIVIQUE_DE":" 1263",
+ "CIVIQUE_FI":" 1271",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-4716-2-000-0000",
+ "SUPERFICIE":191,
+ "SUPERFIC_1":373,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000584623565059,
+ "OBJECTID":86941,
+ "Join_Count":1,
+ "TARGET_FID":86941,
+ "feature_id":"fd7ed452-0f42-4818-98c0-f401038c06a8",
+ "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.47,
+ "heightmax":13.16,
+ "elevmin":19.05,
+ "elevmax":20.65,
+ "bldgarea":1070.76,
+ "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_2":86941,
+ "Shape_Le_1":0.000584623565059,
+ "Shape_Ar_1":1.68590263891e-08,
+ "OBJECTID_3":86941,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86940,
+ "g_objectid":"941852",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566687",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251471620000000",
+ "g_sup_tota":"191",
+ "g_geometry":"0.000688749",
+ "g_geomet_1":"2.21809e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000584623565059,
+ "Shape_Area":1.68590263891e-08,
+ "Shape_Le_3":0.000584622231544,
+ "Shape_Ar_2":1.68590263891e-08,
+ "building_height":5.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1143,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55675006268709,
+ 45.52122915595108
+ ],
+ [
+ -73.55676866606294,
+ 45.52123779214069
+ ],
+ [
+ -73.55679655673755,
+ 45.521207904971135
+ ],
+ [
+ -73.55677716735424,
+ 45.52119924809712
+ ],
+ [
+ -73.55677366719283,
+ 45.521203348106326
+ ],
+ [
+ -73.55675006268709,
+ 45.52122915595108
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55675276425052,
+ 45.52102463572865
+ ],
+ [
+ -73.55675406736816,
+ 45.521025248166964
+ ],
+ [
+ -73.55673726713302,
+ 45.521042947724155
+ ],
+ [
+ -73.55677036668092,
+ 45.521058447539616
+ ],
+ [
+ -73.55675576708683,
+ 45.521073747705586
+ ],
+ [
+ -73.55686866707717,
+ 45.52112664762698
+ ],
+ [
+ -73.55687122295042,
+ 45.521127894087336
+ ],
+ [
+ -73.55697408380877,
+ 45.52101766868076
+ ],
+ [
+ -73.55682212985926,
+ 45.520947588111
+ ],
+ [
+ -73.55675276425052,
+ 45.52102463572865
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55656697510766,
+ 45.521050319466966
+ ],
+ [
+ -73.55654236695851,
+ 45.52107606256053
+ ],
+ [
+ -73.55656856690769,
+ 45.52105114774257
+ ],
+ [
+ -73.55656697510766,
+ 45.521050319466966
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1143,
+ "ID_UEV":"01021938",
+ "CIVIQUE_DE":" 1585",
+ "CIVIQUE_FI":" 1593",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-6553-5-000-0000",
+ "SUPERFICIE":521,
+ "SUPERFIC_1":225,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000829387886902,
+ "OBJECTID":86945,
+ "Join_Count":3,
+ "TARGET_FID":86945,
+ "feature_id":"4d9b7d78-fb48-450c-a6d5-807d5a5f21a4",
+ "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.44,
+ "heightmax":14.23,
+ "elevmin":25.27,
+ "elevmax":27.82,
+ "bldgarea":1882.83,
+ "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_2":86945,
+ "Shape_Le_1":0.000829387886902,
+ "Shape_Ar_1":2.37329466292e-08,
+ "OBJECTID_3":86945,
+ "Join_Cou_1":6,
+ "TARGET_F_1":86944,
+ "g_objectid":"942149",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567464",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004233787930000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.00093205",
+ "g_geomet_1":"4.4297e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000829387886902,
+ "Shape_Area":2.37329466292e-08,
+ "Shape_Le_3":0.000829386851913,
+ "Shape_Ar_2":2.37329466292e-08,
+ "building_height":5.8950000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1144,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55057653070418,
+ 45.52932711390548
+ ],
+ [
+ -73.55058966620197,
+ 45.529312649209686
+ ],
+ [
+ -73.55068277121477,
+ 45.52935438314856
+ ],
+ [
+ -73.55070393855776,
+ 45.52933183984283
+ ],
+ [
+ -73.55066396639079,
+ 45.52931334888224
+ ],
+ [
+ -73.55067143076377,
+ 45.529305382687554
+ ],
+ [
+ -73.5504777968347,
+ 45.52921569419922
+ ],
+ [
+ -73.55043157078221,
+ 45.52925996782355
+ ],
+ [
+ -73.55057653070418,
+ 45.52932711390548
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1144,
+ "ID_UEV":"01019275",
+ "CIVIQUE_DE":" 2359",
+ "CIVIQUE_FI":" 2363",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-82-5164-7-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":286,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000644612334048,
+ "OBJECTID":86947,
+ "Join_Count":1,
+ "TARGET_FID":86947,
+ "feature_id":"fb49aaec-5e81-4ba6-8196-0780aa47dea6",
+ "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.83,
+ "heightmax":32.55,
+ "elevmin":19.65,
+ "elevmax":21.29,
+ "bldgarea":970.11,
+ "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_2":86947,
+ "Shape_Le_1":0.000644612334048,
+ "Shape_Ar_1":1.30395772867e-08,
+ "OBJECTID_3":86947,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86946,
+ "g_objectid":"940589",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424113",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004382546900000000",
+ "g_sup_tota":"152.4",
+ "g_geometry":"0.000709635",
+ "g_geomet_1":"1.74116e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000644612334048,
+ "Shape_Area":1.30395772867e-08,
+ "Shape_Le_3":0.000644612198365,
+ "Shape_Ar_2":1.30395772867e-08,
+ "building_height":15.36
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1145,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5521927608091,
+ 45.52172661684019
+ ],
+ [
+ -73.55220216591907,
+ 45.521730747426346
+ ],
+ [
+ -73.55222346636172,
+ 45.521707047592464
+ ],
+ [
+ -73.55225206570212,
+ 45.52171994746789
+ ],
+ [
+ -73.55223756593277,
+ 45.521735747656926
+ ],
+ [
+ -73.55224256616334,
+ 45.5217378475739
+ ],
+ [
+ -73.55233386623678,
+ 45.52177164769368
+ ],
+ [
+ -73.55236866640267,
+ 45.521784847942676
+ ],
+ [
+ -73.55235496613062,
+ 45.521801648177814
+ ],
+ [
+ -73.55243716596428,
+ 45.521835448297594
+ ],
+ [
+ -73.5524381660104,
+ 45.52183414787792
+ ],
+ [
+ -73.55252726634211,
+ 45.52173734755085
+ ],
+ [
+ -73.55237346608443,
+ 45.521667347920065
+ ],
+ [
+ -73.55229296596944,
+ 45.521630748210754
+ ],
+ [
+ -73.55231196594632,
+ 45.52161014744065
+ ],
+ [
+ -73.55231176629682,
+ 45.5216100476159
+ ],
+ [
+ -73.55230410497231,
+ 45.52160638917382
+ ],
+ [
+ -73.5521927608091,
+ 45.52172661684019
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1145,
+ "ID_UEV":"01022054",
+ "CIVIQUE_DE":" 1315",
+ "CIVIQUE_FI":" 1335",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-74-1128-5-000-0000",
+ "SUPERFICIE":722,
+ "SUPERFIC_1":714,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000936729578605,
+ "OBJECTID":86951,
+ "Join_Count":1,
+ "TARGET_FID":86951,
+ "feature_id":"c694a0ca-14b9-4f2e-b040-a3b212e76a53",
+ "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.62,
+ "heightmax":11.69,
+ "elevmin":18.3,
+ "elevmax":19.57,
+ "bldgarea":605.05,
+ "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_2":86951,
+ "Shape_Le_1":0.000936729578605,
+ "Shape_Ar_1":3.1481972749e-08,
+ "OBJECTID_3":86951,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86950,
+ "g_objectid":"942279",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567767",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004274271900000000",
+ "g_sup_tota":"444.4",
+ "g_geometry":"0.00098596",
+ "g_geomet_1":"5.19378e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000936729578605,
+ "Shape_Area":3.1481972749e-08,
+ "Shape_Le_3":0.000936730765339,
+ "Shape_Ar_2":3.1481972749e-08,
+ "building_height":4.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1146,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55204388523896,
+ 45.52165196321782
+ ],
+ [
+ -73.55208156593336,
+ 45.52166914746348
+ ],
+ [
+ -73.55208236632998,
+ 45.52166954766179
+ ],
+ [
+ -73.5520905663484,
+ 45.52166024777251
+ ],
+ [
+ -73.55217986632961,
+ 45.52169904812287
+ ],
+ [
+ -73.55216596640807,
+ 45.521714847412575
+ ],
+ [
+ -73.5521927608091,
+ 45.52172661684019
+ ],
+ [
+ -73.55230410497231,
+ 45.52160638917382
+ ],
+ [
+ -73.5521823664449,
+ 45.52154824800354
+ ],
+ [
+ -73.55215294422484,
+ 45.521534204190466
+ ],
+ [
+ -73.55204388523896,
+ 45.52165196321782
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1146,
+ "ID_UEV":"01022055",
+ "CIVIQUE_DE":" 1271",
+ "CIVIQUE_FI":" 1285",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-74-2719-0-000-0000",
+ "SUPERFICIE":444,
+ "SUPERFIC_1":580,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000694263837288,
+ "OBJECTID":86952,
+ "Join_Count":1,
+ "TARGET_FID":86952,
+ "feature_id":"c694a0ca-14b9-4f2e-b040-a3b212e76a53",
+ "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.62,
+ "heightmax":11.69,
+ "elevmin":18.3,
+ "elevmax":19.57,
+ "bldgarea":605.05,
+ "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_2":86952,
+ "Shape_Le_1":0.000694263837288,
+ "Shape_Ar_1":2.43799386969e-08,
+ "OBJECTID_3":86952,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86951,
+ "g_objectid":"942279",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567767",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004274271900000000",
+ "g_sup_tota":"444.4",
+ "g_geometry":"0.00098596",
+ "g_geomet_1":"5.19378e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000694263837288,
+ "Shape_Area":2.43799386969e-08,
+ "Shape_Le_3":0.000694262421272,
+ "Shape_Ar_2":2.43799386969e-08,
+ "building_height":4.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1147,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55415822284556,
+ 45.53047075477181
+ ],
+ [
+ -73.55418895178055,
+ 45.53048530220523
+ ],
+ [
+ -73.55443509712387,
+ 45.53023446150149
+ ],
+ [
+ -73.55430916685641,
+ 45.530170348832826
+ ],
+ [
+ -73.55427696752987,
+ 45.530201549012574
+ ],
+ [
+ -73.55406746686195,
+ 45.530404649205494
+ ],
+ [
+ -73.55406606751684,
+ 45.530406048550596
+ ],
+ [
+ -73.55416916669553,
+ 45.53046054926523
+ ],
+ [
+ -73.55415822284556,
+ 45.53047075477181
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1147,
+ "ID_UEV":"01018414",
+ "CIVIQUE_DE":" 1945",
+ "CIVIQUE_FI":" 1945",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Th\u00c3\u00a9\u00c3\u00a2tre",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-53-6379-1-000-0000",
+ "SUPERFICIE":490,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000996932876645,
+ "OBJECTID":86953,
+ "Join_Count":1,
+ "TARGET_FID":86953,
+ "feature_id":"7073896e-867e-4f45-b647-51498746bc50",
+ "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.48,
+ "heightmax":38.75,
+ "elevmin":17.54,
+ "elevmax":20.03,
+ "bldgarea":2126.07,
+ "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_2":86953,
+ "Shape_Le_1":0.000996932876645,
+ "Shape_Ar_1":4.73063125642e-08,
+ "OBJECTID_3":86953,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86952,
+ "g_objectid":"940858",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424534",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004353538590000000",
+ "g_sup_tota":"325.2",
+ "g_geometry":"0.000952266",
+ "g_geomet_1":"3.72609e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000996932876645,
+ "Shape_Area":4.73063125642e-08,
+ "Shape_Le_3":0.000996932324869,
+ "Shape_Ar_2":4.73063125642e-08,
+ "building_height":18.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1148,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55383466206185,
+ 45.53015525371229
+ ],
+ [
+ -73.5538586667659,
+ 45.530171848902
+ ],
+ [
+ -73.55380092489462,
+ 45.53021306842866
+ ],
+ [
+ -73.55383629523068,
+ 45.53023001795126
+ ],
+ [
+ -73.55400410872448,
+ 45.530057804974014
+ ],
+ [
+ -73.55395341394075,
+ 45.53003162480993
+ ],
+ [
+ -73.55383466206185,
+ 45.53015525371229
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1148,
+ "ID_UEV":"01018417",
+ "CIVIQUE_DE":" 1919",
+ "CIVIQUE_FI":" 1923",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1913,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-53-8956-4-000-0000",
+ "SUPERFICIE":133,
+ "SUPERFIC_1":265,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000608284601641,
+ "OBJECTID":86954,
+ "Join_Count":1,
+ "TARGET_FID":86954,
+ "feature_id":"747b4864-932f-4861-a5b3-5deb7038ba81",
+ "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.97,
+ "heightmax":31.21,
+ "elevmin":17.09,
+ "elevmax":18.21,
+ "bldgarea":674.86,
+ "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_2":86954,
+ "Shape_Le_1":0.000608284601641,
+ "Shape_Ar_1":1.14364898002e-08,
+ "OBJECTID_3":86954,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86953,
+ "g_objectid":"940851",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424525",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004353895640000000",
+ "g_sup_tota":"132.5",
+ "g_geometry":"0.000679347",
+ "g_geomet_1":"1.52472e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000608284601641,
+ "Shape_Area":1.14364898002e-08,
+ "Shape_Le_3":0.000608283974406,
+ "Shape_Ar_2":1.14364898002e-08,
+ "building_height":14.620000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1149,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55383959754124,
+ 45.5299742606539
+ ],
+ [
+ -73.55380916718117,
+ 45.52995924917031
+ ],
+ [
+ -73.55380846750862,
+ 45.52995894879675
+ ],
+ [
+ -73.55380016676612,
+ 45.52996654896736
+ ],
+ [
+ -73.55378166681231,
+ 45.529956548506206
+ ],
+ [
+ -73.55363349181404,
+ 45.53009250711381
+ ],
+ [
+ -73.55369641378032,
+ 45.530122165855566
+ ],
+ [
+ -73.55383959754124,
+ 45.5299742606539
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1149,
+ "ID_UEV":"01018420",
+ "CIVIQUE_DE":" 1901",
+ "CIVIQUE_FI":" 1901",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":2004,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-0146-9-000-0000",
+ "SUPERFICIE":142,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0005434937987,
+ "OBJECTID":86955,
+ "Join_Count":1,
+ "TARGET_FID":86955,
+ "feature_id":"747b4864-932f-4861-a5b3-5deb7038ba81",
+ "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.97,
+ "heightmax":31.21,
+ "elevmin":17.09,
+ "elevmax":18.21,
+ "bldgarea":674.86,
+ "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_2":86955,
+ "Shape_Le_1":0.0005434937987,
+ "Shape_Ar_1":1.20835472743e-08,
+ "OBJECTID_3":86955,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86954,
+ "g_objectid":"940838",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424508",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004353964940000000",
+ "g_sup_tota":"150",
+ "g_geometry":"0.000636663",
+ "g_geomet_1":"1.73302e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0005434937987,
+ "Shape_Area":1.20835472743e-08,
+ "Shape_Le_3":0.0005434955239,
+ "Shape_Ar_2":1.20835472743e-08,
+ "building_height":14.620000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1150,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55464440983349,
+ 45.51914426394692
+ ],
+ [
+ -73.55472086479791,
+ 45.51917504414327
+ ],
+ [
+ -73.55481313613916,
+ 45.51907696228228
+ ],
+ [
+ -73.55476996598298,
+ 45.51905954691085
+ ],
+ [
+ -73.55478076594144,
+ 45.51904634666187
+ ],
+ [
+ -73.55478036574313,
+ 45.519046246837114
+ ],
+ [
+ -73.55474748113319,
+ 45.519034079009835
+ ],
+ [
+ -73.55466374345883,
+ 45.51912309120799
+ ],
+ [
+ -73.55464440983349,
+ 45.51914426394692
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1150,
+ "ID_UEV":"01021895",
+ "CIVIQUE_DE":" 1293",
+ "CIVIQUE_FI":" 1297",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-2434-4-000-0000",
+ "SUPERFICIE":163,
+ "SUPERFIC_1":226,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000467043922943,
+ "OBJECTID":86958,
+ "Join_Count":1,
+ "TARGET_FID":86958,
+ "feature_id":"fd7ed452-0f42-4818-98c0-f401038c06a8",
+ "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.47,
+ "heightmax":13.16,
+ "elevmin":19.05,
+ "elevmax":20.65,
+ "bldgarea":1070.76,
+ "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_2":86958,
+ "Shape_Le_1":0.000467043922943,
+ "Shape_Ar_1":1.09538333288e-08,
+ "OBJECTID_3":86958,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86957,
+ "g_objectid":"941843",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566651",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251243440000000",
+ "g_sup_tota":"163.2",
+ "g_geometry":"0.000647779",
+ "g_geomet_1":"1.8726e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000467043922943,
+ "Shape_Area":1.09538333288e-08,
+ "Shape_Le_3":0.00046704442037,
+ "Shape_Ar_2":1.09538333288e-08,
+ "building_height":5.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1151,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56376423775122,
+ 45.51490971795941
+ ],
+ [
+ -73.56370116919544,
+ 45.51488084612444
+ ],
+ [
+ -73.56370086882188,
+ 45.514881145598686
+ ],
+ [
+ -73.5636598687298,
+ 45.51487454547419
+ ],
+ [
+ -73.56366306941696,
+ 45.514865045935416
+ ],
+ [
+ -73.56366256939391,
+ 45.514864846285924
+ ],
+ [
+ -73.56357393311237,
+ 45.51482888059866
+ ],
+ [
+ -73.56355208678123,
+ 45.51485295724847
+ ],
+ [
+ -73.56344366901196,
+ 45.51498504607331
+ ],
+ [
+ -73.56344666915031,
+ 45.514986245768924
+ ],
+ [
+ -73.56351216947289,
+ 45.515016645552045
+ ],
+ [
+ -73.5635458688686,
+ 45.51498064569054
+ ],
+ [
+ -73.56365422368532,
+ 45.5150309537658
+ ],
+ [
+ -73.56376423775122,
+ 45.51490971795941
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1151,
+ "ID_UEV":"01021264",
+ "CIVIQUE_DE":" 1658",
+ "CIVIQUE_FI":" 1660",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-86-3071-3-000-0000",
+ "SUPERFICIE":374,
+ "SUPERFIC_1":566,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000828858325675,
+ "OBJECTID":86959,
+ "Join_Count":1,
+ "TARGET_FID":86959,
+ "feature_id":"cddc8431-d39f-4742-8c99-5c7bcff6dba1",
+ "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":14.9,
+ "elevmin":25.29,
+ "elevmax":26.96,
+ "bldgarea":998.24,
+ "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_2":86959,
+ "Shape_Le_1":0.000828858325675,
+ "Shape_Ar_1":3.45007595569e-08,
+ "OBJECTID_3":86959,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86958,
+ "g_objectid":"943201",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161487",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994186207710000000",
+ "g_sup_tota":"162.7",
+ "g_geometry":"0.000632087",
+ "g_geomet_1":"1.92598e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000828858325675,
+ "Shape_Area":3.45007595569e-08,
+ "Shape_Le_3":0.000828857940454,
+ "Shape_Ar_2":3.45007595569e-08,
+ "building_height":7.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1152,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56365422368532,
+ 45.5150309537658
+ ],
+ [
+ -73.56367186928318,
+ 45.51503914569032
+ ],
+ [
+ -73.56363779576951,
+ 45.51507542254301
+ ],
+ [
+ -73.56370188505579,
+ 45.51510459655019
+ ],
+ [
+ -73.56374532410926,
+ 45.515056726537
+ ],
+ [
+ -73.56374694288895,
+ 45.51505745318921
+ ],
+ [
+ -73.56382479989644,
+ 45.51497165426873
+ ],
+ [
+ -73.56382318921065,
+ 45.51497093211312
+ ],
+ [
+ -73.56384576669062,
+ 45.51494705601212
+ ],
+ [
+ -73.56382786928259,
+ 45.51493884610116
+ ],
+ [
+ -73.56376423775122,
+ 45.51490971795941
+ ],
+ [
+ -73.56365422368532,
+ 45.5150309537658
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1152,
+ "ID_UEV":"01021266",
+ "CIVIQUE_DE":" 1666",
+ "CIVIQUE_FI":" 1668",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-86-2077-1-000-0000",
+ "SUPERFICIE":163,
+ "SUPERFIC_1":299,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000609923255602,
+ "OBJECTID":86960,
+ "Join_Count":1,
+ "TARGET_FID":86960,
+ "feature_id":"cddc8431-d39f-4742-8c99-5c7bcff6dba1",
+ "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":14.9,
+ "elevmin":25.29,
+ "elevmax":26.96,
+ "bldgarea":998.24,
+ "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_2":86960,
+ "Shape_Le_1":0.000609923255602,
+ "Shape_Ar_1":1.73875944134e-08,
+ "OBJECTID_3":86960,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86959,
+ "g_objectid":"943201",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161487",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994186207710000000",
+ "g_sup_tota":"162.7",
+ "g_geometry":"0.000632087",
+ "g_geomet_1":"1.92598e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000609923255602,
+ "Shape_Area":1.73875944134e-08,
+ "Shape_Le_3":0.000609923692653,
+ "Shape_Ar_2":1.73875944134e-08,
+ "building_height":7.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1153,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56687581199098,
+ 45.51187612573291
+ ],
+ [
+ -73.56694476840818,
+ 45.51190819915436
+ ],
+ [
+ -73.56704611300955,
+ 45.51179915995356
+ ],
+ [
+ -73.56698583325145,
+ 45.51177112179013
+ ],
+ [
+ -73.56697047013293,
+ 45.51179244561517
+ ],
+ [
+ -73.56695770245784,
+ 45.51178792022663
+ ],
+ [
+ -73.56687581199098,
+ 45.51187612573291
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1153,
+ "ID_UEV":"01020670",
+ "CIVIQUE_DE":" 2012",
+ "CIVIQUE_FI":" 2012",
+ "NOM_RUE":"rue Saint-Dominique (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1969,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-53-6826-7-000-0000",
+ "SUPERFICIE":96,
+ "SUPERFIC_1":289,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000451582282894,
+ "OBJECTID":86963,
+ "Join_Count":1,
+ "TARGET_FID":86963,
+ "feature_id":"b5328d34-31ff-42c5-b29a-48bf2dbdb909",
+ "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.66,
+ "heightmax":16.32,
+ "elevmin":24.57,
+ "elevmax":30.55,
+ "bldgarea":1907.72,
+ "comment":" ",
+ "OBJECTID_2":86963,
+ "Shape_Le_1":0.000451582282894,
+ "Shape_Ar_1":1.04738391908e-08,
+ "OBJECTID_3":86963,
+ "Join_Cou_1":5,
+ "TARGET_F_1":86962,
+ "g_objectid":"938311",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161215",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994153522530000000",
+ "g_sup_tota":"692.2",
+ "g_geometry":"0.00138714",
+ "g_geomet_1":"7.96146e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000451582282894,
+ "Shape_Area":1.04738391908e-08,
+ "Shape_Le_3":0.000451581936782,
+ "Shape_Ar_2":1.04738391908e-08,
+ "building_height":7.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1154,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55215294422484,
+ 45.521534204190466
+ ],
+ [
+ -73.55206336635312,
+ 45.52149144772243
+ ],
+ [
+ -73.55206216575819,
+ 45.521490847874624
+ ],
+ [
+ -73.55197276595223,
+ 45.52159054761597
+ ],
+ [
+ -73.55202276645934,
+ 45.52161264755593
+ ],
+ [
+ -73.55200386630723,
+ 45.52163374744978
+ ],
+ [
+ -73.55202806616417,
+ 45.52164474795705
+ ],
+ [
+ -73.55204388523896,
+ 45.52165196321782
+ ],
+ [
+ -73.55215294422484,
+ 45.521534204190466
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1154,
+ "ID_UEV":"01022056",
+ "CIVIQUE_DE":" 1265",
+ "CIVIQUE_FI":" 1269",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-74-3712-4-000-0000",
+ "SUPERFICIE":305,
+ "SUPERFIC_1":278,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000521977705641,
+ "OBJECTID":86964,
+ "Join_Count":1,
+ "TARGET_FID":86964,
+ "feature_id":"c694a0ca-14b9-4f2e-b040-a3b212e76a53",
+ "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.62,
+ "heightmax":11.69,
+ "elevmin":18.3,
+ "elevmax":19.57,
+ "bldgarea":605.05,
+ "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_2":86964,
+ "Shape_Le_1":0.000521977705641,
+ "Shape_Ar_1":1.38429822535e-08,
+ "OBJECTID_3":86964,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86963,
+ "g_objectid":"942279",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567767",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004274271900000000",
+ "g_sup_tota":"444.4",
+ "g_geometry":"0.00098596",
+ "g_geomet_1":"5.19378e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000521977705641,
+ "Shape_Area":1.38429822535e-08,
+ "Shape_Le_3":0.000521978661829,
+ "Shape_Ar_2":1.38429822535e-08,
+ "building_height":4.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1155,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55182842026723,
+ 45.52157698583952
+ ],
+ [
+ -73.55184326627557,
+ 45.52156274777289
+ ],
+ [
+ -73.5518896658972,
+ 45.521587248003385
+ ],
+ [
+ -73.55192286616918,
+ 45.521556247473136
+ ],
+ [
+ -73.55201986614576,
+ 45.52146574779632
+ ],
+ [
+ -73.55199666633493,
+ 45.52145344776869
+ ],
+ [
+ -73.55197696578618,
+ 45.521443347482794
+ ],
+ [
+ -73.55194920821124,
+ 45.521429194851756
+ ],
+ [
+ -73.55181976339321,
+ 45.52157299105099
+ ],
+ [
+ -73.55182842026723,
+ 45.52157698583952
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1155,
+ "ID_UEV":"01022057",
+ "CIVIQUE_DE":" 1261",
+ "CIVIQUE_FI":" 1263",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1937,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-74-4101-9-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000533692294217,
+ "OBJECTID":86965,
+ "Join_Count":1,
+ "TARGET_FID":86965,
+ "feature_id":"b3ed2934-b6b2-4f27-b435-0cc053ed40a7",
+ "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.6,
+ "heightmax":13.22,
+ "elevmin":19.12,
+ "elevmax":19.91,
+ "bldgarea":272.26,
+ "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_2":86965,
+ "Shape_Le_1":0.000533692294217,
+ "Shape_Ar_1":1.2196545851e-08,
+ "OBJECTID_3":86965,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86964,
+ "g_objectid":"942294",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567811",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004274541290000000",
+ "g_sup_tota":"238.6",
+ "g_geometry":"0.000714234",
+ "g_geomet_1":"2.79923e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000533692294217,
+ "Shape_Area":1.2196545851e-08,
+ "Shape_Le_3":0.000533692184059,
+ "Shape_Ar_2":1.2196545851e-08,
+ "building_height":5.3100000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1156,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56097612986635,
+ 45.53269543289821
+ ],
+ [
+ -73.56105277009111,
+ 45.53273664882758
+ ],
+ [
+ -73.56117337007682,
+ 45.532625848754215
+ ],
+ [
+ -73.56108515737596,
+ 45.53257837714069
+ ],
+ [
+ -73.56097612986635,
+ 45.53269543289821
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1156,
+ "ID_UEV":"01022793",
+ "CIVIQUE_DE":" 2449",
+ "CIVIQUE_FI":" 2451",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-2942-8-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":213,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000510932066083,
+ "OBJECTID":86967,
+ "Join_Count":1,
+ "TARGET_FID":86967,
+ "feature_id":"0e06b25c-d8f3-48ce-972d-c964fd1dd532",
+ "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.85,
+ "heightmax":44.61,
+ "elevmin":32.1,
+ "elevmax":35.53,
+ "bldgarea":661.36,
+ "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_2":86967,
+ "Shape_Le_1":0.000510932066083,
+ "Shape_Ar_1":1.44819761349e-08,
+ "OBJECTID_3":86967,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86966,
+ "g_objectid":"940440",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423893",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306363730000000",
+ "g_sup_tota":"115.8",
+ "g_geometry":"0.000622917",
+ "g_geomet_1":"1.33237e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000510932066083,
+ "Shape_Area":1.44819761349e-08,
+ "Shape_Le_3":0.000510931993012,
+ "Shape_Ar_2":1.44819761349e-08,
+ "building_height":21.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1157,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55871366132826,
+ 45.53336158951604
+ ],
+ [
+ -73.55867696898878,
+ 45.533345249733784
+ ],
+ [
+ -73.55863846901198,
+ 45.53338765007029
+ ],
+ [
+ -73.55867442390738,
+ 45.53340375692814
+ ],
+ [
+ -73.55871366132826,
+ 45.53336158951604
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55866614474863,
+ 45.533287390950626
+ ],
+ [
+ -73.55874626984632,
+ 45.53332654563387
+ ],
+ [
+ -73.55885398614438,
+ 45.53321078579942
+ ],
+ [
+ -73.5587729797111,
+ 45.53317257720297
+ ],
+ [
+ -73.55866614474863,
+ 45.533287390950626
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1157,
+ "ID_UEV":"01023196",
+ "CIVIQUE_DE":" 2303",
+ "CIVIQUE_FI":" 2309",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-1208-1-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":271,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000688133929992,
+ "OBJECTID":86968,
+ "Join_Count":2,
+ "TARGET_FID":86968,
+ "feature_id":"98ab8496-f899-4658-a916-e7b9d3fb3733",
+ "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.5,
+ "heightmax":30.35,
+ "elevmin":26.36,
+ "elevmax":26.99,
+ "bldgarea":19.41,
+ "comment":" ",
+ "OBJECTID_2":86968,
+ "Shape_Le_1":0.000688133929992,
+ "Shape_Ar_1":1.56042535123e-08,
+ "OBJECTID_3":86968,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86967,
+ "g_objectid":"940550",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424052",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327190450000000",
+ "g_sup_tota":"237.8",
+ "g_geometry":"0.000812057",
+ "g_geomet_1":"2.74392e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000688133929992,
+ "Shape_Area":1.56042535123e-08,
+ "Shape_Le_3":0.0006881348598,
+ "Shape_Ar_2":1.56042535123e-08,
+ "building_height":13.925
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1158,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55851175003907,
+ 45.53334554291277
+ ],
+ [
+ -73.55854628490496,
+ 45.53336141145027
+ ],
+ [
+ -73.55857356943652,
+ 45.533327749826086
+ ],
+ [
+ -73.55853766939977,
+ 45.533313449706235
+ ],
+ [
+ -73.55851175003907,
+ 45.53334554291277
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55858409510175,
+ 45.53324729377788
+ ],
+ [
+ -73.55866614474863,
+ 45.533287390950626
+ ],
+ [
+ -73.5587729797111,
+ 45.53317257720297
+ ],
+ [
+ -73.5586900280442,
+ 45.53313344949939
+ ],
+ [
+ -73.55858409510175,
+ 45.53324729377788
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1158,
+ "ID_UEV":"01023199",
+ "CIVIQUE_DE":" 2295",
+ "CIVIQUE_FI":" 2301",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-1904-5-000-0000",
+ "SUPERFICIE":238,
+ "SUPERFIC_1":285,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000656610357409,
+ "OBJECTID":86969,
+ "Join_Count":2,
+ "TARGET_FID":86969,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":86969,
+ "Shape_Le_1":0.000656610357409,
+ "Shape_Ar_1":1.52054735216e-08,
+ "OBJECTID_3":86969,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86968,
+ "g_objectid":"940550",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424052",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327190450000000",
+ "g_sup_tota":"237.8",
+ "g_geometry":"0.000812057",
+ "g_geomet_1":"2.74392e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000656610357409,
+ "Shape_Area":1.52054735216e-08,
+ "Shape_Le_3":0.000656610262855,
+ "Shape_Ar_2":1.52054735216e-08,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1159,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56631525106982,
+ 45.51116873789723
+ ],
+ [
+ -73.5661808824636,
+ 45.51131237941308
+ ],
+ [
+ -73.5662696518448,
+ 45.51135204760921
+ ],
+ [
+ -73.56640050590048,
+ 45.51120705890894
+ ],
+ [
+ -73.56631525106982,
+ 45.51116873789723
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1159,
+ "ID_UEV":"01020606",
+ "CIVIQUE_DE":" 1619",
+ "CIVIQUE_FI":" 1621",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-62-2061-6-000-0000",
+ "SUPERFICIE":157,
+ "SUPERFIC_1":295,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000582700570918,
+ "OBJECTID":86970,
+ "Join_Count":1,
+ "TARGET_FID":86970,
+ "feature_id":"bd1c8d00-2974-4f0c-899a-26a94a7dbbc3",
+ "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":15.01,
+ "elevmin":23.74,
+ "elevmax":25.44,
+ "bldgarea":2608.11,
+ "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_2":86970,
+ "Shape_Le_1":0.000582700570918,
+ "Shape_Ar_1":1.77283715845e-08,
+ "OBJECTID_3":86970,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86969,
+ "g_objectid":"943557",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2339880",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994162327100000000",
+ "g_sup_tota":"534.1",
+ "g_geometry":"0.00125797",
+ "g_geomet_1":"6.01426e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000582700570918,
+ "Shape_Area":1.77283715845e-08,
+ "Shape_Le_3":0.000582699128494,
+ "Shape_Ar_2":1.77283715845e-08,
+ "building_height":7.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1160,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55122066652238,
+ 45.534465849969294
+ ],
+ [
+ -73.55124956623634,
+ 45.53447524968332
+ ],
+ [
+ -73.55121981756237,
+ 45.53452000714291
+ ],
+ [
+ -73.55136974803729,
+ 45.534573162471766
+ ],
+ [
+ -73.55146376586195,
+ 45.534431350176966
+ ],
+ [
+ -73.55146126574667,
+ 45.534430549780346
+ ],
+ [
+ -73.5512718658258,
+ 45.53437674963758
+ ],
+ [
+ -73.55122066652238,
+ 45.534465849969294
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55122726215028,
+ 45.53418124242069
+ ],
+ [
+ -73.55124086619486,
+ 45.5341861500211
+ ],
+ [
+ -73.55156736596301,
+ 45.53430374986846
+ ],
+ [
+ -73.55157026627661,
+ 45.534299749683996
+ ],
+ [
+ -73.5515705144895,
+ 45.53429941423687
+ ],
+ [
+ -73.5512292334642,
+ 45.53417830883218
+ ],
+ [
+ -73.55122726215028,
+ 45.53418124242069
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1160,
+ "ID_UEV":"01019132",
+ "CIVIQUE_DE":" 2700",
+ "CIVIQUE_FI":" 2700",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Restaurant et \u00c3\u00a9tablissement avec service restreint ( commande au comptoir ou par t\u00c3\u00a9l\u00c3\u00a9phone)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-78-9230-0-000-0000",
+ "SUPERFICIE":1049,
+ "SUPERFIC_1":213,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00144815526389,
+ "OBJECTID":86975,
+ "Join_Count":2,
+ "TARGET_FID":86975,
+ "feature_id":"a4754cc6-58e9-4ea8-8b49-ce61879e5ee5",
+ "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.49,
+ "heightmax":27.82,
+ "elevmin":21.71,
+ "elevmax":22.61,
+ "bldgarea":257.56,
+ "comment":" ",
+ "OBJECTID_2":86975,
+ "Shape_Le_1":0.00144815526389,
+ "Shape_Ar_1":3.04182104531e-08,
+ "OBJECTID_3":86975,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86974,
+ "g_objectid":"938256",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1424774",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5002",
+ "g_nb_logem":" ",
+ "g_nb_locau":"12",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004387055760000000",
+ "g_sup_tota":"8888.2",
+ "g_geometry":"0.00484705",
+ "g_geomet_1":"1.02452e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00144815526389,
+ "Shape_Area":3.04182104531e-08,
+ "Shape_Le_3":0.00144815381982,
+ "Shape_Ar_2":3.04182104531e-08,
+ "building_height":12.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1161,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55632166973112,
+ 45.53402900968135
+ ],
+ [
+ -73.5564735652247,
+ 45.534093491971376
+ ],
+ [
+ -73.55649676773349,
+ 45.534066649906265
+ ],
+ [
+ -73.55653096805158,
+ 45.53408124950036
+ ],
+ [
+ -73.5565504680515,
+ 45.53405864953734
+ ],
+ [
+ -73.55662179598094,
+ 45.53408910957504
+ ],
+ [
+ -73.55662479072336,
+ 45.534085603118385
+ ],
+ [
+ -73.55636728424462,
+ 45.533976286926396
+ ],
+ [
+ -73.55632166973112,
+ 45.53402900968135
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1161,
+ "ID_UEV":"01025721",
+ "CIVIQUE_DE":" 2507",
+ "CIVIQUE_FI":" 2509",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-37-8994-8-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":168,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000699168901871,
+ "OBJECTID":86976,
+ "Join_Count":1,
+ "TARGET_FID":86976,
+ "feature_id":"f91ecef3-8460-469c-869e-804339538345",
+ "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.43,
+ "heightmax":32.27,
+ "elevmin":18.98,
+ "elevmax":20.02,
+ "bldgarea":467.8,
+ "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_2":86976,
+ "Shape_Le_1":0.000699168901871,
+ "Shape_Ar_1":1.2496705623e-08,
+ "OBJECTID_3":86976,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86975,
+ "g_objectid":"941184",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425114",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338930050000000",
+ "g_sup_tota":"167.2",
+ "g_geometry":"0.00071891",
+ "g_geomet_1":"1.9236e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000699168901871,
+ "Shape_Area":1.2496705623e-08,
+ "Shape_Le_3":0.000699168418217,
+ "Shape_Ar_2":1.2496705623e-08,
+ "building_height":14.920000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1162,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55627605701626,
+ 45.53408173153698
+ ],
+ [
+ -73.55653442954214,
+ 45.53419141555168
+ ],
+ [
+ -73.55655692968041,
+ 45.534165067214374
+ ],
+ [
+ -73.5564508681349,
+ 45.53411974947715
+ ],
+ [
+ -73.5564735652247,
+ 45.534093491971376
+ ],
+ [
+ -73.55632166973112,
+ 45.53402900968135
+ ],
+ [
+ -73.55627605701626,
+ 45.53408173153698
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1162,
+ "ID_UEV":"01025723",
+ "CIVIQUE_DE":" 2513",
+ "CIVIQUE_FI":" 2515",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-9300-5-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":256,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000700114365329,
+ "OBJECTID":86978,
+ "Join_Count":1,
+ "TARGET_FID":86978,
+ "feature_id":"f91ecef3-8460-469c-869e-804339538345",
+ "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.43,
+ "heightmax":32.27,
+ "elevmin":18.98,
+ "elevmax":20.02,
+ "bldgarea":467.8,
+ "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_2":86978,
+ "Shape_Le_1":0.000700114365329,
+ "Shape_Ar_1":1.4783997965e-08,
+ "OBJECTID_3":86978,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86977,
+ "g_objectid":"941184",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425114",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338930050000000",
+ "g_sup_tota":"167.2",
+ "g_geometry":"0.00071891",
+ "g_geomet_1":"1.9236e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000700114365329,
+ "Shape_Area":1.4783997965e-08,
+ "Shape_Le_3":0.000700113620066,
+ "Shape_Ar_2":1.4783997965e-08,
+ "building_height":14.920000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1163,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56137897128434,
+ 45.532837750611996
+ ],
+ [
+ -73.56138927032042,
+ 45.53284274904393
+ ],
+ [
+ -73.56134517026524,
+ 45.5328876485964
+ ],
+ [
+ -73.56141516989602,
+ 45.532921749089745
+ ],
+ [
+ -73.56141987424964,
+ 45.53292402077723
+ ],
+ [
+ -73.56155095853175,
+ 45.532783286769565
+ ],
+ [
+ -73.561545069771,
+ 45.53278094853224
+ ],
+ [
+ -73.56147526978971,
+ 45.53275334923797
+ ],
+ [
+ -73.56146727032011,
+ 45.53276324897506
+ ],
+ [
+ -73.56145337399586,
+ 45.53275786923058
+ ],
+ [
+ -73.56137897128434,
+ 45.532837750611996
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1163,
+ "ID_UEV":"01022789",
+ "CIVIQUE_DE":" 2469",
+ "CIVIQUE_FI":" 2471",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1943,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-0160-9-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":255,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000567984172164,
+ "OBJECTID":86984,
+ "Join_Count":1,
+ "TARGET_FID":86984,
+ "feature_id":"e063c498-c0d9-4b24-a6a3-e7968a466c1a",
+ "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":49.63,
+ "elevmin":34.63,
+ "elevmax":42.2,
+ "bldgarea":1208.36,
+ "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_2":86984,
+ "Shape_Le_1":0.000567984172164,
+ "Shape_Ar_1":1.59223325454e-08,
+ "OBJECTID_3":86984,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86983,
+ "g_objectid":"940422",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423870",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306016090000000",
+ "g_sup_tota":"198.1",
+ "g_geometry":"0.000699005",
+ "g_geomet_1":"2.27231e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000567984172164,
+ "Shape_Area":1.59223325454e-08,
+ "Shape_Le_3":0.000567983917968,
+ "Shape_Ar_2":1.59223325454e-08,
+ "building_height":24.295
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1164,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56121356077905,
+ 45.532757472629555
+ ],
+ [
+ -73.56129546293711,
+ 45.53279722176467
+ ],
+ [
+ -73.56137529575514,
+ 45.53271151187707
+ ],
+ [
+ -73.5613594703851,
+ 45.53270544864783
+ ],
+ [
+ -73.56137077036661,
+ 45.53269094887848
+ ],
+ [
+ -73.56133356991016,
+ 45.53267664875863
+ ],
+ [
+ -73.56133316971186,
+ 45.53267664875863
+ ],
+ [
+ -73.56131816991945,
+ 45.53268854858794
+ ],
+ [
+ -73.561292550033,
+ 45.532672669258574
+ ],
+ [
+ -73.56121356077905,
+ 45.532757472629555
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1164,
+ "ID_UEV":"01022791",
+ "CIVIQUE_DE":" 2461",
+ "CIVIQUE_FI":" 2461",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-1451-1-000-0000",
+ "SUPERFICIE":194,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000448934451581,
+ "OBJECTID":86985,
+ "Join_Count":1,
+ "TARGET_FID":86985,
+ "feature_id":"e063c498-c0d9-4b24-a6a3-e7968a466c1a",
+ "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":49.63,
+ "elevmin":34.63,
+ "elevmax":42.2,
+ "bldgarea":1208.36,
+ "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_2":86985,
+ "Shape_Le_1":0.000448934451581,
+ "Shape_Ar_1":1.07000187602e-08,
+ "OBJECTID_3":86985,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86984,
+ "g_objectid":"940420",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423868",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306214740000000",
+ "g_sup_tota":"201.9",
+ "g_geometry":"0.000703476",
+ "g_geomet_1":"2.31996e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000448934451581,
+ "Shape_Area":1.07000187602e-08,
+ "Shape_Le_3":0.000448933408768,
+ "Shape_Ar_2":1.07000187602e-08,
+ "building_height":24.295
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1165,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.561292550033,
+ 45.532672669258574
+ ],
+ [
+ -73.56127687035313,
+ 45.53266294848658
+ ],
+ [
+ -73.56128627006716,
+ 45.532655449040035
+ ],
+ [
+ -73.56125267049619,
+ 45.53263464862043
+ ],
+ [
+ -73.56124967035784,
+ 45.53263704891097
+ ],
+ [
+ -73.56123027018266,
+ 45.532652648551185
+ ],
+ [
+ -73.56121606988756,
+ 45.53264394850971
+ ],
+ [
+ -73.56121417051939,
+ 45.53264584877719
+ ],
+ [
+ -73.5611392704828,
+ 45.5327213486616
+ ],
+ [
+ -73.56114387051505,
+ 45.5327236491274
+ ],
+ [
+ -73.56121356077905,
+ 45.532757472629555
+ ],
+ [
+ -73.561292550033,
+ 45.532672669258574
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1165,
+ "ID_UEV":"01022792",
+ "CIVIQUE_DE":" 2457",
+ "CIVIQUE_FI":" 2457",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-2147-4-000-0000",
+ "SUPERFICIE":202,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000422917322919,
+ "OBJECTID":86986,
+ "Join_Count":1,
+ "TARGET_FID":86986,
+ "feature_id":"e063c498-c0d9-4b24-a6a3-e7968a466c1a",
+ "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":49.63,
+ "elevmin":34.63,
+ "elevmax":42.2,
+ "bldgarea":1208.36,
+ "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_2":86986,
+ "Shape_Le_1":0.000422917322919,
+ "Shape_Ar_1":9.41791775247e-09,
+ "OBJECTID_3":86986,
+ "Join_Cou_1":2,
+ "TARGET_F_1":86985,
+ "g_objectid":"940420",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423868",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306214740000000",
+ "g_sup_tota":"201.9",
+ "g_geometry":"0.000703476",
+ "g_geomet_1":"2.31996e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000422917322919,
+ "Shape_Area":9.41791775247e-09,
+ "Shape_Le_3":0.000422915975448,
+ "Shape_Ar_2":9.41791775247e-09,
+ "building_height":24.295
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1166,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56048644721362,
+ 45.51215274280513
+ ],
+ [
+ -73.56044156834555,
+ 45.512131745434
+ ],
+ [
+ -73.56043686848854,
+ 45.512129545692275
+ ],
+ [
+ -73.56031064234412,
+ 45.512266742666334
+ ],
+ [
+ -73.56036017610309,
+ 45.5122893282402
+ ],
+ [
+ -73.56048644721362,
+ 45.51215274280513
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55991520234656,
+ 45.5120864447839
+ ],
+ [
+ -73.56005463773319,
+ 45.51215001965797
+ ],
+ [
+ -73.56024636779748,
+ 45.511945146001985
+ ],
+ [
+ -73.55983666814956,
+ 45.51175564625636
+ ],
+ [
+ -73.5598332678129,
+ 45.51175924624251
+ ],
+ [
+ -73.5597610684404,
+ 45.51183584599779
+ ],
+ [
+ -73.55975776792849,
+ 45.51183934615919
+ ],
+ [
+ -73.55977086835274,
+ 45.51184564591013
+ ],
+ [
+ -73.55975226767485,
+ 45.51186454606225
+ ],
+ [
+ -73.55955616780474,
+ 45.51176934562909
+ ],
+ [
+ -73.55990426838912,
+ 45.511414946193106
+ ],
+ [
+ -73.55990206774807,
+ 45.51141384542292
+ ],
+ [
+ -73.5597719682236,
+ 45.51135614581977
+ ],
+ [
+ -73.55974536807612,
+ 45.511378945432284
+ ],
+ [
+ -73.55972266828836,
+ 45.511365845907356
+ ],
+ [
+ -73.55942908370709,
+ 45.511664712207
+ ],
+ [
+ -73.55932574620806,
+ 45.51177845216413
+ ],
+ [
+ -73.55933743649534,
+ 45.51180550107331
+ ],
+ [
+ -73.5594051671366,
+ 45.511838445937826
+ ],
+ [
+ -73.55991520234656,
+ 45.5120864447839
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56059664923782,
+ 45.51202814982955
+ ],
+ [
+ -73.56059546842798,
+ 45.51202944575262
+ ],
+ [
+ -73.56059903603852,
+ 45.51203095751298
+ ],
+ [
+ -73.56060015029854,
+ 45.51202975152211
+ ],
+ [
+ -73.56059664923782,
+ 45.51202814982955
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55997505492668,
+ 45.511527351556325
+ ],
+ [
+ -73.55993716828753,
+ 45.511567946054164
+ ],
+ [
+ -73.55993789493975,
+ 45.51156825182366
+ ],
+ [
+ -73.55997505492668,
+ 45.511527351556325
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1166,
+ "ID_UEV":"01021070",
+ "CIVIQUE_DE":" 303",
+ "CIVIQUE_FI":" 303",
+ "NOM_RUE":"boulevard Ren\u00c3\u00a9-L\u00c3\u00a9vesque Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":225,
+ "ANNEE_CONS":1997,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-13-2332-2-000-0000",
+ "SUPERFICIE":4239,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00381094303948,
+ "OBJECTID":86995,
+ "Join_Count":3,
+ "TARGET_FID":86995,
+ "feature_id":"c00532f6-7f0e-4e11-bc8b-d0d28f19dcf9",
+ "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.8,
+ "heightmax":42.19,
+ "elevmin":22.48,
+ "elevmax":25.27,
+ "bldgarea":1132.21,
+ "comment":" ",
+ "OBJECTID_2":86995,
+ "Shape_Le_1":0.00381094303948,
+ "Shape_Ar_1":2.56938772895e-07,
+ "OBJECTID_3":86995,
+ "Join_Cou_1":7,
+ "TARGET_F_1":86994,
+ "g_objectid":"943384",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161931",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103543510000000",
+ "g_sup_tota":"232.9",
+ "g_geometry":"0.00082382",
+ "g_geomet_1":"2.73867e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00381094303948,
+ "Shape_Area":2.56938772895e-07,
+ "Shape_Le_3":0.00381094224558,
+ "Shape_Ar_2":2.56938772895e-07,
+ "building_height":19.695
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1167,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55055709095882,
+ 45.527610209194094
+ ],
+ [
+ -73.55068683345245,
+ 45.5276711661417
+ ],
+ [
+ -73.55073259005883,
+ 45.52762306140546
+ ],
+ [
+ -73.55060162898384,
+ 45.52756153608632
+ ],
+ [
+ -73.55055709095882,
+ 45.527610209194094
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1167,
+ "ID_UEV":"01118853",
+ "CIVIQUE_DE":" 2244",
+ "CIVIQUE_FI":" 2246",
+ "NOM_RUE":"rue Olivier-Robert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-80-4776-3-000-0000",
+ "SUPERFICIE":131,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00042040735368,
+ "OBJECTID":86997,
+ "Join_Count":1,
+ "TARGET_FID":86997,
+ "feature_id":"7d10ba83-0e53-4e73-8b24-02e78a9d133b",
+ "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.63,
+ "heightmax":33.32,
+ "elevmin":17.48,
+ "elevmax":18.59,
+ "bldgarea":3058.06,
+ "comment":" ",
+ "OBJECTID_2":86997,
+ "Shape_Le_1":0.00042040735368,
+ "Shape_Ar_1":9.07241417731e-09,
+ "OBJECTID_3":86997,
+ "Join_Cou_1":4,
+ "TARGET_F_1":86996,
+ "g_objectid":"940874",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424563",
+ "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":"66023004380437130000000",
+ "g_sup_tota":"134.6",
+ "g_geometry":"0.000615179",
+ "g_geomet_1":"1.55323e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00042040735368,
+ "Shape_Area":9.07241417731e-09,
+ "Shape_Le_3":0.000420407915031,
+ "Shape_Ar_2":9.07241417731e-09,
+ "building_height":15.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1168,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55178509093105,
+ 45.53437374949924
+ ],
+ [
+ -73.55197974379199,
+ 45.53444275897644
+ ],
+ [
+ -73.55201780489962,
+ 45.53438712691467
+ ],
+ [
+ -73.55182310887122,
+ 45.534318148913734
+ ],
+ [
+ -73.55178509093105,
+ 45.53437374949924
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1168,
+ "ID_UEV":"01025528",
+ "CIVIQUE_DE":" 2663",
+ "CIVIQUE_FI":" 2667",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-78-3834-5-000-0000",
+ "SUPERFICIE":250,
+ "SUPERFIC_1":320,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000547839537957,
+ "OBJECTID":87000,
+ "Join_Count":1,
+ "TARGET_FID":87000,
+ "feature_id":"f934e678-1ab2-46df-913f-d8d0781313c0",
+ "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.53,
+ "heightmax":33.66,
+ "elevmin":20.68,
+ "elevmax":21.89,
+ "bldgarea":712.24,
+ "comment":" ",
+ "OBJECTID_2":87000,
+ "Shape_Le_1":0.000547839537957,
+ "Shape_Ar_1":1.34515925708e-08,
+ "OBJECTID_3":87000,
+ "Join_Cou_1":3,
+ "TARGET_F_1":86999,
+ "g_objectid":"940989",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424816",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004378434360000000",
+ "g_sup_tota":"470.9",
+ "g_geometry":"0.00110418",
+ "g_geomet_1":"5.45129e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000547839537957,
+ "Shape_Area":1.34515925708e-08,
+ "Shape_Le_3":0.000547839329331,
+ "Shape_Ar_2":1.34515925708e-08,
+ "building_height":15.564999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1169,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5642557703094,
+ 45.52241264757592
+ ],
+ [
+ -73.56435317048428,
+ 45.52246904765872
+ ],
+ [
+ -73.5643522702629,
+ 45.52246984805534
+ ],
+ [
+ -73.56438197037347,
+ 45.522481347686345
+ ],
+ [
+ -73.5644909700041,
+ 45.52252334782454
+ ],
+ [
+ -73.56449447016551,
+ 45.52251884761702
+ ],
+ [
+ -73.56456717046039,
+ 45.52242714644595
+ ],
+ [
+ -73.56455836969485,
+ 45.52242374700861
+ ],
+ [
+ -73.56449716993029,
+ 45.522401047220846
+ ],
+ [
+ -73.56436047028133,
+ 45.522350546690674
+ ],
+ [
+ -73.56437317050725,
+ 45.522333646630784
+ ],
+ [
+ -73.56437296995844,
+ 45.522333446981285
+ ],
+ [
+ -73.56434777005539,
+ 45.52232104712892
+ ],
+ [
+ -73.56433537020301,
+ 45.52233354680604
+ ],
+ [
+ -73.56428507022166,
+ 45.52230894675079
+ ],
+ [
+ -73.56413977035596,
+ 45.52223754687558
+ ],
+ [
+ -73.56399717025505,
+ 45.52216764706955
+ ],
+ [
+ -73.56393867025527,
+ 45.5221389470051
+ ],
+ [
+ -73.56393846970646,
+ 45.52213914665459
+ ],
+ [
+ -73.56384456969298,
+ 45.52222244725843
+ ],
+ [
+ -73.5638459699374,
+ 45.52222314693098
+ ],
+ [
+ -73.56389636974352,
+ 45.52224334660346
+ ],
+ [
+ -73.56389686976657,
+ 45.522243246778714
+ ],
+ [
+ -73.56390699883077,
+ 45.522265132680026
+ ],
+ [
+ -73.56391934292517,
+ 45.52227085056959
+ ],
+ [
+ -73.56394616970182,
+ 45.52226474687087
+ ],
+ [
+ -73.56395691749958,
+ 45.522288256947796
+ ],
+ [
+ -73.56396409948545,
+ 45.522291583540046
+ ],
+ [
+ -73.56398497005218,
+ 45.52228684681083
+ ],
+ [
+ -73.56398527042573,
+ 45.52228714718439
+ ],
+ [
+ -73.5640606704854,
+ 45.52232684685679
+ ],
+ [
+ -73.56407727017172,
+ 45.522335646723015
+ ],
+ [
+ -73.56411696984412,
+ 45.5223568464416
+ ],
+ [
+ -73.5641579699362,
+ 45.52237174640926
+ ],
+ [
+ -73.56415336990395,
+ 45.52237804705952
+ ],
+ [
+ -73.56416247014373,
+ 45.522381346672105
+ ],
+ [
+ -73.56417987022668,
+ 45.52238654655218
+ ],
+ [
+ -73.56418047007448,
+ 45.52238564723013
+ ],
+ [
+ -73.56421227010203,
+ 45.522404447557506
+ ],
+ [
+ -73.56422437048016,
+ 45.522394246547535
+ ],
+ [
+ -73.5642557703094,
+ 45.52241264757592
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5645988625693,
+ 45.5223966396435
+ ],
+ [
+ -73.56459807026657,
+ 45.52239774670894
+ ],
+ [
+ -73.56462178269096,
+ 45.52241268624677
+ ],
+ [
+ -73.56462532152321,
+ 45.52240889920163
+ ],
+ [
+ -73.5645988625693,
+ 45.5223966396435
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56380686022027,
+ 45.52221874654821
+ ],
+ [
+ -73.56381466633563,
+ 45.522222360923514
+ ],
+ [
+ -73.56392237993573,
+ 45.52211004998911
+ ],
+ [
+ -73.56391398476443,
+ 45.522106094770756
+ ],
+ [
+ -73.56380686022027,
+ 45.52221874654821
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1169,
+ "ID_UEV":"01040407",
+ "CIVIQUE_DE":" 2190",
+ "CIVIQUE_FI":" 2210",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":23,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-74-8291-6-000-0000",
+ "SUPERFICIE":1070,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0021288386683,
+ "OBJECTID":87001,
+ "Join_Count":3,
+ "TARGET_FID":87001,
+ "feature_id":"0aad6588-d92d-411f-9c77-f47968225173",
+ "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.51,
+ "heightmax":10.93,
+ "elevmin":27.81,
+ "elevmax":29,
+ "bldgarea":703.36,
+ "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_2":87001,
+ "Shape_Le_1":0.0021288386683,
+ "Shape_Ar_1":8.23807188806e-08,
+ "OBJECTID_3":87001,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87000,
+ "g_objectid":"941518",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565343",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"23",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994274829160000000",
+ "g_sup_tota":"2185.9",
+ "g_geometry":"0.00225614",
+ "g_geomet_1":"2.52929e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0021288386683,
+ "Shape_Area":8.23807188806e-08,
+ "Shape_Le_3":0.00212883848955,
+ "Shape_Ar_2":8.23807188806e-08,
+ "building_height":4.71
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1170,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56467414391845,
+ 45.52298639525623
+ ],
+ [
+ -73.56470096979577,
+ 45.522999647665905
+ ],
+ [
+ -73.56466727040005,
+ 45.52303324813619
+ ],
+ [
+ -73.5647484701876,
+ 45.52308174767481
+ ],
+ [
+ -73.56480387022428,
+ 45.52303594790097
+ ],
+ [
+ -73.56481562256478,
+ 45.52304299858581
+ ],
+ [
+ -73.56490380289003,
+ 45.52293049879378
+ ],
+ [
+ -73.5648196704133,
+ 45.52289164808139
+ ],
+ [
+ -73.56481917039025,
+ 45.52289144753257
+ ],
+ [
+ -73.56480837043179,
+ 45.52290174746797
+ ],
+ [
+ -73.56477225815503,
+ 45.52288281763822
+ ],
+ [
+ -73.56467414391845,
+ 45.52298639525623
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1170,
+ "ID_UEV":"01040410",
+ "CIVIQUE_DE":" 2213",
+ "CIVIQUE_FI":" 2223",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-75-4066-3-000-0000",
+ "SUPERFICIE":379,
+ "SUPERFIC_1":625,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000692192638204,
+ "OBJECTID":87002,
+ "Join_Count":1,
+ "TARGET_FID":87002,
+ "feature_id":"67cace94-6eb3-4fe9-ba5b-83ca7ae0be93",
+ "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.67,
+ "heightmax":16.32,
+ "elevmin":26.8,
+ "elevmax":38.76,
+ "bldgarea":3830.67,
+ "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_2":87002,
+ "Shape_Le_1":0.000692192638204,
+ "Shape_Ar_1":2.54414350859e-08,
+ "OBJECTID_3":87002,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87001,
+ "g_objectid":"941529",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565357",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994275505970000000",
+ "g_sup_tota":"332.3",
+ "g_geometry":"0.000867037",
+ "g_geomet_1":"3.77491e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000692192638204,
+ "Shape_Area":2.54414350859e-08,
+ "Shape_Le_3":0.000692191518615,
+ "Shape_Ar_2":2.54414350859e-08,
+ "building_height":7.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1171,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56455584439854,
+ 45.522928417762564
+ ],
+ [
+ -73.5645850705664,
+ 45.522943147758355
+ ],
+ [
+ -73.56454546981942,
+ 45.52298144808566
+ ],
+ [
+ -73.56454486997161,
+ 45.522981948108715
+ ],
+ [
+ -73.56462747000359,
+ 45.52302304802554
+ ],
+ [
+ -73.56466756987429,
+ 45.522983147804325
+ ],
+ [
+ -73.56467414391845,
+ 45.52298639525623
+ ],
+ [
+ -73.56477225815503,
+ 45.52288281763822
+ ],
+ [
+ -73.56469467004483,
+ 45.52284214759733
+ ],
+ [
+ -73.56465785809552,
+ 45.522822814871304
+ ],
+ [
+ -73.56455584439854,
+ 45.522928417762564
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1171,
+ "ID_UEV":"01040411",
+ "CIVIQUE_DE":" 2203",
+ "CIVIQUE_FI":" 2211",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-75-5059-7-000-0000",
+ "SUPERFICIE":332,
+ "SUPERFIC_1":500,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000663441345946,
+ "OBJECTID":87003,
+ "Join_Count":1,
+ "TARGET_FID":87003,
+ "feature_id":"67cace94-6eb3-4fe9-ba5b-83ca7ae0be93",
+ "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.67,
+ "heightmax":16.32,
+ "elevmin":26.8,
+ "elevmax":38.76,
+ "bldgarea":3830.67,
+ "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_2":87003,
+ "Shape_Le_1":0.000663441345946,
+ "Shape_Ar_1":2.29668273218e-08,
+ "OBJECTID_3":87003,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87002,
+ "g_objectid":"941529",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565357",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994275505970000000",
+ "g_sup_tota":"332.3",
+ "g_geometry":"0.000867037",
+ "g_geomet_1":"3.77491e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000663441345946,
+ "Shape_Area":2.29668273218e-08,
+ "Shape_Le_3":0.000663442718912,
+ "Shape_Ar_2":2.29668273218e-08,
+ "building_height":7.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1172,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56204558655642,
+ 45.512546474090804
+ ],
+ [
+ -73.56210980534509,
+ 45.51257514357831
+ ],
+ [
+ -73.56223330924168,
+ 45.51243926141308
+ ],
+ [
+ -73.56187476842767,
+ 45.51227874591768
+ ],
+ [
+ -73.56182149618695,
+ 45.51233758316323
+ ],
+ [
+ -73.56205930481491,
+ 45.51244432189823
+ ],
+ [
+ -73.56198002148265,
+ 45.51253020895228
+ ],
+ [
+ -73.56198043786875,
+ 45.51253039511194
+ ],
+ [
+ -73.56203715721088,
+ 45.512556019495
+ ],
+ [
+ -73.56204555328151,
+ 45.51254646329894
+ ],
+ [
+ -73.56204558655642,
+ 45.512546474090804
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1172,
+ "ID_UEV":"01021654",
+ "CIVIQUE_DE":" 251",
+ "CIVIQUE_FI":" 253",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-93-5290-3-000-0000",
+ "SUPERFICIE":405,
+ "SUPERFIC_1":1176,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00117918336104,
+ "OBJECTID":87004,
+ "Join_Count":1,
+ "TARGET_FID":87004,
+ "feature_id":"e7f1740f-b567-47da-8fe0-1b455b1e0fdf",
+ "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":32.53,
+ "elevmin":25.02,
+ "elevmax":26.47,
+ "bldgarea":3711.13,
+ "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_2":87004,
+ "Shape_Le_1":0.00117918336104,
+ "Shape_Ar_1":4.35417155918e-08,
+ "OBJECTID_3":87004,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87003,
+ "g_objectid":"938593",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"6821",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994194542790000000",
+ "g_sup_tota":"2376.1",
+ "g_geometry":"0.00269355",
+ "g_geomet_1":"2.73954e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00117918336104,
+ "Shape_Area":4.35417155918e-08,
+ "Shape_Le_3":0.00117918287296,
+ "Shape_Ar_2":4.35417155918e-08,
+ "building_height":16.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1173,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55133322477035,
+ 45.52147398648558
+ ],
+ [
+ -73.55139283992946,
+ 45.52150231423071
+ ],
+ [
+ -73.55143531940631,
+ 45.5214565441345
+ ],
+ [
+ -73.55137616470009,
+ 45.5214287478887
+ ],
+ [
+ -73.55133322477035,
+ 45.52147398648558
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55119556554476,
+ 45.52140504805482
+ ],
+ [
+ -73.5512913649264,
+ 45.52145124802697
+ ],
+ [
+ -73.55134296532744,
+ 45.52139844793032
+ ],
+ [
+ -73.55124716504648,
+ 45.521352148133424
+ ],
+ [
+ -73.55119556554476,
+ 45.52140504805482
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55129109423046,
+ 45.52129081077259
+ ],
+ [
+ -73.5513290654059,
+ 45.521308647926055
+ ],
+ [
+ -73.55134456522136,
+ 45.521292347713974
+ ],
+ [
+ -73.55151401817925,
+ 45.52137174615945
+ ],
+ [
+ -73.55160418150962,
+ 45.52127459869407
+ ],
+ [
+ -73.5515480665119,
+ 45.521248448207615
+ ],
+ [
+ -73.55139377792236,
+ 45.52117658248359
+ ],
+ [
+ -73.55129109423046,
+ 45.52129081077259
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1173,
+ "ID_UEV":"01022060",
+ "CIVIQUE_DE":" 1213",
+ "CIVIQUE_FI":" 1227",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-73-8379-9-000-0000",
+ "SUPERFICIE":603,
+ "SUPERFIC_1":853,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00138649241885,
+ "OBJECTID":87009,
+ "Join_Count":2,
+ "TARGET_FID":87009,
+ "feature_id":"e164fc93-04a1-4d3e-9512-b0cf373b04fd",
+ "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":5.18,
+ "heightmax":6.33,
+ "elevmin":17.31,
+ "elevmax":21.39,
+ "bldgarea":64.7,
+ "comment":" ",
+ "OBJECTID_2":87009,
+ "Shape_Le_1":0.00138649241885,
+ "Shape_Ar_1":4.13326694493e-08,
+ "OBJECTID_3":87009,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87008,
+ "g_objectid":"942295",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567813",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004273759440000000",
+ "g_sup_tota":"155.6",
+ "g_geometry":"0.000558964",
+ "g_geomet_1":"1.79592e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00138649241885,
+ "Shape_Area":4.13326694493e-08,
+ "Shape_Le_3":0.00138649481844,
+ "Shape_Ar_2":4.13326694493e-08,
+ "building_height":0.5750000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1174,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55018142795238,
+ 45.52801419275109
+ ],
+ [
+ -73.55033162912324,
+ 45.52808396755135
+ ],
+ [
+ -73.55041989668273,
+ 45.52799183740367
+ ],
+ [
+ -73.55042076093122,
+ 45.52799004325619
+ ],
+ [
+ -73.5502759664845,
+ 45.527922748786125
+ ],
+ [
+ -73.55026066631854,
+ 45.52793874862464
+ ],
+ [
+ -73.55025522991677,
+ 45.52793617026834
+ ],
+ [
+ -73.55018142795238,
+ 45.52801419275109
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5503338918175,
+ 45.52785301085806
+ ],
+ [
+ -73.5503337290402,
+ 45.52785318262857
+ ],
+ [
+ -73.55045516629474,
+ 45.52791264850023
+ ],
+ [
+ -73.55045747845172,
+ 45.5279137528677
+ ],
+ [
+ -73.55045891107173,
+ 45.527910775212405
+ ],
+ [
+ -73.5503338918175,
+ 45.52785301085806
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1174,
+ "ID_UEV":"01018407",
+ "CIVIQUE_DE":" 1586",
+ "CIVIQUE_FI":" 1594",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-81-6818-9-000-0000",
+ "SUPERFICIE":295,
+ "SUPERFIC_1":468,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000869457761211,
+ "OBJECTID":87011,
+ "Join_Count":2,
+ "TARGET_FID":87011,
+ "feature_id":"7d10ba83-0e53-4e73-8b24-02e78a9d133b",
+ "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.63,
+ "heightmax":33.32,
+ "elevmin":17.48,
+ "elevmax":18.59,
+ "bldgarea":3058.06,
+ "comment":" ",
+ "OBJECTID_2":87011,
+ "Shape_Le_1":0.000869457761211,
+ "Shape_Ar_1":2.04993708877e-08,
+ "OBJECTID_3":87011,
+ "Join_Cou_1":6,
+ "TARGET_F_1":87010,
+ "g_objectid":"940872",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424561",
+ "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":"66023004381640300000000",
+ "g_sup_tota":"119.7",
+ "g_geometry":"0.000601467",
+ "g_geomet_1":"1.37891e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000869457761211,
+ "Shape_Area":2.04993708877e-08,
+ "Shape_Le_3":0.000869456411239,
+ "Shape_Ar_2":2.04993708877e-08,
+ "building_height":15.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1175,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56648767179047,
+ 45.51620076040706
+ ],
+ [
+ -73.56661736032477,
+ 45.51625986924786
+ ],
+ [
+ -73.56665319201305,
+ 45.51618965917572
+ ],
+ [
+ -73.56651780987087,
+ 45.51612793240845
+ ],
+ [
+ -73.56650677429005,
+ 45.516125724572824
+ ],
+ [
+ -73.56649157035153,
+ 45.51614834611957
+ ],
+ [
+ -73.56649057030542,
+ 45.51614804574601
+ ],
+ [
+ -73.5664854702501,
+ 45.516160146124136
+ ],
+ [
+ -73.56646972671835,
+ 45.51619729621854
+ ],
+ [
+ -73.56648767179047,
+ 45.51620076040706
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1175,
+ "ID_UEV":"01021363",
+ "CIVIQUE_DE":" 358",
+ "CIVIQUE_FI":" 360",
+ "NOM_RUE":"terrasse Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-58-9810-7-000-0000",
+ "SUPERFICIE":131,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000481447249986,
+ "OBJECTID":87017,
+ "Join_Count":1,
+ "TARGET_FID":87017,
+ "feature_id":"8e1da87e-3f79-40b6-947c-b870b1e48e84",
+ "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":25.2,
+ "elevmin":25.38,
+ "elevmax":42.64,
+ "bldgarea":8192.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_2":87017,
+ "Shape_Le_1":0.000481447249986,
+ "Shape_Ar_1":1.27654188354e-08,
+ "OBJECTID_3":87017,
+ "Join_Cou_1":6,
+ "TARGET_F_1":87016,
+ "g_objectid":"944611",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994158981070000000",
+ "g_sup_tota":"130.8",
+ "g_geometry":"0.000555521",
+ "g_geomet_1":"1.54226e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000481447249986,
+ "Shape_Area":1.27654188354e-08,
+ "Shape_Le_3":0.000481449164251,
+ "Shape_Ar_2":1.27654188354e-08,
+ "building_height":12.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1176,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55445421581126,
+ 45.53756111140646
+ ],
+ [
+ -73.55445561335772,
+ 45.53756160693291
+ ],
+ [
+ -73.55448136814248,
+ 45.5375255495148
+ ],
+ [
+ -73.55447999847499,
+ 45.537525093558514
+ ],
+ [
+ -73.55445421581126,
+ 45.53756111140646
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55449597133385,
+ 45.53750277957991
+ ],
+ [
+ -73.55457236784234,
+ 45.53754184972688
+ ],
+ [
+ -73.55457236784234,
+ 45.537541949551624
+ ],
+ [
+ -73.55457565486442,
+ 45.53754402518691
+ ],
+ [
+ -73.55466707005108,
+ 45.53741631606043
+ ],
+ [
+ -73.5545854682666,
+ 45.53738615010104
+ ],
+ [
+ -73.55459486798061,
+ 45.5373736495246
+ ],
+ [
+ -73.55458972026122,
+ 45.53737181220966
+ ],
+ [
+ -73.55451943824332,
+ 45.537469996593366
+ ],
+ [
+ -73.55452386830372,
+ 45.537472250294414
+ ],
+ [
+ -73.55450423520413,
+ 45.5374912349828
+ ],
+ [
+ -73.55449597133385,
+ 45.53750277957991
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1176,
+ "ID_UEV":"01024989",
+ "CIVIQUE_DE":" 2275",
+ "CIVIQUE_FI":" 2283",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-51-3875-3-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":280,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000613712514744,
+ "OBJECTID":87018,
+ "Join_Count":2,
+ "TARGET_FID":87018,
+ "feature_id":"99712a77-a8c9-42e1-b0b8-a97253912a8a",
+ "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.39,
+ "heightmax":4.85,
+ "elevmin":19.05,
+ "elevmax":19.67,
+ "bldgarea":15.77,
+ "comment":" ",
+ "OBJECTID_2":87018,
+ "Shape_Le_1":0.000613712514744,
+ "Shape_Ar_1":1.34955681254e-08,
+ "OBJECTID_3":87018,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87017,
+ "g_objectid":"943976",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361185",
+ "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":"66023004451327980000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667591",
+ "g_geomet_1":"2.14346e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000613712514744,
+ "Shape_Area":1.34955681254e-08,
+ "Shape_Le_3":0.00061371228845,
+ "Shape_Ar_2":1.34955681254e-08,
+ "building_height":0.22999999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1177,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54886491040914,
+ 45.53093928087341
+ ],
+ [
+ -73.54885636505105,
+ 45.53094865001049
+ ],
+ [
+ -73.54885596485273,
+ 45.530948949484724
+ ],
+ [
+ -73.54887046552142,
+ 45.53095465028718
+ ],
+ [
+ -73.54866174996164,
+ 45.53121328091847
+ ],
+ [
+ -73.54877535412115,
+ 45.53126159159947
+ ],
+ [
+ -73.54898773082097,
+ 45.530991285070044
+ ],
+ [
+ -73.54886491040914,
+ 45.53093928087341
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1177,
+ "ID_UEV":"01019305",
+ "CIVIQUE_DE":" 2525",
+ "CIVIQUE_FI":" 2535",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":13,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-8268-8-000-0000",
+ "SUPERFICIE":836,
+ "SUPERFIC_1":1010,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000961688806974,
+ "OBJECTID":87020,
+ "Join_Count":1,
+ "TARGET_FID":87020,
+ "feature_id":"d5671cf8-90d3-41dd-8fce-b76b2b837547",
+ "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.15,
+ "heightmax":34,
+ "elevmin":22.55,
+ "elevmax":23.17,
+ "bldgarea":581.74,
+ "comment":" ",
+ "OBJECTID_2":87020,
+ "Shape_Le_1":0.000961688806974,
+ "Shape_Ar_1":4.03658775957e-08,
+ "OBJECTID_3":87020,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87019,
+ "g_objectid":"941248",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425208",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394715170000000",
+ "g_sup_tota":"176",
+ "g_geometry":"0.000720226",
+ "g_geomet_1":"1.9271e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000961688806974,
+ "Shape_Area":4.03658775957e-08,
+ "Shape_Le_3":0.000961688975147,
+ "Shape_Ar_2":4.03658775957e-08,
+ "building_height":13.925
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1178,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55450289881158,
+ 45.537340536486866
+ ],
+ [
+ -73.55442076822571,
+ 45.53731094969087
+ ],
+ [
+ -73.5543466676864,
+ 45.53741394994413
+ ],
+ [
+ -73.55440156770004,
+ 45.537441849611966
+ ],
+ [
+ -73.5544228681427,
+ 45.53742084954287
+ ],
+ [
+ -73.55443938778936,
+ 45.53742926359993
+ ],
+ [
+ -73.55450289881158,
+ 45.537340536486866
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1178,
+ "ID_UEV":"01024993",
+ "CIVIQUE_DE":" 2265",
+ "CIVIQUE_FI":" 2265",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":"B",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-51-5268-9-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":158,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000433331249739,
+ "OBJECTID":87023,
+ "Join_Count":1,
+ "TARGET_FID":87023,
+ "feature_id":"7075300e-10d1-4fc1-b33a-1cfddfec4ecc",
+ "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":35.88,
+ "elevmin":18.61,
+ "elevmax":24.32,
+ "bldgarea":2355.29,
+ "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_2":87023,
+ "Shape_Le_1":0.000433331249739,
+ "Shape_Ar_1":1.05356378954e-08,
+ "OBJECTID_3":87023,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87022,
+ "g_objectid":"943973",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361182",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004451526890000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668953",
+ "g_geomet_1":"2.16048e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000433331249739,
+ "Shape_Area":1.05356378954e-08,
+ "Shape_Le_3":0.000433331352845,
+ "Shape_Ar_2":1.05356378954e-08,
+ "building_height":17.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1179,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55799255793205,
+ 45.534377255955896
+ ],
+ [
+ -73.5580768540854,
+ 45.534411939209924
+ ],
+ [
+ -73.55817362653349,
+ 45.534308145754615
+ ],
+ [
+ -73.55809546915242,
+ 45.53427204966565
+ ],
+ [
+ -73.55811866896325,
+ 45.53424734978566
+ ],
+ [
+ -73.55811521556659,
+ 45.53424569773106
+ ],
+ [
+ -73.55799255793205,
+ 45.534377255955896
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55828563169838,
+ 45.534188011617736
+ ],
+ [
+ -73.5582788687966,
+ 45.53418514997499
+ ],
+ [
+ -73.55828356955294,
+ 45.5341797495461
+ ],
+ [
+ -73.55821896945173,
+ 45.53415535003967
+ ],
+ [
+ -73.55817366880162,
+ 45.53420004994265
+ ],
+ [
+ -73.55817946942882,
+ 45.53420264988268
+ ],
+ [
+ -73.55824388696766,
+ 45.534232786164445
+ ],
+ [
+ -73.55828563169838,
+ 45.534188011617736
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1179,
+ "ID_UEV":"01023406",
+ "CIVIQUE_DE":" 2338",
+ "CIVIQUE_FI":" 2342",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-5819-9-000-0000",
+ "SUPERFICIE":269,
+ "SUPERFIC_1":267,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000822621144,
+ "OBJECTID":87025,
+ "Join_Count":2,
+ "TARGET_FID":87025,
+ "feature_id":"8d9bd5a6-2ff3-435e-8761-e069f03639c6",
+ "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.22,
+ "heightmax":30.65,
+ "elevmin":25.08,
+ "elevmax":26.52,
+ "bldgarea":137.75,
+ "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_2":87025,
+ "Shape_Le_1":0.000822621144,
+ "Shape_Ar_1":1.70985680765e-08,
+ "OBJECTID_3":87025,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87024,
+ "g_objectid":"941388",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425396",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328651520000000",
+ "g_sup_tota":"270.8",
+ "g_geometry":"0.000915727",
+ "g_geomet_1":"3.13546e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000822621144,
+ "Shape_Area":1.70985680765e-08,
+ "Shape_Le_3":0.000822623634804,
+ "Shape_Ar_2":1.70985680765e-08,
+ "building_height":14.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1180,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55816116013128,
+ 45.534446608074795
+ ],
+ [
+ -73.55824546977446,
+ 45.53448127693967
+ ],
+ [
+ -73.5583361664028,
+ 45.534383999072595
+ ],
+ [
+ -73.5582572688797,
+ 45.534349250168056
+ ],
+ [
+ -73.5582745691379,
+ 45.53432984999288
+ ],
+ [
+ -73.55827446931315,
+ 45.53432975016813
+ ],
+ [
+ -73.55827141881278,
+ 45.534328349024385
+ ],
+ [
+ -73.55816116013128,
+ 45.534446608074795
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55832000468631,
+ 45.5342762369091
+ ],
+ [
+ -73.55839076874084,
+ 45.53430834990072
+ ],
+ [
+ -73.55839416907749,
+ 45.53430424989151
+ ],
+ [
+ -73.55843836895741,
+ 45.534253049688786
+ ],
+ [
+ -73.55836912745511,
+ 45.53422355102635
+ ],
+ [
+ -73.55832000468631,
+ 45.5342762369091
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1180,
+ "ID_UEV":"01023411",
+ "CIVIQUE_DE":" 2352",
+ "CIVIQUE_FI":" 2354",
+ "NOM_RUE":"rue D'Iberville (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-4627-7-000-0000",
+ "SUPERFICIE":264,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000799518445826,
+ "OBJECTID":87026,
+ "Join_Count":2,
+ "TARGET_FID":87026,
+ "feature_id":"8d9bd5a6-2ff3-435e-8761-e069f03639c6",
+ "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.22,
+ "heightmax":30.65,
+ "elevmin":25.08,
+ "elevmax":26.52,
+ "bldgarea":137.75,
+ "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_2":87026,
+ "Shape_Le_1":0.000799518445826,
+ "Shape_Ar_1":1.68085080873e-08,
+ "OBJECTID_3":87026,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87025,
+ "g_objectid":"941385",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425393",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328462770000000",
+ "g_sup_tota":"264.4",
+ "g_geometry":"0.000898564",
+ "g_geomet_1":"3.0623e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000799518445826,
+ "Shape_Area":1.68085080873e-08,
+ "Shape_Le_3":0.000799519416586,
+ "Shape_Ar_2":1.68085080873e-08,
+ "building_height":14.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1181,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54620135413103,
+ 45.52858384941541
+ ],
+ [
+ -73.54630433639785,
+ 45.5286292148167
+ ],
+ [
+ -73.54635256434122,
+ 45.5285762492448
+ ],
+ [
+ -73.54625016393577,
+ 45.5285301490974
+ ],
+ [
+ -73.54620135413103,
+ 45.52858384941541
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1181,
+ "ID_UEV":"01019520",
+ "CIVIQUE_DE":" 2423",
+ "CIVIQUE_FI":" 2427",
+ "NOM_RUE":"rue Cadot (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1941,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-11-8384-5-000-0000",
+ "SUPERFICIE":128,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000369031829035,
+ "OBJECTID":87027,
+ "Join_Count":1,
+ "TARGET_FID":87027,
+ "feature_id":"0d8675d0-545a-4a00-a638-100dbe2dd69c",
+ "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":10.65,
+ "elevmin":19.06,
+ "elevmax":19.52,
+ "bldgarea":70.11,
+ "comment":" ",
+ "OBJECTID_2":87027,
+ "Shape_Le_1":0.000369031829035,
+ "Shape_Ar_1":7.69576561929e-09,
+ "OBJECTID_3":87027,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87026,
+ "g_objectid":"941069",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424943",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014311838450000000",
+ "g_sup_tota":"128.2",
+ "g_geometry":"0.000512652",
+ "g_geomet_1":"1.4764e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000369031829035,
+ "Shape_Area":7.69576561929e-09,
+ "Shape_Le_3":0.000369031674562,
+ "Shape_Ar_2":7.69576561929e-09,
+ "building_height":5.07
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1182,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54645034313067,
+ 45.5286936386508
+ ],
+ [
+ -73.54654073039224,
+ 45.528731992937416
+ ],
+ [
+ -73.54655436411446,
+ 45.52871164847409
+ ],
+ [
+ -73.54656566409597,
+ 45.52869534916133
+ ],
+ [
+ -73.54658206413279,
+ 45.528672749198314
+ ],
+ [
+ -73.54658466407284,
+ 45.52867404871867
+ ],
+ [
+ -73.54663068687854,
+ 45.528627154469895
+ ],
+ [
+ -73.54654295441566,
+ 45.528587453898176
+ ],
+ [
+ -73.54651406369493,
+ 45.528615548718896
+ ],
+ [
+ -73.5465003643222,
+ 45.52860864912016
+ ],
+ [
+ -73.54649716453436,
+ 45.52861224910631
+ ],
+ [
+ -73.54644846444693,
+ 45.52866834881554
+ ],
+ [
+ -73.5464482638981,
+ 45.52866864918911
+ ],
+ [
+ -73.54646486448375,
+ 45.52867514858953
+ ],
+ [
+ -73.54645034313067,
+ 45.5286936386508
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1182,
+ "ID_UEV":"01019522",
+ "CIVIQUE_DE":" 2426",
+ "CIVIQUE_FI":" 2432",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-11-7089-1-000-0000",
+ "SUPERFICIE":327,
+ "SUPERFIC_1":328,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000511786885764,
+ "OBJECTID":87028,
+ "Join_Count":1,
+ "TARGET_FID":87028,
+ "feature_id":"b57d0248-abf7-4bc9-b51d-42b6078456c8",
+ "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.57,
+ "heightmax":15.26,
+ "elevmin":16.97,
+ "elevmax":19.51,
+ "bldgarea":1151.23,
+ "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_2":87028,
+ "Shape_Le_1":0.000511786885764,
+ "Shape_Ar_1":1.40340027459e-08,
+ "OBJECTID_3":87028,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87027,
+ "g_objectid":"941068",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424942",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014311708910000000",
+ "g_sup_tota":"327",
+ "g_geometry":"0.00106272",
+ "g_geomet_1":"3.76547e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000511786885764,
+ "Shape_Area":1.40340027459e-08,
+ "Shape_Le_3":0.000511786538278,
+ "Shape_Ar_2":1.40340027459e-08,
+ "building_height":7.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1183,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54654295441566,
+ 45.528587453898176
+ ],
+ [
+ -73.54663068687854,
+ 45.528627154469895
+ ],
+ [
+ -73.5466744640771,
+ 45.528582548995736
+ ],
+ [
+ -73.54667506302559,
+ 45.52858193925539
+ ],
+ [
+ -73.54657772940054,
+ 45.52853790305208
+ ],
+ [
+ -73.5465468637686,
+ 45.528567649028076
+ ],
+ [
+ -73.54655766372704,
+ 45.52857314928171
+ ],
+ [
+ -73.54654295441566,
+ 45.528587453898176
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1183,
+ "ID_UEV":"01019524",
+ "CIVIQUE_DE":" 2420",
+ "CIVIQUE_FI":" 2422",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-11-6880-4-000-0000",
+ "SUPERFICIE":200,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000341987879694,
+ "OBJECTID":87029,
+ "Join_Count":1,
+ "TARGET_FID":87029,
+ "feature_id":"b57d0248-abf7-4bc9-b51d-42b6078456c8",
+ "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.57,
+ "heightmax":15.26,
+ "elevmin":16.97,
+ "elevmax":19.51,
+ "bldgarea":1151.23,
+ "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_2":87029,
+ "Shape_Le_1":0.000341987879694,
+ "Shape_Ar_1":6.17130814086e-09,
+ "OBJECTID_3":87029,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87028,
+ "g_objectid":"941068",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424942",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014311708910000000",
+ "g_sup_tota":"327",
+ "g_geometry":"0.00106272",
+ "g_geomet_1":"3.76547e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000341987879694,
+ "Shape_Area":6.17130814086e-09,
+ "Shape_Le_3":0.00034198625371,
+ "Shape_Ar_2":6.17130814086e-09,
+ "building_height":7.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1184,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54657772940054,
+ 45.52853790305208
+ ],
+ [
+ -73.54667506302559,
+ 45.52858193925539
+ ],
+ [
+ -73.54672816439512,
+ 45.528527848631605
+ ],
+ [
+ -73.54672962039751,
+ 45.528526360253615
+ ],
+ [
+ -73.54651653323327,
+ 45.52842995562825
+ ],
+ [
+ -73.54651246380101,
+ 45.528434649190004
+ ],
+ [
+ -73.54651316437288,
+ 45.528435048488994
+ ],
+ [
+ -73.54662496449237,
+ 45.52849254844265
+ ],
+ [
+ -73.54660756440941,
+ 45.5285091490283
+ ],
+ [
+ -73.54657772940054,
+ 45.52853790305208
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5463826889318,
+ 45.52836940157692
+ ],
+ [
+ -73.54638113400398,
+ 45.528371129174566
+ ],
+ [
+ -73.54638446419351,
+ 45.528372848678316
+ ],
+ [
+ -73.54645396380123,
+ 45.52840794921778
+ ],
+ [
+ -73.54645666446534,
+ 45.528405248553675
+ ],
+ [
+ -73.54645844422366,
+ 45.52840367563942
+ ],
+ [
+ -73.54645086743542,
+ 45.528400247423775
+ ],
+ [
+ -73.5463826889318,
+ 45.52836940157692
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1184,
+ "ID_UEV":"01019526",
+ "CIVIQUE_DE":" 2414",
+ "CIVIQUE_FI":" 2416",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-11-6574-3-000-0000",
+ "SUPERFICIE":247,
+ "SUPERFIC_1":183,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000790088486913,
+ "OBJECTID":87030,
+ "Join_Count":2,
+ "TARGET_FID":87030,
+ "feature_id":"5bb80e86-bd96-402a-b94d-121b596995c4",
+ "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.97,
+ "heightmax":11.95,
+ "elevmin":17,
+ "elevmax":20,
+ "bldgarea":862.68,
+ "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_2":87030,
+ "Shape_Le_1":0.000790088486913,
+ "Shape_Ar_1":9.23808677629e-09,
+ "OBJECTID_3":87030,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87029,
+ "g_objectid":"941066",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424940",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014311657430000000",
+ "g_sup_tota":"246.5",
+ "g_geometry":"0.000930488",
+ "g_geomet_1":"2.8396e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000790088486913,
+ "Shape_Area":9.23808677629e-09,
+ "Shape_Le_3":0.000790091549291,
+ "Shape_Ar_2":9.23808677629e-09,
+ "building_height":5.489999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1185,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54698636425115,
+ 45.52813604908969
+ ],
+ [
+ -73.54699186450479,
+ 45.52813864902972
+ ],
+ [
+ -73.54709726504859,
+ 45.52802654853668
+ ],
+ [
+ -73.54711526497934,
+ 45.52803494910391
+ ],
+ [
+ -73.5471155653529,
+ 45.5280347485551
+ ],
+ [
+ -73.54718486531112,
+ 45.52796424890126
+ ],
+ [
+ -73.54718506496063,
+ 45.527964049251764
+ ],
+ [
+ -73.54716296502066,
+ 45.527953948965866
+ ],
+ [
+ -73.5473705654211,
+ 45.52772814898518
+ ],
+ [
+ -73.54726486540306,
+ 45.5276801485703
+ ],
+ [
+ -73.54712786448121,
+ 45.52761794875962
+ ],
+ [
+ -73.54712766393239,
+ 45.527617848934874
+ ],
+ [
+ -73.54710946435215,
+ 45.52763764840904
+ ],
+ [
+ -73.54705716427856,
+ 45.52761384875041
+ ],
+ [
+ -73.54704706399265,
+ 45.527624849257684
+ ],
+ [
+ -73.54685586452837,
+ 45.527538548515494
+ ],
+ [
+ -73.54685236436697,
+ 45.527536948621574
+ ],
+ [
+ -73.54678136379076,
+ 45.52761564919315
+ ],
+ [
+ -73.54674166411834,
+ 45.52765944887476
+ ],
+ [
+ -73.54700646409889,
+ 45.527777849118735
+ ],
+ [
+ -73.54703746372981,
+ 45.52774504904507
+ ],
+ [
+ -73.54706746421395,
+ 45.52775914861611
+ ],
+ [
+ -73.54679756417809,
+ 45.5280446491915
+ ],
+ [
+ -73.54687376373505,
+ 45.528088648522605
+ ],
+ [
+ -73.54685666402567,
+ 45.52810324901603
+ ],
+ [
+ -73.54685686367516,
+ 45.52810344866552
+ ],
+ [
+ -73.54689906436218,
+ 45.528122848840695
+ ],
+ [
+ -73.54691666409462,
+ 45.528103948688575
+ ],
+ [
+ -73.54698636425115,
+ 45.52813604908969
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54670563278057,
+ 45.527839263821264
+ ],
+ [
+ -73.54670886404469,
+ 45.52784074860196
+ ],
+ [
+ -73.54671196400778,
+ 45.527837448989374
+ ],
+ [
+ -73.54674136374479,
+ 45.527806848657434
+ ],
+ [
+ -73.54673783390575,
+ 45.52780517681775
+ ],
+ [
+ -73.5467094477047,
+ 45.527835225865275
+ ],
+ [
+ -73.54670563278057,
+ 45.527839263821264
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1185,
+ "ID_UEV":"01019530",
+ "CIVIQUE_DE":" 2380",
+ "CIVIQUE_FI":" 2380",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison pour personnes retrait\u00c3\u00a9es autonomes",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-10-2797-6-000-0000",
+ "SUPERFICIE":3857,
+ "SUPERFIC_1":5247,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00247744561972,
+ "OBJECTID":87031,
+ "Join_Count":2,
+ "TARGET_FID":87031,
+ "feature_id":"1f17d195-dfa2-4e7f-81c8-92b192f0b6e5",
+ "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.88,
+ "heightmax":9.95,
+ "elevmin":19.29,
+ "elevmax":19.78,
+ "bldgarea":73.06,
+ "comment":" ",
+ "OBJECTID_2":87031,
+ "Shape_Le_1":0.00247744561972,
+ "Shape_Ar_1":1.69483596708e-07,
+ "OBJECTID_3":87031,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87030,
+ "g_objectid":"944902",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel institutionnel",
+ "g_no_lot":"1424706",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1543",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014310279760000000",
+ "g_sup_tota":"3857.3",
+ "g_geometry":"0.00287817",
+ "g_geomet_1":"4.44216e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00247744561972,
+ "Shape_Area":1.69483596708e-07,
+ "Shape_Le_3":0.00247744693362,
+ "Shape_Ar_2":1.69483596708e-07,
+ "building_height":3.5349999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1186,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55082751529943,
+ 45.537250159117846
+ ],
+ [
+ -73.55091487094639,
+ 45.5372794752179
+ ],
+ [
+ -73.55097628295094,
+ 45.53719324822013
+ ],
+ [
+ -73.55089656614545,
+ 45.537157251056584
+ ],
+ [
+ -73.55089506607628,
+ 45.5371590506
+ ],
+ [
+ -73.55089295087083,
+ 45.537158278082366
+ ],
+ [
+ -73.55082751529943,
+ 45.537250159117846
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1186,
+ "ID_UEV":"01025326",
+ "CIVIQUE_DE":" 2060",
+ "CIVIQUE_FI":" 2062",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-2444-6-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000402867980344,
+ "OBJECTID":87033,
+ "Join_Count":1,
+ "TARGET_FID":87033,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":87033,
+ "Shape_Le_1":0.000402867980344,
+ "Shape_Ar_1":9.74237821248e-09,
+ "OBJECTID_3":87033,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87032,
+ "g_objectid":"943829",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360989",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481244460000000",
+ "g_sup_tota":"184.3",
+ "g_geometry":"0.000665033",
+ "g_geomet_1":"2.12318e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000402867980344,
+ "Shape_Area":9.74237821248e-09,
+ "Shape_Le_3":0.000402867069678,
+ "Shape_Ar_2":9.74237821248e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1187,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.553740367246,
+ 45.53504374981949
+ ],
+ [
+ -73.5537413672921,
+ 45.53504405019306
+ ],
+ [
+ -73.55378456712592,
+ 45.53506754947812
+ ],
+ [
+ -73.55380157510446,
+ 45.53505216027927
+ ],
+ [
+ -73.55388497823101,
+ 45.534935880636674
+ ],
+ [
+ -73.55381516745786,
+ 45.5349200498707
+ ],
+ [
+ -73.553740367246,
+ 45.53504374981949
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1187,
+ "ID_UEV":"01024208",
+ "CIVIQUE_DE":" 2129",
+ "CIVIQUE_FI":" 2129",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1945,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-58-9899-4-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":91,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000432397478766,
+ "OBJECTID":87039,
+ "Join_Count":1,
+ "TARGET_FID":87039,
+ "feature_id":"8b831765-3f0f-47be-8339-507530d90cae",
+ "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.47,
+ "heightmax":29.15,
+ "elevmin":18.67,
+ "elevmax":20.2,
+ "bldgarea":753.78,
+ "comment":" ",
+ "OBJECTID_2":87039,
+ "Shape_Le_1":0.000432397478766,
+ "Shape_Ar_1":9.35644608261e-09,
+ "OBJECTID_3":87039,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87038,
+ "g_objectid":"941034",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424872",
+ "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":"66023004358989940000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.00065684",
+ "g_geomet_1":"1.92982e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000432397478766,
+ "Shape_Area":9.35644608261e-09,
+ "Shape_Le_3":0.000432396978037,
+ "Shape_Ar_2":9.35644608261e-09,
+ "building_height":13.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1188,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.553587867408,
+ 45.534945149949
+ ],
+ [
+ -73.55371956682639,
+ 45.53499184994421
+ ],
+ [
+ -73.55377816755023,
+ 45.53491004940955
+ ],
+ [
+ -73.55356886743114,
+ 45.53483584994481
+ ],
+ [
+ -73.55322476703122,
+ 45.53471394953944
+ ],
+ [
+ -73.55322196744169,
+ 45.534717849899145
+ ],
+ [
+ -73.55316846677317,
+ 45.534794349829674
+ ],
+ [
+ -73.55325126735396,
+ 45.53482605003248
+ ],
+ [
+ -73.5534145671504,
+ 45.534888550216714
+ ],
+ [
+ -73.55344266736705,
+ 45.534899249451094
+ ],
+ [
+ -73.55342726737634,
+ 45.53491914964933
+ ],
+ [
+ -73.55345356715024,
+ 45.534929150110486
+ ],
+ [
+ -73.55345516704416,
+ 45.534927150018255
+ ],
+ [
+ -73.553471567081,
+ 45.534904050032175
+ ],
+ [
+ -73.553587867408,
+ 45.534945149949
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5531030608794,
+ 45.534819747583576
+ ],
+ [
+ -73.55310576693944,
+ 45.53482074942834
+ ],
+ [
+ -73.55319466672233,
+ 45.53470204971012
+ ],
+ [
+ -73.55318901088599,
+ 45.534699919216195
+ ],
+ [
+ -73.5531030608794,
+ 45.534819747583576
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1188,
+ "ID_UEV":"01024211",
+ "CIVIQUE_DE":" 2085",
+ "CIVIQUE_FI":" 2105",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":18,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-68-2586-3-000-0000",
+ "SUPERFICIE":1341,
+ "SUPERFIC_1":1443,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00173144514306,
+ "OBJECTID":87040,
+ "Join_Count":2,
+ "TARGET_FID":87040,
+ "feature_id":"59dc1af2-dffa-4556-8abb-2223c9bffec5",
+ "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":30.98,
+ "elevmin":19.87,
+ "elevmax":20.37,
+ "bldgarea":503.42,
+ "comment":" ",
+ "OBJECTID_2":87040,
+ "Shape_Le_1":0.00173144514306,
+ "Shape_Ar_1":5.86408861486e-08,
+ "OBJECTID_3":87040,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87039,
+ "g_objectid":"941033",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424871",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"18",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004368258630000000",
+ "g_sup_tota":"1340.8",
+ "g_geometry":"0.00179549",
+ "g_geomet_1":"1.54444e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00173144514306,
+ "Shape_Area":5.86408861486e-08,
+ "Shape_Le_3":0.00173144589985,
+ "Shape_Ar_2":5.86408861486e-08,
+ "building_height":14.44
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1189,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5540668939938,
+ 45.51949728742017
+ ],
+ [
+ -73.55412899308041,
+ 45.51952574646632
+ ],
+ [
+ -73.55432946995093,
+ 45.51930926795865
+ ],
+ [
+ -73.55429826617389,
+ 45.51929634649949
+ ],
+ [
+ -73.55429716630303,
+ 45.51929744726967
+ ],
+ [
+ -73.55416586618362,
+ 45.519413547047854
+ ],
+ [
+ -73.55415172524377,
+ 45.519405686073846
+ ],
+ [
+ -73.5540668939938,
+ 45.51949728742017
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1189,
+ "ID_UEV":"01021916",
+ "CIVIQUE_DE":" 1270",
+ "CIVIQUE_FI":" 1274",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-6665-9-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":338,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000714984066,
+ "OBJECTID":87043,
+ "Join_Count":1,
+ "TARGET_FID":87043,
+ "feature_id":"e0b5ba43-9ce8-4edb-9620-561edb05eb25",
+ "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.49,
+ "heightmax":13.17,
+ "elevmin":17.61,
+ "elevmax":19.53,
+ "bldgarea":1125.92,
+ "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_2":87043,
+ "Shape_Le_1":0.000714984066,
+ "Shape_Ar_1":1.49207476565e-08,
+ "OBJECTID_3":87043,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87042,
+ "g_objectid":"943617",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2871473",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251706360000000",
+ "g_sup_tota":"185.4",
+ "g_geometry":"0.000794594",
+ "g_geomet_1":"2.13487e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000714984066,
+ "Shape_Area":1.49207476565e-08,
+ "Shape_Le_3":0.000714983705414,
+ "Shape_Ar_2":1.49207476565e-08,
+ "building_height":5.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1190,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5465496093988,
+ 45.52987813841565
+ ],
+ [
+ -73.54655746407755,
+ 45.52988174919366
+ ],
+ [
+ -73.54654436455263,
+ 45.52989574893996
+ ],
+ [
+ -73.54657256369471,
+ 45.52990874864013
+ ],
+ [
+ -73.54657366446489,
+ 45.52990954903675
+ ],
+ [
+ -73.54659876454319,
+ 45.5298923486033
+ ],
+ [
+ -73.54662560211169,
+ 45.52991170651034
+ ],
+ [
+ -73.54671060872946,
+ 45.52981312192833
+ ],
+ [
+ -73.54663435611249,
+ 45.529779856005845
+ ],
+ [
+ -73.5465496093988,
+ 45.52987813841565
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1190,
+ "ID_UEV":"01018946",
+ "CIVIQUE_DE":" 1435",
+ "CIVIQUE_FI":" 1437",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-13-6031-0-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":172,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000466891405152,
+ "OBJECTID":87047,
+ "Join_Count":1,
+ "TARGET_FID":87047,
+ "feature_id":"1a0bcbce-d278-45e8-8282-fca808f250d9",
+ "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":3.04,
+ "heightmax":9.59,
+ "elevmin":19.22,
+ "elevmax":20.21,
+ "bldgarea":706.35,
+ "comment":" ",
+ "OBJECTID_2":87047,
+ "Shape_Le_1":0.000466891405152,
+ "Shape_Ar_1":1.08568238347e-08,
+ "OBJECTID_3":87047,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87046,
+ "g_objectid":"941053",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424907",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014313603100000000",
+ "g_sup_tota":"170.9",
+ "g_geometry":"0.000665112",
+ "g_geomet_1":"1.97984e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000466891405152,
+ "Shape_Area":1.08568238347e-08,
+ "Shape_Le_3":0.000466889202963,
+ "Shape_Ar_2":1.08568238347e-08,
+ "building_height":3.275
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1191,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55412899308041,
+ 45.51952574646632
+ ],
+ [
+ -73.5541910912677,
+ 45.51955420461315
+ ],
+ [
+ -73.55419623449048,
+ 45.519548652198836
+ ],
+ [
+ -73.55427941818245,
+ 45.51945882971152
+ ],
+ [
+ -73.55426276633544,
+ 45.51945514698774
+ ],
+ [
+ -73.55426286616019,
+ 45.51945474678943
+ ],
+ [
+ -73.5543280661092,
+ 45.51937714698804
+ ],
+ [
+ -73.55429116602633,
+ 45.51936174699732
+ ],
+ [
+ -73.55433376601233,
+ 45.51931104681765
+ ],
+ [
+ -73.55432946995093,
+ 45.51930926795865
+ ],
+ [
+ -73.55412899308041,
+ 45.51952574646632
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1191,
+ "ID_UEV":"01021917",
+ "CIVIQUE_DE":" 1276",
+ "CIVIQUE_FI":" 1280",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-6169-2-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":272,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000723027412879,
+ "OBJECTID":87048,
+ "Join_Count":1,
+ "TARGET_FID":87048,
+ "feature_id":"e0b5ba43-9ce8-4edb-9620-561edb05eb25",
+ "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.49,
+ "heightmax":13.17,
+ "elevmin":17.61,
+ "elevmax":19.53,
+ "bldgarea":1125.92,
+ "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_2":87048,
+ "Shape_Le_1":0.000723027412879,
+ "Shape_Ar_1":1.34909145746e-08,
+ "OBJECTID_3":87048,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87047,
+ "g_objectid":"944800",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251537560020001",
+ "g_sup_tota":"304.6",
+ "g_geometry":"0.00106746",
+ "g_geomet_1":"3.47478e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000723027412879,
+ "Shape_Area":1.34909145746e-08,
+ "Shape_Le_3":0.000723027025324,
+ "Shape_Ar_2":1.34909145746e-08,
+ "building_height":5.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1192,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55047580933298,
+ 45.52399426187598
+ ],
+ [
+ -73.55081266299585,
+ 45.52415175205201
+ ],
+ [
+ -73.55089731168343,
+ 45.52405862905278
+ ],
+ [
+ -73.55066402214875,
+ 45.52394962672419
+ ],
+ [
+ -73.55056106506295,
+ 45.52390454820663
+ ],
+ [
+ -73.55047580933298,
+ 45.52399426187598
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1192,
+ "ID_UEV":"01022397",
+ "CIVIQUE_DE":" 1988",
+ "CIVIQUE_FI":" 1990",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1947,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-86-4079-1-000-0000",
+ "SUPERFICIE":392,
+ "SUPERFIC_1":1219,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000991353067205,
+ "OBJECTID":87049,
+ "Join_Count":1,
+ "TARGET_FID":87049,
+ "feature_id":"49c5082e-8495-4f45-b377-a353a6c7b008",
+ "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.54,
+ "heightmax":35.68,
+ "elevmin":16.93,
+ "elevmax":18.49,
+ "bldgarea":1574.58,
+ "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_2":87049,
+ "Shape_Le_1":0.000991353067205,
+ "Shape_Ar_1":4.43543290752e-08,
+ "OBJECTID_3":87049,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87048,
+ "g_objectid":"942332",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729171",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"45",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004286275820000000",
+ "g_sup_tota":"1186.1",
+ "g_geometry":"0.00151565",
+ "g_geomet_1":"1.37476e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000991353067205,
+ "Shape_Area":4.43543290752e-08,
+ "Shape_Le_3":0.000991351802571,
+ "Shape_Ar_2":4.43543290752e-08,
+ "building_height":16.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1193,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56102619872193,
+ 45.5301559560828
+ ],
+ [
+ -73.5610418694086,
+ 45.53016214881441
+ ],
+ [
+ -73.56108016793725,
+ 45.530177246632924
+ ],
+ [
+ -73.56111766876724,
+ 45.53013704873611
+ ],
+ [
+ -73.5611351219102,
+ 45.5301450805813
+ ],
+ [
+ -73.561218106852,
+ 45.530058270822835
+ ],
+ [
+ -73.56114871786089,
+ 45.530028159722086
+ ],
+ [
+ -73.56102619872193,
+ 45.5301559560828
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1193,
+ "ID_UEV":"01022398",
+ "CIVIQUE_DE":" 2283",
+ "CIVIQUE_FI":" 2285",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-2759-3-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000504977027808,
+ "OBJECTID":87050,
+ "Join_Count":1,
+ "TARGET_FID":87050,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":87050,
+ "Shape_Le_1":0.000504977027808,
+ "Shape_Ar_1":1.15068793984e-08,
+ "OBJECTID_3":87050,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87049,
+ "g_objectid":"940371",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423706",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303335590000000",
+ "g_sup_tota":"181.4",
+ "g_geometry":"0.000735992",
+ "g_geomet_1":"2.08774e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000504977027808,
+ "Shape_Area":1.15068793984e-08,
+ "Shape_Le_3":0.000504977110184,
+ "Shape_Ar_2":1.15068793984e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1194,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54509823941406,
+ 45.52929282185654
+ ],
+ [
+ -73.54512366414762,
+ 45.529301148679366
+ ],
+ [
+ -73.54515966400913,
+ 45.529313048508676
+ ],
+ [
+ -73.5451821641474,
+ 45.52932084922811
+ ],
+ [
+ -73.54518826424884,
+ 45.52932344916814
+ ],
+ [
+ -73.54531152712713,
+ 45.529374759987476
+ ],
+ [
+ -73.54538631834576,
+ 45.529287850404266
+ ],
+ [
+ -73.54537376380999,
+ 45.52928334929743
+ ],
+ [
+ -73.54539376383298,
+ 45.52925624912689
+ ],
+ [
+ -73.54538876450172,
+ 45.5292545485089
+ ],
+ [
+ -73.5453585643681,
+ 45.52924144898398
+ ],
+ [
+ -73.54533946456648,
+ 45.52926344909919
+ ],
+ [
+ -73.54530426420227,
+ 45.529248248757966
+ ],
+ [
+ -73.5453237642022,
+ 45.52922584844445
+ ],
+ [
+ -73.54529216382414,
+ 45.529212448545955
+ ],
+ [
+ -73.54529196417465,
+ 45.529212649094774
+ ],
+ [
+ -73.54526976440994,
+ 45.52923444866117
+ ],
+ [
+ -73.54523766400884,
+ 45.529218249173155
+ ],
+ [
+ -73.54525596431314,
+ 45.5292004488919
+ ],
+ [
+ -73.54522896396736,
+ 45.529187048993414
+ ],
+ [
+ -73.54522316423949,
+ 45.52918414867981
+ ],
+ [
+ -73.54520506448398,
+ 45.52920684846758
+ ],
+ [
+ -73.54518052378398,
+ 45.52919721043321
+ ],
+ [
+ -73.54509823941406,
+ 45.52929282185654
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1194,
+ "ID_UEV":"01018953",
+ "CIVIQUE_DE":" 569",
+ "CIVIQUE_FI":" 589",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-22-6766-2-000-0000",
+ "SUPERFICIE":478,
+ "SUPERFIC_1":721,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000871056930011,
+ "OBJECTID":87055,
+ "Join_Count":1,
+ "TARGET_FID":87055,
+ "feature_id":"919f1cd1-0fa7-4497-ad65-1136685bb007",
+ "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.76,
+ "heightmax":12.04,
+ "elevmin":19.14,
+ "elevmax":20,
+ "bldgarea":481.21,
+ "comment":" ",
+ "OBJECTID_2":87055,
+ "Shape_Le_1":0.000871056930011,
+ "Shape_Ar_1":2.90216567694e-08,
+ "OBJECTID_3":87055,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87054,
+ "g_objectid":"941049",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424896",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014322676620000000",
+ "g_sup_tota":"478.4",
+ "g_geometry":"0.000966444",
+ "g_geomet_1":"5.53628e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000871056930011,
+ "Shape_Area":2.90216567694e-08,
+ "Shape_Le_3":0.000871058728081,
+ "Shape_Ar_2":2.90216567694e-08,
+ "building_height":5.64
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1195,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56584524648278,
+ 45.515387859612325
+ ],
+ [
+ -73.56601940199565,
+ 45.515415422933714
+ ],
+ [
+ -73.56604002794678,
+ 45.51534895763858
+ ],
+ [
+ -73.56597692431745,
+ 45.51533889512421
+ ],
+ [
+ -73.5659766698093,
+ 45.515339945532354
+ ],
+ [
+ -73.56586016983282,
+ 45.51532604561081
+ ],
+ [
+ -73.56584524648278,
+ 45.515387859612325
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56558928953592,
+ 45.51534735144941
+ ],
+ [
+ -73.56576182447047,
+ 45.51537465756469
+ ],
+ [
+ -73.56578553509621,
+ 45.515308374831925
+ ],
+ [
+ -73.56561077973554,
+ 45.515280506640366
+ ],
+ [
+ -73.56558928953592,
+ 45.51534735144941
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1195,
+ "ID_UEV":"01021743",
+ "CIVIQUE_DE":" 335",
+ "CIVIQUE_FI":" 335",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-67-5916-7-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":248,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000984071115523,
+ "OBJECTID":87058,
+ "Join_Count":1,
+ "TARGET_FID":87058,
+ "feature_id":"ad50070a-bfb0-4fa5-968b-9e6a25f15d0a",
+ "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":15.43,
+ "elevmin":23.86,
+ "elevmax":25.82,
+ "bldgarea":1340.36,
+ "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_2":87058,
+ "Shape_Le_1":0.000984071115523,
+ "Shape_Ar_1":2.41027866529e-08,
+ "OBJECTID_3":87058,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87057,
+ "g_objectid":"943136",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161344",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994167591670000000",
+ "g_sup_tota":"280.3",
+ "g_geometry":"0.0010733",
+ "g_geomet_1":"3.22754e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000984071115523,
+ "Shape_Area":2.41027866529e-08,
+ "Shape_Le_3":0.000984069405507,
+ "Shape_Ar_2":2.41027866529e-08,
+ "building_height":7.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1196,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55249037525246,
+ 45.52032410882086
+ ],
+ [
+ -73.55251806627759,
+ 45.52029464792995
+ ],
+ [
+ -73.55263436570526,
+ 45.52034864772221
+ ],
+ [
+ -73.55270936646593,
+ 45.52026874745503
+ ],
+ [
+ -73.55257940273908,
+ 45.520208438918615
+ ],
+ [
+ -73.55250784098592,
+ 45.520283731059635
+ ],
+ [
+ -73.55247577925566,
+ 45.52031746193162
+ ],
+ [
+ -73.55249037525246,
+ 45.52032410882086
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1196,
+ "ID_UEV":"01022017",
+ "CIVIQUE_DE":" 1219",
+ "CIVIQUE_FI":" 1219",
+ "NOM_RUE":"rue Dalcourt (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-62-9064-9-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":204,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000587967989572,
+ "OBJECTID":87059,
+ "Join_Count":1,
+ "TARGET_FID":87059,
+ "feature_id":"017a301b-c4e3-4a78-af3a-c68a1b47ec3c",
+ "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.46,
+ "heightmax":14.21,
+ "elevmin":18.51,
+ "elevmax":20.32,
+ "bldgarea":1518.91,
+ "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_2":87059,
+ "Shape_Le_1":0.000587967989572,
+ "Shape_Ar_1":1.55528108094e-08,
+ "OBJECTID_3":87059,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87058,
+ "g_objectid":"942269",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567751",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262906490000000",
+ "g_sup_tota":"197.6",
+ "g_geometry":"0.000626112",
+ "g_geomet_1":"2.31827e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000587967989572,
+ "Shape_Area":1.55528108094e-08,
+ "Shape_Le_3":0.000587968104932,
+ "Shape_Ar_2":1.55528108094e-08,
+ "building_height":5.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1197,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5611351219102,
+ 45.5301450805813
+ ],
+ [
+ -73.56116916934353,
+ 45.53016074856998
+ ],
+ [
+ -73.5611284687257,
+ 45.530204348602105
+ ],
+ [
+ -73.56115851597458,
+ 45.530218168483984
+ ],
+ [
+ -73.56118226617049,
+ 45.53019423122908
+ ],
+ [
+ -73.561287344757,
+ 45.53008831627307
+ ],
+ [
+ -73.561218106852,
+ 45.530058270822835
+ ],
+ [
+ -73.5611351219102,
+ 45.5301450805813
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1197,
+ "ID_UEV":"01022400",
+ "CIVIQUE_DE":" 2289",
+ "CIVIQUE_FI":" 2291",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-2262-8-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":170,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000508683078549,
+ "OBJECTID":87062,
+ "Join_Count":1,
+ "TARGET_FID":87062,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":87062,
+ "Shape_Le_1":0.000508683078549,
+ "Shape_Ar_1":1.03541017748e-08,
+ "OBJECTID_3":87062,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87061,
+ "g_objectid":"940373",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423709",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303226280000000",
+ "g_sup_tota":"177.9",
+ "g_geometry":"0.000731097",
+ "g_geomet_1":"2.00036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000508683078549,
+ "Shape_Area":1.03541017748e-08,
+ "Shape_Le_3":0.000508683253022,
+ "Shape_Ar_2":1.03541017748e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1198,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55757574194878,
+ 45.530904094898354
+ ],
+ [
+ -73.55748017099494,
+ 45.53100418224751
+ ],
+ [
+ -73.55761521139473,
+ 45.53106572915038
+ ],
+ [
+ -73.5577089891004,
+ 45.53096482341816
+ ],
+ [
+ -73.55757574194878,
+ 45.530904094898354
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1198,
+ "ID_UEV":"01023069",
+ "CIVIQUE_DE":" 2259",
+ "CIVIQUE_FI":" 2263",
+ "NOM_RUE":"rue Larivi\u00c3\u00a8re (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-34-0153-6-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":234,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000570979639678,
+ "OBJECTID":87064,
+ "Join_Count":1,
+ "TARGET_FID":87064,
+ "feature_id":"e26f6bd0-fb79-4bf4-847a-c4e6cbaa31c3",
+ "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.19,
+ "heightmax":32.68,
+ "elevmin":19.85,
+ "elevmax":24.02,
+ "bldgarea":1386.86,
+ "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_2":87064,
+ "Shape_Le_1":0.000570979639678,
+ "Shape_Ar_1":1.92690947545e-08,
+ "OBJECTID_3":87064,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87063,
+ "g_objectid":"940466",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423937",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"23",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004324914390000000",
+ "g_sup_tota":"257",
+ "g_geometry":"0.00075511",
+ "g_geomet_1":"2.95403e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000570979639678,
+ "Shape_Area":1.92690947545e-08,
+ "Shape_Le_3":0.000570980458669,
+ "Shape_Ar_2":1.92690947545e-08,
+ "building_height":15.245
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1199,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55112609201738,
+ 45.52891546362804
+ ],
+ [
+ -73.55113346645815,
+ 45.52891854920198
+ ],
+ [
+ -73.55112626648585,
+ 45.528927048694634
+ ],
+ [
+ -73.5511269661584,
+ 45.5289273490682
+ ],
+ [
+ -73.55116796625049,
+ 45.52894264923417
+ ],
+ [
+ -73.55116806607523,
+ 45.52894264923417
+ ],
+ [
+ -73.55120526653167,
+ 45.528902448639386
+ ],
+ [
+ -73.55123927169687,
+ 45.528917948454854
+ ],
+ [
+ -73.55134745474308,
+ 45.528803053768215
+ ],
+ [
+ -73.55126784855422,
+ 45.52876491352024
+ ],
+ [
+ -73.55112609201738,
+ 45.52891546362804
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1199,
+ "ID_UEV":"01018444",
+ "CIVIQUE_DE":" 1669",
+ "CIVIQUE_FI":" 1673",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-72-9818-5-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":359,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000608767607862,
+ "OBJECTID":87067,
+ "Join_Count":1,
+ "TARGET_FID":87067,
+ "feature_id":"ef9f99e9-b72a-459d-a003-11d6da78defc",
+ "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.48,
+ "heightmax":34.11,
+ "elevmin":18.43,
+ "elevmax":20.99,
+ "bldgarea":2146.82,
+ "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_2":87067,
+ "Shape_Le_1":0.000608767607862,
+ "Shape_Ar_1":1.60463539263e-08,
+ "OBJECTID_3":87067,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87066,
+ "g_objectid":"940794",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424442",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004372981850000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000806491",
+ "g_geomet_1":"2.64756e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000608767607862,
+ "Shape_Area":1.60463539263e-08,
+ "Shape_Le_3":0.000608767182403,
+ "Shape_Ar_2":1.60463539263e-08,
+ "building_height":15.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1200,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55325141574208,
+ 45.520523646799155
+ ],
+ [
+ -73.55310996587407,
+ 45.52045754752809
+ ],
+ [
+ -73.55305036600343,
+ 45.52052064756013
+ ],
+ [
+ -73.55306776608639,
+ 45.5205287477538
+ ],
+ [
+ -73.55315056576784,
+ 45.52056684753228
+ ],
+ [
+ -73.55313836646428,
+ 45.52057924828398
+ ],
+ [
+ -73.55318088820927,
+ 45.5205991152073
+ ],
+ [
+ -73.55325141574208,
+ 45.520523646799155
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1200,
+ "ID_UEV":"01022018",
+ "CIVIQUE_DE":" 1259",
+ "CIVIQUE_FI":" 1263",
+ "NOM_RUE":"rue Dalcourt (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-62-4791-2-000-0000",
+ "SUPERFICIE":176,
+ "SUPERFIC_1":439,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000520890839638,
+ "OBJECTID":87070,
+ "Join_Count":1,
+ "TARGET_FID":87070,
+ "feature_id":"f955616c-bb75-45df-a854-9a3eac0c8f44",
+ "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":3.22,
+ "heightmax":11.78,
+ "elevmin":18.16,
+ "elevmax":19.21,
+ "bldgarea":122.81,
+ "comment":" ",
+ "OBJECTID_2":87070,
+ "Shape_Le_1":0.000520890839638,
+ "Shape_Ar_1":1.35972317322e-08,
+ "OBJECTID_3":87070,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87069,
+ "g_objectid":"942260",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567737",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262479120000000",
+ "g_sup_tota":"175.6",
+ "g_geometry":"0.000591678",
+ "g_geomet_1":"2.05303e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000520890839638,
+ "Shape_Area":1.35972317322e-08,
+ "Shape_Le_3":0.000520890307599,
+ "Shape_Ar_2":1.35972317322e-08,
+ "building_height":4.279999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1201,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55359267338501,
+ 45.533304639947474
+ ],
+ [
+ -73.55366617047923,
+ 45.53333581404688
+ ],
+ [
+ -73.55373830869783,
+ 45.53325171124777
+ ],
+ [
+ -73.55366625051889,
+ 45.53321885991275
+ ],
+ [
+ -73.55359267338501,
+ 45.533304639947474
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1201,
+ "ID_UEV":"01023636",
+ "CIVIQUE_DE":" 2048",
+ "CIVIQUE_FI":" 2052",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-67-0502-4-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":234,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000382844506647,
+ "OBJECTID":87071,
+ "Join_Count":1,
+ "TARGET_FID":87071,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":87071,
+ "Shape_Le_1":0.000382844506647,
+ "Shape_Ar_1":8.51423921561e-09,
+ "OBJECTID_3":87071,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87070,
+ "g_objectid":"941203",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425140",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004367050240000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000653278",
+ "g_geomet_1":"1.87771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000382844506647,
+ "Shape_Area":8.51423921561e-09,
+ "Shape_Le_3":0.000382843476332,
+ "Shape_Ar_2":8.51423921561e-09,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1202,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55150899456629,
+ 45.52175870824808
+ ],
+ [
+ -73.55130956540596,
+ 45.5219712477252
+ ],
+ [
+ -73.5519507244682,
+ 45.5222684970438
+ ],
+ [
+ -73.55199175243926,
+ 45.5222241226954
+ ],
+ [
+ -73.55193546657037,
+ 45.52219794792725
+ ],
+ [
+ -73.55207726627467,
+ 45.52204704798317
+ ],
+ [
+ -73.55212456611768,
+ 45.52206914792313
+ ],
+ [
+ -73.55212686568414,
+ 45.52207044744349
+ ],
+ [
+ -73.55219063571111,
+ 45.52200901655317
+ ],
+ [
+ -73.55219973685023,
+ 45.521999173473375
+ ],
+ [
+ -73.55208016568893,
+ 45.52193784780373
+ ],
+ [
+ -73.55211066619613,
+ 45.52190844806672
+ ],
+ [
+ -73.55211436600703,
+ 45.52190514755481
+ ],
+ [
+ -73.55202366578139,
+ 45.52186004745352
+ ],
+ [
+ -73.55202016651931,
+ 45.52186394781324
+ ],
+ [
+ -73.5519911660813,
+ 45.52189514799298
+ ],
+ [
+ -73.55175156600382,
+ 45.52178534796573
+ ],
+ [
+ -73.55174836621597,
+ 45.52178884812714
+ ],
+ [
+ -73.55167356600411,
+ 45.52186514750885
+ ],
+ [
+ -73.55157716587534,
+ 45.52181824786414
+ ],
+ [
+ -73.55159596350475,
+ 45.52179918043812
+ ],
+ [
+ -73.55150899456629,
+ 45.52175870824808
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1202,
+ "ID_UEV":"01022077",
+ "CIVIQUE_DE":" 1234",
+ "CIVIQUE_FI":" 1234",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2008,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-74-5451-7-000-0000",
+ "SUPERFICIE":2658,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00242043380074,
+ "OBJECTID":87073,
+ "Join_Count":1,
+ "TARGET_FID":87073,
+ "feature_id":"661eb597-5448-4278-88ea-06d76c117ccb",
+ "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.78,
+ "heightmax":16.44,
+ "elevmin":17.81,
+ "elevmax":19.96,
+ "bldgarea":2060.56,
+ "comment":" ",
+ "OBJECTID_2":87073,
+ "Shape_Le_1":0.00242043380074,
+ "Shape_Ar_1":2.23350623521e-07,
+ "OBJECTID_3":87073,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87072,
+ "g_objectid":"945123",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1567821",
+ "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":"66023004274545170000000",
+ "g_sup_tota":"2657.5",
+ "g_geometry":"0.00246265",
+ "g_geomet_1":"3.07737e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00242043380074,
+ "Shape_Area":2.23350623521e-07,
+ "Shape_Le_3":0.00242043371077,
+ "Shape_Ar_2":2.23350623521e-07,
+ "building_height":6.830000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1203,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55496316733814,
+ 45.52363204823074
+ ],
+ [
+ -73.55495776690925,
+ 45.52363784795861
+ ],
+ [
+ -73.5551410667287,
+ 45.52372024744176
+ ],
+ [
+ -73.55513416712995,
+ 45.523727747787625
+ ],
+ [
+ -73.55513466715301,
+ 45.52372834763543
+ ],
+ [
+ -73.55518656702829,
+ 45.52375134779676
+ ],
+ [
+ -73.55540386751632,
+ 45.52350884740568
+ ],
+ [
+ -73.55547106755756,
+ 45.52343354807008
+ ],
+ [
+ -73.55534966717525,
+ 45.523380347775124
+ ],
+ [
+ -73.55524636744775,
+ 45.5233349481996
+ ],
+ [
+ -73.55524216671446,
+ 45.52333304793211
+ ],
+ [
+ -73.55496316733814,
+ 45.52363204823074
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55514718391724,
+ 45.52325794824601
+ ],
+ [
+ -73.55522036714807,
+ 45.52329404793226
+ ],
+ [
+ -73.55522376748473,
+ 45.52329044794611
+ ],
+ [
+ -73.55522737916206,
+ 45.5232866375186
+ ],
+ [
+ -73.55522723796851,
+ 45.52328657276741
+ ],
+ [
+ -73.55515266798308,
+ 45.52325197045237
+ ],
+ [
+ -73.55514718391724,
+ 45.52325794824601
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1203,
+ "ID_UEV":"01022081",
+ "CIVIQUE_DE":" 1640",
+ "CIVIQUE_FI":" 1640",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1893,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-46-9023-8-000-0000",
+ "SUPERFICIE":1546,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00154439682281,
+ "OBJECTID":87074,
+ "Join_Count":2,
+ "TARGET_FID":87074,
+ "feature_id":"bfd68ffc-0224-40fe-9ca2-4de54a03d7bf",
+ "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":47.77,
+ "elevmin":23.88,
+ "elevmax":26.6,
+ "bldgarea":876.81,
+ "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_2":87074,
+ "Shape_Le_1":0.00154439682281,
+ "Shape_Ar_1":1.01725919837e-07,
+ "OBJECTID_3":87074,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87073,
+ "g_objectid":"938503",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1567683",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004246902380000000",
+ "g_sup_tota":"1546.1",
+ "g_geometry":"0.00174787",
+ "g_geomet_1":"1.78996e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00154439682281,
+ "Shape_Area":1.01725919837e-07,
+ "Shape_Le_3":0.00154439833759,
+ "Shape_Ar_2":1.01725919837e-07,
+ "building_height":22.625
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1204,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55376316595918,
+ 45.523519047516324
+ ],
+ [
+ -73.55397486726815,
+ 45.523618748157
+ ],
+ [
+ -73.55406836708332,
+ 45.52352074813432
+ ],
+ [
+ -73.55385666577435,
+ 45.52342104749364
+ ],
+ [
+ -73.55376316595918,
+ 45.523519047516324
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1204,
+ "ID_UEV":"01022083",
+ "CIVIQUE_DE":" 1551",
+ "CIVIQUE_FI":" 1559",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-56-8923-9-000-0000",
+ "SUPERFICIE":456,
+ "SUPERFIC_1":621,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000738902656664,
+ "OBJECTID":87075,
+ "Join_Count":1,
+ "TARGET_FID":87075,
+ "feature_id":"b0145156-c694-47fe-9b0d-fa4c47579ba4",
+ "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":3.89,
+ "heightmax":34.31,
+ "elevmin":19.52,
+ "elevmax":20.83,
+ "bldgarea":261.05,
+ "comment":" ",
+ "OBJECTID_2":87075,
+ "Shape_Le_1":0.000738902656664,
+ "Shape_Ar_1":3.0068647998e-08,
+ "OBJECTID_3":87075,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87074,
+ "g_objectid":"945120",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1567724",
+ "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":"66023004256892390000000",
+ "g_sup_tota":"834.2",
+ "g_geometry":"0.0016579",
+ "g_geomet_1":"9.68057e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000738902656664,
+ "Shape_Area":3.0068647998e-08,
+ "Shape_Le_3":0.00073890353931,
+ "Shape_Ar_2":3.0068647998e-08,
+ "building_height":15.21
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1205,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55967652587282,
+ 45.534702127051816
+ ],
+ [
+ -73.55965588193524,
+ 45.53472490058399
+ ],
+ [
+ -73.5596781689342,
+ 45.53470294993149
+ ],
+ [
+ -73.55967652587282,
+ 45.534702127051816
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55974685105818,
+ 45.53462454343823
+ ],
+ [
+ -73.5597672692659,
+ 45.53463515004243
+ ],
+ [
+ -73.55974066911843,
+ 45.534660449770236
+ ],
+ [
+ -73.55974076894317,
+ 45.534660449770236
+ ],
+ [
+ -73.55985216886435,
+ 45.5347148128886
+ ],
+ [
+ -73.55995968551292,
+ 45.534592990724235
+ ],
+ [
+ -73.55982877749793,
+ 45.53453416427056
+ ],
+ [
+ -73.55974685105818,
+ 45.53462454343823
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1205,
+ "ID_UEV":"01023336",
+ "CIVIQUE_DE":" 2513",
+ "CIVIQUE_FI":" 2523",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-18-2760-9-000-0000",
+ "SUPERFICIE":373,
+ "SUPERFIC_1":551,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000675618387079,
+ "OBJECTID":87076,
+ "Join_Count":2,
+ "TARGET_FID":87076,
+ "feature_id":"51400be0-ba4f-4c2c-8c00-6c8b36a42429",
+ "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.46,
+ "heightmax":52.45,
+ "elevmin":30.1,
+ "elevmax":40.83,
+ "bldgarea":2250.42,
+ "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_2":87076,
+ "Shape_Le_1":0.000675618387079,
+ "Shape_Ar_1":2.13881022528e-08,
+ "OBJECTID_3":87076,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87075,
+ "g_objectid":"941430",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425451",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004318375410000000",
+ "g_sup_tota":"316.1",
+ "g_geometry":"0.000871035",
+ "g_geomet_1":"3.64465e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000675618387079,
+ "Shape_Area":2.13881022528e-08,
+ "Shape_Le_3":0.000675617963609,
+ "Shape_Ar_2":2.13881022528e-08,
+ "building_height":24.995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1206,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55329706622847,
+ 45.53046613045785
+ ],
+ [
+ -73.55344692295897,
+ 45.53053578384964
+ ],
+ [
+ -73.55345356715024,
+ 45.530528448979034
+ ],
+ [
+ -73.55345766715946,
+ 45.530530248522446
+ ],
+ [
+ -73.5534960673115,
+ 45.53049174854566
+ ],
+ [
+ -73.55343536757,
+ 45.53046194861034
+ ],
+ [
+ -73.55344405502096,
+ 45.53045321709259
+ ],
+ [
+ -73.55334653073965,
+ 45.53040618075094
+ ],
+ [
+ -73.55329706622847,
+ 45.53046613045785
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55355145385835,
+ 45.53051183490355
+ ],
+ [
+ -73.55354656694236,
+ 45.53051704917278
+ ],
+ [
+ -73.55354396700233,
+ 45.53051974893756
+ ],
+ [
+ -73.5535735690868,
+ 45.53053329992215
+ ],
+ [
+ -73.5535800801784,
+ 45.530526099050526
+ ],
+ [
+ -73.55355145385835,
+ 45.53051183490355
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1206,
+ "ID_UEV":"01018479",
+ "CIVIQUE_DE":" 2345",
+ "CIVIQUE_FI":" 2347",
+ "NOM_RUE":"avenue Lalonde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1961,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-2698-7-000-0000",
+ "SUPERFICIE":172,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000585081278355,
+ "OBJECTID":87077,
+ "Join_Count":2,
+ "TARGET_FID":87077,
+ "feature_id":"f9dffb6a-2571-438d-9a1a-6b3e22917edc",
+ "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.42,
+ "heightmax":25.37,
+ "elevmin":17.23,
+ "elevmax":18.05,
+ "bldgarea":485.77,
+ "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_2":87077,
+ "Shape_Le_1":0.000585081278355,
+ "Shape_Ar_1":1.22675744877e-08,
+ "OBJECTID_3":87077,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87076,
+ "g_objectid":"940845",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424516",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363268700000000",
+ "g_sup_tota":"127.6",
+ "g_geometry":"0.000504359",
+ "g_geomet_1":"1.47e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000585081278355,
+ "Shape_Area":1.22675744877e-08,
+ "Shape_Le_3":0.000585080339139,
+ "Shape_Ar_2":1.22675744877e-08,
+ "building_height":11.475000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1207,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55653023150683,
+ 45.534537457587895
+ ],
+ [
+ -73.55653336834212,
+ 45.53453884973842
+ ],
+ [
+ -73.5565249803654,
+ 45.534548224271425
+ ],
+ [
+ -73.55659555736092,
+ 45.53457815460845
+ ],
+ [
+ -73.55667140528297,
+ 45.53448981240521
+ ],
+ [
+ -73.55663386848009,
+ 45.53447314976634
+ ],
+ [
+ -73.5566531679312,
+ 45.534451749498935
+ ],
+ [
+ -73.55665296828171,
+ 45.534451749498935
+ ],
+ [
+ -73.55661761503275,
+ 45.534435679513294
+ ],
+ [
+ -73.55653023150683,
+ 45.534537457587895
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1207,
+ "ID_UEV":"01023685",
+ "CIVIQUE_DE":" 2276",
+ "CIVIQUE_FI":" 2278",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-7640-6-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000452173078263,
+ "OBJECTID":87078,
+ "Join_Count":1,
+ "TARGET_FID":87078,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":87078,
+ "Shape_Le_1":0.000452173078263,
+ "Shape_Ar_1":9.93540656321e-09,
+ "OBJECTID_3":87078,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87077,
+ "g_objectid":"941155",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425080",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338764060000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000655021",
+ "g_geomet_1":"1.88415e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000452173078263,
+ "Shape_Area":9.93540656321e-09,
+ "Shape_Le_3":0.000452172333163,
+ "Shape_Ar_2":9.93540656321e-09,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1208,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55130602837235,
+ 45.531555001712256
+ ],
+ [
+ -73.55145636174355,
+ 45.53161897588532
+ ],
+ [
+ -73.55153562349207,
+ 45.53152696984408
+ ],
+ [
+ -73.55148296638764,
+ 45.53150664966245
+ ],
+ [
+ -73.55138436651714,
+ 45.53146914973177
+ ],
+ [
+ -73.55138106690455,
+ 45.53146789607684
+ ],
+ [
+ -73.55130602837235,
+ 45.531555001712256
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1208,
+ "ID_UEV":"01018864",
+ "CIVIQUE_DE":" 1840",
+ "CIVIQUE_FI":" 1840",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-75-8010-3-000-0000",
+ "SUPERFICIE":322,
+ "SUPERFIC_1":457,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000565250982565,
+ "OBJECTID":87087,
+ "Join_Count":1,
+ "TARGET_FID":87087,
+ "feature_id":"bb869f13-2c8f-4d4b-89a5-55a36ab08f35",
+ "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.17,
+ "heightmax":32.26,
+ "elevmin":19.23,
+ "elevmax":22.42,
+ "bldgarea":1461.75,
+ "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_2":87087,
+ "Shape_Le_1":0.000565250982565,
+ "Shape_Ar_1":1.84139342242e-08,
+ "OBJECTID_3":87087,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87086,
+ "g_objectid":"940663",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424237",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004375910350000000",
+ "g_sup_tota":"257.5",
+ "g_geometry":"0.00073903",
+ "g_geomet_1":"2.97196e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000565250982565,
+ "Shape_Area":1.84139342242e-08,
+ "Shape_Le_3":0.000565250877122,
+ "Shape_Ar_2":1.84139342242e-08,
+ "building_height":15.044999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1209,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55637188427688,
+ 45.528797556212545
+ ],
+ [
+ -73.55639176828733,
+ 45.528805249013324
+ ],
+ [
+ -73.55636806845344,
+ 45.52883544914695
+ ],
+ [
+ -73.55647025751821,
+ 45.528874968055625
+ ],
+ [
+ -73.55658351184144,
+ 45.528758578695744
+ ],
+ [
+ -73.55650216816238,
+ 45.52871954901827
+ ],
+ [
+ -73.55646508551713,
+ 45.528701776615996
+ ],
+ [
+ -73.55637188427688,
+ 45.528797556212545
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1209,
+ "ID_UEV":"01018319",
+ "CIVIQUE_DE":" 1981",
+ "CIVIQUE_FI":" 1991",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-32-9010-3-000-0000",
+ "SUPERFICIE":273,
+ "SUPERFIC_1":439,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000596657929449,
+ "OBJECTID":87093,
+ "Join_Count":1,
+ "TARGET_FID":87093,
+ "feature_id":"2c54cee5-92fb-4c9b-8a60-b9e05764b41d",
+ "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.53,
+ "heightmax":34.69,
+ "elevmin":22.51,
+ "elevmax":23.58,
+ "bldgarea":502.42,
+ "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_2":87093,
+ "Shape_Le_1":0.000596657929449,
+ "Shape_Ar_1":2.00477946428e-08,
+ "OBJECTID_3":87093,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87092,
+ "g_objectid":"940909",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424628",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004332901030000000",
+ "g_sup_tota":"273",
+ "g_geometry":"0.000766688",
+ "g_geomet_1":"3.12971e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000596657929449,
+ "Shape_Area":2.00477946428e-08,
+ "Shape_Le_3":0.000596657703496,
+ "Shape_Ar_2":2.00477946428e-08,
+ "building_height":16.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1210,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55625558754717,
+ 45.52873977656973
+ ],
+ [
+ -73.5562734678681,
+ 45.52874854855697
+ ],
+ [
+ -73.55625856790043,
+ 45.52876364907344
+ ],
+ [
+ -73.55625866772517,
+ 45.528763748898186
+ ],
+ [
+ -73.55634886792775,
+ 45.528808848999475
+ ],
+ [
+ -73.55634926812607,
+ 45.528809048648974
+ ],
+ [
+ -73.55636126778013,
+ 45.52879344900876
+ ],
+ [
+ -73.55637188427688,
+ 45.528797556212545
+ ],
+ [
+ -73.55646508551713,
+ 45.528701776615996
+ ],
+ [
+ -73.55634743171045,
+ 45.52864539092235
+ ],
+ [
+ -73.55625558754717,
+ 45.52873977656973
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1210,
+ "ID_UEV":"01018320",
+ "CIVIQUE_DE":" 1969",
+ "CIVIQUE_FI":" 1979",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-32-9904-7-000-0000",
+ "SUPERFICIE":271,
+ "SUPERFIC_1":399,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000569435788416,
+ "OBJECTID":87094,
+ "Join_Count":1,
+ "TARGET_FID":87094,
+ "feature_id":"2c54cee5-92fb-4c9b-8a60-b9e05764b41d",
+ "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.53,
+ "heightmax":34.69,
+ "elevmin":22.51,
+ "elevmax":23.58,
+ "bldgarea":502.42,
+ "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_2":87094,
+ "Shape_Le_1":0.000569435788416,
+ "Shape_Ar_1":1.84347769771e-08,
+ "OBJECTID_3":87094,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87093,
+ "g_objectid":"940908",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424627",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341089810000000",
+ "g_sup_tota":"266.7",
+ "g_geometry":"0.00076326",
+ "g_geomet_1":"3.09311e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000569435788416,
+ "Shape_Area":1.84347769771e-08,
+ "Shape_Le_3":0.000569435912069,
+ "Shape_Ar_2":1.84347769771e-08,
+ "building_height":16.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1211,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55634743171045,
+ 45.52864539092235
+ ],
+ [
+ -73.55623946809882,
+ 45.528593648428426
+ ],
+ [
+ -73.556234567693,
+ 45.52859874848375
+ ],
+ [
+ -73.5561215678779,
+ 45.52871554883381
+ ],
+ [
+ -73.55612666793323,
+ 45.528718048949095
+ ],
+ [
+ -73.55621956790058,
+ 45.528763348699876
+ ],
+ [
+ -73.55624696844468,
+ 45.52873554885679
+ ],
+ [
+ -73.55625558754717,
+ 45.52873977656973
+ ],
+ [
+ -73.55634743171045,
+ 45.52864539092235
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1211,
+ "ID_UEV":"01018321",
+ "CIVIQUE_DE":" 1957",
+ "CIVIQUE_FI":" 1967",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-41-0898-1-000-0000",
+ "SUPERFICIE":267,
+ "SUPERFIC_1":431,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000578677175389,
+ "OBJECTID":87095,
+ "Join_Count":1,
+ "TARGET_FID":87095,
+ "feature_id":"2c54cee5-92fb-4c9b-8a60-b9e05764b41d",
+ "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.53,
+ "heightmax":34.69,
+ "elevmin":22.51,
+ "elevmax":23.58,
+ "bldgarea":502.42,
+ "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_2":87095,
+ "Shape_Le_1":0.000578677175389,
+ "Shape_Ar_1":1.89047400948e-08,
+ "OBJECTID_3":87095,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87094,
+ "g_objectid":"940908",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424627",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341089810000000",
+ "g_sup_tota":"266.7",
+ "g_geometry":"0.00076326",
+ "g_geomet_1":"3.09311e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000578677175389,
+ "Shape_Area":1.89047400948e-08,
+ "Shape_Le_3":0.000578676844141,
+ "Shape_Ar_2":1.89047400948e-08,
+ "building_height":16.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1212,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55278101095674,
+ 45.53014300044941
+ ],
+ [
+ -73.55293838242225,
+ 45.53021519172801
+ ],
+ [
+ -73.55295896700457,
+ 45.53018874896189
+ ],
+ [
+ -73.55295936720287,
+ 45.530188448588326
+ ],
+ [
+ -73.55294776684781,
+ 45.53018454912794
+ ],
+ [
+ -73.55297200267762,
+ 45.530149070873215
+ ],
+ [
+ -73.55283436233779,
+ 45.53008562280355
+ ],
+ [
+ -73.55278101095674,
+ 45.53014300044941
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1212,
+ "ID_UEV":"01018676",
+ "CIVIQUE_DE":" 2329",
+ "CIVIQUE_FI":" 2331",
+ "NOM_RUE":"rue Magnan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-6861-7-000-0000",
+ "SUPERFICIE":136,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0004922638254,
+ "OBJECTID":87096,
+ "Join_Count":1,
+ "TARGET_FID":87096,
+ "feature_id":"169d2f23-7343-456b-aad2-08507199d45f",
+ "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.54,
+ "heightmax":27.45,
+ "elevmin":17.88,
+ "elevmax":18.95,
+ "bldgarea":428.05,
+ "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_2":87096,
+ "Shape_Le_1":0.0004922638254,
+ "Shape_Ar_1":1.20465984675e-08,
+ "OBJECTID_3":87096,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87095,
+ "g_objectid":"940627",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424170",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363717020000000",
+ "g_sup_tota":"242.4",
+ "g_geometry":"0.000756341",
+ "g_geomet_1":"2.85456e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0004922638254,
+ "Shape_Area":1.20465984675e-08,
+ "Shape_Le_3":0.000492264015001,
+ "Shape_Ar_2":1.20465984675e-08,
+ "building_height":12.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1213,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5528882047487,
+ 45.53031119075914
+ ],
+ [
+ -73.55293435705678,
+ 45.53033238328316
+ ],
+ [
+ -73.55295279136008,
+ 45.5303122006978
+ ],
+ [
+ -73.55296846744267,
+ 45.530294548804676
+ ],
+ [
+ -73.55292136724914,
+ 45.53027384910914
+ ],
+ [
+ -73.5528882047487,
+ 45.53031119075914
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55270605786012,
+ 45.5302275556075
+ ],
+ [
+ -73.55282990080113,
+ 45.530284420639795
+ ],
+ [
+ -73.55284366672369,
+ 45.53026834885551
+ ],
+ [
+ -73.55287856671433,
+ 45.53022784878649
+ ],
+ [
+ -73.552752067176,
+ 45.53017404864372
+ ],
+ [
+ -73.55270605786012,
+ 45.5302275556075
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55278101095674,
+ 45.53014300044941
+ ],
+ [
+ -73.55278096688996,
+ 45.5301430490128
+ ],
+ [
+ -73.55277586683464,
+ 45.53014854926643
+ ],
+ [
+ -73.55292956726755,
+ 45.530218048874154
+ ],
+ [
+ -73.55293436694932,
+ 45.53022034844062
+ ],
+ [
+ -73.55293838242225,
+ 45.53021519172801
+ ],
+ [
+ -73.55278101095674,
+ 45.53014300044941
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1213,
+ "ID_UEV":"01018678",
+ "CIVIQUE_DE":" 2335",
+ "CIVIQUE_FI":" 2341",
+ "NOM_RUE":"rue Magnan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-7170-2-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":150,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000983293752316,
+ "OBJECTID":87097,
+ "Join_Count":3,
+ "TARGET_FID":87097,
+ "feature_id":"169d2f23-7343-456b-aad2-08507199d45f",
+ "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.54,
+ "heightmax":27.45,
+ "elevmin":17.88,
+ "elevmax":18.95,
+ "bldgarea":428.05,
+ "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_2":87097,
+ "Shape_Le_1":0.000983293752316,
+ "Shape_Ar_1":1.31337105571e-08,
+ "OBJECTID_3":87097,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87096,
+ "g_objectid":"940627",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424170",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363717020000000",
+ "g_sup_tota":"242.4",
+ "g_geometry":"0.000756341",
+ "g_geomet_1":"2.85456e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000983293752316,
+ "Shape_Area":1.31337105571e-08,
+ "Shape_Le_3":0.00098329563567,
+ "Shape_Ar_2":1.31337105571e-08,
+ "building_height":12.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1214,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5528882047487,
+ 45.53031119075914
+ ],
+ [
+ -73.55288566686188,
+ 45.530314048804605
+ ],
+ [
+ -73.5529323632598,
+ 45.530334572233016
+ ],
+ [
+ -73.55293435705678,
+ 45.53033238328316
+ ],
+ [
+ -73.5528882047487,
+ 45.53031119075914
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55270605786012,
+ 45.5302275556075
+ ],
+ [
+ -73.55269806738374,
+ 45.53023684920152
+ ],
+ [
+ -73.55282456692207,
+ 45.53029064844497
+ ],
+ [
+ -73.55282990080113,
+ 45.530284420639795
+ ],
+ [
+ -73.55270605786012,
+ 45.5302275556075
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1214,
+ "ID_UEV":"01018680",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Magnan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc pour la r\u00c3\u00a9cr\u00c3\u00a9ation en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-7779-0-000-0000",
+ "SUPERFICIE":260,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000402771052372,
+ "OBJECTID":87098,
+ "Join_Count":2,
+ "TARGET_FID":87098,
+ "feature_id":"c2943c2b-94be-4010-87ce-0f91dafc477a",
+ "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.64,
+ "heightmax":27.83,
+ "elevmin":18.32,
+ "elevmax":19.16,
+ "bldgarea":94.15,
+ "comment":" ",
+ "OBJECTID_2":87098,
+ "Shape_Le_1":0.000402771052372,
+ "Shape_Ar_1":1.50446026784e-09,
+ "OBJECTID_3":87098,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87097,
+ "g_objectid":"940627",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424170",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363717020000000",
+ "g_sup_tota":"242.4",
+ "g_geometry":"0.000756341",
+ "g_geomet_1":"2.85456e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000402771052372,
+ "Shape_Area":1.50446026784e-09,
+ "Shape_Le_3":0.000402770994012,
+ "Shape_Ar_2":1.50446026784e-09,
+ "building_height":12.594999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1215,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56449949018118,
+ 45.5248691754224
+ ],
+ [
+ -73.56465372571071,
+ 45.52489083469456
+ ],
+ [
+ -73.56467470509541,
+ 45.52482361127094
+ ],
+ [
+ -73.56437066589535,
+ 45.5247809159568
+ ],
+ [
+ -73.5643518700646,
+ 45.52484014800472
+ ],
+ [
+ -73.56440987004132,
+ 45.52484924824451
+ ],
+ [
+ -73.56441447007359,
+ 45.52483454792634
+ ],
+ [
+ -73.56450586997177,
+ 45.52484864749738
+ ],
+ [
+ -73.56449949018118,
+ 45.5248691754224
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1215,
+ "ID_UEV":"01035394",
+ "CIVIQUE_DE":" 1368",
+ "CIVIQUE_FI":" 1372",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-77-5870-3-000-0000",
+ "SUPERFICIE":241,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000783425894437,
+ "OBJECTID":87102,
+ "Join_Count":1,
+ "TARGET_FID":87102,
+ "feature_id":"6913e3dd-b994-4e61-ba4f-7c4d911f069d",
+ "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.06,
+ "heightmax":19.09,
+ "elevmin":38.19,
+ "elevmax":42.72,
+ "bldgarea":1275.04,
+ "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_2":87102,
+ "Shape_Le_1":0.000783425894437,
+ "Shape_Ar_1":1.88654713093e-08,
+ "OBJECTID_3":87102,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87101,
+ "g_objectid":"943512",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316656",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994277587030000000",
+ "g_sup_tota":"240.5",
+ "g_geometry":"0.000936151",
+ "g_geomet_1":"2.76521e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000783425894437,
+ "Shape_Area":1.88654713093e-08,
+ "Shape_Le_3":0.000783425294656,
+ "Shape_Ar_2":1.88654713093e-08,
+ "building_height":9.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1216,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55709774508671,
+ 45.53338132603766
+ ],
+ [
+ -73.55723556079434,
+ 45.53344271555917
+ ],
+ [
+ -73.55728700831062,
+ 45.533386820895366
+ ],
+ [
+ -73.55703320703871,
+ 45.53327587513183
+ ],
+ [
+ -73.55702746846474,
+ 45.533281649678685
+ ],
+ [
+ -73.55714126777713,
+ 45.53333754973843
+ ],
+ [
+ -73.55709774508671,
+ 45.53338132603766
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1216,
+ "ID_UEV":"01025856",
+ "CIVIQUE_DE":" 2444",
+ "CIVIQUE_FI":" 2448",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-37-3617-0-000-0000",
+ "SUPERFICIE":183,
+ "SUPERFIC_1":240,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000700488896618,
+ "OBJECTID":87105,
+ "Join_Count":1,
+ "TARGET_FID":87105,
+ "feature_id":"abde85ca-ac06-4e6a-b0d5-549fb831074b",
+ "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.87,
+ "heightmax":32.34,
+ "elevmin":18.91,
+ "elevmax":21.32,
+ "bldgarea":1252.42,
+ "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_2":87105,
+ "Shape_Le_1":0.000700488896618,
+ "Shape_Ar_1":1.20140693423e-08,
+ "OBJECTID_3":87105,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87104,
+ "g_objectid":"941292",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425277",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004337402300000000",
+ "g_sup_tota":"173.7",
+ "g_geometry":"0.000728796",
+ "g_geomet_1":"1.98698e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000700488896618,
+ "Shape_Area":1.20140693423e-08,
+ "Shape_Le_3":0.000700487473009,
+ "Shape_Ar_2":1.20140693423e-08,
+ "building_height":15.235000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1217,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56149412227776,
+ 45.50831525829283
+ ],
+ [
+ -73.56125238900839,
+ 45.50857266854411
+ ],
+ [
+ -73.56139798924765,
+ 45.50863913563789
+ ],
+ [
+ -73.56152412905716,
+ 45.5085007380689
+ ],
+ [
+ -73.56143956850313,
+ 45.50846274441042
+ ],
+ [
+ -73.56146766782045,
+ 45.50843164495475
+ ],
+ [
+ -73.56155244870838,
+ 45.50846966649221
+ ],
+ [
+ -73.56163449026135,
+ 45.5083796524493
+ ],
+ [
+ -73.56151504050855,
+ 45.50832463372516
+ ],
+ [
+ -73.56149412227776,
+ 45.50831525829283
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1217,
+ "ID_UEV":"01058703",
+ "CIVIQUE_DE":" 1110",
+ "CIVIQUE_FI":" 1116",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-99-9852-5-000-0000",
+ "SUPERFICIE":453,
+ "SUPERFIC_1":1022,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00120419206813,
+ "OBJECTID":87106,
+ "Join_Count":1,
+ "TARGET_FID":87106,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":87106,
+ "Shape_Le_1":0.00120419206813,
+ "Shape_Ar_1":4.89099321226e-08,
+ "OBJECTID_3":87106,
+ "Join_Cou_1":7,
+ "TARGET_F_1":87105,
+ "g_objectid":"945195",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1179692",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994099925850000000",
+ "g_sup_tota":"76.9",
+ "g_geometry":"0.00072341",
+ "g_geomet_1":"8.85735e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00120419206813,
+ "Shape_Area":4.89099321226e-08,
+ "Shape_Le_3":0.00120419059014,
+ "Shape_Ar_2":4.89099321226e-08,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1218,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56152412905716,
+ 45.5085007380689
+ ],
+ [
+ -73.56139798924765,
+ 45.50863913563789
+ ],
+ [
+ -73.56140260996432,
+ 45.508638250705005
+ ],
+ [
+ -73.56152816791247,
+ 45.50850264463164
+ ],
+ [
+ -73.56152436827682,
+ 45.50850084508823
+ ],
+ [
+ -73.56152412905716,
+ 45.5085007380689
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56155244870838,
+ 45.50846966649221
+ ],
+ [
+ -73.56155596775555,
+ 45.5084712448024
+ ],
+ [
+ -73.56163475106476,
+ 45.50838436489682
+ ],
+ [
+ -73.56163449026135,
+ 45.5083796524493
+ ],
+ [
+ -73.56155244870838,
+ 45.50846966649221
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1218,
+ "ID_UEV":"01058704",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-99-9258-5-000-0000",
+ "SUPERFICIE":77,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000628885303925,
+ "OBJECTID":87107,
+ "Join_Count":1,
+ "TARGET_FID":87107,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":87107,
+ "Shape_Le_1":0.000628885303925,
+ "Shape_Ar_1":1.07759986672e-09,
+ "OBJECTID_3":87107,
+ "Join_Cou_1":6,
+ "TARGET_F_1":87106,
+ "g_objectid":"945195",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1179692",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994099925850000000",
+ "g_sup_tota":"76.9",
+ "g_geometry":"0.00072341",
+ "g_geomet_1":"8.85735e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000628885303925,
+ "Shape_Area":1.07759986672e-09,
+ "Shape_Le_3":0.000628885416381,
+ "Shape_Ar_2":1.07759986672e-09,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1219,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55478837690391,
+ 45.53401780412865
+ ],
+ [
+ -73.55464996674442,
+ 45.53396035004042
+ ],
+ [
+ -73.55464656730707,
+ 45.53396435022488
+ ],
+ [
+ -73.5545516672475,
+ 45.534080549827806
+ ],
+ [
+ -73.55462746750547,
+ 45.53409494977241
+ ],
+ [
+ -73.55471016556353,
+ 45.53411063754618
+ ],
+ [
+ -73.55478837690391,
+ 45.53401780412865
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1219,
+ "ID_UEV":"01023948",
+ "CIVIQUE_DE":" 2131",
+ "CIVIQUE_FI":" 2131",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1908,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-3195-5-000-0000",
+ "SUPERFICIE":286,
+ "SUPERFIC_1":494,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000587856302898,
+ "OBJECTID":87110,
+ "Join_Count":1,
+ "TARGET_FID":87110,
+ "feature_id":"0c9d277b-9e89-4d1f-8935-7bfbb1e01479",
+ "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.53,
+ "heightmax":31.32,
+ "elevmin":18.96,
+ "elevmax":19.79,
+ "bldgarea":1041.23,
+ "comment":" ",
+ "OBJECTID_2":87110,
+ "Shape_Le_1":0.000587856302898,
+ "Shape_Ar_1":1.96845184986e-08,
+ "OBJECTID_3":87110,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87109,
+ "g_objectid":"941092",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424991",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357319550000000",
+ "g_sup_tota":"286.1",
+ "g_geometry":"0.000756402",
+ "g_geomet_1":"3.33565e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000587856302898,
+ "Shape_Area":1.96845184986e-08,
+ "Shape_Le_3":0.0005878553779,
+ "Shape_Ar_2":1.96845184986e-08,
+ "building_height":14.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1220,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55248768717887,
+ 45.53568340701392
+ ],
+ [
+ -73.55254206738435,
+ 45.535699549844644
+ ],
+ [
+ -73.55257962307299,
+ 45.535710758095306
+ ],
+ [
+ -73.55264705603865,
+ 45.53561532923435
+ ],
+ [
+ -73.55261526680296,
+ 45.53560314971588
+ ],
+ [
+ -73.5526199675593,
+ 45.535597049614445
+ ],
+ [
+ -73.55256501448568,
+ 45.53557594702263
+ ],
+ [
+ -73.55248768717887,
+ 45.53568340701392
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1220,
+ "ID_UEV":"01024510",
+ "CIVIQUE_DE":" 2080",
+ "CIVIQUE_FI":" 2080",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1961,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-9368-7-000-0000",
+ "SUPERFICIE":194,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000445766674353,
+ "OBJECTID":87111,
+ "Join_Count":1,
+ "TARGET_FID":87111,
+ "feature_id":"eb231f79-3f89-4e44-bfc9-97de87e22a5f",
+ "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,
+ "heightmax":31.55,
+ "elevmin":18.92,
+ "elevmax":21.51,
+ "bldgarea":1919.77,
+ "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_2":87111,
+ "Shape_Le_1":0.000445766674353,
+ "Shape_Ar_1":1.13288468772e-08,
+ "OBJECTID_3":87111,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87110,
+ "g_objectid":"943665",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360803",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004369936870000000",
+ "g_sup_tota":"193.9",
+ "g_geometry":"0.000683976",
+ "g_geomet_1":"2.23392e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000445766674353,
+ "Shape_Area":1.13288468772e-08,
+ "Shape_Le_3":0.000445767505207,
+ "Shape_Ar_2":1.13288468772e-08,
+ "building_height":15.775
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1221,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55704139626528,
+ 45.535117587756766
+ ],
+ [
+ -73.55711698788053,
+ 45.53514749471141
+ ],
+ [
+ -73.55721232051403,
+ 45.53503758047026
+ ],
+ [
+ -73.55718266806753,
+ 45.53502494949212
+ ],
+ [
+ -73.55713803921098,
+ 45.535005945018646
+ ],
+ [
+ -73.55704139626528,
+ 45.535117587756766
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1221,
+ "ID_UEV":"01023919",
+ "CIVIQUE_DE":" 2337",
+ "CIVIQUE_FI":" 2341",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-39-3910-5-000-0000",
+ "SUPERFICIE":134,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000455188949231,
+ "OBJECTID":87115,
+ "Join_Count":1,
+ "TARGET_FID":87115,
+ "feature_id":"a71ca623-7086-4569-9560-653b710cfc84",
+ "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.53,
+ "heightmax":40.65,
+ "elevmin":21.14,
+ "elevmax":28.77,
+ "bldgarea":2362.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_2":87115,
+ "Shape_Le_1":0.000455188949231,
+ "Shape_Ar_1":1.12551187377e-08,
+ "OBJECTID_3":87115,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87114,
+ "g_objectid":"941107",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425017",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004339450600000000",
+ "g_sup_tota":"131.8",
+ "g_geometry":"0.000566521",
+ "g_geomet_1":"1.54533e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000455188949231,
+ "Shape_Area":1.12551187377e-08,
+ "Shape_Le_3":0.000455189002571,
+ "Shape_Ar_2":1.12551187377e-08,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1222,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55876937702698,
+ 45.5390149329431
+ ],
+ [
+ -73.55879196889609,
+ 45.53902455119238
+ ],
+ [
+ -73.55880706941257,
+ 45.53903115041755
+ ],
+ [
+ -73.55877546903452,
+ 45.5390658507587
+ ],
+ [
+ -73.55882631310571,
+ 45.53908873940409
+ ],
+ [
+ -73.55892018613952,
+ 45.53895716049485
+ ],
+ [
+ -73.55891426949978,
+ 45.53896415092512
+ ],
+ [
+ -73.55886786897881,
+ 45.538944051077394
+ ],
+ [
+ -73.55883506890515,
+ 45.53892955040872
+ ],
+ [
+ -73.55885326938471,
+ 45.53890915108675
+ ],
+ [
+ -73.55884623129039,
+ 45.53890607540535
+ ],
+ [
+ -73.55876937702698,
+ 45.5390149329431
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1222,
+ "ID_UEV":"01024914",
+ "CIVIQUE_DE":" 2633",
+ "CIVIQUE_FI":" 2633",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-23-0544-7-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":85,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000569216132108,
+ "OBJECTID":87124,
+ "Join_Count":1,
+ "TARGET_FID":87124,
+ "feature_id":"abf0269c-02da-4abb-9c35-4825568117c6",
+ "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":52.71,
+ "elevmin":33.68,
+ "elevmax":42.14,
+ "bldgarea":1138.79,
+ "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_2":87124,
+ "Shape_Le_1":0.000569216132108,
+ "Shape_Ar_1":1.20716052437e-08,
+ "OBJECTID_3":87124,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87123,
+ "g_objectid":"944077",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361322",
+ "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":"66023004423054470000000",
+ "g_sup_tota":"189.4",
+ "g_geometry":"0.000671145",
+ "g_geomet_1":"2.17082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000569216132108,
+ "Shape_Area":1.20716052437e-08,
+ "Shape_Le_3":0.000569218258949,
+ "Shape_Ar_2":1.20716052437e-08,
+ "building_height":26.095
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1223,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56050100903619,
+ 45.53140778808925
+ ],
+ [
+ -73.5605824444461,
+ 45.53144553353484
+ ],
+ [
+ -73.5607004336999,
+ 45.53132097293485
+ ],
+ [
+ -73.56067316895343,
+ 45.53130874845028
+ ],
+ [
+ -73.56069766918392,
+ 45.53128154845499
+ ],
+ [
+ -73.56069826903173,
+ 45.531280649132945
+ ],
+ [
+ -73.56063537854173,
+ 45.53126593622427
+ ],
+ [
+ -73.56050100903619,
+ 45.53140778808925
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1223,
+ "ID_UEV":"01022694",
+ "CIVIQUE_DE":" 2314",
+ "CIVIQUE_FI":" 2314",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1961,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-04-6289-5-000-0000",
+ "SUPERFICIE":288,
+ "SUPERFIC_1":381,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000588877204539,
+ "OBJECTID":87130,
+ "Join_Count":1,
+ "TARGET_FID":87130,
+ "feature_id":"da1a3347-13c1-4911-b6cc-5b657497e24b",
+ "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.65,
+ "heightmax":50.46,
+ "elevmin":30.06,
+ "elevmax":43.72,
+ "bldgarea":3391.1,
+ "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_2":87130,
+ "Shape_Le_1":0.000588877204539,
+ "Shape_Ar_1":1.63288950382e-08,
+ "OBJECTID_3":87130,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87129,
+ "g_objectid":"940388",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423737",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004304559310000000",
+ "g_sup_tota":"288",
+ "g_geometry":"0.000959201",
+ "g_geomet_1":"3.31771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000588877204539,
+ "Shape_Area":1.63288950382e-08,
+ "Shape_Le_3":0.000588875741268,
+ "Shape_Ar_2":1.63288950382e-08,
+ "building_height":24.905
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1224,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56097851576773,
+ 45.533272003550415
+ ],
+ [
+ -73.56087386975513,
+ 45.533227050038626
+ ],
+ [
+ -73.5606987690548,
+ 45.53342844961355
+ ],
+ [
+ -73.56078816976007,
+ 45.5334668497656
+ ],
+ [
+ -73.56078906998144,
+ 45.53346724996391
+ ],
+ [
+ -73.56080957002747,
+ 45.533439249572005
+ ],
+ [
+ -73.560825569866,
+ 45.53341774947985
+ ],
+ [
+ -73.56088687035462,
+ 45.5333353499967
+ ],
+ [
+ -73.56089476999948,
+ 45.53332495023656
+ ],
+ [
+ -73.56092031614152,
+ 45.5333346566194
+ ],
+ [
+ -73.56097851576773,
+ 45.533272003550415
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1224,
+ "ID_UEV":"01022937",
+ "CIVIQUE_DE":" 2305",
+ "CIVIQUE_FI":" 2311",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":18,
+ "ANNEE_CONS":1956,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-4715-4-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":596,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000769157708249,
+ "OBJECTID":87131,
+ "Join_Count":1,
+ "TARGET_FID":87131,
+ "feature_id":"61010342-e54f-46d8-975f-200cb6e7db1b",
+ "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.51,
+ "heightmax":49.45,
+ "elevmin":32.44,
+ "elevmax":38.11,
+ "bldgarea":910.97,
+ "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_2":87131,
+ "Shape_Le_1":0.000769157708249,
+ "Shape_Ar_1":2.48566677732e-08,
+ "OBJECTID_3":87131,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87130,
+ "g_objectid":"940561",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424065",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307392010000000",
+ "g_sup_tota":"288",
+ "g_geometry":"0.00084974",
+ "g_geomet_1":"3.31737e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000769157708249,
+ "Shape_Area":2.48566677732e-08,
+ "Shape_Le_3":0.000769156583633,
+ "Shape_Ar_2":2.48566677732e-08,
+ "building_height":23.470000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1225,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5523148698572,
+ 45.531984304782135
+ ],
+ [
+ -73.55249229710367,
+ 45.53205972462688
+ ],
+ [
+ -73.55257016939964,
+ 45.53196852078091
+ ],
+ [
+ -73.552490066785,
+ 45.53193595003436
+ ],
+ [
+ -73.5523927880186,
+ 45.531896433823654
+ ],
+ [
+ -73.5523148698572,
+ 45.531984304782135
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1225,
+ "ID_UEV":"01018881",
+ "CIVIQUE_DE":" 1920",
+ "CIVIQUE_FI":" 1920",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-75-0058-0-000-0000",
+ "SUPERFICIE":377,
+ "SUPERFIC_1":617,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000621628322626,
+ "OBJECTID":87132,
+ "Join_Count":1,
+ "TARGET_FID":87132,
+ "feature_id":"ff7aa814-6953-43ee-98e8-97f6e35cfc2d",
+ "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.5,
+ "heightmax":30.71,
+ "elevmin":18.79,
+ "elevmax":19.83,
+ "bldgarea":896.14,
+ "comment":" ",
+ "OBJECTID_2":87132,
+ "Shape_Le_1":0.000621628322626,
+ "Shape_Ar_1":2.16309213738e-08,
+ "OBJECTID_3":87132,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87131,
+ "g_objectid":"941281",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425260",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004365876610000000",
+ "g_sup_tota":"376.2",
+ "g_geometry":"0.0008572",
+ "g_geomet_1":"4.33311e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000621628322626,
+ "Shape_Area":2.16309213738e-08,
+ "Shape_Le_3":0.000621628976425,
+ "Shape_Ar_2":2.16309213738e-08,
+ "building_height":14.105
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1226,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54846525888644,
+ 45.53084163968022
+ ],
+ [
+ -73.54861331877149,
+ 45.53090446721768
+ ],
+ [
+ -73.54865846204024,
+ 45.53085154391392
+ ],
+ [
+ -73.54852635882624,
+ 45.53079548827146
+ ],
+ [
+ -73.5485234648079,
+ 45.53079884993727
+ ],
+ [
+ -73.5484691655414,
+ 45.5307757499512
+ ],
+ [
+ -73.54846516535694,
+ 45.53077405023253
+ ],
+ [
+ -73.548434565025,
+ 45.53080964989572
+ ],
+ [
+ -73.54847716501101,
+ 45.53082774965122
+ ],
+ [
+ -73.54846525888644,
+ 45.53084163968022
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1226,
+ "ID_UEV":"01019311",
+ "CIVIQUE_DE":" 2512",
+ "CIVIQUE_FI":" 2514",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-04-1134-6-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":191,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00055321924415,
+ "OBJECTID":87135,
+ "Join_Count":1,
+ "TARGET_FID":87135,
+ "feature_id":"c125b0ff-2506-4757-a3e5-a00020c74f6a",
+ "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,
+ "heightmax":33.5,
+ "elevmin":20.99,
+ "elevmax":22.77,
+ "bldgarea":1029.67,
+ "comment":" ",
+ "OBJECTID_2":87135,
+ "Shape_Le_1":0.00055321924415,
+ "Shape_Ar_1":1.26623035883e-08,
+ "OBJECTID_3":87135,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87134,
+ "g_objectid":"941251",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425212",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014304082920000000",
+ "g_sup_tota":"167.2",
+ "g_geometry":"0.000720933",
+ "g_geomet_1":"1.92996e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00055321924415,
+ "Shape_Area":1.26623035883e-08,
+ "Shape_Le_3":0.000553218904807,
+ "Shape_Ar_2":1.26623035883e-08,
+ "building_height":16.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1227,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54852635882624,
+ 45.53079548827146
+ ],
+ [
+ -73.54865846204024,
+ 45.53085154391392
+ ],
+ [
+ -73.54870360440967,
+ 45.53079861971083
+ ],
+ [
+ -73.54855133030149,
+ 45.53073400522046
+ ],
+ [
+ -73.54854966475706,
+ 45.530735949554725
+ ],
+ [
+ -73.54851206500165,
+ 45.530720049540946
+ ],
+ [
+ -73.54848286491413,
+ 45.53075415003429
+ ],
+ [
+ -73.5485407650661,
+ 45.53077875008954
+ ],
+ [
+ -73.54852635882624,
+ 45.53079548827146
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1227,
+ "ID_UEV":"01019313",
+ "CIVIQUE_DE":" 2508",
+ "CIVIQUE_FI":" 2510",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-04-0829-2-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":191,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000551752185021,
+ "OBJECTID":87136,
+ "Join_Count":1,
+ "TARGET_FID":87136,
+ "feature_id":"c125b0ff-2506-4757-a3e5-a00020c74f6a",
+ "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,
+ "heightmax":33.5,
+ "elevmin":20.99,
+ "elevmax":22.77,
+ "bldgarea":1029.67,
+ "comment":" ",
+ "OBJECTID_2":87136,
+ "Shape_Le_1":0.000551752185021,
+ "Shape_Ar_1":1.22636773152e-08,
+ "OBJECTID_3":87136,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87135,
+ "g_objectid":"941251",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425212",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014304082920000000",
+ "g_sup_tota":"167.2",
+ "g_geometry":"0.000720933",
+ "g_geomet_1":"1.92996e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000551752185021,
+ "Shape_Area":1.22636773152e-08,
+ "Shape_Le_3":0.000551753053163,
+ "Shape_Ar_2":1.22636773152e-08,
+ "building_height":16.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1228,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56363986241156,
+ 45.514761087904176
+ ],
+ [
+ -73.5636089347264,
+ 45.514794548979545
+ ],
+ [
+ -73.56383872320036,
+ 45.514899142831474
+ ],
+ [
+ -73.56386924708993,
+ 45.51486550099237
+ ],
+ [
+ -73.56363986241156,
+ 45.514761087904176
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1228,
+ "ID_UEV":"01021359",
+ "CIVIQUE_DE":" 361",
+ "CIVIQUE_FI":" 361",
+ "NOM_RUE":"rue \u00c3\u2030mery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-86-2058-1-000-0000",
+ "SUPERFICIE":102,
+ "SUPERFIC_1":247,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000595493674579,
+ "OBJECTID":87137,
+ "Join_Count":1,
+ "TARGET_FID":87137,
+ "feature_id":"677659fe-f24f-40e7-9c83-c3b88fa0491c",
+ "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":20.13,
+ "elevmin":23.73,
+ "elevmax":27.12,
+ "bldgarea":1788.68,
+ "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_2":87137,
+ "Shape_Le_1":0.000595493674579,
+ "Shape_Ar_1":1.09138937441e-08,
+ "OBJECTID_3":87137,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87136,
+ "g_objectid":"943200",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161486",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994186205810000000",
+ "g_sup_tota":"102.2",
+ "g_geometry":"0.000601788",
+ "g_geomet_1":"1.1053e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000595493674579,
+ "Shape_Area":1.09138937441e-08,
+ "Shape_Le_3":0.00059549411542,
+ "Shape_Ar_2":1.09138937441e-08,
+ "building_height":9.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1229,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55106114477785,
+ 45.53627721677043
+ ],
+ [
+ -73.55109216599251,
+ 45.536288249653296
+ ],
+ [
+ -73.55104516112713,
+ 45.53635327603316
+ ],
+ [
+ -73.5511020783201,
+ 45.53637346671241
+ ],
+ [
+ -73.55123791192194,
+ 45.536181143994895
+ ],
+ [
+ -73.55122926673911,
+ 45.5361783498013
+ ],
+ [
+ -73.55122476743092,
+ 45.53617684973212
+ ],
+ [
+ -73.55121256722803,
+ 45.53619355014252
+ ],
+ [
+ -73.55113902696637,
+ 45.536166948196396
+ ],
+ [
+ -73.55106114477785,
+ 45.53627721677043
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1229,
+ "ID_UEV":"01025045",
+ "CIVIQUE_DE":" 2021",
+ "CIVIQUE_FI":" 2023",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-80-0739-3-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":225,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000656721337343,
+ "OBJECTID":87144,
+ "Join_Count":1,
+ "TARGET_FID":87144,
+ "feature_id":"e26f92a7-bfa1-4fe3-98f2-794461095422",
+ "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":33.08,
+ "elevmin":18.89,
+ "elevmax":21.55,
+ "bldgarea":1497.24,
+ "comment":" ",
+ "OBJECTID_2":87144,
+ "Shape_Le_1":0.000656721337343,
+ "Shape_Ar_1":1.68784485012e-08,
+ "OBJECTID_3":87144,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87143,
+ "g_objectid":"943736",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360887",
+ "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":"66023004480143650000000",
+ "g_sup_tota":"193.7",
+ "g_geometry":"0.000676243",
+ "g_geomet_1":"2.23107e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000656721337343,
+ "Shape_Area":1.68784485012e-08,
+ "Shape_Le_3":0.000656721382271,
+ "Shape_Ar_2":1.68784485012e-08,
+ "building_height":16.279999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1230,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55288772541005,
+ 45.53002823166785
+ ],
+ [
+ -73.55304041770296,
+ 45.530098618906436
+ ],
+ [
+ -73.55305836727167,
+ 45.53007484892543
+ ],
+ [
+ -73.55306026753917,
+ 45.530072749008454
+ ],
+ [
+ -73.55308925538667,
+ 45.53003913774631
+ ],
+ [
+ -73.55294108938162,
+ 45.52997083873352
+ ],
+ [
+ -73.55288772541005,
+ 45.53002823166785
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1230,
+ "ID_UEV":"01018672",
+ "CIVIQUE_DE":" 2319",
+ "CIVIQUE_FI":" 2321",
+ "NOM_RUE":"rue Magnan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-6048-1-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000486656358221,
+ "OBJECTID":87145,
+ "Join_Count":1,
+ "TARGET_FID":87145,
+ "feature_id":"169d2f23-7343-456b-aad2-08507199d45f",
+ "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.54,
+ "heightmax":27.45,
+ "elevmin":17.88,
+ "elevmax":18.95,
+ "bldgarea":428.05,
+ "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_2":87145,
+ "Shape_Le_1":0.000486656358221,
+ "Shape_Ar_1":1.22889882054e-08,
+ "OBJECTID_3":87145,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87144,
+ "g_objectid":"940839",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424509",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363554240000000",
+ "g_sup_tota":"139.3",
+ "g_geometry":"0.00058674",
+ "g_geomet_1":"1.59359e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000486656358221,
+ "Shape_Area":1.22889882054e-08,
+ "Shape_Le_3":0.000486656302757,
+ "Shape_Ar_2":1.22889882054e-08,
+ "building_height":12.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1231,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56058675939327,
+ 45.53657061519203
+ ],
+ [
+ -73.56058117010676,
+ 45.53657864973519
+ ],
+ [
+ -73.56047527043923,
+ 45.53654224967538
+ ],
+ [
+ -73.56043046981218,
+ 45.536606749951844
+ ],
+ [
+ -73.56057227041579,
+ 45.53665554986403
+ ],
+ [
+ -73.56066966969135,
+ 45.5366889497855
+ ],
+ [
+ -73.56071930777168,
+ 45.536617611963514
+ ],
+ [
+ -73.56058675939327,
+ 45.53657061519203
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1231,
+ "ID_UEV":"01026138",
+ "CIVIQUE_DE":" 2560",
+ "CIVIQUE_FI":" 2560",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1988,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-00-6981-3-000-0000",
+ "SUPERFICIE":317,
+ "SUPERFIC_1":507,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000680773046041,
+ "OBJECTID":87146,
+ "Join_Count":1,
+ "TARGET_FID":87146,
+ "feature_id":"1942f8d8-90bb-44d2-9ccb-021fb5052ea4",
+ "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.77,
+ "heightmax":55.86,
+ "elevmin":40.56,
+ "elevmax":42.53,
+ "bldgarea":348.01,
+ "comment":" ",
+ "OBJECTID_2":87146,
+ "Shape_Le_1":0.000680773046041,
+ "Shape_Ar_1":2.03517559212e-08,
+ "OBJECTID_3":87146,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87145,
+ "g_objectid":"944204",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361479",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004400698130000000",
+ "g_sup_tota":"317.2",
+ "g_geometry":"0.00089463",
+ "g_geomet_1":"3.65443e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000680773046041,
+ "Shape_Area":2.03517559212e-08,
+ "Shape_Le_3":0.000680772193346,
+ "Shape_Ar_2":2.03517559212e-08,
+ "building_height":27.544999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1232,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54869249868172,
+ 45.52152037801333
+ ],
+ [
+ -73.54869146536068,
+ 45.52150864815588
+ ],
+ [
+ -73.54871086553587,
+ 45.521507947584006
+ ],
+ [
+ -73.54870776467345,
+ 45.52147104750114
+ ],
+ [
+ -73.54870776467345,
+ 45.521470847851646
+ ],
+ [
+ -73.5486821654714,
+ 45.52146894758416
+ ],
+ [
+ -73.5486864651301,
+ 45.52143994804546
+ ],
+ [
+ -73.54872486528215,
+ 45.52144274763499
+ ],
+ [
+ -73.5487249651069,
+ 45.52144264781025
+ ],
+ [
+ -73.54881606553084,
+ 45.521325147787636
+ ],
+ [
+ -73.54885286488965,
+ 45.521277648295126
+ ],
+ [
+ -73.54877546473776,
+ 45.521248048009305
+ ],
+ [
+ -73.54864546503802,
+ 45.521198248051
+ ],
+ [
+ -73.54862036495972,
+ 45.52118864778816
+ ],
+ [
+ -73.54863156511648,
+ 45.52117404819406
+ ],
+ [
+ -73.54861586475221,
+ 45.52116814774212
+ ],
+ [
+ -73.54860976555008,
+ 45.52116564762683
+ ],
+ [
+ -73.54859536470616,
+ 45.52118294788503
+ ],
+ [
+ -73.54858116531038,
+ 45.521177047433085
+ ],
+ [
+ -73.54857216489533,
+ 45.521173447446934
+ ],
+ [
+ -73.5485829648538,
+ 45.52116004754845
+ ],
+ [
+ -73.54858266537956,
+ 45.5211599477237
+ ],
+ [
+ -73.5484964644621,
+ 45.521120248051304
+ ],
+ [
+ -73.54828896388642,
+ 45.521343247543136
+ ],
+ [
+ -73.54829356391869,
+ 45.52134534746011
+ ],
+ [
+ -73.54841856428716,
+ 45.521401247519854
+ ],
+ [
+ -73.54835676377547,
+ 45.521469648156035
+ ],
+ [
+ -73.54846516445762,
+ 45.52151804786991
+ ],
+ [
+ -73.54836335220878,
+ 45.521630619607706
+ ],
+ [
+ -73.54839636182449,
+ 45.52164599261876
+ ],
+ [
+ -73.54846644329356,
+ 45.52167735377715
+ ],
+ [
+ -73.54863587196976,
+ 45.521493981112634
+ ],
+ [
+ -73.54869249868172,
+ 45.52152037801333
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1232,
+ "ID_UEV":"01022094",
+ "CIVIQUE_DE":" 1065",
+ "CIVIQUE_FI":" 1065",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-93-9393-7-000-0000",
+ "SUPERFICIE":3203,
+ "SUPERFIC_1":2292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0020561500341,
+ "OBJECTID":87156,
+ "Join_Count":1,
+ "TARGET_FID":87156,
+ "feature_id":"fc2b088a-9bfe-4baa-a9ab-86a3b4b5e185",
+ "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,
+ "heightmax":11.71,
+ "elevmin":16.97,
+ "elevmax":18.53,
+ "bldgarea":1531.17,
+ "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_2":87156,
+ "Shape_Le_1":0.0020561500341,
+ "Shape_Ar_1":1.5164061838e-07,
+ "OBJECTID_3":87156,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87155,
+ "g_objectid":"939673",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182589",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004294960940000000",
+ "g_sup_tota":"442.2",
+ "g_geometry":"0.000930793",
+ "g_geomet_1":"5.0934e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0020561500341,
+ "Shape_Area":1.5164061838e-07,
+ "Shape_Le_3":0.00205614851471,
+ "Shape_Ar_2":1.5164061838e-07,
+ "building_height":5.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1233,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55113375603986,
+ 45.529868507575856
+ ],
+ [
+ -73.55112706598315,
+ 45.52986624847888
+ ],
+ [
+ -73.55100316638486,
+ 45.52982524928612
+ ],
+ [
+ -73.55094846602074,
+ 45.5298071486313
+ ],
+ [
+ -73.55090426614082,
+ 45.52979244921246
+ ],
+ [
+ -73.55090416631607,
+ 45.529792549037204
+ ],
+ [
+ -73.5508123797094,
+ 45.529894632881295
+ ],
+ [
+ -73.5510246619804,
+ 45.52998926044631
+ ],
+ [
+ -73.55113375603986,
+ 45.529868507575856
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1233,
+ "ID_UEV":"01018536",
+ "CIVIQUE_DE":" 1710",
+ "CIVIQUE_FI":" 1710",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-1726-5-000-0000",
+ "SUPERFICIE":525,
+ "SUPERFIC_1":533,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000774340571029,
+ "OBJECTID":87158,
+ "Join_Count":1,
+ "TARGET_FID":87158,
+ "feature_id":"0c20d427-173b-46d3-941e-098156230256",
+ "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.82,
+ "heightmax":31.46,
+ "elevmin":19.64,
+ "elevmax":20.59,
+ "bldgarea":933.55,
+ "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_2":87158,
+ "Shape_Le_1":0.000774340571029,
+ "Shape_Ar_1":3.31967608981e-08,
+ "OBJECTID_3":87158,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87157,
+ "g_objectid":"940578",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424098",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383172650000000",
+ "g_sup_tota":"524.6",
+ "g_geometry":"0.00100715",
+ "g_geomet_1":"6.02654e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000774340571029,
+ "Shape_Area":3.31967608981e-08,
+ "Shape_Le_3":0.000774340330841,
+ "Shape_Ar_2":3.31967608981e-08,
+ "building_height":14.32
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1234,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56564214718918,
+ 45.511117365923994
+ ],
+ [
+ -73.56564256987055,
+ 45.51111754488908
+ ],
+ [
+ -73.56564277041936,
+ 45.51111754488908
+ ],
+ [
+ -73.56565062150082,
+ 45.51110831784489
+ ],
+ [
+ -73.56564990294251,
+ 45.511107991390986
+ ],
+ [
+ -73.56564214718918,
+ 45.511117365923994
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1234,
+ "ID_UEV":"01020658",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Dominique (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-62-6957-1-000-0000",
+ "SUPERFICIE":260,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":2.57240409872e-05,
+ "OBJECTID":87159,
+ "Join_Count":1,
+ "TARGET_FID":87159,
+ "feature_id":"bd1c8d00-2974-4f0c-899a-26a94a7dbbc3",
+ "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":15.01,
+ "elevmin":23.74,
+ "elevmax":25.44,
+ "bldgarea":2608.11,
+ "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_2":87159,
+ "Shape_Le_1":2.57240409872e-05,
+ "Shape_Ar_1":8.20181289831e-12,
+ "OBJECTID_3":87159,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87158,
+ "g_objectid":"945446",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2161330",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994162695710000000",
+ "g_sup_tota":"586.2",
+ "g_geometry":"0.00119518",
+ "g_geomet_1":"6.72794e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":2.57240409872e-05,
+ "Shape_Area":8.20181289831e-12,
+ "Shape_Le_3":2.57258796949e-05,
+ "Shape_Ar_2":8.20181289831e-12,
+ "building_height":7.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1235,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55035778770359,
+ 45.530838654830355
+ ],
+ [
+ -73.5503830721429,
+ 45.5308499521139
+ ],
+ [
+ -73.55040366571845,
+ 45.530824748613554
+ ],
+ [
+ -73.55038166650255,
+ 45.53081604857208
+ ],
+ [
+ -73.55037686592146,
+ 45.530814249028666
+ ],
+ [
+ -73.55035778770359,
+ 45.530838654830355
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5506131843728,
+ 45.530744292565345
+ ],
+ [
+ -73.55056706623895,
+ 45.53073024875227
+ ],
+ [
+ -73.55046766597185,
+ 45.530699948793895
+ ],
+ [
+ -73.5504675661471,
+ 45.530699948793895
+ ],
+ [
+ -73.55038996634572,
+ 45.530778849014965
+ ],
+ [
+ -73.55039496567697,
+ 45.530781248406186
+ ],
+ [
+ -73.55052348599193,
+ 45.53084364786635
+ ],
+ [
+ -73.5506131843728,
+ 45.530744292565345
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1235,
+ "ID_UEV":"01018787",
+ "CIVIQUE_DE":" 1731",
+ "CIVIQUE_FI":" 1731",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-84-5630-3-000-0000",
+ "SUPERFICIE":286,
+ "SUPERFIC_1":434,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000665160773321,
+ "OBJECTID":87162,
+ "Join_Count":2,
+ "TARGET_FID":87162,
+ "feature_id":"69c1d881-37d5-4dc7-80eb-0ac481fa908d",
+ "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.51,
+ "heightmax":33.93,
+ "elevmin":21.34,
+ "elevmax":22.63,
+ "bldgarea":601.58,
+ "comment":" ",
+ "OBJECTID_2":87162,
+ "Shape_Le_1":0.000665160773321,
+ "Shape_Ar_1":1.78672516852e-08,
+ "OBJECTID_3":87162,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87161,
+ "g_objectid":"940670",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424246",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004384563030000000",
+ "g_sup_tota":"286.3",
+ "g_geometry":"0.000759063",
+ "g_geomet_1":"3.29799e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000665160773321,
+ "Shape_Area":1.78672516852e-08,
+ "Shape_Le_3":0.000665161313557,
+ "Shape_Ar_2":1.78672516852e-08,
+ "building_height":15.71
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1236,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55094491100068,
+ 45.53218283012381
+ ],
+ [
+ -73.55101844136982,
+ 45.532213965552366
+ ],
+ [
+ -73.55108662526939,
+ 45.53213442591332
+ ],
+ [
+ -73.55101300856533,
+ 45.532103392108155
+ ],
+ [
+ -73.55094491100068,
+ 45.53218283012381
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1236,
+ "ID_UEV":"01019034",
+ "CIVIQUE_DE":" 1866",
+ "CIVIQUE_FI":" 1870",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-85-1177-6-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":202,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000369137151939,
+ "OBJECTID":87165,
+ "Join_Count":1,
+ "TARGET_FID":87165,
+ "feature_id":"bdf1f075-d706-43d6-bd43-be32017d6e46",
+ "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.7,
+ "heightmax":35.59,
+ "elevmin":20.02,
+ "elevmax":23.88,
+ "bldgarea":1603.76,
+ "comment":" ",
+ "OBJECTID_2":87165,
+ "Shape_Le_1":0.000369137151939,
+ "Shape_Ar_1":7.96643138001e-09,
+ "OBJECTID_3":87165,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87164,
+ "g_objectid":"941216",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425165",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004385177400000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000655306",
+ "g_geomet_1":"1.88928e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000369137151939,
+ "Shape_Area":7.96643138001e-09,
+ "Shape_Le_3":0.000369136960632,
+ "Shape_Ar_2":7.96643138001e-09,
+ "building_height":16.445
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1237,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54873776515758,
+ 45.52712834884452
+ ],
+ [
+ -73.54875216510219,
+ 45.52711184898294
+ ],
+ [
+ -73.54877726518049,
+ 45.527081148826255
+ ],
+ [
+ -73.54881456546167,
+ 45.52709674846646
+ ],
+ [
+ -73.54883756472368,
+ 45.52706924899694
+ ],
+ [
+ -73.54887936521239,
+ 45.52701974851288
+ ],
+ [
+ -73.54888456509245,
+ 45.52702214880342
+ ],
+ [
+ -73.54891166526299,
+ 45.526994648434574
+ ],
+ [
+ -73.54863896473827,
+ 45.52686174842125
+ ],
+ [
+ -73.54858796508437,
+ 45.52691344864703
+ ],
+ [
+ -73.54853596538435,
+ 45.52696614891893
+ ],
+ [
+ -73.54853486551347,
+ 45.526967248789795
+ ],
+ [
+ -73.54854316535665,
+ 45.526970848775946
+ ],
+ [
+ -73.54849656518618,
+ 45.52702414889565
+ ],
+ [
+ -73.54873776515758,
+ 45.52712834884452
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54862997151781,
+ 45.52680963810461
+ ],
+ [
+ -73.54862796513034,
+ 45.52681174881345
+ ],
+ [
+ -73.54875976527279,
+ 45.526873649149884
+ ],
+ [
+ -73.54876016547111,
+ 45.526873848799376
+ ],
+ [
+ -73.54876286433657,
+ 45.52687069757493
+ ],
+ [
+ -73.54862997151781,
+ 45.52680963810461
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1237,
+ "ID_UEV":"01019432",
+ "CIVIQUE_DE":" 2265",
+ "CIVIQUE_FI":" 2265",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":27,
+ "ANNEE_CONS":1993,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-90-9410-3-000-0000",
+ "SUPERFICIE":1027,
+ "SUPERFIC_1":2323,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0013404943741,
+ "OBJECTID":87167,
+ "Join_Count":2,
+ "TARGET_FID":87167,
+ "feature_id":"05fa0802-0c52-4ca0-93a8-c8edb760c0b9",
+ "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,
+ "heightmax":39.62,
+ "elevmin":16.21,
+ "elevmax":20.76,
+ "bldgarea":3853.76,
+ "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_2":87167,
+ "Shape_Le_1":0.0013404943741,
+ "Shape_Ar_1":5.8798306795e-08,
+ "OBJECTID_3":87167,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87166,
+ "g_objectid":"940888",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424586",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"27",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004390941030000000",
+ "g_sup_tota":"1026.5",
+ "g_geometry":"0.00150927",
+ "g_geomet_1":"1.19557e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0013404943741,
+ "Shape_Area":5.8798306795e-08,
+ "Shape_Le_3":0.00134049497239,
+ "Shape_Ar_2":5.8798306795e-08,
+ "building_height":19.81
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1238,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55249229710367,
+ 45.53205972462688
+ ],
+ [
+ -73.55254267802401,
+ 45.53208114018277
+ ],
+ [
+ -73.55266898240946,
+ 45.53213326848585
+ ],
+ [
+ -73.55274871900002,
+ 45.53204112304969
+ ],
+ [
+ -73.55257016939964,
+ 45.53196852078091
+ ],
+ [
+ -73.55249229710367,
+ 45.53205972462688
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1238,
+ "ID_UEV":"01018883",
+ "CIVIQUE_DE":" 1930",
+ "CIVIQUE_FI":" 1934",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-65-8766-1-000-0000",
+ "SUPERFICIE":376,
+ "SUPERFIC_1":433,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000625910350989,
+ "OBJECTID":87168,
+ "Join_Count":1,
+ "TARGET_FID":87168,
+ "feature_id":"ff7aa814-6953-43ee-98e8-97f6e35cfc2d",
+ "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.5,
+ "heightmax":30.71,
+ "elevmin":18.79,
+ "elevmax":19.83,
+ "bldgarea":896.14,
+ "comment":" ",
+ "OBJECTID_2":87168,
+ "Shape_Le_1":0.000625910350989,
+ "Shape_Ar_1":2.20808100441e-08,
+ "OBJECTID_3":87168,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87167,
+ "g_objectid":"941281",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425260",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004365876610000000",
+ "g_sup_tota":"376.2",
+ "g_geometry":"0.0008572",
+ "g_geomet_1":"4.33311e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000625910350989,
+ "Shape_Area":2.20808100441e-08,
+ "Shape_Le_3":0.000625909697454,
+ "Shape_Ar_2":2.20808100441e-08,
+ "building_height":14.105
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1239,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55266898240946,
+ 45.53213326848585
+ ],
+ [
+ -73.5527817151259,
+ 45.532179795811224
+ ],
+ [
+ -73.55288586651137,
+ 45.53205943684383
+ ],
+ [
+ -73.55277756745262,
+ 45.5320130498127
+ ],
+ [
+ -73.55277746672856,
+ 45.5320130498127
+ ],
+ [
+ -73.55275296739737,
+ 45.53204284974801
+ ],
+ [
+ -73.55274871900002,
+ 45.53204112304969
+ ],
+ [
+ -73.55266898240946,
+ 45.53213326848585
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1239,
+ "ID_UEV":"01018884",
+ "CIVIQUE_DE":" 1940",
+ "CIVIQUE_FI":" 1948",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-65-7674-8-000-0000",
+ "SUPERFICIE":245,
+ "SUPERFIC_1":347,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000564057799362,
+ "OBJECTID":87169,
+ "Join_Count":1,
+ "TARGET_FID":87169,
+ "feature_id":"ff7aa814-6953-43ee-98e8-97f6e35cfc2d",
+ "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.5,
+ "heightmax":30.71,
+ "elevmin":18.79,
+ "elevmax":19.83,
+ "bldgarea":896.14,
+ "comment":" ",
+ "OBJECTID_2":87169,
+ "Shape_Le_1":0.000564057799362,
+ "Shape_Ar_1":1.83622355027e-08,
+ "OBJECTID_3":87169,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87168,
+ "g_objectid":"941281",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425260",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004365876610000000",
+ "g_sup_tota":"376.2",
+ "g_geometry":"0.0008572",
+ "g_geomet_1":"4.33311e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000564057799362,
+ "Shape_Area":1.83622355027e-08,
+ "Shape_Le_3":0.000564057764818,
+ "Shape_Ar_2":1.83622355027e-08,
+ "building_height":14.105
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1240,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5607423807781,
+ 45.507154663407285
+ ],
+ [
+ -73.5609363753353,
+ 45.50723878779012
+ ],
+ [
+ -73.56095128789346,
+ 45.507245254814954
+ ],
+ [
+ -73.56104447294591,
+ 45.507153796460834
+ ],
+ [
+ -73.56100985714104,
+ 45.507138237290114
+ ],
+ [
+ -73.5610088112295,
+ 45.50713242047512
+ ],
+ [
+ -73.56099456776694,
+ 45.50712524478451
+ ],
+ [
+ -73.56088196815016,
+ 45.50706864505222
+ ],
+ [
+ -73.56082936770301,
+ 45.50704204490474
+ ],
+ [
+ -73.56082746833484,
+ 45.50704134523219
+ ],
+ [
+ -73.5607423807781,
+ 45.507154663407285
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1240,
+ "ID_UEV":"01058940",
+ "CIVIQUE_DE":" 81",
+ "CIVIQUE_FI":" 85",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1918,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-08-3906-4-000-0000",
+ "SUPERFICIE":410,
+ "SUPERFIC_1":1005,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000746782461586,
+ "OBJECTID":87171,
+ "Join_Count":1,
+ "TARGET_FID":87171,
+ "feature_id":"4fb6c05e-56f1-4751-a346-6c8680ff141c",
+ "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.96,
+ "heightmax":15.37,
+ "elevmin":17.88,
+ "elevmax":19.89,
+ "bldgarea":2021.11,
+ "comment":" ",
+ "OBJECTID_2":87171,
+ "Shape_Le_1":0.000746782461586,
+ "Shape_Ar_1":3.1089430165e-08,
+ "OBJECTID_3":87171,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87170,
+ "g_objectid":"944729",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004008390640000000",
+ "g_sup_tota":"410.1",
+ "g_geometry":"0.000979166",
+ "g_geomet_1":"4.70909e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000746782461586,
+ "Shape_Area":3.1089430165e-08,
+ "Shape_Le_3":0.000746782528996,
+ "Shape_Ar_2":3.1089430165e-08,
+ "building_height":7.205
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1241,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56068972727094,
+ 45.507224790741795
+ ],
+ [
+ -73.56097453177107,
+ 45.50734328811255
+ ],
+ [
+ -73.56103116837556,
+ 45.50728794473316
+ ],
+ [
+ -73.56094966821446,
+ 45.50724684481633
+ ],
+ [
+ -73.56095128789346,
+ 45.507245254814954
+ ],
+ [
+ -73.5609363753353,
+ 45.50723878779012
+ ],
+ [
+ -73.5607423807781,
+ 45.507154663407285
+ ],
+ [
+ -73.56068972727094,
+ 45.507224790741795
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1241,
+ "ID_UEV":"01058941",
+ "CIVIQUE_DE":" 75",
+ "CIVIQUE_FI":" 79",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-08-4416-3-000-0000",
+ "SUPERFICIE":252,
+ "SUPERFIC_1":668,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000796603333964,
+ "OBJECTID":87172,
+ "Join_Count":1,
+ "TARGET_FID":87172,
+ "feature_id":"4fb6c05e-56f1-4751-a346-6c8680ff141c",
+ "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.96,
+ "heightmax":15.37,
+ "elevmin":17.88,
+ "elevmax":19.89,
+ "bldgarea":2021.11,
+ "comment":" ",
+ "OBJECTID_2":87172,
+ "Shape_Le_1":0.000796603333964,
+ "Shape_Ar_1":2.56141923388e-08,
+ "OBJECTID_3":87172,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87171,
+ "g_objectid":"944729",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004008390640000000",
+ "g_sup_tota":"410.1",
+ "g_geometry":"0.000979166",
+ "g_geomet_1":"4.70909e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000796603333964,
+ "Shape_Area":2.56141923388e-08,
+ "Shape_Le_3":0.000796603830135,
+ "Shape_Ar_2":2.56141923388e-08,
+ "building_height":7.205
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1242,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56163995903873,
+ 45.51174853981356
+ ],
+ [
+ -73.56164749715612,
+ 45.5117519518414
+ ],
+ [
+ -73.56170068575989,
+ 45.51169641870506
+ ],
+ [
+ -73.5616579679627,
+ 45.511677445707846
+ ],
+ [
+ -73.56173866772718,
+ 45.5115878462524
+ ],
+ [
+ -73.56174166786552,
+ 45.51158454574049
+ ],
+ [
+ -73.56165681053523,
+ 45.51154574898742
+ ],
+ [
+ -73.56153935637803,
+ 45.511668474071115
+ ],
+ [
+ -73.5615443682998,
+ 45.51167084558335
+ ],
+ [
+ -73.56152136004458,
+ 45.51169483859622
+ ],
+ [
+ -73.56157109345304,
+ 45.511717357620256
+ ],
+ [
+ -73.56163995903873,
+ 45.51174853981356
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1242,
+ "ID_UEV":"01020871",
+ "CIVIQUE_DE":" 1251",
+ "CIVIQUE_FI":" 1253",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres immeubles r\u00c3\u00a9sidentiels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-93-8204-1-000-0000",
+ "SUPERFICIE":249,
+ "SUPERFIC_1":183,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000689113294452,
+ "OBJECTID":87173,
+ "Join_Count":1,
+ "TARGET_FID":87173,
+ "feature_id":"41c9ccad-a221-4157-8eb1-d0423cb65ce8",
+ "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.67,
+ "heightmax":42.54,
+ "elevmin":23.62,
+ "elevmax":26.38,
+ "bldgarea":3241.86,
+ "comment":" ",
+ "OBJECTID_2":87173,
+ "Shape_Le_1":0.000689113294452,
+ "Shape_Ar_1":2.16149921119e-08,
+ "OBJECTID_3":87173,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87172,
+ "g_objectid":"943315",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161716",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1990",
+ "g_nb_logem":"1",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994193820410000000",
+ "g_sup_tota":"249",
+ "g_geometry":"0.000713786",
+ "g_geomet_1":"2.8917e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000689113294452,
+ "Shape_Area":2.16149921119e-08,
+ "Shape_Le_3":0.000689112408886,
+ "Shape_Ar_2":2.16149921119e-08,
+ "building_height":20.935
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1243,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56080861045086,
+ 45.535089914718085
+ ],
+ [
+ -73.5608247703687,
+ 45.53509774961175
+ ],
+ [
+ -73.56076806991234,
+ 45.535156249611525
+ ],
+ [
+ -73.56077567008295,
+ 45.535159649948184
+ ],
+ [
+ -73.56082306975071,
+ 45.53518024981897
+ ],
+ [
+ -73.5607834878895,
+ 45.53522528516907
+ ],
+ [
+ -73.56085352619112,
+ 45.53525498258168
+ ],
+ [
+ -73.56096941642727,
+ 45.53509548961545
+ ],
+ [
+ -73.56099016108891,
+ 45.53506230193398
+ ],
+ [
+ -73.56096466980551,
+ 45.535047750003955
+ ],
+ [
+ -73.56097347057106,
+ 45.53504024965809
+ ],
+ [
+ -73.56093336980102,
+ 45.53501724949676
+ ],
+ [
+ -73.56093267012847,
+ 45.53501685019777
+ ],
+ [
+ -73.56092397008699,
+ 45.53502634973655
+ ],
+ [
+ -73.56088357433933,
+ 45.535008174438
+ ],
+ [
+ -73.56080861045086,
+ 45.535089914718085
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1243,
+ "ID_UEV":"01023314",
+ "CIVIQUE_DE":" 2619",
+ "CIVIQUE_FI":" 2629",
+ "NOM_RUE":"rue Chapleau (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-4613-7-000-0000",
+ "SUPERFICIE":333,
+ "SUPERFIC_1":523,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000787794193072,
+ "OBJECTID":87175,
+ "Join_Count":1,
+ "TARGET_FID":87175,
+ "feature_id":"51400be0-ba4f-4c2c-8c00-6c8b36a42429",
+ "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.46,
+ "heightmax":52.45,
+ "elevmin":30.1,
+ "elevmax":40.83,
+ "bldgarea":2250.42,
+ "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_2":87175,
+ "Shape_Le_1":0.000787794193072,
+ "Shape_Ar_1":2.75667575206e-08,
+ "OBJECTID_3":87175,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87174,
+ "g_objectid":"941440",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425467",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004309461370000000",
+ "g_sup_tota":"332.8",
+ "g_geometry":"0.000838845",
+ "g_geomet_1":"3.7921e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000787794193072,
+ "Shape_Area":2.75667575206e-08,
+ "Shape_Le_3":0.000787795054934,
+ "Shape_Ar_2":2.75667575206e-08,
+ "building_height":24.995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1244,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54958724317858,
+ 45.53071628767683
+ ],
+ [
+ -73.54949046623388,
+ 45.530683048734005
+ ],
+ [
+ -73.54949046623388,
+ 45.53068314855875
+ ],
+ [
+ -73.54942576540859,
+ 45.53074794920878
+ ],
+ [
+ -73.54943156603579,
+ 45.53075054914882
+ ],
+ [
+ -73.54952082105089,
+ 45.53079044757139
+ ],
+ [
+ -73.54958724317858,
+ 45.53071628767683
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1244,
+ "ID_UEV":"01018833",
+ "CIVIQUE_DE":" 1660",
+ "CIVIQUE_FI":" 1662",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-3020-8-000-0000",
+ "SUPERFICIE":221,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000397678067413,
+ "OBJECTID":87176,
+ "Join_Count":1,
+ "TARGET_FID":87176,
+ "feature_id":"6f30f9af-b226-4124-b778-93c9694c9bb7",
+ "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":34.35,
+ "elevmin":22,
+ "elevmax":23.39,
+ "bldgarea":1398.34,
+ "comment":" ",
+ "OBJECTID_2":87176,
+ "Shape_Le_1":0.000397678067413,
+ "Shape_Ar_1":9.14889209124e-09,
+ "OBJECTID_3":87176,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87175,
+ "g_objectid":"940696",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424287",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394232450000000",
+ "g_sup_tota":"165.2",
+ "g_geometry":"0.00067005",
+ "g_geomet_1":"1.90768e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000397678067413,
+ "Shape_Area":9.14889209124e-09,
+ "Shape_Le_3":0.000397677577945,
+ "Shape_Ar_2":9.14889209124e-09,
+ "building_height":15.915000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1245,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55536602404462,
+ 45.49945202314265
+ ],
+ [
+ -73.55547280145048,
+ 45.49948839802145
+ ],
+ [
+ -73.55562806940172,
+ 45.49925656358983
+ ],
+ [
+ -73.55552780938274,
+ 45.4992187920639
+ ],
+ [
+ -73.55536602404462,
+ 45.49945202314265
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1245,
+ "ID_UEV":"01004125",
+ "CIVIQUE_DE":" 110",
+ "CIVIQUE_FI":" 110",
+ "NOM_RUE":"rue McGill (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0039-49-6237-7-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":1322,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000782817738073,
+ "OBJECTID":87178,
+ "Join_Count":1,
+ "TARGET_FID":87178,
+ "feature_id":"c234199c-2474-441f-8fcd-00a2c44a3657",
+ "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":25.29,
+ "elevmin":12.9,
+ "elevmax":13.97,
+ "bldgarea":2902.07,
+ "comment":" ",
+ "OBJECTID_2":87178,
+ "Shape_Le_1":0.000782817738073,
+ "Shape_Ar_1":2.99485477935e-08,
+ "OBJECTID_3":87178,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87177,
+ "g_objectid":"939499",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179972",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023003949693310000000",
+ "g_sup_tota":"235",
+ "g_geometry":"0.000775163",
+ "g_geomet_1":"2.64895e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000782817738073,
+ "Shape_Area":2.99485477935e-08,
+ "Shape_Le_3":0.000782818522745,
+ "Shape_Ar_2":2.99485477935e-08,
+ "building_height":12.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1246,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55666707234936,
+ 45.537761104441714
+ ],
+ [
+ -73.55680756354008,
+ 45.53781087382306
+ ],
+ [
+ -73.55684709413993,
+ 45.5377480462856
+ ],
+ [
+ -73.55665526155292,
+ 45.53768013488062
+ ],
+ [
+ -73.55665056799117,
+ 45.537687449966135
+ ],
+ [
+ -73.55665646844311,
+ 45.53768935023362
+ ],
+ [
+ -73.5567023680417,
+ 45.53770304960635
+ ],
+ [
+ -73.55666707234936,
+ 45.537761104441714
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1246,
+ "ID_UEV":"01025899",
+ "CIVIQUE_DE":" 2776",
+ "CIVIQUE_FI":" 2778",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-7004-6-000-0000",
+ "SUPERFICIE":148,
+ "SUPERFIC_1":161,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000557507425787,
+ "OBJECTID":87180,
+ "Join_Count":1,
+ "TARGET_FID":87180,
+ "feature_id":"b8745b4a-f98c-4834-a9bb-88a651a5c214",
+ "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.57,
+ "heightmax":37.82,
+ "elevmin":24,
+ "elevmax":25.79,
+ "bldgarea":848.63,
+ "comment":" ",
+ "OBJECTID_2":87180,
+ "Shape_Le_1":0.000557507425787,
+ "Shape_Ar_1":1.12198555753e-08,
+ "OBJECTID_3":87180,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87179,
+ "g_objectid":"943963",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361169",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431679860000000",
+ "g_sup_tota":"145.1",
+ "g_geometry":"0.000611501",
+ "g_geomet_1":"1.67061e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000557507425787,
+ "Shape_Area":1.12198555753e-08,
+ "Shape_Le_3":0.000557506897093,
+ "Shape_Ar_2":1.12198555753e-08,
+ "building_height":18.625
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1247,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55494486703383,
+ 45.52771254844565
+ ],
+ [
+ -73.55494176707074,
+ 45.52771594878231
+ ],
+ [
+ -73.55509506730536,
+ 45.52778374867136
+ ],
+ [
+ -73.55509996681187,
+ 45.52778594841308
+ ],
+ [
+ -73.55528666696794,
+ 45.5275803490042
+ ],
+ [
+ -73.55513306725909,
+ 45.52751144924428
+ ],
+ [
+ -73.55512816685327,
+ 45.52750924860324
+ ],
+ [
+ -73.55494486703383,
+ 45.52771254844565
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1247,
+ "ID_UEV":"01018313",
+ "CIVIQUE_DE":" 2120",
+ "CIVIQUE_FI":" 2130",
+ "NOM_RUE":"rue Disraeli (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-40-9781-2-000-0000",
+ "SUPERFICIE":789,
+ "SUPERFIC_1":1148,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000902765468201,
+ "OBJECTID":87182,
+ "Join_Count":1,
+ "TARGET_FID":87182,
+ "feature_id":"7798cebd-92bc-4c2d-a1a5-181feaa95ec4",
+ "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.54,
+ "heightmax":33.12,
+ "elevmin":22.32,
+ "elevmax":23.05,
+ "bldgarea":397.49,
+ "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_2":87182,
+ "Shape_Le_1":0.000902765468201,
+ "Shape_Ar_1":4.57987749991e-08,
+ "OBJECTID_3":87182,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87181,
+ "g_objectid":"940924",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424657",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004340978120000000",
+ "g_sup_tota":"788.6",
+ "g_geometry":"0.00126806",
+ "g_geomet_1":"9.05461e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000902765468201,
+ "Shape_Area":4.57987749991e-08,
+ "Shape_Le_3":0.000902765003995,
+ "Shape_Ar_2":4.57987749991e-08,
+ "building_height":15.29
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1248,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55484963602373,
+ 45.51924317408351
+ ],
+ [
+ -73.55517132621758,
+ 45.51939246963706
+ ],
+ [
+ -73.55522110189418,
+ 45.51933854628717
+ ],
+ [
+ -73.55489873630948,
+ 45.51919035869839
+ ],
+ [
+ -73.55484963602373,
+ 45.51924317408351
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1248,
+ "ID_UEV":"01022468",
+ "CIVIQUE_DE":" 1306",
+ "CIVIQUE_FI":" 1306",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-0053-4-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":625,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000854938837111,
+ "OBJECTID":87183,
+ "Join_Count":1,
+ "TARGET_FID":87183,
+ "feature_id":"db3ce713-c3b9-41d2-8b27-3868938324c4",
+ "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.45,
+ "heightmax":16.27,
+ "elevmin":18.63,
+ "elevmax":20.96,
+ "bldgarea":1812.53,
+ "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_2":87183,
+ "Shape_Le_1":0.000854938837111,
+ "Shape_Ar_1":2.45399556316e-08,
+ "OBJECTID_3":87183,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87182,
+ "g_objectid":"938277",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1566644",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251005340000000",
+ "g_sup_tota":"212.1",
+ "g_geometry":"0.000864009",
+ "g_geomet_1":"2.48553e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000854938837111,
+ "Shape_Area":2.45399556316e-08,
+ "Shape_Le_3":0.000854938473175,
+ "Shape_Ar_2":2.45399556316e-08,
+ "building_height":6.91
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1249,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55847182373752,
+ 45.533242685651715
+ ],
+ [
+ -73.55844366956154,
+ 45.533228249734236
+ ],
+ [
+ -73.55841836893443,
+ 45.53325254941592
+ ],
+ [
+ -73.55844814189008,
+ 45.53326813646562
+ ],
+ [
+ -73.55847182373752,
+ 45.533242685651715
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5584381648113,
+ 45.53315359161525
+ ],
+ [
+ -73.55844076924795,
+ 45.53315474994205
+ ],
+ [
+ -73.55842576945554,
+ 45.533171550177194
+ ],
+ [
+ -73.55842596910503,
+ 45.53317165000194
+ ],
+ [
+ -73.5585018709864,
+ 45.53321039369501
+ ],
+ [
+ -73.55860902251023,
+ 45.53309524090294
+ ],
+ [
+ -73.5585280151776,
+ 45.53305703050785
+ ],
+ [
+ -73.5584381648113,
+ 45.53315359161525
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1249,
+ "ID_UEV":"01023204",
+ "CIVIQUE_DE":" 2279",
+ "CIVIQUE_FI":" 2287",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-26-3296-6-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000624663761579,
+ "OBJECTID":87184,
+ "Join_Count":1,
+ "TARGET_FID":87184,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":87184,
+ "Shape_Le_1":0.000624663761579,
+ "Shape_Ar_1":1.43203844697e-08,
+ "OBJECTID_3":87184,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87183,
+ "g_objectid":"941338",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425344",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004326419000000000",
+ "g_sup_tota":"466.4",
+ "g_geometry":"0.000988956",
+ "g_geomet_1":"5.38114e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000624663761579,
+ "Shape_Area":1.43203844697e-08,
+ "Shape_Le_3":0.000624663900014,
+ "Shape_Ar_2":1.43203844697e-08,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1250,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5585280151776,
+ 45.53305703050785
+ ],
+ [
+ -73.55850006874502,
+ 45.53304385004394
+ ],
+ [
+ -73.55840326931727,
+ 45.53299815009485
+ ],
+ [
+ -73.55823876892589,
+ 45.53317284969755
+ ],
+ [
+ -73.55823876892589,
+ 45.533172949522296
+ ],
+ [
+ -73.55828076906408,
+ 45.533191650024925
+ ],
+ [
+ -73.5582502568657,
+ 45.53322538719216
+ ],
+ [
+ -73.55833044671459,
+ 45.53326223511436
+ ],
+ [
+ -73.55835576892544,
+ 45.53323394963736
+ ],
+ [
+ -73.5583387690408,
+ 45.53322645019082
+ ],
+ [
+ -73.55841376890216,
+ 45.53314275028799
+ ],
+ [
+ -73.5584381648113,
+ 45.53315359161525
+ ],
+ [
+ -73.5585280151776,
+ 45.53305703050785
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1250,
+ "ID_UEV":"01023207",
+ "CIVIQUE_DE":" 2269",
+ "CIVIQUE_FI":" 2277",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-26-4190-0-000-0000",
+ "SUPERFICIE":466,
+ "SUPERFIC_1":578,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000885242381909,
+ "OBJECTID":87185,
+ "Join_Count":1,
+ "TARGET_FID":87185,
+ "feature_id":"48b78c1f-c56c-426f-b682-8db882b1acaf",
+ "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.22,
+ "heightmax":43.99,
+ "elevmin":24.48,
+ "elevmax":31.84,
+ "bldgarea":2715.46,
+ "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_2":87185,
+ "Shape_Le_1":0.000885242381909,
+ "Shape_Ar_1":3.26291436931e-08,
+ "OBJECTID_3":87185,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87184,
+ "g_objectid":"941338",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425344",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004326419000000000",
+ "g_sup_tota":"466.4",
+ "g_geometry":"0.000988956",
+ "g_geomet_1":"5.38114e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000885242381909,
+ "Shape_Area":3.26291436931e-08,
+ "Shape_Le_3":0.000885242201115,
+ "Shape_Ar_2":3.26291436931e-08,
+ "building_height":20.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1251,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55916097332211,
+ 45.507622684989215
+ ],
+ [
+ -73.55934855211584,
+ 45.50770764484223
+ ],
+ [
+ -73.5594902448008,
+ 45.50777182046344
+ ],
+ [
+ -73.55962493356567,
+ 45.507832823276466
+ ],
+ [
+ -73.55971535050487,
+ 45.50773478907955
+ ],
+ [
+ -73.5597548882993,
+ 45.50769648245699
+ ],
+ [
+ -73.55987216978666,
+ 45.50757491659942
+ ],
+ [
+ -73.5593976613948,
+ 45.50736404266673
+ ],
+ [
+ -73.55916097332211,
+ 45.507622684989215
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1251,
+ "ID_UEV":"01058690",
+ "CIVIQUE_DE":" 980",
+ "CIVIQUE_FI":" 1006",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":6,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2010,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-18-4954-2-000-0000",
+ "SUPERFICIE":1524,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00173651362164,
+ "OBJECTID":87186,
+ "Join_Count":1,
+ "TARGET_FID":87186,
+ "feature_id":"42a97640-1a73-4856-a5b4-b32c962506ba",
+ "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":26.38,
+ "elevmin":16.09,
+ "elevmax":17.98,
+ "bldgarea":3386.31,
+ "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_2":87186,
+ "Shape_Le_1":0.00173651362164,
+ "Shape_Ar_1":1.7182366596e-07,
+ "OBJECTID_3":87186,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87185,
+ "g_objectid":"945225",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1180671",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9530",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004018733850000000",
+ "g_sup_tota":"607.8",
+ "g_geometry":"0.00113028",
+ "g_geomet_1":"7.05362e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00173651362164,
+ "Shape_Area":1.7182366596e-07,
+ "Shape_Le_3":0.00173651359652,
+ "Shape_Ar_2":1.7182366596e-07,
+ "building_height":12.695
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1252,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5561725387535,
+ 45.5283297828435
+ ],
+ [
+ -73.55633306773873,
+ 45.52840494907943
+ ],
+ [
+ -73.55638972322899,
+ 45.52835175957634
+ ],
+ [
+ -73.55639022505069,
+ 45.52835122627837
+ ],
+ [
+ -73.5563771677939,
+ 45.52834434916268
+ ],
+ [
+ -73.55652116813924,
+ 45.52820894903407
+ ],
+ [
+ -73.55637476840269,
+ 45.52813204890523
+ ],
+ [
+ -73.55637116841653,
+ 45.528135348517814
+ ],
+ [
+ -73.55631226821845,
+ 45.52819094910331
+ ],
+ [
+ -73.55630637316244,
+ 45.528187864428695
+ ],
+ [
+ -73.5561725387535,
+ 45.5283297828435
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1252,
+ "ID_UEV":"01018316",
+ "CIVIQUE_DE":" 1950",
+ "CIVIQUE_FI":" 1950",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":16,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-31-9851-2-000-0000",
+ "SUPERFICIE":437,
+ "SUPERFIC_1":1172,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000921086784981,
+ "OBJECTID":87191,
+ "Join_Count":1,
+ "TARGET_FID":87191,
+ "feature_id":"88bf8973-da9b-4981-93e8-5442a1ae2233",
+ "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.79,
+ "heightmax":38.52,
+ "elevmin":22.16,
+ "elevmax":24.12,
+ "bldgarea":1991.05,
+ "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_2":87191,
+ "Shape_Le_1":0.000921086784981,
+ "Shape_Ar_1":4.50735633233e-08,
+ "OBJECTID_3":87191,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87190,
+ "g_objectid":"940912",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424633",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"16",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004331985120000000",
+ "g_sup_tota":"436.6",
+ "g_geometry":"0.000955137",
+ "g_geomet_1":"5.11007e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000921086784981,
+ "Shape_Area":4.50735633233e-08,
+ "Shape_Le_3":0.00092108860622,
+ "Shape_Ar_2":4.50735633233e-08,
+ "building_height":17.865000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1253,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56579031229492,
+ 45.51118066200824
+ ],
+ [
+ -73.56566753774851,
+ 45.51132572265427
+ ],
+ [
+ -73.56580298014526,
+ 45.511387599608334
+ ],
+ [
+ -73.56580300622561,
+ 45.511387569930704
+ ],
+ [
+ -73.56580298014526,
+ 45.51138755823952
+ ],
+ [
+ -73.56592682398558,
+ 45.5112445381552
+ ],
+ [
+ -73.56592848863069,
+ 45.511242615404676
+ ],
+ [
+ -73.56579031229492,
+ 45.51118066200824
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1253,
+ "ID_UEV":"01020659",
+ "CIVIQUE_DE":" 1602",
+ "CIVIQUE_FI":" 1610",
+ "NOM_RUE":"rue Saint-Dominique (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-62-5864-0-000-0000",
+ "SUPERFICIE":245,
+ "SUPERFIC_1":505,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000682214708753,
+ "OBJECTID":87196,
+ "Join_Count":1,
+ "TARGET_FID":87196,
+ "feature_id":"bd1c8d00-2974-4f0c-899a-26a94a7dbbc3",
+ "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":15.01,
+ "elevmin":23.74,
+ "elevmax":25.44,
+ "bldgarea":2608.11,
+ "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_2":87196,
+ "Shape_Le_1":0.000682214708753,
+ "Shape_Ar_1":2.75283123663e-08,
+ "OBJECTID_3":87196,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87195,
+ "g_objectid":"943128",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161329",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994162586400000000",
+ "g_sup_tota":"559",
+ "g_geometry":"0.00118253",
+ "g_geomet_1":"6.42729e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000682214708753,
+ "Shape_Area":2.75283123663e-08,
+ "Shape_Le_3":0.000682214373216,
+ "Shape_Ar_2":2.75283123663e-08,
+ "building_height":7.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1254,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55468952971987,
+ 45.51959912664867
+ ],
+ [
+ -73.55489386378264,
+ 45.519693050044516
+ ],
+ [
+ -73.55493776149035,
+ 45.51964549479405
+ ],
+ [
+ -73.55473531330591,
+ 45.51955243744533
+ ],
+ [
+ -73.55468952971987,
+ 45.51959912664867
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1254,
+ "ID_UEV":"01022459",
+ "CIVIQUE_DE":" 1332",
+ "CIVIQUE_FI":" 1334",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1894,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-2287-6-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000577806327947,
+ "OBJECTID":87199,
+ "Join_Count":1,
+ "TARGET_FID":87199,
+ "feature_id":"db3ce713-c3b9-41d2-8b27-3868938324c4",
+ "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.45,
+ "heightmax":16.27,
+ "elevmin":18.63,
+ "elevmax":20.96,
+ "bldgarea":1812.53,
+ "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_2":87199,
+ "Shape_Le_1":0.000577806327947,
+ "Shape_Ar_1":1.37762823e-08,
+ "OBJECTID_3":87199,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87198,
+ "g_objectid":"941842",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566650",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251228760000000",
+ "g_sup_tota":"192",
+ "g_geometry":"0.000847212",
+ "g_geomet_1":"2.2088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000577806327947,
+ "Shape_Area":1.37762823e-08,
+ "Shape_Le_3":0.000577808083077,
+ "Shape_Ar_2":1.37762823e-08,
+ "building_height":6.91
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1255,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55283436233779,
+ 45.53008562280355
+ ],
+ [
+ -73.55297200267762,
+ 45.530149070873215
+ ],
+ [
+ -73.55297816753026,
+ 45.53014004887445
+ ],
+ [
+ -73.55300296723499,
+ 45.53014844854236
+ ],
+ [
+ -73.55300286741024,
+ 45.53014834871762
+ ],
+ [
+ -73.55304041770296,
+ 45.530098618906436
+ ],
+ [
+ -73.55288772541005,
+ 45.53002823166785
+ ],
+ [
+ -73.55283436233779,
+ 45.53008562280355
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1255,
+ "ID_UEV":"01018674",
+ "CIVIQUE_DE":" 2325",
+ "CIVIQUE_FI":" 2327",
+ "NOM_RUE":"rue Magnan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-6454-1-000-0000",
+ "SUPERFICIE":138,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000497629799255,
+ "OBJECTID":87203,
+ "Join_Count":1,
+ "TARGET_FID":87203,
+ "feature_id":"169d2f23-7343-456b-aad2-08507199d45f",
+ "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.54,
+ "heightmax":27.45,
+ "elevmin":17.88,
+ "elevmax":18.95,
+ "bldgarea":428.05,
+ "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_2":87203,
+ "Shape_Le_1":0.000497629799255,
+ "Shape_Ar_1":1.25198571965e-08,
+ "OBJECTID_3":87203,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87202,
+ "g_objectid":"940829",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424493",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363686170000000",
+ "g_sup_tota":"136.4",
+ "g_geometry":"0.000578639",
+ "g_geomet_1":"1.56559e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000497629799255,
+ "Shape_Area":1.25198571965e-08,
+ "Shape_Le_3":0.000497628104297,
+ "Shape_Ar_2":1.25198571965e-08,
+ "building_height":12.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1256,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56716002833448,
+ 45.51575653578579
+ ],
+ [
+ -73.56711506223218,
+ 45.51580552275696
+ ],
+ [
+ -73.56716090877077,
+ 45.5158263897264
+ ],
+ [
+ -73.56718036200594,
+ 45.51582543374707
+ ],
+ [
+ -73.56721888716376,
+ 45.51578315391971
+ ],
+ [
+ -73.56723536454228,
+ 45.51576506945269
+ ],
+ [
+ -73.5672979492628,
+ 45.51569707620939
+ ],
+ [
+ -73.567299340514,
+ 45.51569556444903
+ ],
+ [
+ -73.56736226967485,
+ 45.51562725014777
+ ],
+ [
+ -73.56736144949315,
+ 45.5156268760298
+ ],
+ [
+ -73.56735887023751,
+ 45.5156296459417
+ ],
+ [
+ -73.56721867042714,
+ 45.51578294617632
+ ],
+ [
+ -73.56716957014139,
+ 45.51576084623636
+ ],
+ [
+ -73.56716002833448,
+ 45.51575653578579
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1256,
+ "ID_UEV":"01021078",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Sanguinet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-57-4657-9-000-0000",
+ "SUPERFICIE":148,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000682101215362,
+ "OBJECTID":87207,
+ "Join_Count":1,
+ "TARGET_FID":87207,
+ "feature_id":"8e1da87e-3f79-40b6-947c-b870b1e48e84",
+ "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":25.2,
+ "elevmin":25.38,
+ "elevmax":42.64,
+ "bldgarea":8192.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_2":87207,
+ "Shape_Le_1":0.000682101215362,
+ "Shape_Ar_1":4.14415439921e-09,
+ "OBJECTID_3":87207,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87206,
+ "g_objectid":"943082",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161140",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1539",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994157276780000000",
+ "g_sup_tota":"448.4",
+ "g_geometry":"0.00138523",
+ "g_geomet_1":"5.20518e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000682101215362,
+ "Shape_Area":4.14415439921e-09,
+ "Shape_Le_3":0.000682100249116,
+ "Shape_Ar_2":4.14415439921e-09,
+ "building_height":12.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1257,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56683743432198,
+ 45.51566862525714
+ ],
+ [
+ -73.56691108789823,
+ 45.51570369881694
+ ],
+ [
+ -73.56705414485475,
+ 45.51554966923214
+ ],
+ [
+ -73.56707957048764,
+ 45.515521846006685
+ ],
+ [
+ -73.56708156968054,
+ 45.515519646264956
+ ],
+ [
+ -73.56701255210943,
+ 45.51548845867572
+ ],
+ [
+ -73.56683743432198,
+ 45.51566862525714
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1257,
+ "ID_UEV":"01021080",
+ "CIVIQUE_DE":" 2083",
+ "CIVIQUE_FI":" 2085",
+ "NOM_RUE":"rue Sanguinet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-57-6843-3-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":277,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000659443867504,
+ "OBJECTID":87208,
+ "Join_Count":1,
+ "TARGET_FID":87208,
+ "feature_id":"8e1da87e-3f79-40b6-947c-b870b1e48e84",
+ "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":25.2,
+ "elevmin":25.38,
+ "elevmax":42.64,
+ "bldgarea":8192.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_2":87208,
+ "Shape_Le_1":0.000659443867504,
+ "Shape_Ar_1":1.87514219766e-08,
+ "OBJECTID_3":87208,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87207,
+ "g_objectid":"943097",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161256",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994157684330000000",
+ "g_sup_tota":"174.8",
+ "g_geometry":"0.000698489",
+ "g_geomet_1":"2.01593e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000659443867504,
+ "Shape_Area":1.87514219766e-08,
+ "Shape_Le_3":0.00065944294186,
+ "Shape_Ar_2":1.87514219766e-08,
+ "building_height":12.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1258,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55201996686982,
+ 45.52999183070872
+ ],
+ [
+ -73.55193374436865,
+ 45.530083245895376
+ ],
+ [
+ -73.55205059418142,
+ 45.53013555855947
+ ],
+ [
+ -73.5521409328796,
+ 45.53004596989589
+ ],
+ [
+ -73.55201996686982,
+ 45.52999183070872
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1258,
+ "ID_UEV":"01019202",
+ "CIVIQUE_DE":" 2363",
+ "CIVIQUE_FI":" 2369",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-73-2954-3-000-0000",
+ "SUPERFICIE":293,
+ "SUPERFIC_1":242,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000513446265014,
+ "OBJECTID":87211,
+ "Join_Count":1,
+ "TARGET_FID":87211,
+ "feature_id":"3a8c55ac-ae15-45a4-8785-fdf662e6aaf7",
+ "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.57,
+ "heightmax":32.95,
+ "elevmin":18.56,
+ "elevmax":19.82,
+ "bldgarea":813.05,
+ "comment":" ",
+ "OBJECTID_2":87211,
+ "Shape_Le_1":0.000513446265014,
+ "Shape_Ar_1":1.546025632e-08,
+ "OBJECTID_3":87211,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87210,
+ "g_objectid":"940602",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424134",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004373214170000000",
+ "g_sup_tota":"451.5",
+ "g_geometry":"0.000962792",
+ "g_geomet_1":"5.24812e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000513446265014,
+ "Shape_Area":1.546025632e-08,
+ "Shape_Le_3":0.000513445384562,
+ "Shape_Ar_2":1.546025632e-08,
+ "building_height":15.190000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1259,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55146493228264,
+ 45.530810412520815
+ ],
+ [
+ -73.55160497291301,
+ 45.53087282816878
+ ],
+ [
+ -73.55165923800527,
+ 45.530812686006946
+ ],
+ [
+ -73.55170655673405,
+ 45.53076024114251
+ ],
+ [
+ -73.55143276623102,
+ 45.53063564906625
+ ],
+ [
+ -73.5514305664893,
+ 45.53063804845747
+ ],
+ [
+ -73.55132538897736,
+ 45.53074923793728
+ ],
+ [
+ -73.55146493228264,
+ 45.530810412520815
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1259,
+ "ID_UEV":"01019206",
+ "CIVIQUE_DE":" 2421",
+ "CIVIQUE_FI":" 2431",
+ "NOM_RUE":"rue La Fontaine (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":11,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-74-7627-8-000-0000",
+ "SUPERFICIE":432,
+ "SUPERFIC_1":913,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000914440659335,
+ "OBJECTID":87212,
+ "Join_Count":1,
+ "TARGET_FID":87212,
+ "feature_id":"12dcaefd-3554-4490-b1b3-7ddb4c1195d1",
+ "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.46,
+ "heightmax":33.5,
+ "elevmin":19.08,
+ "elevmax":21.19,
+ "bldgarea":1785.7,
+ "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_2":87212,
+ "Shape_Le_1":0.000914440659335,
+ "Shape_Ar_1":4.41799714546e-08,
+ "OBJECTID_3":87212,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87211,
+ "g_objectid":"940673",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424253",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004374774250000000",
+ "g_sup_tota":"150",
+ "g_geometry":"0.000544028",
+ "g_geomet_1":"1.72938e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000914440659335,
+ "Shape_Area":4.41799714546e-08,
+ "Shape_Le_3":0.000914440253781,
+ "Shape_Ar_2":4.41799714546e-08,
+ "building_height":15.52
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1260,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55401907793994,
+ 45.535151077610436
+ ],
+ [
+ -73.55409642323319,
+ 45.5351772811569
+ ],
+ [
+ -73.55417782087159,
+ 45.5350637957079
+ ],
+ [
+ -73.55411173239239,
+ 45.53502189989106
+ ],
+ [
+ -73.55401907793994,
+ 45.535151077610436
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1260,
+ "ID_UEV":"01024202",
+ "CIVIQUE_DE":" 2151",
+ "CIVIQUE_FI":" 2153",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1963,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-7512-3-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":182,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000458542053331,
+ "OBJECTID":87213,
+ "Join_Count":1,
+ "TARGET_FID":87213,
+ "feature_id":"8b831765-3f0f-47be-8339-507530d90cae",
+ "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.47,
+ "heightmax":29.15,
+ "elevmin":18.67,
+ "elevmax":20.2,
+ "bldgarea":753.78,
+ "comment":" ",
+ "OBJECTID_2":87213,
+ "Shape_Le_1":0.000458542053331,
+ "Shape_Ar_1":1.16647229725e-08,
+ "OBJECTID_3":87213,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87212,
+ "g_objectid":"941038",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424876",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359691590000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.0006569",
+ "g_geomet_1":"1.93056e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000458542053331,
+ "Shape_Area":1.16647229725e-08,
+ "Shape_Le_3":0.000458542158152,
+ "Shape_Ar_2":1.16647229725e-08,
+ "building_height":13.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1261,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5547542934977,
+ 45.519345730971004
+ ],
+ [
+ -73.55507657544544,
+ 45.51949511555743
+ ],
+ [
+ -73.55517132621758,
+ 45.51939246963706
+ ],
+ [
+ -73.55484963602373,
+ 45.51924317408351
+ ],
+ [
+ -73.5547542934977,
+ 45.519345730971004
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1261,
+ "ID_UEV":"01022466",
+ "CIVIQUE_DE":" 1310",
+ "CIVIQUE_FI":" 1316",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1911,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-0562-4-000-0000",
+ "SUPERFICIE":406,
+ "SUPERFIC_1":808,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000989588126749,
+ "OBJECTID":87215,
+ "Join_Count":1,
+ "TARGET_FID":87215,
+ "feature_id":"db3ce713-c3b9-41d2-8b27-3868938324c4",
+ "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.45,
+ "heightmax":16.27,
+ "elevmin":18.63,
+ "elevmax":20.96,
+ "bldgarea":1812.53,
+ "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_2":87215,
+ "Shape_Le_1":0.000989588126749,
+ "Shape_Ar_1":4.72306130696e-08,
+ "OBJECTID_3":87215,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87214,
+ "g_objectid":"938277",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1566644",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251005340000000",
+ "g_sup_tota":"212.1",
+ "g_geometry":"0.000864009",
+ "g_geomet_1":"2.48553e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000989588126749,
+ "Shape_Area":4.72306130696e-08,
+ "Shape_Le_3":0.000989587275224,
+ "Shape_Ar_2":4.72306130696e-08,
+ "building_height":6.91
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1262,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55852938214711,
+ 45.50918126765168
+ ],
+ [
+ -73.55863733586621,
+ 45.50923133021202
+ ],
+ [
+ -73.55885036727247,
+ 45.50932194500206
+ ],
+ [
+ -73.55901110669906,
+ 45.50913497864664
+ ],
+ [
+ -73.55885060289485,
+ 45.50906028185682
+ ],
+ [
+ -73.55867913995219,
+ 45.508982074113725
+ ],
+ [
+ -73.55867219988396,
+ 45.50899184165047
+ ],
+ [
+ -73.55867776668742,
+ 45.508994545012534
+ ],
+ [
+ -73.55868166704714,
+ 45.50899644528002
+ ],
+ [
+ -73.55869236718084,
+ 45.50900084476347
+ ],
+ [
+ -73.55861596707507,
+ 45.50909214483691
+ ],
+ [
+ -73.558603596001,
+ 45.50908702949311
+ ],
+ [
+ -73.55852938214711,
+ 45.50918126765168
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1262,
+ "ID_UEV":"01021494",
+ "CIVIQUE_DE":" 100",
+ "CIVIQUE_FI":" 100",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1980,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-20-0530-8-000-0000",
+ "SUPERFICIE":951,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00124902052102,
+ "OBJECTID":87217,
+ "Join_Count":1,
+ "TARGET_FID":87217,
+ "feature_id":"9696b5db-32ea-4790-bff7-f358b8431867",
+ "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":30.58,
+ "elevmin":14.81,
+ "elevmax":19.35,
+ "bldgarea":2483.76,
+ "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_2":87217,
+ "Shape_Le_1":0.00124902052102,
+ "Shape_Ar_1":8.4029131042e-08,
+ "OBJECTID_3":87217,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87216,
+ "g_objectid":"938449",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1180684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6513",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019949750000000",
+ "g_sup_tota":"2136.3",
+ "g_geometry":"0.0021317",
+ "g_geomet_1":"2.46017e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00124902052102,
+ "Shape_Area":8.4029131042e-08,
+ "Shape_Le_3":0.00124902063347,
+ "Shape_Ar_2":8.4029131042e-08,
+ "building_height":15.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1263,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55453669083745,
+ 45.51959770302187
+ ],
+ [
+ -73.55470798021096,
+ 45.51967673454396
+ ],
+ [
+ -73.55470615368789,
+ 45.51967869056941
+ ],
+ [
+ -73.5548473013837,
+ 45.519743492118764
+ ],
+ [
+ -73.55489386378264,
+ 45.519693050044516
+ ],
+ [
+ -73.55468952971987,
+ 45.51959912664867
+ ],
+ [
+ -73.55468666627847,
+ 45.51960204674735
+ ],
+ [
+ -73.55458196630654,
+ 45.51955134656769
+ ],
+ [
+ -73.55453669083745,
+ 45.51959770302187
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1263,
+ "ID_UEV":"01022457",
+ "CIVIQUE_DE":" 1336",
+ "CIVIQUE_FI":" 1340",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-2592-9-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":472,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000825381048143,
+ "OBJECTID":87218,
+ "Join_Count":1,
+ "TARGET_FID":87218,
+ "feature_id":"db3ce713-c3b9-41d2-8b27-3868938324c4",
+ "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.45,
+ "heightmax":16.27,
+ "elevmin":18.63,
+ "elevmax":20.96,
+ "bldgarea":1812.53,
+ "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_2":87218,
+ "Shape_Le_1":0.000825381048143,
+ "Shape_Ar_1":2.15946618745e-08,
+ "OBJECTID_3":87218,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87217,
+ "g_objectid":"941842",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566650",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251228760000000",
+ "g_sup_tota":"192",
+ "g_geometry":"0.000847212",
+ "g_geomet_1":"2.2088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000825381048143,
+ "Shape_Area":2.15946618745e-08,
+ "Shape_Le_3":0.000825382678438,
+ "Shape_Ar_2":2.15946618745e-08,
+ "building_height":6.91
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1264,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56188532197187,
+ 45.51071692119925
+ ],
+ [
+ -73.56196826554486,
+ 45.51075472869807
+ ],
+ [
+ -73.56208758489598,
+ 45.51061863609148
+ ],
+ [
+ -73.56208905528752,
+ 45.51061695885586
+ ],
+ [
+ -73.56200586709893,
+ 45.5105792269001
+ ],
+ [
+ -73.56188532197187,
+ 45.51071692119925
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1264,
+ "ID_UEV":"01020775",
+ "CIVIQUE_DE":" 1240",
+ "CIVIQUE_FI":" 1244",
+ "NOM_RUE":"rue De Bullion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-91-5696-5-000-0000",
+ "SUPERFICIE":147,
+ "SUPERFIC_1":299,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000548726941111,
+ "OBJECTID":87219,
+ "Join_Count":1,
+ "TARGET_FID":87219,
+ "feature_id":"3df84c3d-d79d-4463-b6b9-fcc5214b7250",
+ "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":23.3,
+ "elevmin":25.01,
+ "elevmax":25.87,
+ "bldgarea":1666.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_2":87219,
+ "Shape_Le_1":0.000548726941111,
+ "Shape_Ar_1":1.59984103844e-08,
+ "OBJECTID_3":87219,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87218,
+ "g_objectid":"943053",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160697",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"22",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994191449530000000",
+ "g_sup_tota":"437.6",
+ "g_geometry":"0.00100928",
+ "g_geomet_1":"5.06851e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000548726941111,
+ "Shape_Area":1.59984103844e-08,
+ "Shape_Le_3":0.000548727428574,
+ "Shape_Ar_2":1.59984103844e-08,
+ "building_height":11.4
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1265,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56220398504772,
+ 45.50508851147592
+ ],
+ [
+ -73.56232714900057,
+ 45.50514324151768
+ ],
+ [
+ -73.56236408595565,
+ 45.505096707897046
+ ],
+ [
+ -73.56223912156005,
+ 45.50504028982781
+ ],
+ [
+ -73.56220398504772,
+ 45.50508851147592
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1265,
+ "ID_UEV":"01058932",
+ "CIVIQUE_DE":" 263",
+ "CIVIQUE_FI":" 265",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-95-2878-5-000-0000",
+ "SUPERFICIE":131,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000390963609741,
+ "OBJECTID":87220,
+ "Join_Count":1,
+ "TARGET_FID":87220,
+ "feature_id":"24842e85-d082-4395-8441-bcc94726f0fa",
+ "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.63,
+ "heightmax":25.42,
+ "elevmin":17.8,
+ "elevmax":22.98,
+ "bldgarea":2050.27,
+ "comment":" ",
+ "OBJECTID_2":87220,
+ "Shape_Le_1":0.000390963609741,
+ "Shape_Ar_1":7.88062032894e-09,
+ "OBJECTID_3":87220,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87219,
+ "g_objectid":"939460",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179491",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994095267300000000",
+ "g_sup_tota":"133.7",
+ "g_geometry":"0.000658908",
+ "g_geomet_1":"1.55082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000390963609741,
+ "Shape_Area":7.88062032894e-09,
+ "Shape_Le_3":0.000390962753518,
+ "Shape_Ar_2":7.88062032894e-09,
+ "building_height":12.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1266,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56216790514655,
+ 45.50513802994642
+ ],
+ [
+ -73.56228931452209,
+ 45.50519090648544
+ ],
+ [
+ -73.56232714900057,
+ 45.50514324151768
+ ],
+ [
+ -73.56220398504772,
+ 45.50508851147592
+ ],
+ [
+ -73.56216790514655,
+ 45.50513802994642
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1266,
+ "ID_UEV":"01058933",
+ "CIVIQUE_DE":" 259",
+ "CIVIQUE_FI":" 261",
+ "NOM_RUE":"rue De La Gaucheti\u00c3\u00a8re Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-95-3183-9-000-0000",
+ "SUPERFICIE":131,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000389324812138,
+ "OBJECTID":87221,
+ "Join_Count":1,
+ "TARGET_FID":87221,
+ "feature_id":"24842e85-d082-4395-8441-bcc94726f0fa",
+ "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.63,
+ "heightmax":25.42,
+ "elevmin":17.8,
+ "elevmax":22.98,
+ "bldgarea":2050.27,
+ "comment":" ",
+ "OBJECTID_2":87221,
+ "Shape_Le_1":0.000389324812138,
+ "Shape_Ar_1":7.9305273162e-09,
+ "OBJECTID_3":87221,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87220,
+ "g_objectid":"939461",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179492",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994095287850000000",
+ "g_sup_tota":"131",
+ "g_geometry":"0.000652",
+ "g_geomet_1":"1.53517e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000389324812138,
+ "Shape_Area":7.9305273162e-09,
+ "Shape_Le_3":0.000389324918853,
+ "Shape_Ar_2":7.9305273162e-09,
+ "building_height":12.395000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1267,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55681606842866,
+ 45.53467166521547
+ ],
+ [
+ -73.55688957001948,
+ 45.53470283571759
+ ],
+ [
+ -73.55698630739401,
+ 45.53459016505437
+ ],
+ [
+ -73.55691986817922,
+ 45.53455684966917
+ ],
+ [
+ -73.55691936815616,
+ 45.53455665001968
+ ],
+ [
+ -73.55690996844214,
+ 45.53456995009342
+ ],
+ [
+ -73.55690492144682,
+ 45.5345681748317
+ ],
+ [
+ -73.55681606842866,
+ 45.53467166521547
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1267,
+ "ID_UEV":"01023694",
+ "CIVIQUE_DE":" 2300",
+ "CIVIQUE_FI":" 2304",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-5354-6-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":257,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000461239429555,
+ "OBJECTID":87224,
+ "Join_Count":1,
+ "TARGET_FID":87224,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":87224,
+ "Shape_Le_1":0.000461239429555,
+ "Shape_Ar_1":1.14243351299e-08,
+ "OBJECTID_3":87224,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87223,
+ "g_objectid":"941150",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425075",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338475890000000",
+ "g_sup_tota":"168.7",
+ "g_geometry":"0.000660023",
+ "g_geomet_1":"1.94377e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000461239429555,
+ "Shape_Area":1.14243351299e-08,
+ "Shape_Le_3":0.000461239383419,
+ "Shape_Ar_2":1.14243351299e-08,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1268,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56141987424964,
+ 45.53292402077723
+ ],
+ [
+ -73.5614238699375,
+ 45.5329259489237
+ ],
+ [
+ -73.56145607016336,
+ 45.532893549048346
+ ],
+ [
+ -73.56153390828509,
+ 45.53293177922853
+ ],
+ [
+ -73.56163948599533,
+ 45.532818427778516
+ ],
+ [
+ -73.56155095853175,
+ 45.532783286769565
+ ],
+ [
+ -73.56141987424964,
+ 45.53292402077723
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1268,
+ "ID_UEV":"01022788",
+ "CIVIQUE_DE":" 2479",
+ "CIVIQUE_FI":" 2479",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-96-9564-6-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000579312421322,
+ "OBJECTID":87226,
+ "Join_Count":1,
+ "TARGET_FID":87226,
+ "feature_id":"e063c498-c0d9-4b24-a6a3-e7968a466c1a",
+ "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":49.63,
+ "elevmin":34.63,
+ "elevmax":42.2,
+ "bldgarea":1208.36,
+ "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_2":87226,
+ "Shape_Le_1":0.000579312421322,
+ "Shape_Ar_1":1.36230819223e-08,
+ "OBJECTID_3":87226,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87225,
+ "g_objectid":"940422",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423870",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306016090000000",
+ "g_sup_tota":"198.1",
+ "g_geometry":"0.000699005",
+ "g_geomet_1":"2.27231e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000579312421322,
+ "Shape_Area":1.36230819223e-08,
+ "Shape_Le_3":0.000579312297684,
+ "Shape_Ar_2":1.36230819223e-08,
+ "building_height":24.295
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1269,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56382022324655,
+ 45.51048205605234
+ ],
+ [
+ -73.56396026927285,
+ 45.51054702667424
+ ],
+ [
+ -73.56426411152137,
+ 45.510205000110965
+ ],
+ [
+ -73.56412372285337,
+ 45.51014041349958
+ ],
+ [
+ -73.56382022324655,
+ 45.51048205605234
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1269,
+ "ID_UEV":"01020572",
+ "CIVIQUE_DE":" 1411",
+ "CIVIQUE_FI":" 1417",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-71-9559-3-000-0000",
+ "SUPERFICIE":599,
+ "SUPERFIC_1":1546,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0012233917013,
+ "OBJECTID":87227,
+ "Join_Count":1,
+ "TARGET_FID":87227,
+ "feature_id":"acb26695-afc6-44d8-9119-4ab31f0aec24",
+ "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":16.09,
+ "elevmin":23.38,
+ "elevmax":25.21,
+ "bldgarea":3553.78,
+ "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_2":87227,
+ "Shape_Le_1":0.0012233917013,
+ "Shape_Ar_1":6.76023599567e-08,
+ "OBJECTID_3":87227,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87226,
+ "g_objectid":"938300",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2160643",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994181124800000000",
+ "g_sup_tota":"1209.4",
+ "g_geometry":"0.00155725",
+ "g_geomet_1":"1.39436e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0012233917013,
+ "Shape_Area":6.76023599567e-08,
+ "Shape_Le_3":0.00122339241913,
+ "Shape_Ar_2":6.76023599567e-08,
+ "building_height":7.79
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1270,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56396026927285,
+ 45.51054702667424
+ ],
+ [
+ -73.56409704626351,
+ 45.510610481039166
+ ],
+ [
+ -73.5642225529503,
+ 45.51047198454474
+ ],
+ [
+ -73.56426101785354,
+ 45.51042954014146
+ ],
+ [
+ -73.5642617912705,
+ 45.51042868488619
+ ],
+ [
+ -73.56426449553189,
+ 45.51042568115056
+ ],
+ [
+ -73.56440477987853,
+ 45.51026971622472
+ ],
+ [
+ -73.56426411152137,
+ 45.510205000110965
+ ],
+ [
+ -73.56396026927285,
+ 45.51054702667424
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1270,
+ "ID_UEV":"01020574",
+ "CIVIQUE_DE":" 1421",
+ "CIVIQUE_FI":" 1427",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-71-8466-2-000-0000",
+ "SUPERFICIE":591,
+ "SUPERFIC_1":948,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00122226988362,
+ "OBJECTID":87228,
+ "Join_Count":1,
+ "TARGET_FID":87228,
+ "feature_id":"acb26695-afc6-44d8-9119-4ab31f0aec24",
+ "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":16.09,
+ "elevmin":23.38,
+ "elevmax":25.21,
+ "bldgarea":3553.78,
+ "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_2":87228,
+ "Shape_Le_1":0.00122226988362,
+ "Shape_Ar_1":6.70534300652e-08,
+ "OBJECTID_3":87228,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87227,
+ "g_objectid":"943044",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160641",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994171846620000000",
+ "g_sup_tota":"590.6",
+ "g_geometry":"0.00123961",
+ "g_geomet_1":"6.83625e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00122226988362,
+ "Shape_Area":6.70534300652e-08,
+ "Shape_Le_3":0.00122226893499,
+ "Shape_Ar_2":6.70534300652e-08,
+ "building_height":7.79
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1271,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55829170841746,
+ 45.535296614897156
+ ],
+ [
+ -73.55830706973732,
+ 45.535303930882
+ ],
+ [
+ -73.55836470908591,
+ 45.535328372656565
+ ],
+ [
+ -73.55845517728645,
+ 45.53522299999175
+ ],
+ [
+ -73.55844286916492,
+ 45.53521894944526
+ ],
+ [
+ -73.55841126878687,
+ 45.535208549685116
+ ],
+ [
+ -73.55841056911432,
+ 45.53520944990648
+ ],
+ [
+ -73.55839786888838,
+ 45.53522415022465
+ ],
+ [
+ -73.55836916882393,
+ 45.53521185019702
+ ],
+ [
+ -73.55840156869928,
+ 45.53517445009109
+ ],
+ [
+ -73.55840456883763,
+ 45.53517085010494
+ ],
+ [
+ -73.55840097874402,
+ 45.535169341941874
+ ],
+ [
+ -73.55829170841746,
+ 45.535296614897156
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1271,
+ "ID_UEV":"01023725",
+ "CIVIQUE_DE":" 2424",
+ "CIVIQUE_FI":" 2424",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-3824-9-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":76,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000542327166375,
+ "OBJECTID":87229,
+ "Join_Count":1,
+ "TARGET_FID":87229,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":87229,
+ "Shape_Le_1":0.000542327166375,
+ "Shape_Ar_1":9.8533366224e-09,
+ "OBJECTID_3":87229,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87228,
+ "g_objectid":"941136",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425058",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329322750000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654626",
+ "g_geomet_1":"1.88264e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000542327166375,
+ "Shape_Area":9.8533366224e-09,
+ "Shape_Le_3":0.000542327411003,
+ "Shape_Ar_2":9.8533366224e-09,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1272,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55836470908591,
+ 45.535328372656565
+ ],
+ [
+ -73.55843821427402,
+ 45.535359542259364
+ ],
+ [
+ -73.55853335625123,
+ 45.535248724199555
+ ],
+ [
+ -73.55845517728645,
+ 45.53522299999175
+ ],
+ [
+ -73.55836470908591,
+ 45.535328372656565
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1272,
+ "ID_UEV":"01023727",
+ "CIVIQUE_DE":" 2430",
+ "CIVIQUE_FI":" 2432",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-3227-5-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":152,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000447080707911,
+ "OBJECTID":87230,
+ "Join_Count":1,
+ "TARGET_FID":87230,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":87230,
+ "Shape_Le_1":0.000447080707911,
+ "Shape_Ar_1":1.08381563407e-08,
+ "OBJECTID_3":87230,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87229,
+ "g_objectid":"941136",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425058",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329322750000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654626",
+ "g_geomet_1":"1.88264e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000447080707911,
+ "Shape_Area":1.08381563407e-08,
+ "Shape_Le_3":0.000447081054817,
+ "Shape_Ar_2":1.08381563407e-08,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1273,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55898393368344,
+ 45.535418267089646
+ ],
+ [
+ -73.55898226903832,
+ 45.535417549430655
+ ],
+ [
+ -73.55903086930103,
+ 45.535361750094985
+ ],
+ [
+ -73.55896556952726,
+ 45.535333550053586
+ ],
+ [
+ -73.55895100770469,
+ 45.53532730965791
+ ],
+ [
+ -73.558787514554,
+ 45.53550675408373
+ ],
+ [
+ -73.55887103639107,
+ 45.53554218197641
+ ],
+ [
+ -73.55898393368344,
+ 45.535418267089646
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1273,
+ "ID_UEV":"01023734",
+ "CIVIQUE_DE":" 2500",
+ "CIVIQUE_FI":" 2504",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1933,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-9847-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":555,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000663895151582,
+ "OBJECTID":87231,
+ "Join_Count":1,
+ "TARGET_FID":87231,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":87231,
+ "Shape_Le_1":0.000663895151582,
+ "Shape_Ar_1":2.05670082045e-08,
+ "OBJECTID_3":87231,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87230,
+ "g_objectid":"941130",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425050",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319984750000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.00068135",
+ "g_geomet_1":"2.13954e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000663895151582,
+ "Shape_Area":2.05670082045e-08,
+ "Shape_Le_3":0.000663894469256,
+ "Shape_Ar_2":2.05670082045e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1274,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55727046348295,
+ 45.52029944761171
+ ],
+ [
+ -73.55736416744422,
+ 45.52034444698893
+ ],
+ [
+ -73.55740545891663,
+ 45.52036430222107
+ ],
+ [
+ -73.55748378986685,
+ 45.520280560050104
+ ],
+ [
+ -73.55747446749453,
+ 45.52027614707682
+ ],
+ [
+ -73.55734887896944,
+ 45.520216744157715
+ ],
+ [
+ -73.55727046348295,
+ 45.52029944761171
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1274,
+ "ID_UEV":"01021904",
+ "CIVIQUE_DE":" 1581",
+ "CIVIQUE_FI":" 1587",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-1967-4-000-0000",
+ "SUPERFICIE":253,
+ "SUPERFIC_1":370,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000527645470484,
+ "OBJECTID":87243,
+ "Join_Count":1,
+ "TARGET_FID":87243,
+ "feature_id":"0264c9fe-20ec-4849-a69c-40f7d4f525fd",
+ "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.41,
+ "heightmax":20.48,
+ "elevmin":25.55,
+ "elevmax":27.32,
+ "bldgarea":959.69,
+ "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_2":87243,
+ "Shape_Le_1":0.000527645470484,
+ "Shape_Ar_1":1.62723999876e-08,
+ "OBJECTID_3":87243,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87242,
+ "g_objectid":"942034",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567254",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232196740000000",
+ "g_sup_tota":"252.7",
+ "g_geometry":"0.000702878",
+ "g_geomet_1":"2.86744e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000527645470484,
+ "Shape_Area":1.62723999876e-08,
+ "Shape_Le_3":0.000527644426658,
+ "Shape_Ar_2":1.62723999876e-08,
+ "building_height":9.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1275,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56678778724843,
+ 45.51565085195555
+ ],
+ [
+ -73.56683372102125,
+ 45.515672444677875
+ ],
+ [
+ -73.56683743432198,
+ 45.51566862525714
+ ],
+ [
+ -73.56701255210943,
+ 45.51548845867572
+ ],
+ [
+ -73.56693370225041,
+ 45.51545282753626
+ ],
+ [
+ -73.56683576967687,
+ 45.51555642044274
+ ],
+ [
+ -73.56686067010568,
+ 45.515567145757466
+ ],
+ [
+ -73.56678778724843,
+ 45.51565085195555
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1275,
+ "ID_UEV":"01021082",
+ "CIVIQUE_DE":" 2077",
+ "CIVIQUE_FI":" 2079",
+ "NOM_RUE":"rue Sanguinet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-57-7339-1-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":326,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000674516010281,
+ "OBJECTID":87248,
+ "Join_Count":1,
+ "TARGET_FID":87248,
+ "feature_id":"8e1da87e-3f79-40b6-947c-b870b1e48e84",
+ "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":25.2,
+ "elevmin":25.38,
+ "elevmax":42.64,
+ "bldgarea":8192.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_2":87248,
+ "Shape_Le_1":0.000674516010281,
+ "Shape_Ar_1":1.72685851323e-08,
+ "OBJECTID_3":87248,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87247,
+ "g_objectid":"943097",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161256",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994157684330000000",
+ "g_sup_tota":"174.8",
+ "g_geometry":"0.000698489",
+ "g_geomet_1":"2.01593e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000674516010281,
+ "Shape_Area":1.72685851323e-08,
+ "Shape_Le_3":0.00067451657856,
+ "Shape_Ar_2":1.72685851323e-08,
+ "building_height":12.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1276,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55237697433974,
+ 45.52344873222351
+ ],
+ [
+ -73.5524503509248,
+ 45.523483097117534
+ ],
+ [
+ -73.55254237045588,
+ 45.52338560161452
+ ],
+ [
+ -73.55247226650374,
+ 45.52335404800121
+ ],
+ [
+ -73.55248506655442,
+ 45.523340048254916
+ ],
+ [
+ -73.55248147915879,
+ 45.52333847174337
+ ],
+ [
+ -73.55237697433974,
+ 45.52344873222351
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1276,
+ "ID_UEV":"01022103",
+ "CIVIQUE_DE":" 1426",
+ "CIVIQUE_FI":" 1428",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-76-0011-9-000-0000",
+ "SUPERFICIE":108,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000466769795101,
+ "OBJECTID":87259,
+ "Join_Count":1,
+ "TARGET_FID":87259,
+ "feature_id":"b8a758f8-893c-4dcd-8c57-8af00b5e8c32",
+ "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.69,
+ "heightmax":30.75,
+ "elevmin":17.28,
+ "elevmax":18.41,
+ "bldgarea":756.35,
+ "comment":" ",
+ "OBJECTID_2":87259,
+ "Shape_Le_1":0.000466769795101,
+ "Shape_Ar_1":1.03215148787e-08,
+ "OBJECTID_3":87259,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87258,
+ "g_objectid":"942393",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729293",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004276001190000000",
+ "g_sup_tota":"107.6",
+ "g_geometry":"0.000485453",
+ "g_geomet_1":"1.24261e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000466769795101,
+ "Shape_Area":1.03215148787e-08,
+ "Shape_Le_3":0.000466770541218,
+ "Shape_Ar_2":1.03215148787e-08,
+ "building_height":14.03
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1277,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55252372840918,
+ 45.523517462011554
+ ],
+ [
+ -73.55259678213763,
+ 45.52355167492016
+ ],
+ [
+ -73.55269084492839,
+ 45.523452432034404
+ ],
+ [
+ -73.55261690716638,
+ 45.52341915172277
+ ],
+ [
+ -73.55252372840918,
+ 45.523517462011554
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1277,
+ "ID_UEV":"01022104",
+ "CIVIQUE_DE":" 1438",
+ "CIVIQUE_FI":" 1440",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-66-8918-8-000-0000",
+ "SUPERFICIE":108,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000433939968457,
+ "OBJECTID":87260,
+ "Join_Count":1,
+ "TARGET_FID":87260,
+ "feature_id":"b8a758f8-893c-4dcd-8c57-8af00b5e8c32",
+ "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.69,
+ "heightmax":30.75,
+ "elevmin":17.28,
+ "elevmax":18.41,
+ "bldgarea":756.35,
+ "comment":" ",
+ "OBJECTID_2":87260,
+ "Shape_Le_1":0.000433939968457,
+ "Shape_Ar_1":1.04190587243e-08,
+ "OBJECTID_3":87260,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87259,
+ "g_objectid":"942389",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729288",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004266891880000000",
+ "g_sup_tota":"107.5",
+ "g_geometry":"0.0004848",
+ "g_geomet_1":"1.2383e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000433939968457,
+ "Shape_Area":1.04190587243e-08,
+ "Shape_Le_3":0.00043393941036,
+ "Shape_Ar_2":1.04190587243e-08,
+ "building_height":14.03
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1278,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5524503509248,
+ 45.523483097117534
+ ],
+ [
+ -73.55252372840918,
+ 45.523517462011554
+ ],
+ [
+ -73.55261690716638,
+ 45.52341915172277
+ ],
+ [
+ -73.55254237045588,
+ 45.52338560161452
+ ],
+ [
+ -73.5524503509248,
+ 45.523483097117534
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1278,
+ "ID_UEV":"01022105",
+ "CIVIQUE_DE":" 1432",
+ "CIVIQUE_FI":" 1434",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-66-9514-4-000-0000",
+ "SUPERFICIE":108,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000432279499408,
+ "OBJECTID":87261,
+ "Join_Count":1,
+ "TARGET_FID":87261,
+ "feature_id":"b8a758f8-893c-4dcd-8c57-8af00b5e8c32",
+ "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.69,
+ "heightmax":30.75,
+ "elevmin":17.28,
+ "elevmax":18.41,
+ "bldgarea":756.35,
+ "comment":" ",
+ "OBJECTID_2":87261,
+ "Shape_Le_1":0.000432279499408,
+ "Shape_Ar_1":1.03850057321e-08,
+ "OBJECTID_3":87261,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87260,
+ "g_objectid":"942389",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729288",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004266891880000000",
+ "g_sup_tota":"107.5",
+ "g_geometry":"0.0004848",
+ "g_geomet_1":"1.2383e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000432279499408,
+ "Shape_Area":1.03850057321e-08,
+ "Shape_Le_3":0.000432280446475,
+ "Shape_Ar_2":1.03850057321e-08,
+ "building_height":14.03
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1279,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55259678213763,
+ 45.52355167492016
+ ],
+ [
+ -73.55266983586608,
+ 45.52358588782876
+ ],
+ [
+ -73.55276591403755,
+ 45.52348451714705
+ ],
+ [
+ -73.55276176636427,
+ 45.52348284800533
+ ],
+ [
+ -73.55276866596301,
+ 45.52347454816216
+ ],
+ [
+ -73.55276256586157,
+ 45.52347194822213
+ ],
+ [
+ -73.5527139664982,
+ 45.52345004793166
+ ],
+ [
+ -73.55270576647979,
+ 45.52345914817145
+ ],
+ [
+ -73.55269084492839,
+ 45.523452432034404
+ ],
+ [
+ -73.55259678213763,
+ 45.52355167492016
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1279,
+ "ID_UEV":"01022106",
+ "CIVIQUE_DE":" 1444",
+ "CIVIQUE_FI":" 1446",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-66-8322-3-000-0000",
+ "SUPERFICIE":107,
+ "SUPERFIC_1":166,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000460887636535,
+ "OBJECTID":87262,
+ "Join_Count":1,
+ "TARGET_FID":87262,
+ "feature_id":"b8a758f8-893c-4dcd-8c57-8af00b5e8c32",
+ "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.69,
+ "heightmax":30.75,
+ "elevmin":17.28,
+ "elevmax":18.41,
+ "bldgarea":756.35,
+ "comment":" ",
+ "OBJECTID_2":87262,
+ "Shape_Le_1":0.000460887636535,
+ "Shape_Ar_1":1.12251305253e-08,
+ "OBJECTID_3":87262,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87261,
+ "g_objectid":"942389",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729288",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004266891880000000",
+ "g_sup_tota":"107.5",
+ "g_geometry":"0.0004848",
+ "g_geomet_1":"1.2383e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000460887636535,
+ "Shape_Area":1.12251305253e-08,
+ "Shape_Le_3":0.000460886742774,
+ "Shape_Ar_2":1.12251305253e-08,
+ "building_height":14.03
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1280,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54942805148524,
+ 45.53830412408635
+ ],
+ [
+ -73.54955478035068,
+ 45.538348976874076
+ ],
+ [
+ -73.5495663663166,
+ 45.53833285113047
+ ],
+ [
+ -73.54958998611082,
+ 45.538300024077145
+ ],
+ [
+ -73.54946209082468,
+ 45.538254760299246
+ ],
+ [
+ -73.5494601662755,
+ 45.53825755089555
+ ],
+ [
+ -73.54942805148524,
+ 45.53830412408635
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1280,
+ "ID_UEV":"01025673",
+ "CIVIQUE_DE":" 3000",
+ "CIVIQUE_FI":" 3000",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-92-3565-4-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00039036161465,
+ "OBJECTID":87269,
+ "Join_Count":1,
+ "TARGET_FID":87269,
+ "feature_id":"7036df54-0c1b-43f8-967d-1f9df7dc5bb2",
+ "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":32.36,
+ "elevmin":21.41,
+ "elevmax":22.32,
+ "bldgarea":841.74,
+ "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_2":87269,
+ "Shape_Le_1":0.00039036161465,
+ "Shape_Ar_1":7.81825617794e-09,
+ "OBJECTID_3":87269,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87268,
+ "g_objectid":"944290",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361970",
+ "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":"66023004492356540000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749065",
+ "g_geomet_1":"1.81939e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00039036161465,
+ "Shape_Area":7.81825617794e-09,
+ "Shape_Le_3":0.000390360757352,
+ "Shape_Ar_2":7.81825617794e-09,
+ "building_height":15.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1281,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5570389177337,
+ 45.53476616687539
+ ],
+ [
+ -73.5571885981971,
+ 45.53482964192473
+ ],
+ [
+ -73.55722543622674,
+ 45.53484526314867
+ ],
+ [
+ -73.55724397035479,
+ 45.53485273651487
+ ],
+ [
+ -73.55735251133117,
+ 45.53472631341892
+ ],
+ [
+ -73.55717976775392,
+ 45.53465584973797
+ ],
+ [
+ -73.55717966792918,
+ 45.53465574991322
+ ],
+ [
+ -73.55715906805838,
+ 45.53467074970563
+ ],
+ [
+ -73.55715456785087,
+ 45.53467465006534
+ ],
+ [
+ -73.55712871683866,
+ 45.53466157572144
+ ],
+ [
+ -73.5570389177337,
+ 45.53476616687539
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1281,
+ "ID_UEV":"01023699",
+ "CIVIQUE_DE":" 2318",
+ "CIVIQUE_FI":" 2334",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-3068-4-000-0000",
+ "SUPERFICIE":456,
+ "SUPERFIC_1":779,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000774166857437,
+ "OBJECTID":87288,
+ "Join_Count":1,
+ "TARGET_FID":87288,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":87288,
+ "Shape_Le_1":0.000774166857437,
+ "Shape_Ar_1":3.42000801294e-08,
+ "OBJECTID_3":87288,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87287,
+ "g_objectid":"941149",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425074",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338416160000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654922",
+ "g_geomet_1":"1.88374e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000774166857437,
+ "Shape_Area":3.42000801294e-08,
+ "Shape_Le_3":0.000774168040387,
+ "Shape_Ar_2":3.42000801294e-08,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1282,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55762928938205,
+ 45.535016521045904
+ ],
+ [
+ -73.55770297893118,
+ 45.53504776709107
+ ],
+ [
+ -73.55778636497061,
+ 45.534950643907386
+ ],
+ [
+ -73.55771466921846,
+ 45.53491985022121
+ ],
+ [
+ -73.55776676874322,
+ 45.534859949977005
+ ],
+ [
+ -73.55776453752523,
+ 45.53485899309835
+ ],
+ [
+ -73.55762928938205,
+ 45.535016521045904
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1282,
+ "ID_UEV":"01023707",
+ "CIVIQUE_DE":" 2372",
+ "CIVIQUE_FI":" 2374",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-8992-1-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":159,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00057551717227,
+ "OBJECTID":87289,
+ "Join_Count":1,
+ "TARGET_FID":87289,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":87289,
+ "Shape_Le_1":0.00057551717227,
+ "Shape_Ar_1":9.9406631429e-09,
+ "OBJECTID_3":87289,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87288,
+ "g_objectid":"941144",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425066",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328849630000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000655169",
+ "g_geomet_1":"1.88792e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00057551717227,
+ "Shape_Area":9.9406631429e-09,
+ "Shape_Le_3":0.000575515747658,
+ "Shape_Ar_2":9.9406631429e-09,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1283,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5577787243305,
+ 45.533360030990934
+ ],
+ [
+ -73.55786081894348,
+ 45.53339706867008
+ ],
+ [
+ -73.55795775686683,
+ 45.53329278418494
+ ],
+ [
+ -73.55793466947127,
+ 45.533282850273615
+ ],
+ [
+ -73.55794306913917,
+ 45.53327325001077
+ ],
+ [
+ -73.55790886882109,
+ 45.53325864951736
+ ],
+ [
+ -73.55790366894101,
+ 45.53325654960038
+ ],
+ [
+ -73.55789186893645,
+ 45.53327144956804
+ ],
+ [
+ -73.55786931753681,
+ 45.533262569662156
+ ],
+ [
+ -73.5577787243305,
+ 45.533360030990934
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1283,
+ "ID_UEV":"01023216",
+ "CIVIQUE_DE":" 2264",
+ "CIVIQUE_FI":" 2268",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1916,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-7608-6-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":313,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000489435743127,
+ "OBJECTID":87290,
+ "Join_Count":1,
+ "TARGET_FID":87290,
+ "feature_id":"4bacb033-2d1d-46d5-a267-28cce712eae4",
+ "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.47,
+ "heightmax":42.06,
+ "elevmin":21.6,
+ "elevmax":31.04,
+ "bldgarea":2833.95,
+ "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_2":87290,
+ "Shape_Le_1":0.000489435743127,
+ "Shape_Ar_1":1.24305826947e-08,
+ "OBJECTID_3":87290,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87289,
+ "g_objectid":"941362",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425368",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327701210000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000807752",
+ "g_geomet_1":"2.68003e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000489435743127,
+ "Shape_Area":1.24305826947e-08,
+ "Shape_Le_3":0.000489434327502,
+ "Shape_Ar_2":1.24305826947e-08,
+ "building_height":19.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1284,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55786081894348,
+ 45.53339706867008
+ ],
+ [
+ -73.55794291715375,
+ 45.53343410904719
+ ],
+ [
+ -73.55804099271948,
+ 45.53332859698746
+ ],
+ [
+ -73.55795775686683,
+ 45.53329278418494
+ ],
+ [
+ -73.55786081894348,
+ 45.53339706867008
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1284,
+ "ID_UEV":"01023218",
+ "CIVIQUE_DE":" 2270",
+ "CIVIQUE_FI":" 2276",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-7012-1-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":309,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000467115766611,
+ "OBJECTID":87291,
+ "Join_Count":1,
+ "TARGET_FID":87291,
+ "feature_id":"4bacb033-2d1d-46d5-a267-28cce712eae4",
+ "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.47,
+ "heightmax":42.06,
+ "elevmin":21.6,
+ "elevmax":31.04,
+ "bldgarea":2833.95,
+ "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_2":87291,
+ "Shape_Le_1":0.000467115766611,
+ "Shape_Ar_1":1.22234830347e-08,
+ "OBJECTID_3":87291,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87290,
+ "g_objectid":"941362",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425368",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327701210000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000807752",
+ "g_geomet_1":"2.68003e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000467115766611,
+ "Shape_Area":1.22234830347e-08,
+ "Shape_Le_3":0.000467115218776,
+ "Shape_Ar_2":1.22234830347e-08,
+ "building_height":19.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1285,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5512713073468,
+ 45.53116258253745
+ ],
+ [
+ -73.5513418663559,
+ 45.53119384926703
+ ],
+ [
+ -73.55132386642514,
+ 45.531213849290005
+ ],
+ [
+ -73.55135366636046,
+ 45.53122675006476
+ ],
+ [
+ -73.5513286661069,
+ 45.5312552495804
+ ],
+ [
+ -73.55132876593164,
+ 45.53125534940514
+ ],
+ [
+ -73.55136458592874,
+ 45.53127171167045
+ ],
+ [
+ -73.55150414542182,
+ 45.53111703367446
+ ],
+ [
+ -73.5514992657004,
+ 45.53111484922121
+ ],
+ [
+ -73.55136763373116,
+ 45.531055817722105
+ ],
+ [
+ -73.5512713073468,
+ 45.53116258253745
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1285,
+ "ID_UEV":"01018777",
+ "CIVIQUE_DE":" 1819",
+ "CIVIQUE_FI":" 1825",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-74-8773-9-000-0000",
+ "SUPERFICIE":266,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000715725548458,
+ "OBJECTID":87294,
+ "Join_Count":1,
+ "TARGET_FID":87294,
+ "feature_id":"32bde229-c231-4ab1-9b7f-8fae3afc6f61",
+ "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.51,
+ "heightmax":32.73,
+ "elevmin":19.16,
+ "elevmax":21.85,
+ "bldgarea":1317.59,
+ "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_2":87294,
+ "Shape_Le_1":0.000715725548458,
+ "Shape_Ar_1":2.37198433549e-08,
+ "OBJECTID_3":87294,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87293,
+ "g_objectid":"940660",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424233",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004374768070000000",
+ "g_sup_tota":"284.1",
+ "g_geometry":"0.000754959",
+ "g_geomet_1":"3.33596e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000715725548458,
+ "Shape_Area":2.37198433549e-08,
+ "Shape_Le_3":0.000715725726119,
+ "Shape_Ar_2":2.37198433549e-08,
+ "building_height":15.11
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1286,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55510578272754,
+ 45.53436466095064
+ ],
+ [
+ -73.55524702755012,
+ 45.5344246781067
+ ],
+ [
+ -73.5553798924899,
+ 45.53426333613435
+ ],
+ [
+ -73.55523776813034,
+ 45.534204349601346
+ ],
+ [
+ -73.55523177414891,
+ 45.53420186207657
+ ],
+ [
+ -73.55511451874189,
+ 45.53433841513605
+ ],
+ [
+ -73.55512516851356,
+ 45.53434315006662
+ ],
+ [
+ -73.55510578272754,
+ 45.53436466095064
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1286,
+ "ID_UEV":"01023937",
+ "CIVIQUE_DE":" 2175",
+ "CIVIQUE_FI":" 2175",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1969,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-48-8522-4-000-0000",
+ "SUPERFICIE":289,
+ "SUPERFIC_1":286,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000743441142226,
+ "OBJECTID":87297,
+ "Join_Count":1,
+ "TARGET_FID":87297,
+ "feature_id":"0c9d277b-9e89-4d1f-8935-7bfbb1e01479",
+ "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.53,
+ "heightmax":31.32,
+ "elevmin":18.96,
+ "elevmax":19.79,
+ "bldgarea":1041.23,
+ "comment":" ",
+ "OBJECTID_2":87297,
+ "Shape_Le_1":0.000743441142226,
+ "Shape_Ar_1":3.2092513927e-08,
+ "OBJECTID_3":87297,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87296,
+ "g_objectid":"941093",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424995",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004348971530000000",
+ "g_sup_tota":"286.1",
+ "g_geometry":"0.000756007",
+ "g_geomet_1":"3.32197e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000743441142226,
+ "Shape_Area":3.2092513927e-08,
+ "Shape_Le_3":0.000743443665105,
+ "Shape_Ar_2":3.2092513927e-08,
+ "building_height":14.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1287,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55694424430328,
+ 45.53353571894856
+ ],
+ [
+ -73.55709071778425,
+ 45.53360008522605
+ ],
+ [
+ -73.55713906533744,
+ 45.533547556724656
+ ],
+ [
+ -73.55699546698905,
+ 45.53348419768787
+ ],
+ [
+ -73.55694424430328,
+ 45.53353571894856
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1287,
+ "ID_UEV":"01025850",
+ "CIVIQUE_DE":" 2462",
+ "CIVIQUE_FI":" 2466",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-37-4735-9-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":265,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000460989074651,
+ "OBJECTID":87303,
+ "Join_Count":1,
+ "TARGET_FID":87303,
+ "feature_id":"abde85ca-ac06-4e6a-b0d5-549fb831074b",
+ "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.87,
+ "heightmax":32.34,
+ "elevmin":18.91,
+ "elevmax":21.32,
+ "bldgarea":1252.42,
+ "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_2":87303,
+ "Shape_Le_1":0.000460989074651,
+ "Shape_Ar_1":1.07248199409e-08,
+ "OBJECTID_3":87303,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87302,
+ "g_objectid":"941294",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425279",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004337473590000000",
+ "g_sup_tota":"170.5",
+ "g_geometry":"0.00071858",
+ "g_geomet_1":"1.9524e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000460989074651,
+ "Shape_Area":1.07248199409e-08,
+ "Shape_Le_3":0.000460989751638,
+ "Shape_Ar_2":1.07248199409e-08,
+ "building_height":15.235000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1288,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.562178758165,
+ 45.512307285003494
+ ],
+ [
+ -73.5621787419772,
+ 45.512307298493326
+ ],
+ [
+ -73.56233018691044,
+ 45.51237639970138
+ ],
+ [
+ -73.56250831382947,
+ 45.51219075714802
+ ],
+ [
+ -73.56237618183717,
+ 45.5121308029445
+ ],
+ [
+ -73.5622961763493,
+ 45.5122161989687
+ ],
+ [
+ -73.5622889026326,
+ 45.51222396461457
+ ],
+ [
+ -73.56228888284751,
+ 45.512223983500334
+ ],
+ [
+ -73.56226997819878,
+ 45.512215536168355
+ ],
+ [
+ -73.562178758165,
+ 45.512307285003494
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1288,
+ "ID_UEV":"01020977",
+ "CIVIQUE_DE":" 1410",
+ "CIVIQUE_FI":" 1416",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-93-2872-1-000-0000",
+ "SUPERFICIE":323,
+ "SUPERFIC_1":414,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000846669609235,
+ "OBJECTID":87306,
+ "Join_Count":1,
+ "TARGET_FID":87306,
+ "feature_id":"c38bebd0-a855-4522-96c5-b66aa9512541",
+ "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":32.97,
+ "elevmin":25.17,
+ "elevmax":26.28,
+ "bldgarea":2271.6,
+ "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_2":87306,
+ "Shape_Le_1":0.000846669609235,
+ "Shape_Ar_1":3.75508713397e-08,
+ "OBJECTID_3":87306,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87305,
+ "g_objectid":"938340",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161725",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994193405770000000",
+ "g_sup_tota":"304.7",
+ "g_geometry":"0.000845465",
+ "g_geomet_1":"3.58528e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000846669609235,
+ "Shape_Area":3.75508713397e-08,
+ "Shape_Le_3":0.000846668099891,
+ "Shape_Ar_2":3.75508713397e-08,
+ "building_height":16.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1289,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55949776942836,
+ 45.51244044671954
+ ],
+ [
+ -73.55949758057073,
+ 45.51244064007378
+ ],
+ [
+ -73.55941436810045,
+ 45.512526745663074
+ ],
+ [
+ -73.55936066688311,
+ 45.51258234624858
+ ],
+ [
+ -73.55929676735377,
+ 45.51264834569489
+ ],
+ [
+ -73.55929436706323,
+ 45.51265094563493
+ ],
+ [
+ -73.55949276110388,
+ 45.51273924017409
+ ],
+ [
+ -73.5597053329566,
+ 45.51250000791933
+ ],
+ [
+ -73.55974683037377,
+ 45.51245329893089
+ ],
+ [
+ -73.55969336837609,
+ 45.51242994623533
+ ],
+ [
+ -73.55956586789233,
+ 45.51237404617559
+ ],
+ [
+ -73.55956432285706,
+ 45.51237330153693
+ ],
+ [
+ -73.55949776942836,
+ 45.51244044671954
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1289,
+ "ID_UEV":"01021334",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Christin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-14-4805-3-000-0000",
+ "SUPERFICIE":717,
+ "SUPERFIC_1":2374,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00118619078648,
+ "OBJECTID":87307,
+ "Join_Count":1,
+ "TARGET_FID":87307,
+ "feature_id":"68cb19ef-7e1a-47c7-a02c-c57b2f6213b2",
+ "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.85,
+ "heightmax":39.76,
+ "elevmin":21.8,
+ "elevmax":22.53,
+ "bldgarea":695.2,
+ "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_2":87307,
+ "Shape_Le_1":0.00118619078648,
+ "Shape_Ar_1":7.588396077e-08,
+ "OBJECTID_3":87307,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87306,
+ "g_objectid":"943414",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2162004",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"82",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004114480530000000",
+ "g_sup_tota":"716.7",
+ "g_geometry":"0.0012579",
+ "g_geomet_1":"8.30674e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00118619078648,
+ "Shape_Area":7.588396077e-08,
+ "Shape_Le_3":0.00118619196862,
+ "Shape_Ar_2":7.588396077e-08,
+ "building_height":19.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1290,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56672479333639,
+ 45.5155598576516
+ ],
+ [
+ -73.56676887000918,
+ 45.51557814626474
+ ],
+ [
+ -73.56677206979703,
+ 45.51557434572977
+ ],
+ [
+ -73.56680076986149,
+ 45.51554134600661
+ ],
+ [
+ -73.56683576967687,
+ 45.51555642044274
+ ],
+ [
+ -73.56693370225041,
+ 45.51545282753626
+ ],
+ [
+ -73.56686026990738,
+ 45.51541964615004
+ ],
+ [
+ -73.56685821855379,
+ 45.515418718049695
+ ],
+ [
+ -73.56672479333639,
+ 45.5155598576516
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1290,
+ "ID_UEV":"01021084",
+ "CIVIQUE_DE":" 2071",
+ "CIVIQUE_FI":" 2075",
+ "NOM_RUE":"rue Sanguinet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-57-7935-6-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":299,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000554143473795,
+ "OBJECTID":87310,
+ "Join_Count":1,
+ "TARGET_FID":87310,
+ "feature_id":"8e1da87e-3f79-40b6-947c-b870b1e48e84",
+ "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":25.2,
+ "elevmin":25.38,
+ "elevmax":42.64,
+ "bldgarea":8192.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_2":87310,
+ "Shape_Le_1":0.000554143473795,
+ "Shape_Ar_1":1.33867093441e-08,
+ "OBJECTID_3":87310,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87309,
+ "g_objectid":"943099",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161259",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994157793560000000",
+ "g_sup_tota":"186.7",
+ "g_geometry":"0.000711952",
+ "g_geomet_1":"2.14027e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000554143473795,
+ "Shape_Area":1.33867093441e-08,
+ "Shape_Le_3":0.000554142818316,
+ "Shape_Ar_2":1.33867093441e-08,
+ "building_height":12.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1291,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5578655349883,
+ 45.53906322563765
+ ],
+ [
+ -73.55825046910572,
+ 45.539194250564506
+ ],
+ [
+ -73.55825306904575,
+ 45.53919055075361
+ ],
+ [
+ -73.55832236900397,
+ 45.53909125121057
+ ],
+ [
+ -73.558351369442,
+ 45.5391012507724
+ ],
+ [
+ -73.55837016887004,
+ 45.53907425042661
+ ],
+ [
+ -73.55837036941885,
+ 45.53907395095237
+ ],
+ [
+ -73.55834606883785,
+ 45.539065250910895
+ ],
+ [
+ -73.55838036898069,
+ 45.53901795106788
+ ],
+ [
+ -73.55825056893046,
+ 45.538971450722165
+ ],
+ [
+ -73.55812366919382,
+ 45.538925950422566
+ ],
+ [
+ -73.55804086951237,
+ 45.538896351036065
+ ],
+ [
+ -73.55803606893129,
+ 45.53889465041808
+ ],
+ [
+ -73.55799462547343,
+ 45.53888064167857
+ ],
+ [
+ -73.55792368695043,
+ 45.53898209779587
+ ],
+ [
+ -73.55792253851618,
+ 45.53898170119485
+ ],
+ [
+ -73.5578655349883,
+ 45.53906322563765
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1291,
+ "ID_UEV":"01025164",
+ "CIVIQUE_DE":" 2600",
+ "CIVIQUE_FI":" 2600",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-23-5949-3-000-0000",
+ "SUPERFICIE":924,
+ "SUPERFIC_1":1381,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00131435883872,
+ "OBJECTID":87313,
+ "Join_Count":1,
+ "TARGET_FID":87313,
+ "feature_id":"70e563f4-70aa-4c4d-b085-14f57e1e8966",
+ "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":43.49,
+ "elevmin":30.09,
+ "elevmax":37.03,
+ "bldgarea":1147,
+ "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_2":87313,
+ "Shape_Le_1":0.00131435883872,
+ "Shape_Ar_1":8.7333045326e-08,
+ "OBJECTID_3":87313,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87312,
+ "g_objectid":"2322252",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"3361301",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004423594930000000",
+ "g_sup_tota":"923.9",
+ "g_geometry":"0.00140018",
+ "g_geomet_1":"1.06431e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00131435883872,
+ "Shape_Area":8.7333045326e-08,
+ "Shape_Le_3":0.00131435819651,
+ "Shape_Ar_2":8.7333045326e-08,
+ "building_height":21.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1292,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55072469850788,
+ 45.53686426272584
+ ],
+ [
+ -73.55077446609059,
+ 45.536880651071485
+ ],
+ [
+ -73.55074176584166,
+ 45.53692965063316
+ ],
+ [
+ -73.55074186656573,
+ 45.53692965063316
+ ],
+ [
+ -73.5507579293568,
+ 45.53694074466993
+ ],
+ [
+ -73.55085002982686,
+ 45.536811464427835
+ ],
+ [
+ -73.55077911198828,
+ 45.53678788600243
+ ],
+ [
+ -73.55072469850788,
+ 45.53686426272584
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1292,
+ "ID_UEV":"01025305",
+ "CIVIQUE_DE":" 2027",
+ "CIVIQUE_FI":" 2031",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-3506-1-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":202,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000458172996436,
+ "OBJECTID":87315,
+ "Join_Count":1,
+ "TARGET_FID":87315,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":87315,
+ "Shape_Le_1":0.000458172996436,
+ "Shape_Ar_1":7.96579449987e-09,
+ "OBJECTID_3":87315,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87314,
+ "g_objectid":"943802",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360960",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481400380000000",
+ "g_sup_tota":"150.7",
+ "g_geometry":"0.000636348",
+ "g_geomet_1":"1.73624e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000458172996436,
+ "Shape_Area":7.96579449987e-09,
+ "Shape_Le_3":0.000458172083505,
+ "Shape_Ar_2":7.96579449987e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1293,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55838843140283,
+ 45.5370506598104
+ ],
+ [
+ -73.55846457610114,
+ 45.537078541491795
+ ],
+ [
+ -73.55854614371141,
+ 45.536964902258724
+ ],
+ [
+ -73.55852866898474,
+ 45.53695754940168
+ ],
+ [
+ -73.55847926922473,
+ 45.536937249904454
+ ],
+ [
+ -73.55847198471616,
+ 45.536934256960684
+ ],
+ [
+ -73.55838843140283,
+ 45.5370506598104
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1293,
+ "ID_UEV":"01024322",
+ "CIVIQUE_DE":" 2526",
+ "CIVIQUE_FI":" 2528",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-3119-9-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":180,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000444500761923,
+ "OBJECTID":87316,
+ "Join_Count":1,
+ "TARGET_FID":87316,
+ "feature_id":"801ebb9a-38e4-4785-bee3-0926dd17043d",
+ "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":40.54,
+ "elevmin":27.42,
+ "elevmax":32.14,
+ "bldgarea":528.44,
+ "comment":" ",
+ "OBJECTID_2":87316,
+ "Shape_Le_1":0.000444500761923,
+ "Shape_Ar_1":1.10649728866e-08,
+ "OBJECTID_3":87316,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87315,
+ "g_objectid":"940985",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424797",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421311990000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000657944",
+ "g_geomet_1":"1.93452e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000444500761923,
+ "Shape_Area":1.10649728866e-08,
+ "Shape_Le_3":0.000444499112733,
+ "Shape_Ar_2":1.10649728866e-08,
+ "building_height":20.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1294,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56185253538804,
+ 45.53245994721908
+ ],
+ [
+ -73.56187336998188,
+ 45.53246914908226
+ ],
+ [
+ -73.56186316987123,
+ 45.532480548888515
+ ],
+ [
+ -73.5618881701248,
+ 45.5324910484734
+ ],
+ [
+ -73.56192307011544,
+ 45.53250474874545
+ ],
+ [
+ -73.56186416991736,
+ 45.5325785489112
+ ],
+ [
+ -73.562037970198,
+ 45.532658248629566
+ ],
+ [
+ -73.562125270087,
+ 45.53269824867553
+ ],
+ [
+ -73.56213067051587,
+ 45.5326925487724
+ ],
+ [
+ -73.56219757018356,
+ 45.532620848523635
+ ],
+ [
+ -73.56192867019382,
+ 45.53249674927585
+ ],
+ [
+ -73.56194907041511,
+ 45.53247494881013
+ ],
+ [
+ -73.56195246985244,
+ 45.53247114917449
+ ],
+ [
+ -73.56187987028163,
+ 45.53243894894863
+ ],
+ [
+ -73.56188635709155,
+ 45.532431715701414
+ ],
+ [
+ -73.56188103850097,
+ 45.532429240767144
+ ],
+ [
+ -73.56185253538804,
+ 45.53245994721908
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1294,
+ "ID_UEV":"01026194",
+ "CIVIQUE_DE":" 2220",
+ "CIVIQUE_FI":" 2230",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1935,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-96-5932-9-000-0000",
+ "SUPERFICIE":729,
+ "SUPERFIC_1":668,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00105826011878,
+ "OBJECTID":87318,
+ "Join_Count":1,
+ "TARGET_FID":87318,
+ "feature_id":"975928ee-f7f7-4b4e-9a35-24f697a19e88",
+ "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":13.12,
+ "elevmin":41.63,
+ "elevmax":43.21,
+ "bldgarea":471.27,
+ "comment":" ",
+ "OBJECTID_2":87318,
+ "Shape_Le_1":0.00105826011878,
+ "Shape_Ar_1":3.29152250841e-08,
+ "OBJECTID_3":87318,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87317,
+ "g_objectid":"940411",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423798",
+ "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":"66023994396670820000000",
+ "g_sup_tota":"198.7",
+ "g_geometry":"0.000708266",
+ "g_geomet_1":"2.33363e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00105826011878,
+ "Shape_Area":3.29152250841e-08,
+ "Shape_Le_3":0.00105825955969,
+ "Shape_Ar_2":3.29152250841e-08,
+ "building_height":6.055
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1295,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55313029055232,
+ 45.533309560138385
+ ],
+ [
+ -73.55302996668146,
+ 45.533267550107645
+ ],
+ [
+ -73.55302786676448,
+ 45.53327005022293
+ ],
+ [
+ -73.55291846693555,
+ 45.533393750171726
+ ],
+ [
+ -73.55292146707389,
+ 45.533395149516835
+ ],
+ [
+ -73.55301376719345,
+ 45.53343984941981
+ ],
+ [
+ -73.5530004671197,
+ 45.533453350042365
+ ],
+ [
+ -73.55297466736884,
+ 45.533440649816434
+ ],
+ [
+ -73.55294476670946,
+ 45.53347075012531
+ ],
+ [
+ -73.55297726281228,
+ 45.53348677064824
+ ],
+ [
+ -73.55313029055232,
+ 45.533309560138385
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1295,
+ "ID_UEV":"01023979",
+ "CIVIQUE_DE":" 2017",
+ "CIVIQUE_FI":" 2017",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":11,
+ "ANNEE_CONS":2006,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-67-6018-5-000-0000",
+ "SUPERFICIE":238,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000743533557641,
+ "OBJECTID":87322,
+ "Join_Count":1,
+ "TARGET_FID":87322,
+ "feature_id":"299c8a46-0f9a-492d-a7cc-d4d08a5f667e",
+ "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.41,
+ "heightmax":32.48,
+ "elevmin":18.86,
+ "elevmax":19.94,
+ "bldgarea":1090.88,
+ "comment":" ",
+ "OBJECTID_2":87322,
+ "Shape_Le_1":0.000743533557641,
+ "Shape_Ar_1":1.92856199067e-08,
+ "OBJECTID_3":87322,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87321,
+ "g_objectid":"941076",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424967",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"11",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004367601850000000",
+ "g_sup_tota":"237.8",
+ "g_geometry":"0.000729477",
+ "g_geomet_1":"2.74884e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000743533557641,
+ "Shape_Area":1.92856199067e-08,
+ "Shape_Le_3":0.000743535219206,
+ "Shape_Ar_2":1.92856199067e-08,
+ "building_height":15.034999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1296,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54995243717708,
+ 45.53836689316788
+ ],
+ [
+ -73.55007820736522,
+ 45.53841140241458
+ ],
+ [
+ -73.55011318469757,
+ 45.53836236957799
+ ],
+ [
+ -73.54998751883078,
+ 45.538317895404845
+ ],
+ [
+ -73.54995243717708,
+ 45.53836689316788
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1296,
+ "ID_UEV":"01025647",
+ "CIVIQUE_DE":" 2979",
+ "CIVIQUE_FI":" 2979",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-9274-8-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000387209370772,
+ "OBJECTID":87323,
+ "Join_Count":1,
+ "TARGET_FID":87323,
+ "feature_id":"c31e14eb-c875-4573-828f-735db5cf235a",
+ "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.22,
+ "heightmax":32.13,
+ "elevmin":21.36,
+ "elevmax":22.26,
+ "bldgarea":596.89,
+ "comment":" ",
+ "OBJECTID_2":87323,
+ "Shape_Le_1":0.000387209370772,
+ "Shape_Ar_1":7.72062252863e-09,
+ "OBJECTID_3":87323,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87322,
+ "g_objectid":"944280",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361953",
+ "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":"66023004482927480000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749066",
+ "g_geomet_1":"1.81939e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000387209370772,
+ "Shape_Area":7.72062252863e-09,
+ "Shape_Le_3":0.000387209126996,
+ "Shape_Ar_2":7.72062252863e-09,
+ "building_height":13.955000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1297,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55942303936362,
+ 45.53276007976417
+ ],
+ [
+ -73.55937196956259,
+ 45.532735148758405
+ ],
+ [
+ -73.55934626873716,
+ 45.53272234870772
+ ],
+ [
+ -73.55928606722007,
+ 45.53278338659431
+ ],
+ [
+ -73.55936689738625,
+ 45.53282051510498
+ ],
+ [
+ -73.55942303936362,
+ 45.53276007976417
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55955118556061,
+ 45.53262213275552
+ ],
+ [
+ -73.5594684695161,
+ 45.53258404916483
+ ],
+ [
+ -73.55946426878282,
+ 45.53258854847303
+ ],
+ [
+ -73.55938566893532,
+ 45.532672349099926
+ ],
+ [
+ -73.5594578755024,
+ 45.53272257983349
+ ],
+ [
+ -73.55955118556061,
+ 45.53262213275552
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1297,
+ "ID_UEV":"01022969",
+ "CIVIQUE_DE":" 2331",
+ "CIVIQUE_FI":" 2339",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-16-5842-6-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":437,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000779880738791,
+ "OBJECTID":87326,
+ "Join_Count":2,
+ "TARGET_FID":87326,
+ "feature_id":"a674cb3a-93b0-4b10-8747-a68d1a76d21c",
+ "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.51,
+ "heightmax":45.46,
+ "elevmin":28.11,
+ "elevmax":33.18,
+ "bldgarea":1813.91,
+ "comment":" ",
+ "OBJECTID_2":87326,
+ "Shape_Le_1":0.000779880738791,
+ "Shape_Ar_1":1.81545847692e-08,
+ "OBJECTID_3":87326,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87325,
+ "g_objectid":"940530",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424027",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316514700000000",
+ "g_sup_tota":"241.5",
+ "g_geometry":"0.000814052",
+ "g_geomet_1":"2.78986e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000779880738791,
+ "Shape_Area":1.81545847692e-08,
+ "Shape_Le_3":0.000779882129441,
+ "Shape_Ar_2":1.81545847692e-08,
+ "building_height":21.475
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1298,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5586623091401,
+ 45.53254782717078
+ ],
+ [
+ -73.55868956938995,
+ 45.53251704877308
+ ],
+ [
+ -73.55884706945854,
+ 45.53258604925706
+ ],
+ [
+ -73.55882616921419,
+ 45.5326096492662
+ ],
+ [
+ -73.55880976917734,
+ 45.53262884889256
+ ],
+ [
+ -73.55880816928342,
+ 45.53263044878648
+ ],
+ [
+ -73.55891156883568,
+ 45.53267854902611
+ ],
+ [
+ -73.55905666905188,
+ 45.53252444929419
+ ],
+ [
+ -73.5589619695411,
+ 45.53248044906377
+ ],
+ [
+ -73.5589615693428,
+ 45.53248024851495
+ ],
+ [
+ -73.55895096903384,
+ 45.53249034880085
+ ],
+ [
+ -73.55869926947754,
+ 45.53236014855231
+ ],
+ [
+ -73.55869726938532,
+ 45.53236204881979
+ ],
+ [
+ -73.55865056939011,
+ 45.53241284882421
+ ],
+ [
+ -73.55864823654872,
+ 45.53241178942284
+ ],
+ [
+ -73.55855974955465,
+ 45.53250681628684
+ ],
+ [
+ -73.5586623091401,
+ 45.53254782717078
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1298,
+ "ID_UEV":"01022973",
+ "CIVIQUE_DE":" 2275",
+ "CIVIQUE_FI":" 2275",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":14,
+ "ANNEE_CONS":1906,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-26-0024-5-000-0000",
+ "SUPERFICIE":1811,
+ "SUPERFIC_1":1627,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00131532391183,
+ "OBJECTID":87327,
+ "Join_Count":1,
+ "TARGET_FID":87327,
+ "feature_id":"0fe94814-38a6-48d7-bd59-3ba734bf46cb",
+ "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.5,
+ "heightmax":47.06,
+ "elevmin":23.96,
+ "elevmax":27.9,
+ "bldgarea":1373.98,
+ "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_2":87327,
+ "Shape_Le_1":0.00131532391183,
+ "Shape_Ar_1":6.63861009624e-08,
+ "OBJECTID_3":87327,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87326,
+ "g_objectid":"938457",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1424069",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6920",
+ "g_nb_logem":" ",
+ "g_nb_locau":"11",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004326262990000000",
+ "g_sup_tota":"1849.3",
+ "g_geometry":"0.00268306",
+ "g_geomet_1":"2.12977e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00131532391183,
+ "Shape_Area":6.63861009624e-08,
+ "Shape_Le_3":0.00131532472944,
+ "Shape_Ar_2":6.63861009624e-08,
+ "building_height":22.28
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1299,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56096823112081,
+ 45.51246299002526
+ ],
+ [
+ -73.5609623684404,
+ 45.51246954608298
+ ],
+ [
+ -73.56096736777165,
+ 45.512471745824705
+ ],
+ [
+ -73.56105096784974,
+ 45.51250804605977
+ ],
+ [
+ -73.56103896819567,
+ 45.512521645607755
+ ],
+ [
+ -73.5609563681637,
+ 45.5124849460737
+ ],
+ [
+ -73.56090812043526,
+ 45.512538679666626
+ ],
+ [
+ -73.56122836092196,
+ 45.51268461355437
+ ],
+ [
+ -73.56129040155264,
+ 45.51261266329407
+ ],
+ [
+ -73.56096823112081,
+ 45.51246299002526
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1299,
+ "ID_UEV":"01021607",
+ "CIVIQUE_DE":" 1300",
+ "CIVIQUE_FI":" 1300",
+ "NOM_RUE":"rue Sanguinet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2007,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-04-2607-6-000-0000",
+ "SUPERFICIE":287,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00108830805491,
+ "OBJECTID":87328,
+ "Join_Count":1,
+ "TARGET_FID":87328,
+ "feature_id":"0d9fe1a0-95a1-4b25-8ddc-b64b3e41c30b",
+ "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.55,
+ "heightmax":42.82,
+ "elevmin":24.11,
+ "elevmax":25.47,
+ "bldgarea":1968.1,
+ "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_2":87328,
+ "Shape_Le_1":0.00108830805491,
+ "Shape_Ar_1":3.09748670565e-08,
+ "OBJECTID_3":87328,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87327,
+ "g_objectid":"938540",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"5661958",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6821",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103209720000000",
+ "g_sup_tota":"450.5",
+ "g_geometry":"0.00102429",
+ "g_geomet_1":"5.26062e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00108830805491,
+ "Shape_Area":3.09748670565e-08,
+ "Shape_Le_3":0.00108830596475,
+ "Shape_Ar_2":3.09748670565e-08,
+ "building_height":21.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1300,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55268052520792,
+ 45.530602473075966
+ ],
+ [
+ -73.55266956696879,
+ 45.530596649066396
+ ],
+ [
+ -73.5525182668264,
+ 45.53051544927886
+ ],
+ [
+ -73.55255626678013,
+ 45.530480549288214
+ ],
+ [
+ -73.55251186725071,
+ 45.530456748730266
+ ],
+ [
+ -73.55251036718154,
+ 45.53045824879944
+ ],
+ [
+ -73.5523998656831,
+ 45.530576748868164
+ ],
+ [
+ -73.55246966746303,
+ 45.53061514902021
+ ],
+ [
+ -73.55246336681277,
+ 45.530620848923334
+ ],
+ [
+ -73.5525353674351,
+ 45.530660249121496
+ ],
+ [
+ -73.55254526717219,
+ 45.530651248706455
+ ],
+ [
+ -73.5525985672919,
+ 45.530680249144474
+ ],
+ [
+ -73.55260601277911,
+ 45.53068430418758
+ ],
+ [
+ -73.55268052520792,
+ 45.530602473075966
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1300,
+ "ID_UEV":"01018546",
+ "CIVIQUE_DE":" 1850",
+ "CIVIQUE_FI":" 1860",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-9404-1-000-0000",
+ "SUPERFICIE":546,
+ "SUPERFIC_1":805,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000813687881528,
+ "OBJECTID":87329,
+ "Join_Count":1,
+ "TARGET_FID":87329,
+ "feature_id":"e27363a1-ca8f-4194-a825-66f1a6dad90b",
+ "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":30.57,
+ "elevmin":16.92,
+ "elevmax":19.79,
+ "bldgarea":1403.12,
+ "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_2":87329,
+ "Shape_Le_1":0.000813687881528,
+ "Shape_Ar_1":2.83660397385e-08,
+ "OBJECTID_3":87329,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87328,
+ "g_objectid":"940624",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424166",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004364771520000000",
+ "g_sup_tota":"421.4",
+ "g_geometry":"0.000911334",
+ "g_geomet_1":"4.85591e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000813687881528,
+ "Shape_Area":2.83660397385e-08,
+ "Shape_Le_3":0.000813690574369,
+ "Shape_Ar_2":2.83660397385e-08,
+ "building_height":14.025
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1301,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55987308439717,
+ 45.53649200275402
+ ],
+ [
+ -73.55990926951901,
+ 45.53650614998912
+ ],
+ [
+ -73.55991226875804,
+ 45.536502049979916
+ ],
+ [
+ -73.55993806940822,
+ 45.53646705016453
+ ],
+ [
+ -73.55991426885028,
+ 45.53646174956039
+ ],
+ [
+ -73.55994743135072,
+ 45.53638846290753
+ ],
+ [
+ -73.55987308439717,
+ 45.53649200275402
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56015145604671,
+ 45.53633259882067
+ ],
+ [
+ -73.56005486885896,
+ 45.53629804956563
+ ],
+ [
+ -73.55995846873019,
+ 45.53643134977727
+ ],
+ [
+ -73.56005562878609,
+ 45.53646605281638
+ ],
+ [
+ -73.56015145604671,
+ 45.53633259882067
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1301,
+ "ID_UEV":"01023865",
+ "CIVIQUE_DE":" 2635",
+ "CIVIQUE_FI":" 2635",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-10-1255-6-000-0000",
+ "SUPERFICIE":371,
+ "SUPERFIC_1":274,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000854256683953,
+ "OBJECTID":87334,
+ "Join_Count":2,
+ "TARGET_FID":87334,
+ "feature_id":"8f1c65ef-dc12-4e6c-9652-1b8f3abac970",
+ "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.61,
+ "heightmax":51.84,
+ "elevmin":36.39,
+ "elevmax":39.99,
+ "bldgarea":411.35,
+ "comment":" ",
+ "OBJECTID_2":87334,
+ "Shape_Le_1":0.000854256683953,
+ "Shape_Ar_1":1.86361549179e-08,
+ "OBJECTID_3":87334,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87333,
+ "g_objectid":"944196",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361470",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004410125560000000",
+ "g_sup_tota":"371.2",
+ "g_geometry":"0.000917481",
+ "g_geomet_1":"4.27647e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000854256683953,
+ "Shape_Area":1.86361549179e-08,
+ "Shape_Le_3":0.000854257816633,
+ "Shape_Ar_2":1.86361549179e-08,
+ "building_height":25.615000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1302,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56716410136403,
+ 45.51072791990787
+ ],
+ [
+ -73.56714721929059,
+ 45.510761755101214
+ ],
+ [
+ -73.5672382126952,
+ 45.510803579871606
+ ],
+ [
+ -73.5672510703025,
+ 45.51080724460895
+ ],
+ [
+ -73.56725136977674,
+ 45.510807344433694
+ ],
+ [
+ -73.56744026967455,
+ 45.51061014469272
+ ],
+ [
+ -73.5672767702286,
+ 45.510532744540825
+ ],
+ [
+ -73.56716410136403,
+ 45.51072791990787
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1302,
+ "ID_UEV":"01059017",
+ "CIVIQUE_DE":" 51",
+ "CIVIQUE_FI":" 67",
+ "NOM_RUE":"rue Ontario Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1935,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-51-3699-5-000-0000",
+ "SUPERFICIE":859,
+ "SUPERFIC_1":1473,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000830977337624,
+ "OBJECTID":87335,
+ "Join_Count":1,
+ "TARGET_FID":87335,
+ "feature_id":"c8148590-64d0-4d85-b23d-192981c6c7cd",
+ "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.53,
+ "heightmax":16.31,
+ "elevmin":26.97,
+ "elevmax":28.54,
+ "bldgarea":343.33,
+ "comment":" ",
+ "OBJECTID_2":87335,
+ "Shape_Le_1":0.000830977337624,
+ "Shape_Ar_1":3.86728173921e-08,
+ "OBJECTID_3":87335,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87334,
+ "g_objectid":"943041",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160605",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994151369950000000",
+ "g_sup_tota":"858.6",
+ "g_geometry":"0.00127224",
+ "g_geomet_1":"9.87569e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000830977337624,
+ "Shape_Area":3.86728173921e-08,
+ "Shape_Le_3":0.000830976420996,
+ "Shape_Ar_2":3.86728173921e-08,
+ "building_height":7.89
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1303,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56732980954492,
+ 45.511766761876856
+ ],
+ [
+ -73.56733467038057,
+ 45.5117691459796
+ ],
+ [
+ -73.56739565520716,
+ 45.51179925078509
+ ],
+ [
+ -73.56747487828486,
+ 45.51171424057004
+ ],
+ [
+ -73.56740778975953,
+ 45.51168118688756
+ ],
+ [
+ -73.56732980954492,
+ 45.511766761876856
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1303,
+ "ID_UEV":"01020619",
+ "CIVIQUE_DE":" 2033",
+ "CIVIQUE_FI":" 2035",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1965,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-53-3519-1-000-0000",
+ "SUPERFICIE":131,
+ "SUPERFIC_1":177,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00038019232237,
+ "OBJECTID":87336,
+ "Join_Count":1,
+ "TARGET_FID":87336,
+ "feature_id":"b5328d34-31ff-42c5-b29a-48bf2dbdb909",
+ "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.66,
+ "heightmax":16.32,
+ "elevmin":24.57,
+ "elevmax":30.55,
+ "bldgarea":1907.72,
+ "comment":" ",
+ "OBJECTID_2":87336,
+ "Shape_Le_1":0.00038019232237,
+ "Shape_Ar_1":8.24456596112e-09,
+ "OBJECTID_3":87336,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87335,
+ "g_objectid":"938310",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161143",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994153351910000000",
+ "g_sup_tota":"131.2",
+ "g_geometry":"0.000576439",
+ "g_geomet_1":"1.51055e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00038019232237,
+ "Shape_Area":8.24456596112e-09,
+ "Shape_Le_3":0.000380191982709,
+ "Shape_Ar_2":8.24456596112e-09,
+ "building_height":7.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1304,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56498834635694,
+ 45.5147997929264
+ ],
+ [
+ -73.56502683823983,
+ 45.51480779419464
+ ],
+ [
+ -73.56516117806775,
+ 45.514651884127446
+ ],
+ [
+ -73.56509026472578,
+ 45.514620113777525
+ ],
+ [
+ -73.56499340774143,
+ 45.51473252183871
+ ],
+ [
+ -73.56500297023274,
+ 45.514727946088136
+ ],
+ [
+ -73.56500316988223,
+ 45.51472804591288
+ ],
+ [
+ -73.56497541050864,
+ 45.514793903266316
+ ],
+ [
+ -73.56498834635694,
+ 45.5147997929264
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1304,
+ "ID_UEV":"01021109",
+ "CIVIQUE_DE":" 1725",
+ "CIVIQUE_FI":" 1729",
+ "NOM_RUE":"rue Sanguinet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-76-1644-0-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":319,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000567710222589,
+ "OBJECTID":87337,
+ "Join_Count":1,
+ "TARGET_FID":87337,
+ "feature_id":"84e763e9-289e-4205-bdef-0a9c5e88cc85",
+ "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":14.95,
+ "elevmin":23.59,
+ "elevmax":25.72,
+ "bldgarea":1922.53,
+ "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_2":87337,
+ "Shape_Le_1":0.000567710222589,
+ "Shape_Ar_1":1.46909313605e-08,
+ "OBJECTID_3":87337,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87336,
+ "g_objectid":"943118",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161353",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994176214160000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.00065038",
+ "g_geomet_1":"1.84032e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000567710222589,
+ "Shape_Area":1.46909313605e-08,
+ "Shape_Le_3":0.00056771033964,
+ "Shape_Ar_2":1.46909313605e-08,
+ "building_height":7.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1305,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55464667882302,
+ 45.53559492811374
+ ],
+ [
+ -73.55464066775446,
+ 45.5356033502647
+ ],
+ [
+ -73.55448606799948,
+ 45.53554884955006
+ ],
+ [
+ -73.55443656841474,
+ 45.53561825023236
+ ],
+ [
+ -73.55455326804073,
+ 45.53565935014919
+ ],
+ [
+ -73.55454236825753,
+ 45.535674549591086
+ ],
+ [
+ -73.55454756813761,
+ 45.53567625020907
+ ],
+ [
+ -73.55473326824757,
+ 45.5357356495309
+ ],
+ [
+ -73.55476886791077,
+ 45.53568054986778
+ ],
+ [
+ -73.55479116300361,
+ 45.53564611212867
+ ],
+ [
+ -73.55464667882302,
+ 45.53559492811374
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1305,
+ "ID_UEV":"01025819",
+ "CIVIQUE_DE":" 2684",
+ "CIVIQUE_FI":" 2694",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-3472-4-000-0000",
+ "SUPERFICIE":402,
+ "SUPERFIC_1":316,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000862293539346,
+ "OBJECTID":87341,
+ "Join_Count":1,
+ "TARGET_FID":87341,
+ "feature_id":"9c87aec3-b2d4-4765-b37b-8fec185ae7c4",
+ "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.01,
+ "heightmax":30.62,
+ "elevmin":18.13,
+ "elevmax":19.77,
+ "bldgarea":544.85,
+ "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_2":87341,
+ "Shape_Le_1":0.000862293539346,
+ "Shape_Ar_1":3.06751034321e-08,
+ "OBJECTID_3":87341,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87340,
+ "g_objectid":"941046",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424885",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359306230000000",
+ "g_sup_tota":"198.8",
+ "g_geometry":"0.000838411",
+ "g_geomet_1":"2.2904e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000862293539346,
+ "Shape_Area":3.06751034321e-08,
+ "Shape_Le_3":0.000862292579976,
+ "Shape_Ar_2":3.06751034321e-08,
+ "building_height":14.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1306,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54967841374965,
+ 45.531221716559266
+ ],
+ [
+ -73.54975446581778,
+ 45.53125534940514
+ ],
+ [
+ -73.54972506608078,
+ 45.53128814947881
+ ],
+ [
+ -73.54979406656477,
+ 45.531318649986005
+ ],
+ [
+ -73.54990206614927,
+ 45.531190850028004
+ ],
+ [
+ -73.54980996567922,
+ 45.53115235005121
+ ],
+ [
+ -73.5497568283368,
+ 45.5311301502865
+ ],
+ [
+ -73.54967841374965,
+ 45.531221716559266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1306,
+ "ID_UEV":"01018921",
+ "CIVIQUE_DE":" 1695",
+ "CIVIQUE_FI":" 1695",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-1281-8-000-0000",
+ "SUPERFICIE":327,
+ "SUPERFIC_1":600,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000647933739457,
+ "OBJECTID":87344,
+ "Join_Count":1,
+ "TARGET_FID":87344,
+ "feature_id":"303a4421-75af-424d-ba33-bc6b6e90f934",
+ "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.56,
+ "heightmax":34.21,
+ "elevmin":22.67,
+ "elevmax":23.71,
+ "bldgarea":660.06,
+ "comment":" ",
+ "OBJECTID_2":87344,
+ "Shape_Le_1":0.000647933739457,
+ "Shape_Ar_1":2.14933477692e-08,
+ "OBJECTID_3":87344,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87343,
+ "g_objectid":"941244",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425203",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394277250000000",
+ "g_sup_tota":"490.5",
+ "g_geometry":"0.000973823",
+ "g_geomet_1":"5.65002e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000647933739457,
+ "Shape_Area":2.14933477692e-08,
+ "Shape_Le_3":0.000647933522961,
+ "Shape_Ar_2":2.14933477692e-08,
+ "building_height":15.825000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1307,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55327120712235,
+ 45.53348466893262
+ ],
+ [
+ -73.55327446716477,
+ 45.533486349765525
+ ],
+ [
+ -73.55332170315592,
+ 45.53351076545975
+ ],
+ [
+ -73.55339847378238,
+ 45.533421861180244
+ ],
+ [
+ -73.55334483821555,
+ 45.53339940061215
+ ],
+ [
+ -73.55327120712235,
+ 45.53348466893262
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1307,
+ "ID_UEV":"01023974",
+ "CIVIQUE_DE":" 2037",
+ "CIVIQUE_FI":" 2037",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-67-3732-4-000-0000",
+ "SUPERFICIE":119,
+ "SUPERFIC_1":103,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000345113579626,
+ "OBJECTID":87345,
+ "Join_Count":1,
+ "TARGET_FID":87345,
+ "feature_id":"299c8a46-0f9a-492d-a7cc-d4d08a5f667e",
+ "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.41,
+ "heightmax":32.48,
+ "elevmin":18.86,
+ "elevmax":19.94,
+ "bldgarea":1090.88,
+ "comment":" ",
+ "OBJECTID_2":87345,
+ "Shape_Le_1":0.000345113579626,
+ "Shape_Ar_1":6.35991696291e-09,
+ "OBJECTID_3":87345,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87344,
+ "g_objectid":"941079",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424970",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004367323660000000",
+ "g_sup_tota":"178.4",
+ "g_geometry":"0.000673064",
+ "g_geomet_1":"2.0684e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000345113579626,
+ "Shape_Area":6.35991696291e-09,
+ "Shape_Le_3":0.000345112726369,
+ "Shape_Ar_2":6.35991696291e-09,
+ "building_height":15.034999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1308,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55726143339028,
+ 45.53774064396584
+ ],
+ [
+ -73.55743055269969,
+ 45.53780066022259
+ ],
+ [
+ -73.55747186935314,
+ 45.53774854990595
+ ],
+ [
+ -73.55751036932993,
+ 45.5377636495231
+ ],
+ [
+ -73.55750856888719,
+ 45.53776585016415
+ ],
+ [
+ -73.55751976814463,
+ 45.53776979099335
+ ],
+ [
+ -73.55752795647186,
+ 45.53775841816676
+ ],
+ [
+ -73.55727342495045,
+ 45.53766809385774
+ ],
+ [
+ -73.55727016940465,
+ 45.537672749647975
+ ],
+ [
+ -73.55727006868057,
+ 45.537672950196786
+ ],
+ [
+ -73.55730386880035,
+ 45.537685850072215
+ ],
+ [
+ -73.55726143339028,
+ 45.53774064396584
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1308,
+ "ID_UEV":"01025969",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-2004-1-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000697509404824,
+ "OBJECTID":87348,
+ "Join_Count":1,
+ "TARGET_FID":87348,
+ "feature_id":"4e3226f4-4bb9-4646-9fb1-c0c9dd04fa82",
+ "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":37.71,
+ "elevmin":25.6,
+ "elevmax":27.49,
+ "bldgarea":805.92,
+ "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_2":87348,
+ "Shape_Le_1":0.000697509404824,
+ "Shape_Ar_1":1.38252841898e-08,
+ "OBJECTID_3":87348,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87347,
+ "g_objectid":"945565",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"3361332",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004432200410000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000742173",
+ "g_geomet_1":"2.14043e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000697509404824,
+ "Shape_Area":1.38252841898e-08,
+ "Shape_Le_3":0.000697510945484,
+ "Shape_Ar_2":1.38252841898e-08,
+ "building_height":18.595
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1309,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55560930324859,
+ 45.53100439448751
+ ],
+ [
+ -73.5556276683041,
+ 45.53098534864522
+ ],
+ [
+ -73.55566836802261,
+ 45.53100474882039
+ ],
+ [
+ -73.55569566784264,
+ 45.5309763491295
+ ],
+ [
+ -73.55578146856178,
+ 45.53101714867277
+ ],
+ [
+ -73.55581376771305,
+ 45.53098364892655
+ ],
+ [
+ -73.55592280241724,
+ 45.53103547685607
+ ],
+ [
+ -73.55599789580809,
+ 45.53095614675906
+ ],
+ [
+ -73.55588066828007,
+ 45.53090044904678
+ ],
+ [
+ -73.555880168257,
+ 45.53090014867322
+ ],
+ [
+ -73.55587206806334,
+ 45.53090874888994
+ ],
+ [
+ -73.55582746798511,
+ 45.5308876489961
+ ],
+ [
+ -73.55579896846946,
+ 45.53087434892236
+ ],
+ [
+ -73.55574987897558,
+ 45.5308513064929
+ ],
+ [
+ -73.55560357007055,
+ 45.53100170641392
+ ],
+ [
+ -73.55560930324859,
+ 45.53100439448751
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1309,
+ "ID_UEV":"01022983",
+ "CIVIQUE_DE":" 2049",
+ "CIVIQUE_FI":" 2067",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-44-4152-3-000-0000",
+ "SUPERFICIE":501,
+ "SUPERFIC_1":753,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000975799843751,
+ "OBJECTID":87357,
+ "Join_Count":1,
+ "TARGET_FID":87357,
+ "feature_id":"3ec60819-0e50-4db9-a8bb-8f8bda1e4a5b",
+ "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":36.24,
+ "elevmin":18.86,
+ "elevmax":20.34,
+ "bldgarea":1270.62,
+ "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_2":87357,
+ "Shape_Le_1":0.000975799843751,
+ "Shape_Ar_1":3.45734204364e-08,
+ "OBJECTID_3":87357,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87356,
+ "g_objectid":"940510",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424000",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004344526860000000",
+ "g_sup_tota":"359.5",
+ "g_geometry":"0.000864434",
+ "g_geomet_1":"4.18469e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000975799843751,
+ "Shape_Area":3.45734204364e-08,
+ "Shape_Le_3":0.000975799451123,
+ "Shape_Ar_2":3.45734204364e-08,
+ "building_height":16.86
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1310,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55805135021149,
+ 45.53657411625276
+ ],
+ [
+ -73.55819626426802,
+ 45.53662547563549
+ ],
+ [
+ -73.55824776934092,
+ 45.53655854988746
+ ],
+ [
+ -73.55835186946504,
+ 45.53659814973512
+ ],
+ [
+ -73.55835782567496,
+ 45.53659033552586
+ ],
+ [
+ -73.5580990664406,
+ 45.53649859478462
+ ],
+ [
+ -73.55805135021149,
+ 45.53657411625276
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1310,
+ "ID_UEV":"01025949",
+ "CIVIQUE_DE":" 2657",
+ "CIVIQUE_FI":" 2665",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-20-5575-2-000-0000",
+ "SUPERFICIE":255,
+ "SUPERFIC_1":334,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000723273771844,
+ "OBJECTID":87358,
+ "Join_Count":1,
+ "TARGET_FID":87358,
+ "feature_id":"75a82f11-6f58-498f-9a37-33b9728739c0",
+ "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":40.46,
+ "elevmin":26.69,
+ "elevmax":28.7,
+ "bldgarea":885.51,
+ "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_2":87358,
+ "Shape_Le_1":0.000723273771844,
+ "Shape_Ar_1":1.46779758331e-08,
+ "OBJECTID_3":87358,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87357,
+ "g_objectid":"940992",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424823",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004420598380000000",
+ "g_sup_tota":"252.2",
+ "g_geometry":"0.000849547",
+ "g_geomet_1":"2.90604e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000723273771844,
+ "Shape_Area":1.46779758331e-08,
+ "Shape_Le_3":0.000723272923152,
+ "Shape_Ar_2":1.46779758331e-08,
+ "building_height":19.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1311,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55800379136373,
+ 45.536649388608694
+ ],
+ [
+ -73.55814053507947,
+ 45.53669788994596
+ ],
+ [
+ -73.55819626426802,
+ 45.53662547563549
+ ],
+ [
+ -73.55805135021149,
+ 45.53657411625276
+ ],
+ [
+ -73.55800379136373,
+ 45.536649388608694
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1311,
+ "ID_UEV":"01025951",
+ "CIVIQUE_DE":" 2667",
+ "CIVIQUE_FI":" 2673",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1939,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-20-5983-8-000-0000",
+ "SUPERFICIE":252,
+ "SUPERFIC_1":352,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000479251134593,
+ "OBJECTID":87359,
+ "Join_Count":1,
+ "TARGET_FID":87359,
+ "feature_id":"75a82f11-6f58-498f-9a37-33b9728739c0",
+ "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":40.46,
+ "elevmin":26.69,
+ "elevmax":28.7,
+ "bldgarea":885.51,
+ "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_2":87359,
+ "Shape_Le_1":0.000479251134593,
+ "Shape_Ar_1":1.29779169992e-08,
+ "OBJECTID_3":87359,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87358,
+ "g_objectid":"940981",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424792",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004420629070000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000797916",
+ "g_geomet_1":"2.15818e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000479251134593,
+ "Shape_Area":1.29779169992e-08,
+ "Shape_Le_3":0.000479250561847,
+ "Shape_Ar_2":1.29779169992e-08,
+ "building_height":19.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1312,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55290997283882,
+ 45.532872076835176
+ ],
+ [
+ -73.55287876726314,
+ 45.53290654964784
+ ],
+ [
+ -73.5528230668529,
+ 45.532968049785964
+ ],
+ [
+ -73.55297666746108,
+ 45.533036849721135
+ ],
+ [
+ -73.55308483252085,
+ 45.533085260226876
+ ],
+ [
+ -73.55317257397695,
+ 45.53298334005939
+ ],
+ [
+ -73.55290997283882,
+ 45.532872076835176
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1312,
+ "ID_UEV":"01025504",
+ "CIVIQUE_DE":" 2543",
+ "CIVIQUE_FI":" 2543",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-66-6075-7-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":507,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000835967250768,
+ "OBJECTID":87360,
+ "Join_Count":1,
+ "TARGET_FID":87360,
+ "feature_id":"0076918e-f1bc-419f-93ce-b4211208ebf3",
+ "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.51,
+ "heightmax":32.35,
+ "elevmin":18.88,
+ "elevmax":19.8,
+ "bldgarea":633.69,
+ "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_2":87360,
+ "Shape_Le_1":0.000835967250768,
+ "Shape_Ar_1":3.59201777886e-08,
+ "OBJECTID_3":87360,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87359,
+ "g_objectid":"941207",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425150",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004366607570000000",
+ "g_sup_tota":"334.5",
+ "g_geometry":"0.000856795",
+ "g_geomet_1":"3.81925e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000835967250768,
+ "Shape_Area":3.59201777886e-08,
+ "Shape_Le_3":0.000835967981279,
+ "Shape_Ar_2":3.59201777886e-08,
+ "building_height":14.920000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1313,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55016305480298,
+ 45.538072963246954
+ ],
+ [
+ -73.55028807585586,
+ 45.5381172089923
+ ],
+ [
+ -73.55031736587559,
+ 45.53807615044428
+ ],
+ [
+ -73.55031256619382,
+ 45.53807445072562
+ ],
+ [
+ -73.55019646641564,
+ 45.538033850831845
+ ],
+ [
+ -73.55019216585761,
+ 45.53803235076267
+ ],
+ [
+ -73.55016305480298,
+ 45.538072963246954
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1313,
+ "ID_UEV":"01025635",
+ "CIVIQUE_DE":" 2919",
+ "CIVIQUE_FI":" 2919",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-7439-9-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000365662642044,
+ "OBJECTID":87373,
+ "Join_Count":1,
+ "TARGET_FID":87373,
+ "feature_id":"c31e14eb-c875-4573-828f-735db5cf235a",
+ "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.22,
+ "heightmax":32.13,
+ "elevmin":21.36,
+ "elevmax":22.26,
+ "bldgarea":596.89,
+ "comment":" ",
+ "OBJECTID_2":87373,
+ "Shape_Le_1":0.000365662642044,
+ "Shape_Ar_1":6.39589587636e-09,
+ "OBJECTID_3":87373,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87372,
+ "g_objectid":"944274",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361947",
+ "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":"66023004482743990000000",
+ "g_sup_tota":"280.3",
+ "g_geometry":"0.000842472",
+ "g_geomet_1":"3.22931e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000365662642044,
+ "Shape_Area":6.39589587636e-09,
+ "Shape_Le_3":0.000365663401278,
+ "Shape_Ar_2":6.39589587636e-09,
+ "building_height":13.955000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1314,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5500928303417,
+ 45.53817093179336
+ ],
+ [
+ -73.55021812029186,
+ 45.53821527286684
+ ],
+ [
+ -73.55025309852353,
+ 45.53816624092957
+ ],
+ [
+ -73.55012794347167,
+ 45.538121946620834
+ ],
+ [
+ -73.5500928303417,
+ 45.53817093179336
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1314,
+ "ID_UEV":"01025639",
+ "CIVIQUE_DE":" 2939",
+ "CIVIQUE_FI":" 2939",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-8152-7-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000386166198814,
+ "OBJECTID":87374,
+ "Join_Count":1,
+ "TARGET_FID":87374,
+ "feature_id":"c31e14eb-c875-4573-828f-735db5cf235a",
+ "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.22,
+ "heightmax":32.13,
+ "elevmin":21.36,
+ "elevmax":22.26,
+ "bldgarea":596.89,
+ "comment":" ",
+ "OBJECTID_2":87374,
+ "Shape_Le_1":0.000386166198814,
+ "Shape_Ar_1":7.69009583928e-09,
+ "OBJECTID_3":87374,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87373,
+ "g_objectid":"944276",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361949",
+ "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":"66023004482815270000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749063",
+ "g_geomet_1":"1.81936e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000386166198814,
+ "Shape_Area":7.69009583928e-09,
+ "Shape_Le_3":0.000386166627606,
+ "Shape_Ar_2":7.69009583928e-09,
+ "building_height":13.955000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1315,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56278079491959,
+ 45.52867568728344
+ ],
+ [
+ -73.56286347768919,
+ 45.52870870049642
+ ],
+ [
+ -73.56296309289426,
+ 45.52859917116511
+ ],
+ [
+ -73.56291356992716,
+ 45.528578548811275
+ ],
+ [
+ -73.56291327045291,
+ 45.52857844898653
+ ],
+ [
+ -73.56289336755671,
+ 45.52855557742825
+ ],
+ [
+ -73.56278079491959,
+ 45.52867568728344
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1315,
+ "ID_UEV":"01034497",
+ "CIVIQUE_DE":" 2373",
+ "CIVIQUE_FI":" 2377",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-81-8893-2-000-0000",
+ "SUPERFICIE":166,
+ "SUPERFIC_1":284,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000485980709058,
+ "OBJECTID":87378,
+ "Join_Count":1,
+ "TARGET_FID":87378,
+ "feature_id":"627c93de-3511-4cbc-a377-97d2326e5737",
+ "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.93,
+ "heightmax":40.68,
+ "elevmin":27.05,
+ "elevmax":39.63,
+ "bldgarea":2860.19,
+ "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_2":87378,
+ "Shape_Le_1":0.000485980709058,
+ "Shape_Ar_1":1.24505961765e-08,
+ "OBJECTID_3":87378,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87377,
+ "g_objectid":"942836",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884672",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994381819860000000",
+ "g_sup_tota":"267.3",
+ "g_geometry":"0.000736016",
+ "g_geomet_1":"3.02342e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000485980709058,
+ "Shape_Area":1.24505961765e-08,
+ "Shape_Le_3":0.000485980810756,
+ "Shape_Ar_2":1.24505961765e-08,
+ "building_height":19.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1316,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56006599976791,
+ 45.534407848193936
+ ],
+ [
+ -73.56016368502789,
+ 45.53445228819284
+ ],
+ [
+ -73.56034974396735,
+ 45.534252073025044
+ ],
+ [
+ -73.56028926905637,
+ 45.534221649859546
+ ],
+ [
+ -73.56028556924547,
+ 45.5342252498457
+ ],
+ [
+ -73.56022276868767,
+ 45.53429364958256
+ ],
+ [
+ -73.56019836918124,
+ 45.534282449425795
+ ],
+ [
+ -73.56018725895667,
+ 45.53427736375963
+ ],
+ [
+ -73.56006599976791,
+ 45.534407848193936
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1316,
+ "ID_UEV":"01023265",
+ "CIVIQUE_DE":" 2520",
+ "CIVIQUE_FI":" 2528",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-9725-6-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000763549583736,
+ "OBJECTID":87384,
+ "Join_Count":1,
+ "TARGET_FID":87384,
+ "feature_id":"29c4e604-8e30-495b-ab15-8f74b8b4825d",
+ "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.81,
+ "heightmax":51.24,
+ "elevmin":31.26,
+ "elevmax":39.48,
+ "bldgarea":1953.11,
+ "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_2":87384,
+ "Shape_Le_1":0.000763549583736,
+ "Shape_Ar_1":2.44108722943e-08,
+ "OBJECTID_3":87384,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87383,
+ "g_objectid":"941406",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425414",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308972560000000",
+ "g_sup_tota":"279.3",
+ "g_geometry":"0.000842575",
+ "g_geomet_1":"3.19786e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000763549583736,
+ "Shape_Area":2.44108722943e-08,
+ "Shape_Le_3":0.000763550063342,
+ "Shape_Ar_2":2.44108722943e-08,
+ "building_height":24.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1317,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56016368502789,
+ 45.53445228819284
+ ],
+ [
+ -73.56026195844447,
+ 45.534496996189716
+ ],
+ [
+ -73.56026994892085,
+ 45.53448839687231
+ ],
+ [
+ -73.56027102630867,
+ 45.534488890600116
+ ],
+ [
+ -73.56040545427014,
+ 45.534344235548325
+ ],
+ [
+ -73.56040437508369,
+ 45.53434374182052
+ ],
+ [
+ -73.56040649748371,
+ 45.53434145844185
+ ],
+ [
+ -73.56031326926382,
+ 45.53429474945342
+ ],
+ [
+ -73.5603542693559,
+ 45.53425435010847
+ ],
+ [
+ -73.56034974396735,
+ 45.534252073025044
+ ],
+ [
+ -73.56016368502789,
+ 45.53445228819284
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1317,
+ "ID_UEV":"01023267",
+ "CIVIQUE_DE":" 2530",
+ "CIVIQUE_FI":" 2538",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-9030-1-000-0000",
+ "SUPERFICIE":281,
+ "SUPERFIC_1":496,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000762886525294,
+ "OBJECTID":87385,
+ "Join_Count":1,
+ "TARGET_FID":87385,
+ "feature_id":"29c4e604-8e30-495b-ab15-8f74b8b4825d",
+ "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.81,
+ "heightmax":51.24,
+ "elevmin":31.26,
+ "elevmax":39.48,
+ "bldgarea":1953.11,
+ "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_2":87385,
+ "Shape_Le_1":0.000762886525294,
+ "Shape_Ar_1":2.23897028779e-08,
+ "OBJECTID_3":87385,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87384,
+ "g_objectid":"941406",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425414",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308972560000000",
+ "g_sup_tota":"279.3",
+ "g_geometry":"0.000842575",
+ "g_geomet_1":"3.19786e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000762886525294,
+ "Shape_Area":2.23897028779e-08,
+ "Shape_Le_3":0.000762887899621,
+ "Shape_Ar_2":2.23897028779e-08,
+ "building_height":24.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1318,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56036018689495,
+ 45.53454175185066
+ ],
+ [
+ -73.56043566879292,
+ 45.5345761500196
+ ],
+ [
+ -73.56045782449085,
+ 45.53458624311092
+ ],
+ [
+ -73.56057101586154,
+ 45.53446443803368
+ ],
+ [
+ -73.56047622641856,
+ 45.53441688368253
+ ],
+ [
+ -73.56036018689495,
+ 45.53454175185066
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56050177975517,
+ 45.53438938511233
+ ],
+ [
+ -73.5605660704896,
+ 45.53442224993718
+ ],
+ [
+ -73.56056967047576,
+ 45.534418749775774
+ ],
+ [
+ -73.56061337033262,
+ 45.534376249614525
+ ],
+ [
+ -73.5605458249517,
+ 45.534341989041856
+ ],
+ [
+ -73.56050177975517,
+ 45.53438938511233
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1318,
+ "ID_UEV":"01023272",
+ "CIVIQUE_DE":" 2550",
+ "CIVIQUE_FI":" 2558",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-7440-4-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":403,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000828708551299,
+ "OBJECTID":87386,
+ "Join_Count":2,
+ "TARGET_FID":87386,
+ "feature_id":"29c4e604-8e30-495b-ab15-8f74b8b4825d",
+ "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.81,
+ "heightmax":51.24,
+ "elevmin":31.26,
+ "elevmax":39.48,
+ "bldgarea":1953.11,
+ "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_2":87386,
+ "Shape_Le_1":0.000828708551299,
+ "Shape_Ar_1":2.17527986582e-08,
+ "OBJECTID_3":87386,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87385,
+ "g_objectid":"941402",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425410",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308674570000000",
+ "g_sup_tota":"279.3",
+ "g_geometry":"0.000841767",
+ "g_geomet_1":"3.19373e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000828708551299,
+ "Shape_Area":2.17527986582e-08,
+ "Shape_Le_3":0.000828709987321,
+ "Shape_Ar_2":2.17527986582e-08,
+ "building_height":24.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1319,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56045782449085,
+ 45.53458624311092
+ ],
+ [
+ -73.56055546928133,
+ 45.53463072627729
+ ],
+ [
+ -73.56074168470283,
+ 45.534430336641016
+ ],
+ [
+ -73.56068117022167,
+ 45.53440534987729
+ ],
+ [
+ -73.56068107039692,
+ 45.53440534987729
+ ],
+ [
+ -73.56063397020341,
+ 45.53445744940206
+ ],
+ [
+ -73.56063127043862,
+ 45.53446044954041
+ ],
+ [
+ -73.5606440704893,
+ 45.53446694984016
+ ],
+ [
+ -73.56062107032798,
+ 45.534489549803176
+ ],
+ [
+ -73.56057101586154,
+ 45.53446443803368
+ ],
+ [
+ -73.56045782449085,
+ 45.53458624311092
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1319,
+ "ID_UEV":"01023273",
+ "CIVIQUE_DE":" 2560",
+ "CIVIQUE_FI":" 2568",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-6745-7-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":391,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000789576298529,
+ "OBJECTID":87387,
+ "Join_Count":1,
+ "TARGET_FID":87387,
+ "feature_id":"29c4e604-8e30-495b-ab15-8f74b8b4825d",
+ "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.81,
+ "heightmax":51.24,
+ "elevmin":31.26,
+ "elevmax":39.48,
+ "bldgarea":1953.11,
+ "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_2":87387,
+ "Shape_Le_1":0.000789576298529,
+ "Shape_Ar_1":2.29202938518e-08,
+ "OBJECTID_3":87387,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87386,
+ "g_objectid":"941402",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425410",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308674570000000",
+ "g_sup_tota":"279.3",
+ "g_geometry":"0.000841767",
+ "g_geomet_1":"3.19373e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000789576298529,
+ "Shape_Area":2.29202938518e-08,
+ "Shape_Le_3":0.000789575438765,
+ "Shape_Ar_2":2.29202938518e-08,
+ "building_height":24.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1320,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55529795435895,
+ 45.5281392030121
+ ],
+ [
+ -73.55514566676095,
+ 45.52806714843045
+ ],
+ [
+ -73.55514376739279,
+ 45.52806914852268
+ ],
+ [
+ -73.55506546701953,
+ 45.52815684860997
+ ],
+ [
+ -73.55516746722668,
+ 45.52820744896489
+ ],
+ [
+ -73.55521273370255,
+ 45.52822990413706
+ ],
+ [
+ -73.55529795435895,
+ 45.5281392030121
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1320,
+ "ID_UEV":"01018332",
+ "CIVIQUE_DE":" 1871",
+ "CIVIQUE_FI":" 1879",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-41-9343-9-000-0000",
+ "SUPERFICIE":400,
+ "SUPERFIC_1":317,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000577646169627,
+ "OBJECTID":87393,
+ "Join_Count":1,
+ "TARGET_FID":87393,
+ "feature_id":"3797a97f-7ec7-42ee-9e37-547756dd2f29",
+ "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.57,
+ "heightmax":35.35,
+ "elevmin":21.71,
+ "elevmax":23.41,
+ "bldgarea":1414.89,
+ "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_2":87393,
+ "Shape_Le_1":0.000577646169627,
+ "Shape_Ar_1":1.95160080856e-08,
+ "OBJECTID_3":87393,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87392,
+ "g_objectid":"940910",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424630",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341934390000000",
+ "g_sup_tota":"399.8",
+ "g_geometry":"0.000900061",
+ "g_geomet_1":"4.61011e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000577646169627,
+ "Shape_Area":1.95160080856e-08,
+ "Shape_Le_3":0.000577647395207,
+ "Shape_Ar_2":1.95160080856e-08,
+ "building_height":16.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1321,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.552616936844,
+ 45.527629434001476
+ ],
+ [
+ -73.55254826641121,
+ 45.52759774908714
+ ],
+ [
+ -73.5524788198635,
+ 45.52766367119177
+ ],
+ [
+ -73.55255200219499,
+ 45.527697940757655
+ ],
+ [
+ -73.552616936844,
+ 45.527629434001476
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1321,
+ "ID_UEV":"01018337",
+ "CIVIQUE_DE":" 1680",
+ "CIVIQUE_FI":" 1682",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-60-9278-7-000-0000",
+ "SUPERFICIE":134,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000346580590798,
+ "OBJECTID":87394,
+ "Join_Count":1,
+ "TARGET_FID":87394,
+ "feature_id":"ea7467f8-ed4b-46d5-8326-ca5610cbac5a",
+ "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.56,
+ "heightmax":26.83,
+ "elevmin":17.72,
+ "elevmax":18.81,
+ "bldgarea":637.89,
+ "comment":" ",
+ "OBJECTID_2":87394,
+ "Shape_Le_1":0.000346580590798,
+ "Shape_Ar_1":6.98306394753e-09,
+ "OBJECTID_3":87394,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87393,
+ "g_objectid":"943556",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2339498",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004360868210000000",
+ "g_sup_tota":"134.3",
+ "g_geometry":"0.000557188",
+ "g_geomet_1":"1.54733e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000346580590798,
+ "Shape_Area":6.98306394753e-09,
+ "Shape_Le_3":0.00034658020682,
+ "Shape_Ar_2":6.98306394753e-09,
+ "building_height":12.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1322,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55004826623635,
+ 45.53069054907987
+ ],
+ [
+ -73.5501765662174,
+ 45.53075114899662
+ ],
+ [
+ -73.55021326575145,
+ 45.53076844925482
+ ],
+ [
+ -73.55030986642903,
+ 45.530814249028666
+ ],
+ [
+ -73.55044576568139,
+ 45.53067204912606
+ ],
+ [
+ -73.55027426586652,
+ 45.530591449186325
+ ],
+ [
+ -73.55023826600501,
+ 45.53057444840237
+ ],
+ [
+ -73.55023036636017,
+ 45.5305828489696
+ ],
+ [
+ -73.5501759663696,
+ 45.53055714904349
+ ],
+ [
+ -73.55004826623635,
+ 45.53069054907987
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1322,
+ "ID_UEV":"01018789",
+ "CIVIQUE_DE":" 1715",
+ "CIVIQUE_FI":" 1715",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":18,
+ "ANNEE_CONS":1966,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-84-7619-4-000-0000",
+ "SUPERFICIE":821,
+ "SUPERFIC_1":1330,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000971742864531,
+ "OBJECTID":87395,
+ "Join_Count":1,
+ "TARGET_FID":87395,
+ "feature_id":"c991d42d-e1d7-45d6-a1e8-8ad8511b1d3d",
+ "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":3.02,
+ "heightmax":32.62,
+ "elevmin":20.23,
+ "elevmax":22.69,
+ "bldgarea":461.97,
+ "comment":" ",
+ "OBJECTID_2":87395,
+ "Shape_Le_1":0.000971742864531,
+ "Shape_Ar_1":5.3231904996e-08,
+ "OBJECTID_3":87395,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87394,
+ "g_objectid":"940669",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424245",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"18",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004384761940000000",
+ "g_sup_tota":"820.8",
+ "g_geometry":"0.00129276",
+ "g_geomet_1":"9.4582e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000971742864531,
+ "Shape_Area":5.3231904996e-08,
+ "Shape_Le_3":0.00097174269345,
+ "Shape_Ar_2":5.3231904996e-08,
+ "building_height":14.799999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1323,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54993116641205,
+ 45.53063484866963
+ ],
+ [
+ -73.5500536657659,
+ 45.53050354855022
+ ],
+ [
+ -73.55000216608894,
+ 45.530479948541085
+ ],
+ [
+ -73.54979106642642,
+ 45.53038324893809
+ ],
+ [
+ -73.54966336629316,
+ 45.53052094863317
+ ],
+ [
+ -73.54979556573461,
+ 45.53058144872517
+ ],
+ [
+ -73.54979006638031,
+ 45.53058734917712
+ ],
+ [
+ -73.54979736617736,
+ 45.53059044914021
+ ],
+ [
+ -73.5498674665322,
+ 45.53062154859589
+ ],
+ [
+ -73.54987756591878,
+ 45.53061014878963
+ ],
+ [
+ -73.54993116641205,
+ 45.53063484866963
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1323,
+ "ID_UEV":"01018791",
+ "CIVIQUE_DE":" 1675",
+ "CIVIQUE_FI":" 1675",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":18,
+ "ANNEE_CONS":1966,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-0401-3-000-0000",
+ "SUPERFICIE":800,
+ "SUPERFIC_1":1335,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00096853482066,
+ "OBJECTID":87396,
+ "Join_Count":1,
+ "TARGET_FID":87396,
+ "feature_id":"7f993086-f8de-4613-8d96-707fc59fc6e7",
+ "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.1,
+ "heightmax":32.78,
+ "elevmin":20.32,
+ "elevmax":23.22,
+ "bldgarea":447.76,
+ "comment":" ",
+ "OBJECTID_2":87396,
+ "Shape_Le_1":0.00096853482066,
+ "Shape_Ar_1":5.15780400023e-08,
+ "OBJECTID_3":87396,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87395,
+ "g_objectid":"940687",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424273",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"18",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394040130000000",
+ "g_sup_tota":"799.9",
+ "g_geometry":"0.00127115",
+ "g_geomet_1":"9.21327e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00096853482066,
+ "Shape_Area":5.15780400023e-08,
+ "Shape_Le_3":0.00096853274129,
+ "Shape_Ar_2":5.15780400023e-08,
+ "building_height":14.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1324,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55269073251314,
+ 45.52988426999336
+ ],
+ [
+ -73.55281576525721,
+ 45.52994190574465
+ ],
+ [
+ -73.55286391046295,
+ 45.52989030714225
+ ],
+ [
+ -73.55273881476633,
+ 45.52983264171334
+ ],
+ [
+ -73.55269073251314,
+ 45.52988426999336
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1324,
+ "ID_UEV":"01018664",
+ "CIVIQUE_DE":" 2320",
+ "CIVIQUE_FI":" 2322",
+ "NOM_RUE":"rue Magnan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-8228-7-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":151,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000416546726129,
+ "OBJECTID":87398,
+ "Join_Count":1,
+ "TARGET_FID":87398,
+ "feature_id":"f781f827-5c89-440c-9211-565a44a84f3d",
+ "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.48,
+ "heightmax":27.31,
+ "elevmin":18.14,
+ "elevmax":19.37,
+ "bldgarea":405.43,
+ "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_2":87398,
+ "Shape_Le_1":0.000416546726129,
+ "Shape_Ar_1":9.22878691999e-09,
+ "OBJECTID_3":87398,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87397,
+ "g_objectid":"940807",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424466",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363822870000000",
+ "g_sup_tota":"156.3",
+ "g_geometry":"0.000679428",
+ "g_geomet_1":"1.80402e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000416546726129,
+ "Shape_Area":9.22878691999e-09,
+ "Shape_Le_3":0.00041654674738,
+ "Shape_Ar_2":9.22878691999e-09,
+ "building_height":12.415
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1325,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55255200219499,
+ 45.527697940757655
+ ],
+ [
+ -73.55262773590313,
+ 45.527733406421866
+ ],
+ [
+ -73.5526930149925,
+ 45.5276645372389
+ ],
+ [
+ -73.552616936844,
+ 45.527629434001476
+ ],
+ [
+ -73.55255200219499,
+ 45.527697940757655
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1325,
+ "ID_UEV":"01018338",
+ "CIVIQUE_DE":" 1686",
+ "CIVIQUE_FI":" 1688",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-60-8682-1-000-0000",
+ "SUPERFICIE":134,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000356696128159,
+ "OBJECTID":87400,
+ "Join_Count":1,
+ "TARGET_FID":87400,
+ "feature_id":"ea7467f8-ed4b-46d5-8326-ca5610cbac5a",
+ "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.56,
+ "heightmax":26.83,
+ "elevmin":17.72,
+ "elevmax":18.81,
+ "bldgarea":637.89,
+ "comment":" ",
+ "OBJECTID_2":87400,
+ "Shape_Le_1":0.000356696128159,
+ "Shape_Ar_1":7.51113722077e-09,
+ "OBJECTID_3":87400,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87399,
+ "g_objectid":"943556",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2339498",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004360868210000000",
+ "g_sup_tota":"134.3",
+ "g_geometry":"0.000557188",
+ "g_geomet_1":"1.54733e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000356696128159,
+ "Shape_Area":7.51113722077e-09,
+ "Shape_Le_3":0.000356695005906,
+ "Shape_Ar_2":7.51113722077e-09,
+ "building_height":12.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1326,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55262773590313,
+ 45.527733406421866
+ ],
+ [
+ -73.55270040382243,
+ 45.52776743676809
+ ],
+ [
+ -73.55276601296298,
+ 45.52769821864817
+ ],
+ [
+ -73.5526930149925,
+ 45.5276645372389
+ ],
+ [
+ -73.55262773590313,
+ 45.527733406421866
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1326,
+ "ID_UEV":"01018339",
+ "CIVIQUE_DE":" 1692",
+ "CIVIQUE_FI":" 1694",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-60-8186-3-000-0000",
+ "SUPERFICIE":129,
+ "SUPERFIC_1":141,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000350898199486,
+ "OBJECTID":87401,
+ "Join_Count":1,
+ "TARGET_FID":87401,
+ "feature_id":"ea7467f8-ed4b-46d5-8326-ca5610cbac5a",
+ "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.56,
+ "heightmax":26.83,
+ "elevmin":17.72,
+ "elevmax":18.81,
+ "bldgarea":637.89,
+ "comment":" ",
+ "OBJECTID_2":87401,
+ "Shape_Le_1":0.000350898199486,
+ "Shape_Ar_1":7.24435371338e-09,
+ "OBJECTID_3":87401,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87400,
+ "g_objectid":"943556",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2339498",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004360868210000000",
+ "g_sup_tota":"134.3",
+ "g_geometry":"0.000557188",
+ "g_geomet_1":"1.54733e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000350898199486,
+ "Shape_Area":7.24435371338e-09,
+ "Shape_Le_3":0.000350897651147,
+ "Shape_Ar_2":7.24435371338e-09,
+ "building_height":12.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1327,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55270040382243,
+ 45.52776743676809
+ ],
+ [
+ -73.55277459879055,
+ 45.527802181176014
+ ],
+ [
+ -73.55284054427754,
+ 45.52773260872321
+ ],
+ [
+ -73.55276601296298,
+ 45.52769821864817
+ ],
+ [
+ -73.55270040382243,
+ 45.52776743676809
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1327,
+ "ID_UEV":"01018340",
+ "CIVIQUE_DE":" 1698",
+ "CIVIQUE_FI":" 1700",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-60-7589-9-000-0000",
+ "SUPERFICIE":132,
+ "SUPERFIC_1":141,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000355240133331,
+ "OBJECTID":87402,
+ "Join_Count":1,
+ "TARGET_FID":87402,
+ "feature_id":"ea7467f8-ed4b-46d5-8326-ca5610cbac5a",
+ "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.56,
+ "heightmax":26.83,
+ "elevmin":17.72,
+ "elevmax":18.81,
+ "bldgarea":637.89,
+ "comment":" ",
+ "OBJECTID_2":87402,
+ "Shape_Le_1":0.000355240133331,
+ "Shape_Ar_1":7.43413394175e-09,
+ "OBJECTID_3":87402,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87401,
+ "g_objectid":"940932",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424678",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004360699340000000",
+ "g_sup_tota":"132.8",
+ "g_geometry":"0.000552578",
+ "g_geomet_1":"1.50097e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000355240133331,
+ "Shape_Area":7.43413394175e-09,
+ "Shape_Le_3":0.000355241441999,
+ "Shape_Ar_2":7.43413394175e-09,
+ "building_height":12.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1328,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55351386669344,
+ 45.51960909113694
+ ],
+ [
+ -73.55358923437751,
+ 45.51964834474561
+ ],
+ [
+ -73.55370850336658,
+ 45.51952007714014
+ ],
+ [
+ -73.55363064905706,
+ 45.519483497215916
+ ],
+ [
+ -73.55351386669344,
+ 45.51960909113694
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1328,
+ "ID_UEV":"01021960",
+ "CIVIQUE_DE":" 1257",
+ "CIVIQUE_FI":" 1263",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-61-1487-2-000-0000",
+ "SUPERFICIE":230,
+ "SUPERFIC_1":634,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000517645917991,
+ "OBJECTID":87417,
+ "Join_Count":1,
+ "TARGET_FID":87417,
+ "feature_id":"d598d463-63c0-4208-981f-88adf2020e72",
+ "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.37,
+ "heightmax":28.06,
+ "elevmin":16.9,
+ "elevmax":18.74,
+ "bldgarea":2761.84,
+ "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_2":87417,
+ "Shape_Le_1":0.000517645917991,
+ "Shape_Ar_1":1.41994202586e-08,
+ "OBJECTID_3":87417,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87416,
+ "g_objectid":"941873",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566758",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004261148720000000",
+ "g_sup_tota":"229.7",
+ "g_geometry":"0.000820868",
+ "g_geomet_1":"2.65636e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000517645917991,
+ "Shape_Area":1.41994202586e-08,
+ "Shape_Le_3":0.00051764648523,
+ "Shape_Ar_2":1.41994202586e-08,
+ "building_height":12.844999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1329,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55580696434177,
+ 45.53168599876013
+ ],
+ [
+ -73.55593472742757,
+ 45.53174240783615
+ ],
+ [
+ -73.55599916834879,
+ 45.531667348619536
+ ],
+ [
+ -73.5558764684461,
+ 45.53161534891951
+ ],
+ [
+ -73.55587186841385,
+ 45.53161334882728
+ ],
+ [
+ -73.55580696434177,
+ 45.53168599876013
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1329,
+ "ID_UEV":"01023094",
+ "CIVIQUE_DE":" 2345",
+ "CIVIQUE_FI":" 2349",
+ "NOM_RUE":"place Larivi\u00c3\u00a8re (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-45-2833-7-000-0000",
+ "SUPERFICIE":255,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0004742877326,
+ "OBJECTID":87418,
+ "Join_Count":1,
+ "TARGET_FID":87418,
+ "feature_id":"06d69728-84a0-4028-9167-9b680f4c2f16",
+ "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.46,
+ "heightmax":30.8,
+ "elevmin":18.27,
+ "elevmax":18.95,
+ "bldgarea":405.25,
+ "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_2":87418,
+ "Shape_Le_1":0.0004742877326,
+ "Shape_Ar_1":1.29858881978e-08,
+ "OBJECTID_3":87418,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87417,
+ "g_objectid":"940574",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424090",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004345334020000000",
+ "g_sup_tota":"193.4",
+ "g_geometry":"0.000741252",
+ "g_geomet_1":"2.23141e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0004742877326,
+ "Shape_Area":1.29858881978e-08,
+ "Shape_Le_3":0.000474287812418,
+ "Shape_Ar_2":1.29858881978e-08,
+ "building_height":14.17
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1330,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55023106603272,
+ 45.53778795100343
+ ],
+ [
+ -73.55022796606963,
+ 45.5377925510357
+ ],
+ [
+ -73.55023366597275,
+ 45.53779455112793
+ ],
+ [
+ -73.55050146609163,
+ 45.53788665069867
+ ],
+ [
+ -73.55053566640971,
+ 45.53789845070323
+ ],
+ [
+ -73.55059856589294,
+ 45.53780805085116
+ ],
+ [
+ -73.55053386596698,
+ 45.53778575126171
+ ],
+ [
+ -73.55053336594393,
+ 45.53778635110951
+ ],
+ [
+ -73.55049856577803,
+ 45.5377744512802
+ ],
+ [
+ -73.55034256577864,
+ 45.537721050436424
+ ],
+ [
+ -73.55019966620348,
+ 45.53767215069949
+ ],
+ [
+ -73.5500662661671,
+ 45.537626450750395
+ ],
+ [
+ -73.5500637660518,
+ 45.5376299509118
+ ],
+ [
+ -73.55000756651782,
+ 45.53771505105905
+ ],
+ [
+ -73.55005056580282,
+ 45.53772915063009
+ ],
+ [
+ -73.55023106603272,
+ 45.53778795100343
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55025266594961,
+ 45.53740895061288
+ ],
+ [
+ -73.55025606628628,
+ 45.537410251032554
+ ],
+ [
+ -73.55038416571851,
+ 45.53745525040977
+ ],
+ [
+ -73.5506044663449,
+ 45.53753265056167
+ ],
+ [
+ -73.55073446604462,
+ 45.53757835051076
+ ],
+ [
+ -73.55073586628905,
+ 45.53757635041853
+ ],
+ [
+ -73.55079426646407,
+ 45.53749665070016
+ ],
+ [
+ -73.55070006607703,
+ 45.53746265093089
+ ],
+ [
+ -73.55046986571358,
+ 45.53737945105112
+ ],
+ [
+ -73.55035056614756,
+ 45.53733625121731
+ ],
+ [
+ -73.55031546650741,
+ 45.53732355099138
+ ],
+ [
+ -73.55025266594961,
+ 45.53740895061288
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1330,
+ "ID_UEV":"01025436",
+ "CIVIQUE_DE":" 2030",
+ "CIVIQUE_FI":" 2050",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":38,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-6388-1-000-0000",
+ "SUPERFICIE":2641,
+ "SUPERFIC_1":2537,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00257248636064,
+ "OBJECTID":87420,
+ "Join_Count":2,
+ "TARGET_FID":87420,
+ "feature_id":"df1e54be-10c1-4449-9df5-c5f888612f98",
+ "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":31.98,
+ "elevmin":20.81,
+ "elevmax":21.5,
+ "bldgarea":439.51,
+ "comment":" ",
+ "OBJECTID_2":87420,
+ "Shape_Le_1":0.00257248636064,
+ "Shape_Ar_1":1.08683969997e-07,
+ "OBJECTID_3":87420,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87419,
+ "g_objectid":"944244",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361911",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"38",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481638810000000",
+ "g_sup_tota":"2641.4",
+ "g_geometry":"0.00225707",
+ "g_geomet_1":"3.0434e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00257248636064,
+ "Shape_Area":1.08683969997e-07,
+ "Shape_Le_3":0.00257248539059,
+ "Shape_Ar_2":1.08683969997e-07,
+ "building_height":15.735
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1331,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55708467973602,
+ 45.52350456753206
+ ],
+ [
+ -73.55698346823432,
+ 45.52345914817145
+ ],
+ [
+ -73.55691684016189,
+ 45.523532596702275
+ ],
+ [
+ -73.55701561989679,
+ 45.52357831104052
+ ],
+ [
+ -73.55708467973602,
+ 45.52350456753206
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55712728242,
+ 45.523257099286
+ ],
+ [
+ -73.55719845926333,
+ 45.5232886034366
+ ],
+ [
+ -73.55712825728509,
+ 45.523256057871066
+ ],
+ [
+ -73.55712728242,
+ 45.523257099286
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1331,
+ "ID_UEV":"01032564",
+ "CIVIQUE_DE":" 1714",
+ "CIVIQUE_FI":" 1718",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-36-4112-5-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":262,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000576622824054,
+ "OBJECTID":87423,
+ "Join_Count":2,
+ "TARGET_FID":87423,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":87423,
+ "Shape_Le_1":0.000576622824054,
+ "Shape_Ar_1":1.05031594784e-08,
+ "OBJECTID_3":87423,
+ "Join_Cou_1":6,
+ "TARGET_F_1":87422,
+ "g_objectid":"942089",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567330",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235228380000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100224",
+ "g_geomet_1":"4.91112e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000576622824054,
+ "Shape_Area":1.05031594784e-08,
+ "Shape_Le_3":0.000576621492657,
+ "Shape_Ar_2":1.05031594784e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1332,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55796812245273,
+ 45.53670584355014
+ ],
+ [
+ -73.55809873549009,
+ 45.53675219011178
+ ],
+ [
+ -73.55813086916612,
+ 45.53671044987765
+ ],
+ [
+ -73.55814053507947,
+ 45.53669788994596
+ ],
+ [
+ -73.55800379136373,
+ 45.536649388608694
+ ],
+ [
+ -73.55796812245273,
+ 45.53670584355014
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1332,
+ "ID_UEV":"01025952",
+ "CIVIQUE_DE":" 2675",
+ "CIVIQUE_FI":" 2679",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-20-6290-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":223,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000418986896586,
+ "OBJECTID":87424,
+ "Join_Count":1,
+ "TARGET_FID":87424,
+ "feature_id":"75a82f11-6f58-498f-9a37-33b9728739c0",
+ "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":40.46,
+ "elevmin":26.69,
+ "elevmax":28.7,
+ "bldgarea":885.51,
+ "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_2":87424,
+ "Shape_Le_1":0.000418986896586,
+ "Shape_Ar_1":9.23977879625e-09,
+ "OBJECTID_3":87424,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87423,
+ "g_objectid":"940981",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424792",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004420629070000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000797916",
+ "g_geomet_1":"2.15818e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000418986896586,
+ "Shape_Area":9.23977879625e-09,
+ "Shape_Le_3":0.000418986748322,
+ "Shape_Ar_2":9.23977879625e-09,
+ "building_height":19.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1333,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5553094315069,
+ 45.53576317508076
+ ],
+ [
+ -73.55536314981136,
+ 45.5357817334905
+ ],
+ [
+ -73.55539435089042,
+ 45.5357387701784
+ ],
+ [
+ -73.55533896794087,
+ 45.5357173501259
+ ],
+ [
+ -73.55533656854965,
+ 45.535716649554026
+ ],
+ [
+ -73.55533076792244,
+ 45.535735350056655
+ ],
+ [
+ -73.55533106829601,
+ 45.5357354498814
+ ],
+ [
+ -73.5553094315069,
+ 45.53576317508076
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55506676833853,
+ 45.535678707156904
+ ],
+ [
+ -73.55518172238042,
+ 45.53571949860627
+ ],
+ [
+ -73.55518198048586,
+ 45.535719144273386
+ ],
+ [
+ -73.55520281777767,
+ 45.53572634244704
+ ],
+ [
+ -73.55524666782131,
+ 45.53568284943425
+ ],
+ [
+ -73.55524656799656,
+ 45.5356827496095
+ ],
+ [
+ -73.55526562283207,
+ 45.53567767743316
+ ],
+ [
+ -73.55510496074719,
+ 45.53562077373002
+ ],
+ [
+ -73.55506676833853,
+ 45.535678707156904
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1333,
+ "ID_UEV":"01025743",
+ "CIVIQUE_DE":" 2677",
+ "CIVIQUE_FI":" 2681",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-49-8677-4-000-0000",
+ "SUPERFICIE":185,
+ "SUPERFIC_1":233,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00069279231776,
+ "OBJECTID":87425,
+ "Join_Count":2,
+ "TARGET_FID":87425,
+ "feature_id":"73d47a04-03d8-4179-af51-aa73d82e20ac",
+ "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.51,
+ "heightmax":22.96,
+ "elevmin":19.05,
+ "elevmax":19.91,
+ "bldgarea":27.91,
+ "comment":" ",
+ "OBJECTID_2":87425,
+ "Shape_Le_1":0.00069279231776,
+ "Shape_Ar_1":1.3249172421e-08,
+ "OBJECTID_3":87425,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87424,
+ "g_objectid":"940948",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424744",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004349898360000000",
+ "g_sup_tota":"179.3",
+ "g_geometry":"0.000772454",
+ "g_geomet_1":"2.03926e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00069279231776,
+ "Shape_Area":1.3249172421e-08,
+ "Shape_Le_3":0.000692789626647,
+ "Shape_Ar_2":1.3249172421e-08,
+ "building_height":10.225000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1334,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54948184443342,
+ 45.53110026491559
+ ],
+ [
+ -73.54948416648294,
+ 45.53110124967323
+ ],
+ [
+ -73.54946266639078,
+ 45.531126249926785
+ ],
+ [
+ -73.54946276621553,
+ 45.53112634975154
+ ],
+ [
+ -73.54967841374965,
+ 45.531221716559266
+ ],
+ [
+ -73.5497568283368,
+ 45.5311301502865
+ ],
+ [
+ -73.54966586640845,
+ 45.53109214943345
+ ],
+ [
+ -73.54953546651042,
+ 45.53103764961813
+ ],
+ [
+ -73.54948184443342,
+ 45.53110026491559
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1334,
+ "ID_UEV":"01018923",
+ "CIVIQUE_DE":" 1685",
+ "CIVIQUE_FI":" 1685",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-2772-5-000-0000",
+ "SUPERFICIE":491,
+ "SUPERFIC_1":613,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00071433423498,
+ "OBJECTID":87431,
+ "Join_Count":1,
+ "TARGET_FID":87431,
+ "feature_id":"303a4421-75af-424d-ba33-bc6b6e90f934",
+ "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.56,
+ "heightmax":34.21,
+ "elevmin":22.67,
+ "elevmax":23.71,
+ "bldgarea":660.06,
+ "comment":" ",
+ "OBJECTID_2":87431,
+ "Shape_Le_1":0.00071433423498,
+ "Shape_Ar_1":2.6855564227e-08,
+ "OBJECTID_3":87431,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87430,
+ "g_objectid":"941244",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425203",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394277250000000",
+ "g_sup_tota":"490.5",
+ "g_geometry":"0.000973823",
+ "g_geomet_1":"5.65002e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00071433423498,
+ "Shape_Area":2.6855564227e-08,
+ "Shape_Le_3":0.000714333889566,
+ "Shape_Ar_2":2.6855564227e-08,
+ "building_height":15.825000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1335,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55030319345946,
+ 45.52501320454605
+ ],
+ [
+ -73.55057802267945,
+ 45.525140370482006
+ ],
+ [
+ -73.55062327296751,
+ 45.52509179899762
+ ],
+ [
+ -73.55035316518827,
+ 45.5249628479074
+ ],
+ [
+ -73.55035096544654,
+ 45.524961847861285
+ ],
+ [
+ -73.55030319345946,
+ 45.52501320454605
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1335,
+ "ID_UEV":"01019404",
+ "CIVIQUE_DE":" 2101",
+ "CIVIQUE_FI":" 2103",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1947,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-87-5893-2-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":588,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000741075898028,
+ "OBJECTID":87432,
+ "Join_Count":1,
+ "TARGET_FID":87432,
+ "feature_id":"64575903-8ae4-46de-995d-ab9ea8ce7c87",
+ "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":3.07,
+ "heightmax":33.68,
+ "elevmin":16.68,
+ "elevmax":18.79,
+ "bldgarea":1899.08,
+ "comment":" ",
+ "OBJECTID_2":87432,
+ "Shape_Le_1":0.000741075898028,
+ "Shape_Ar_1":1.96549148046e-08,
+ "OBJECTID_3":87432,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87431,
+ "g_objectid":"940937",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"24",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004288630130000000",
+ "g_sup_tota":"316.8",
+ "g_geometry":"0.00086531",
+ "g_geomet_1":"3.63245e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000741075898028,
+ "Shape_Area":1.96549148046e-08,
+ "Shape_Le_3":0.00074107436623,
+ "Shape_Ar_2":1.96549148046e-08,
+ "building_height":15.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1336,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5484291025429,
+ 45.52182342346252
+ ],
+ [
+ -73.54844806474823,
+ 45.52180074795645
+ ],
+ [
+ -73.54838836415352,
+ 45.5217761479012
+ ],
+ [
+ -73.54833076437512,
+ 45.52184514748586
+ ],
+ [
+ -73.54838818698708,
+ 45.521868849118384
+ ],
+ [
+ -73.5484291025429,
+ 45.52182342346252
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54836364089115,
+ 45.521771772699445
+ ],
+ [
+ -73.54832951611613,
+ 45.521809656640635
+ ],
+ [
+ -73.54836466431965,
+ 45.521772247541485
+ ],
+ [
+ -73.54836364089115,
+ 45.521771772699445
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1336,
+ "ID_UEV":"01022150",
+ "CIVIQUE_DE":" 1085",
+ "CIVIQUE_FI":" 1087",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0142-04-2339-2-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":133,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000410715150449,
+ "OBJECTID":87433,
+ "Join_Count":2,
+ "TARGET_FID":87433,
+ "feature_id":"60ee9af3-d26b-4522-bca9-38ef0592efc2",
+ "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.78,
+ "elevmin":17.65,
+ "elevmax":18.93,
+ "bldgarea":387.32,
+ "comment":" ",
+ "OBJECTID_2":87433,
+ "Shape_Le_1":0.000410715150449,
+ "Shape_Ar_1":5.49371008378e-09,
+ "OBJECTID_3":87433,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87432,
+ "g_objectid":"939677",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182619",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014204233920000000",
+ "g_sup_tota":"171.2",
+ "g_geometry":"0.000647517",
+ "g_geomet_1":"1.97022e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000410715150449,
+ "Shape_Area":5.49371008378e-09,
+ "Shape_Le_3":0.000410714528745,
+ "Shape_Ar_2":5.49371008378e-09,
+ "building_height":5.635
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1337,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55519548380637,
+ 45.535930114433526
+ ],
+ [
+ -73.55523586696353,
+ 45.5359444316405
+ ],
+ [
+ -73.55523626806117,
+ 45.53594454945169
+ ],
+ [
+ -73.55525156822713,
+ 45.53591884952558
+ ],
+ [
+ -73.5552460679735,
+ 45.535917349456405
+ ],
+ [
+ -73.55520956808894,
+ 45.53590654949796
+ ],
+ [
+ -73.55519548380637,
+ 45.535930114433526
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55499390346772,
+ 45.535789259017385
+ ],
+ [
+ -73.55495683790959,
+ 45.53584550801408
+ ],
+ [
+ -73.55510731427297,
+ 45.53589885579785
+ ],
+ [
+ -73.55514691771792,
+ 45.53584353310286
+ ],
+ [
+ -73.55499390346772,
+ 45.535789259017385
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1337,
+ "ID_UEV":"01025749",
+ "CIVIQUE_DE":" 2695",
+ "CIVIQUE_FI":" 2699",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-49-9596-5-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":253,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000601800226195,
+ "OBJECTID":87438,
+ "Join_Count":2,
+ "TARGET_FID":87438,
+ "feature_id":"cf7fc674-9358-4bea-8d54-079e1def055b",
+ "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.13,
+ "heightmax":2.7,
+ "elevmin":19.48,
+ "elevmax":19.96,
+ "bldgarea":10.97,
+ "comment":" ",
+ "OBJECTID_2":87438,
+ "Shape_Le_1":0.000601800226195,
+ "Shape_Ar_1":1.17422389562e-08,
+ "OBJECTID_3":87438,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87437,
+ "g_objectid":"940950",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424746",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004349928970000000",
+ "g_sup_tota":"178.9",
+ "g_geometry":"0.000768614",
+ "g_geomet_1":"2.06933e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000601800226195,
+ "Shape_Area":1.17422389562e-08,
+ "Shape_Le_3":0.000601800060678,
+ "Shape_Ar_2":1.17422389562e-08,
+ "building_height":0.28500000000000014
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1338,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5512793310981,
+ 45.53706800323606
+ ],
+ [
+ -73.55128026729234,
+ 45.53706835127369
+ ],
+ [
+ -73.55126446710332,
+ 45.53708925061871
+ ],
+ [
+ -73.5512700671817,
+ 45.5370913505357
+ ],
+ [
+ -73.55133364745171,
+ 45.537114276053295
+ ],
+ [
+ -73.55141544348977,
+ 45.53699946050699
+ ],
+ [
+ -73.55139106736571,
+ 45.53699134952146
+ ],
+ [
+ -73.55134487998407,
+ 45.53697599359752
+ ],
+ [
+ -73.5512793310981,
+ 45.53706800323606
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1338,
+ "ID_UEV":"01025289",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2079",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-9128-9-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":223,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000429071588986,
+ "OBJECTID":87440,
+ "Join_Count":1,
+ "TARGET_FID":87440,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":87440,
+ "Shape_Le_1":0.000429071588986,
+ "Shape_Ar_1":9.93709881813e-09,
+ "OBJECTID_3":87440,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87439,
+ "g_objectid":"943812",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360970",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471863130000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.000635781",
+ "g_geomet_1":"1.73461e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000429071588986,
+ "Shape_Area":9.93709881813e-09,
+ "Shape_Le_3":0.000429073221816,
+ "Shape_Ar_2":9.93709881813e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1339,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55119349710405,
+ 45.53706750411232
+ ],
+ [
+ -73.55123166702965,
+ 45.537081350973864
+ ],
+ [
+ -73.5512317668544,
+ 45.53708145079861
+ ],
+ [
+ -73.55125016698346,
+ 45.537057151116926
+ ],
+ [
+ -73.5512793310981,
+ 45.53706800323606
+ ],
+ [
+ -73.55134487998407,
+ 45.53697599359752
+ ],
+ [
+ -73.55127519691464,
+ 45.53695282616229
+ ],
+ [
+ -73.55119349710405,
+ 45.53706750411232
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1339,
+ "ID_UEV":"01025291",
+ "CIVIQUE_DE":" 2069",
+ "CIVIQUE_FI":" 2073",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-9625-4-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":216,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000429551932886,
+ "OBJECTID":87441,
+ "Join_Count":1,
+ "TARGET_FID":87441,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":87441,
+ "Shape_Le_1":0.000429551932886,
+ "Shape_Ar_1":9.04068895106e-09,
+ "OBJECTID_3":87441,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87440,
+ "g_objectid":"943810",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360968",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471962540000000",
+ "g_sup_tota":"148.7",
+ "g_geometry":"0.000634019",
+ "g_geomet_1":"1.71283e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000429551932886,
+ "Shape_Area":9.04068895106e-09,
+ "Shape_Le_3":0.000429551731923,
+ "Shape_Ar_2":9.04068895106e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1340,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55103299599782,
+ 45.537049292840884
+ ],
+ [
+ -73.55107156702104,
+ 45.537064050715664
+ ],
+ [
+ -73.5510716668458,
+ 45.537064050715664
+ ],
+ [
+ -73.55112446694244,
+ 45.53701075059596
+ ],
+ [
+ -73.55114174291894,
+ 45.5370191637537
+ ],
+ [
+ -73.55120551114727,
+ 45.536929656029095
+ ],
+ [
+ -73.55113494404428,
+ 45.53690619361624
+ ],
+ [
+ -73.55103299599782,
+ 45.537049292840884
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1340,
+ "ID_UEV":"01025295",
+ "CIVIQUE_DE":" 2057",
+ "CIVIQUE_FI":" 2061",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-0720-1-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":219,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000495604276263,
+ "OBJECTID":87443,
+ "Join_Count":1,
+ "TARGET_FID":87443,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":87443,
+ "Shape_Le_1":0.000495604276263,
+ "Shape_Ar_1":1.08544484538e-08,
+ "OBJECTID_3":87443,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87442,
+ "g_objectid":"943808",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360966",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481072010000000",
+ "g_sup_tota":"150.6",
+ "g_geometry":"0.00063599",
+ "g_geomet_1":"1.73497e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000495604276263,
+ "Shape_Area":1.08544484538e-08,
+ "Shape_Le_3":0.000495604624892,
+ "Shape_Ar_2":1.08544484538e-08,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1341,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5613419992557,
+ 45.5081171547332
+ ],
+ [
+ -73.56146642225943,
+ 45.50817404314787
+ ],
+ [
+ -73.56155396856265,
+ 45.50807614474858
+ ],
+ [
+ -73.561562067857,
+ 45.50807972854693
+ ],
+ [
+ -73.56161741843096,
+ 45.50801997669087
+ ],
+ [
+ -73.56148326835999,
+ 45.50796024461989
+ ],
+ [
+ -73.5613419992557,
+ 45.5081171547332
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1341,
+ "ID_UEV":"01058566",
+ "CIVIQUE_DE":" 1108",
+ "CIVIQUE_FI":" 1110",
+ "NOM_RUE":"rue Clark (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":22,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-99-9506-7-000-0000",
+ "SUPERFICIE":276,
+ "SUPERFIC_1":828,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000716432118554,
+ "OBJECTID":87448,
+ "Join_Count":1,
+ "TARGET_FID":87448,
+ "feature_id":"faf3f3ca-7bbd-4650-bb33-3476e8f6e644",
+ "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":5.19,
+ "heightmax":14.12,
+ "elevmin":19.59,
+ "elevmax":21.99,
+ "bldgarea":250.81,
+ "comment":" ",
+ "OBJECTID_2":87448,
+ "Shape_Le_1":0.000716432118554,
+ "Shape_Ar_1":2.83174959991e-08,
+ "OBJECTID_3":87448,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87447,
+ "g_objectid":"945664",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004017665480000000",
+ "g_sup_tota":"4897.3",
+ "g_geometry":"0.00936171",
+ "g_geomet_1":"5.63963e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000716432118554,
+ "Shape_Area":2.83174959991e-08,
+ "Shape_Le_3":0.000716432599535,
+ "Shape_Ar_2":2.83174959991e-08,
+ "building_height":4.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1342,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54674582078485,
+ 45.52948748191206
+ ],
+ [
+ -73.5469338573335,
+ 45.52956762589552
+ ],
+ [
+ -73.54697904646767,
+ 45.529515489498536
+ ],
+ [
+ -73.54685795545213,
+ 45.52946264623443
+ ],
+ [
+ -73.54682846488359,
+ 45.52947234901999
+ ],
+ [
+ -73.54682436487438,
+ 45.529466049269054
+ ],
+ [
+ -73.54682276498046,
+ 45.52946534869718
+ ],
+ [
+ -73.54671242356135,
+ 45.529418778204345
+ ],
+ [
+ -73.54667610893712,
+ 45.529457772808264
+ ],
+ [
+ -73.54674582078485,
+ 45.52948748191206
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1342,
+ "ID_UEV":"01018961",
+ "CIVIQUE_DE":" 2462",
+ "CIVIQUE_FI":" 2466",
+ "NOM_RUE":"rue Champagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1912,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-12-4186-6-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":333,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000694656079293,
+ "OBJECTID":87450,
+ "Join_Count":1,
+ "TARGET_FID":87450,
+ "feature_id":"8c3e505e-c027-4ce3-8c01-76b54c998acb",
+ "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.1,
+ "heightmax":12.52,
+ "elevmin":19.64,
+ "elevmax":20.09,
+ "bldgarea":681.9,
+ "comment":" ",
+ "OBJECTID_2":87450,
+ "Shape_Le_1":0.000694656079293,
+ "Shape_Ar_1":1.62486406963e-08,
+ "OBJECTID_3":87450,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87449,
+ "g_objectid":"940721",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424322",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014312559080000000",
+ "g_sup_tota":"89",
+ "g_geometry":"0.000432547",
+ "g_geomet_1":"1.0103e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000694656079293,
+ "Shape_Area":1.62486406963e-08,
+ "Shape_Le_3":0.00069465639047,
+ "Shape_Ar_2":1.62486406963e-08,
+ "building_height":5.71
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1343,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55903043043186,
+ 45.53676792375098
+ ],
+ [
+ -73.55893506902007,
+ 45.536735149757654
+ ],
+ [
+ -73.55894326903848,
+ 45.53672344957783
+ ],
+ [
+ -73.55891306890486,
+ 45.53671314964244
+ ],
+ [
+ -73.5589129690801,
+ 45.536713249467184
+ ],
+ [
+ -73.5588763693708,
+ 45.53675674967455
+ ],
+ [
+ -73.55888026883119,
+ 45.53675834956847
+ ],
+ [
+ -73.55892876926913,
+ 45.53677595020024
+ ],
+ [
+ -73.5588701694446,
+ 45.53685545026911
+ ],
+ [
+ -73.55894736904769,
+ 45.53688354958644
+ ],
+ [
+ -73.55894806782092,
+ 45.53688380409458
+ ],
+ [
+ -73.55903043043186,
+ 45.53676792375098
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1343,
+ "ID_UEV":"01024121",
+ "CIVIQUE_DE":" 2549",
+ "CIVIQUE_FI":" 2553",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1949,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-9802-5-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":203,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000583661814694,
+ "OBJECTID":87458,
+ "Join_Count":1,
+ "TARGET_FID":87458,
+ "feature_id":"36c55000-6ec5-4466-8b6a-3d3b555fb0cb",
+ "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.65,
+ "heightmax":48.99,
+ "elevmin":31.24,
+ "elevmax":39.46,
+ "bldgarea":631.06,
+ "comment":" ",
+ "OBJECTID_2":87458,
+ "Shape_Le_1":0.000583661814694,
+ "Shape_Ar_1":1.37720611324e-08,
+ "OBJECTID_3":87458,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87457,
+ "g_objectid":"944177",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361442",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411980250000000",
+ "g_sup_tota":"280.1",
+ "g_geometry":"0.000756219",
+ "g_geomet_1":"3.22204e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000583661814694,
+ "Shape_Area":1.37720611324e-08,
+ "Shape_Le_3":0.000583662216243,
+ "Shape_Ar_2":1.37720611324e-08,
+ "building_height":24.17
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1344,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5587117664567,
+ 45.53674384710116
+ ],
+ [
+ -73.55871926950053,
+ 45.53674644973916
+ ],
+ [
+ -73.55867996912711,
+ 45.53680274999721
+ ],
+ [
+ -73.55877496901145,
+ 45.536835550070876
+ ],
+ [
+ -73.55886346949536,
+ 45.53670884998373
+ ],
+ [
+ -73.55881256876688,
+ 45.53669135007604
+ ],
+ [
+ -73.55876121747805,
+ 45.53667366310936
+ ],
+ [
+ -73.5587117664567,
+ 45.53674384710116
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1344,
+ "ID_UEV":"01024123",
+ "CIVIQUE_DE":" 2539",
+ "CIVIQUE_FI":" 2545",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1950,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-20-0997-3-000-0000",
+ "SUPERFICIE":306,
+ "SUPERFIC_1":236,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000525645306199,
+ "OBJECTID":87459,
+ "Join_Count":1,
+ "TARGET_FID":87459,
+ "feature_id":"f7bf40e1-d2ef-4728-9f4c-6628fe8cdc9d",
+ "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.6,
+ "heightmax":40.68,
+ "elevmin":27.68,
+ "elevmax":31.72,
+ "bldgarea":561.53,
+ "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_2":87459,
+ "Shape_Le_1":0.000525645306199,
+ "Shape_Ar_1":1.55762118983e-08,
+ "OBJECTID_3":87459,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87458,
+ "g_objectid":"944689",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004420099730000000",
+ "g_sup_tota":"305.7",
+ "g_geometry":"0.00078315",
+ "g_geomet_1":"3.54558e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000525645306199,
+ "Shape_Area":1.55762118983e-08,
+ "Shape_Le_3":0.000525645898959,
+ "Shape_Ar_2":1.55762118983e-08,
+ "building_height":20.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1345,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55538025941328,
+ 45.53598125078439
+ ],
+ [
+ -73.55545523409363,
+ 45.53601075754072
+ ],
+ [
+ -73.55552606829526,
+ 45.53591207583193
+ ],
+ [
+ -73.5555088678618,
+ 45.535904849779286
+ ],
+ [
+ -73.55546006794962,
+ 45.53588455028206
+ ],
+ [
+ -73.5554512680834,
+ 45.53589564971476
+ ],
+ [
+ -73.55544381090499,
+ 45.53589271522692
+ ],
+ [
+ -73.55538025941328,
+ 45.53598125078439
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1345,
+ "ID_UEV":"01024287",
+ "CIVIQUE_DE":" 2266",
+ "CIVIQUE_FI":" 2270",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-6600-5-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":221,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000404717857665,
+ "OBJECTID":87462,
+ "Join_Count":1,
+ "TARGET_FID":87462,
+ "feature_id":"2ee29968-0b2e-43d2-a3b0-66bd8f109b2f",
+ "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,
+ "heightmax":30.41,
+ "elevmin":19.34,
+ "elevmax":20.79,
+ "bldgarea":628.6,
+ "comment":" ",
+ "OBJECTID_2":87462,
+ "Shape_Le_1":0.000404717857665,
+ "Shape_Ar_1":9.4415830449e-09,
+ "OBJECTID_3":87462,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87461,
+ "g_objectid":"940952",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424749",
+ "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":"66023004349729720000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000656788",
+ "g_geomet_1":"1.917e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000404717857665,
+ "Shape_Area":9.4415830449e-09,
+ "Shape_Le_3":0.000404716292709,
+ "Shape_Ar_2":9.4415830449e-09,
+ "building_height":15.205
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1346,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57869219950724,
+ 45.50126727321638
+ ],
+ [
+ -73.57869437316863,
+ 45.50126834251029
+ ],
+ [
+ -73.57869477336695,
+ 45.501268443234366
+ ],
+ [
+ -73.57870687284576,
+ 45.50125554245961
+ ],
+ [
+ -73.578762573256,
+ 45.501281343109795
+ ],
+ [
+ -73.57876817333438,
+ 45.50128394304983
+ ],
+ [
+ -73.57886787307572,
+ 45.501178542506025
+ ],
+ [
+ -73.57888760869803,
+ 45.50118777944276
+ ],
+ [
+ -73.57901292652718,
+ 45.50106151192953
+ ],
+ [
+ -73.57893025005285,
+ 45.50102501384361
+ ],
+ [
+ -73.57875856677629,
+ 45.50119800203646
+ ],
+ [
+ -73.57876016936817,
+ 45.50119878804393
+ ],
+ [
+ -73.57869785084698,
+ 45.50126157870918
+ ],
+ [
+ -73.57869219950724,
+ 45.50126727321638
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1346,
+ "ID_UEV":"01037005",
+ "CIVIQUE_DE":" 3431",
+ "CIVIQUE_FI":" 3431",
+ "NOM_RUE":"rue Drummond (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9840-61-3739-2-000-0000",
+ "SUPERFICIE":294,
+ "SUPERFIC_1":411,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000865222410317,
+ "OBJECTID":87463,
+ "Join_Count":1,
+ "TARGET_FID":87463,
+ "feature_id":"6eb5e19d-a3f0-41ad-bed5-128a87a9a319",
+ "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":113.36,
+ "elevmin":50.25,
+ "elevmax":65.41,
+ "bldgarea":3721.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_2":87463,
+ "Shape_Le_1":0.000865222410317,
+ "Shape_Ar_1":2.44427061648e-08,
+ "OBJECTID_3":87463,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87462,
+ "g_objectid":"939727",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1338821",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"67",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023984061225270000000",
+ "g_sup_tota":"1367.1",
+ "g_geometry":"0.00163673",
+ "g_geomet_1":"1.57003e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000865222410317,
+ "Shape_Area":2.44427061648e-08,
+ "Shape_Le_3":0.000865224509682,
+ "Shape_Ar_2":2.44427061648e-08,
+ "building_height":56.425
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1347,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55545523409363,
+ 45.53601075754072
+ ],
+ [
+ -73.55548646844761,
+ 45.53602304947445
+ ],
+ [
+ -73.55553022046514,
+ 45.53604024900858
+ ],
+ [
+ -73.55562874749054,
+ 45.535902988182656
+ ],
+ [
+ -73.55558696768625,
+ 45.53588455028206
+ ],
+ [
+ -73.55555266844274,
+ 45.53592324990835
+ ],
+ [
+ -73.55552606829526,
+ 45.53591207583193
+ ],
+ [
+ -73.55545523409363,
+ 45.53601075754072
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1347,
+ "ID_UEV":"01024289",
+ "CIVIQUE_DE":" 2272",
+ "CIVIQUE_FI":" 2274",
+ "NOM_RUE":"rue Bercy (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-6003-2-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000497242180087,
+ "OBJECTID":87464,
+ "Join_Count":1,
+ "TARGET_FID":87464,
+ "feature_id":"2ee29968-0b2e-43d2-a3b0-66bd8f109b2f",
+ "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,
+ "heightmax":30.41,
+ "elevmin":19.34,
+ "elevmax":20.79,
+ "bldgarea":628.6,
+ "comment":" ",
+ "OBJECTID_2":87464,
+ "Shape_Le_1":0.000497242180087,
+ "Shape_Ar_1":1.17739717816e-08,
+ "OBJECTID_3":87464,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87463,
+ "g_objectid":"940953",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424750",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440660050000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000657815",
+ "g_geomet_1":"1.93398e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000497242180087,
+ "Shape_Area":1.17739717816e-08,
+ "Shape_Le_3":0.000497242531162,
+ "Shape_Ar_2":1.17739717816e-08,
+ "building_height":15.205
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1348,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56147826453213,
+ 45.53079343242126
+ ],
+ [
+ -73.56157754698805,
+ 45.53083962519884
+ ],
+ [
+ -73.56167663339177,
+ 45.53073290984621
+ ],
+ [
+ -73.56166356983972,
+ 45.530726949139684
+ ],
+ [
+ -73.56159986995988,
+ 45.5306970484803
+ ],
+ [
+ -73.56158647006139,
+ 45.530711248775404
+ ],
+ [
+ -73.56156425590753,
+ 45.53070082023696
+ ],
+ [
+ -73.56147826453213,
+ 45.53079343242126
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1348,
+ "ID_UEV":"01022536",
+ "CIVIQUE_DE":" 2356",
+ "CIVIQUE_FI":" 2366",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-8724-2-000-0000",
+ "SUPERFICIE":270,
+ "SUPERFIC_1":383,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000510297132328,
+ "OBJECTID":87467,
+ "Join_Count":1,
+ "TARGET_FID":87467,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":87467,
+ "Shape_Le_1":0.000510297132328,
+ "Shape_Ar_1":1.47197958832e-08,
+ "OBJECTID_3":87467,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87466,
+ "g_objectid":"940349",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423681",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394803040000000",
+ "g_sup_tota":"270",
+ "g_geometry":"0.000807298",
+ "g_geomet_1":"3.11215e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000510297132328,
+ "Shape_Area":1.47197958832e-08,
+ "Shape_Le_3":0.000510297117498,
+ "Shape_Ar_2":1.47197958832e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1349,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55363148452723,
+ 45.53561224905634
+ ],
+ [
+ -73.55351916729758,
+ 45.53557084966528
+ ],
+ [
+ -73.55342426723799,
+ 45.53569794995072
+ ],
+ [
+ -73.55354175197212,
+ 45.535741262199785
+ ],
+ [
+ -73.55355828780658,
+ 45.53571785914218
+ ],
+ [
+ -73.55355714207029,
+ 45.53571745894387
+ ],
+ [
+ -73.55363148452723,
+ 45.53561224905634
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1349,
+ "ID_UEV":"01024458",
+ "CIVIQUE_DE":" 2165",
+ "CIVIQUE_FI":" 2169",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1949,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-2171-2-000-0000",
+ "SUPERFICIE":382,
+ "SUPERFIC_1":293,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000562232863805,
+ "OBJECTID":87468,
+ "Join_Count":1,
+ "TARGET_FID":87468,
+ "feature_id":"6dd150ad-dd15-4908-bd93-5ef786cfaf34",
+ "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.66,
+ "heightmax":28.84,
+ "elevmin":19.32,
+ "elevmax":20.15,
+ "bldgarea":285.53,
+ "comment":" ",
+ "OBJECTID_2":87468,
+ "Shape_Le_1":0.000562232863805,
+ "Shape_Ar_1":1.85654370005e-08,
+ "OBJECTID_3":87468,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87467,
+ "g_objectid":"943632",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360787",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004369217120000000",
+ "g_sup_tota":"381.9",
+ "g_geometry":"0.000868388",
+ "g_geomet_1":"4.39902e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000562232863805,
+ "Shape_Area":1.85654370005e-08,
+ "Shape_Le_3":0.000562233255409,
+ "Shape_Ar_2":1.85654370005e-08,
+ "building_height":13.09
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1350,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5548892853341,
+ 45.53725713605828
+ ],
+ [
+ -73.55490616830687,
+ 45.537262950175304
+ ],
+ [
+ -73.55490696780417,
+ 45.5372631498248
+ ],
+ [
+ -73.55491406795171,
+ 45.53724414984793
+ ],
+ [
+ -73.55496296768865,
+ 45.53725315026297
+ ],
+ [
+ -73.55496926833891,
+ 45.537254849981636
+ ],
+ [
+ -73.55495606808992,
+ 45.53727844999077
+ ],
+ [
+ -73.55495256792851,
+ 45.53728364987084
+ ],
+ [
+ -73.55497262730675,
+ 45.537290274277034
+ ],
+ [
+ -73.5550746931644,
+ 45.537144920452015
+ ],
+ [
+ -73.55503036827872,
+ 45.537116150240436
+ ],
+ [
+ -73.55502946805736,
+ 45.53711684991299
+ ],
+ [
+ -73.55500866853707,
+ 45.537143149686905
+ ],
+ [
+ -73.5549869678961,
+ 45.53713475001899
+ ],
+ [
+ -73.55495246810376,
+ 45.53717885007417
+ ],
+ [
+ -73.55494601816605,
+ 45.53717634186498
+ ],
+ [
+ -73.5548892853341,
+ 45.53725713605828
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1350,
+ "ID_UEV":"01024828",
+ "CIVIQUE_DE":" 2290",
+ "CIVIQUE_FI":" 2290",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-51-0644-6-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":365,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000599672471465,
+ "OBJECTID":87470,
+ "Join_Count":1,
+ "TARGET_FID":87470,
+ "feature_id":"0c4becde-3c34-4e4c-914c-fc1754195cd2",
+ "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.53,
+ "heightmax":12.02,
+ "elevmin":17.58,
+ "elevmax":19.41,
+ "bldgarea":648.94,
+ "comment":" ",
+ "OBJECTID_2":87470,
+ "Shape_Le_1":0.000599672471465,
+ "Shape_Ar_1":1.31614692352e-08,
+ "OBJECTID_3":87470,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87469,
+ "g_objectid":"943945",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361149",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441994750000000",
+ "g_sup_tota":"185.2",
+ "g_geometry":"0.000666959",
+ "g_geomet_1":"2.1329e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000599672471465,
+ "Shape_Area":1.31614692352e-08,
+ "Shape_Le_3":0.000599672958548,
+ "Shape_Ar_2":1.31614692352e-08,
+ "building_height":5.745
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1351,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55373223018012,
+ 45.53099244429616
+ ],
+ [
+ -73.55370166672039,
+ 45.53096854841008
+ ],
+ [
+ -73.55364326744468,
+ 45.5310053486682
+ ],
+ [
+ -73.55364316672062,
+ 45.53100524884346
+ ],
+ [
+ -73.55354456685012,
+ 45.53110514913362
+ ],
+ [
+ -73.55360396707127,
+ 45.53113404884757
+ ],
+ [
+ -73.55360516856553,
+ 45.53113463520555
+ ],
+ [
+ -73.55373223018012,
+ 45.53099244429616
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1351,
+ "ID_UEV":"01018551",
+ "CIVIQUE_DE":" 1950",
+ "CIVIQUE_FI":" 1952",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-0958-5-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":182,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000506412458857,
+ "OBJECTID":87476,
+ "Join_Count":1,
+ "TARGET_FID":87476,
+ "feature_id":"5a17e0e8-f405-431e-b2db-4a7c3c6ee9b4",
+ "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.51,
+ "heightmax":26.96,
+ "elevmin":17.54,
+ "elevmax":19.54,
+ "bldgarea":374.63,
+ "comment":" ",
+ "OBJECTID_2":87476,
+ "Shape_Le_1":0.000506412458857,
+ "Shape_Ar_1":1.1254093861e-08,
+ "OBJECTID_3":87476,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87475,
+ "g_objectid":"940618",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424158",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004364095850000000",
+ "g_sup_tota":"148.6",
+ "g_geometry":"0.000643499",
+ "g_geomet_1":"1.71512e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000506412458857,
+ "Shape_Area":1.1254093861e-08,
+ "Shape_Le_3":0.000506413747326,
+ "Shape_Ar_2":1.1254093861e-08,
+ "building_height":12.225000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1352,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55346757499044,
+ 45.53138488685334
+ ],
+ [
+ -73.55347196727931,
+ 45.53138664862523
+ ],
+ [
+ -73.5535069670947,
+ 45.53140074909559
+ ],
+ [
+ -73.55349906744985,
+ 45.53141094920623
+ ],
+ [
+ -73.55356536726973,
+ 45.53143534871267
+ ],
+ [
+ -73.55356596711754,
+ 45.531434649040115
+ ],
+ [
+ -73.55359007704227,
+ 45.53144503710907
+ ],
+ [
+ -73.55369311146977,
+ 45.531335320718775
+ ],
+ [
+ -73.55361516722803,
+ 45.53130174902679
+ ],
+ [
+ -73.55356563796566,
+ 45.531280471966504
+ ],
+ [
+ -73.55346757499044,
+ 45.53138488685334
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1352,
+ "ID_UEV":"01018555",
+ "CIVIQUE_DE":" 1969",
+ "CIVIQUE_FI":" 1977",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1909,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-1798-4-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00058572882905,
+ "OBJECTID":87477,
+ "Join_Count":1,
+ "TARGET_FID":87477,
+ "feature_id":"56c03a4f-6360-48c4-9fd7-d03eb9fc5077",
+ "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.5,
+ "heightmax":31.36,
+ "elevmin":18.04,
+ "elevmax":20.29,
+ "bldgarea":2609.92,
+ "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_2":87477,
+ "Shape_Le_1":0.00058572882905,
+ "Shape_Ar_1":1.95204535156e-08,
+ "OBJECTID_3":87477,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87476,
+ "g_objectid":"940615",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424153",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004364269280000000",
+ "g_sup_tota":"282.4",
+ "g_geometry":"0.000770318",
+ "g_geomet_1":"3.19736e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00058572882905,
+ "Shape_Area":1.95204535156e-08,
+ "Shape_Le_3":0.000585729228224,
+ "Shape_Ar_2":1.95204535156e-08,
+ "building_height":14.43
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1353,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5531916342084,
+ 45.53562016848628
+ ],
+ [
+ -73.55324356735859,
+ 45.53564264973879
+ ],
+ [
+ -73.5532659667728,
+ 45.53561684998793
+ ],
+ [
+ -73.55329416501554,
+ 45.53562921386742
+ ],
+ [
+ -73.55335431347264,
+ 45.53554409213644
+ ],
+ [
+ -73.55332446677257,
+ 45.5355333497346
+ ],
+ [
+ -73.55326746684197,
+ 45.53551284968856
+ ],
+ [
+ -73.5531916342084,
+ 45.53562016848628
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1353,
+ "ID_UEV":"01024462",
+ "CIVIQUE_DE":" 2153",
+ "CIVIQUE_FI":" 2153",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-3862-5-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000449477490819,
+ "OBJECTID":87478,
+ "Join_Count":1,
+ "TARGET_FID":87478,
+ "feature_id":"8032f29a-ce7f-449c-86e6-bdf0dbe2cce4",
+ "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":32.01,
+ "elevmin":19.03,
+ "elevmax":21.28,
+ "bldgarea":1563.41,
+ "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_2":87478,
+ "Shape_Le_1":0.000449477490819,
+ "Shape_Ar_1":1.08961686649e-08,
+ "OBJECTID_3":87478,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87477,
+ "g_objectid":"943602",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360784",
+ "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":"66023004369455960000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681135",
+ "g_geomet_1":"2.20743e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000449477490819,
+ "Shape_Area":1.08961686649e-08,
+ "Shape_Le_3":0.00044947774328,
+ "Shape_Ar_2":1.08961686649e-08,
+ "building_height":14.989999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1354,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5530327707676,
+ 45.53553670420583
+ ],
+ [
+ -73.5531227434417,
+ 45.53556352108992
+ ],
+ [
+ -73.55318061931197,
+ 45.53548161353593
+ ],
+ [
+ -73.55309377088267,
+ 45.535450378282626
+ ],
+ [
+ -73.5530327707676,
+ 45.53553670420583
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1354,
+ "ID_UEV":"01024465",
+ "CIVIQUE_DE":" 2135",
+ "CIVIQUE_FI":" 2135",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-5255-0-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000392172710083,
+ "OBJECTID":87479,
+ "Join_Count":1,
+ "TARGET_FID":87479,
+ "feature_id":"8032f29a-ce7f-449c-86e6-bdf0dbe2cce4",
+ "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":32.01,
+ "elevmin":19.03,
+ "elevmax":21.28,
+ "bldgarea":1563.41,
+ "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_2":87479,
+ "Shape_Le_1":0.000392172710083,
+ "Shape_Ar_1":9.16201687137e-09,
+ "OBJECTID_3":87479,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87478,
+ "g_objectid":"943602",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360784",
+ "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":"66023004369455960000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681135",
+ "g_geomet_1":"2.20743e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000392172710083,
+ "Shape_Area":9.16201687137e-09,
+ "Shape_Le_3":0.000392173855536,
+ "Shape_Ar_2":9.16201687137e-09,
+ "building_height":14.989999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1355,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55573947022222,
+ 45.537904294497885
+ ],
+ [
+ -73.55574466830365,
+ 45.537906450172834
+ ],
+ [
+ -73.55573886767645,
+ 45.53791335067089
+ ],
+ [
+ -73.55581856199888,
+ 45.537946369279815
+ ],
+ [
+ -73.5558930627365,
+ 45.53784228804145
+ ],
+ [
+ -73.55586846807718,
+ 45.537834349725756
+ ],
+ [
+ -73.55585006794813,
+ 45.53782845017313
+ ],
+ [
+ -73.55580986825267,
+ 45.5378192501086
+ ],
+ [
+ -73.5558192850538,
+ 45.53779863584866
+ ],
+ [
+ -73.55581594677037,
+ 45.53779745413949
+ ],
+ [
+ -73.55573947022222,
+ 45.537904294497885
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1355,
+ "ID_UEV":"01024961",
+ "CIVIQUE_DE":" 2371",
+ "CIVIQUE_FI":" 2373",
+ "NOM_RUE":"rue Montgomery (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-4323-2-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":160,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000472903913759,
+ "OBJECTID":87487,
+ "Join_Count":1,
+ "TARGET_FID":87487,
+ "feature_id":"7075300e-10d1-4fc1-b33a-1cfddfec4ecc",
+ "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":35.88,
+ "elevmin":18.61,
+ "elevmax":24.32,
+ "bldgarea":2355.29,
+ "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_2":87487,
+ "Shape_Le_1":0.000472903913759,
+ "Shape_Ar_1":1.10079608564e-08,
+ "OBJECTID_3":87487,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87486,
+ "g_objectid":"943990",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361199",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442362770000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667821",
+ "g_geomet_1":"2.14448e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000472903913759,
+ "Shape_Area":1.10079608564e-08,
+ "Shape_Le_3":0.000472903854361,
+ "Shape_Ar_2":1.10079608564e-08,
+ "building_height":17.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1356,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54900723711614,
+ 45.523174645843525
+ ],
+ [
+ -73.54931087611789,
+ 45.523314228718974
+ ],
+ [
+ -73.54941419742912,
+ 45.52320422094834
+ ],
+ [
+ -73.54930969440872,
+ 45.523156219634124
+ ],
+ [
+ -73.54930869616125,
+ 45.52315680779074
+ ],
+ [
+ -73.5492243019818,
+ 45.523117373418344
+ ],
+ [
+ -73.54918726520198,
+ 45.523102948292724
+ ],
+ [
+ -73.54918892445114,
+ 45.523100843879135
+ ],
+ [
+ -73.54917658934997,
+ 45.52309508012414
+ ],
+ [
+ -73.54926974202682,
+ 45.52299495320482
+ ],
+ [
+ -73.54926896501257,
+ 45.522994647435326
+ ],
+ [
+ -73.54921126540941,
+ 45.52296844748616
+ ],
+ [
+ -73.54920806472225,
+ 45.52297194764756
+ ],
+ [
+ -73.54915996538195,
+ 45.523023247675034
+ ],
+ [
+ -73.54888706520774,
+ 45.522896647412644
+ ],
+ [
+ -73.54882176543397,
+ 45.52296634756918
+ ],
+ [
+ -73.54877456541571,
+ 45.523016547725796
+ ],
+ [
+ -73.54870016540215,
+ 45.522981948108715
+ ],
+ [
+ -73.54869606539295,
+ 45.52298624776741
+ ],
+ [
+ -73.54868176527309,
+ 45.523000848260835
+ ],
+ [
+ -73.54877056523125,
+ 45.52304384754582
+ ],
+ [
+ -73.54875716803072,
+ 45.52305753163007
+ ],
+ [
+ -73.54900771105886,
+ 45.523171468538735
+ ],
+ [
+ -73.54900723711614,
+ 45.523174645843525
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1356,
+ "ID_UEV":"01022563",
+ "CIVIQUE_DE":" 1971",
+ "CIVIQUE_FI":" 1971",
+ "NOM_RUE":"boulevard Ren\u00c3\u00a9-L\u00c3\u00a9vesque Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-95-6974-2-000-0000",
+ "SUPERFICIE":1294,
+ "SUPERFIC_1":1004,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00199642636816,
+ "OBJECTID":87494,
+ "Join_Count":1,
+ "TARGET_FID":87494,
+ "feature_id":"1bb62f3a-2b02-4f4e-b342-b37ee8e665fa",
+ "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.75,
+ "heightmax":30.01,
+ "elevmin":17.55,
+ "elevmax":18.78,
+ "bldgarea":1491.02,
+ "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_2":87494,
+ "Shape_Le_1":0.00199642636816,
+ "Shape_Ar_1":1.1672951321e-07,
+ "OBJECTID_3":87494,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87493,
+ "g_objectid":"942352",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729140",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004295437700000000",
+ "g_sup_tota":"367.2",
+ "g_geometry":"0.000899131",
+ "g_geomet_1":"4.22923e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00199642636816,
+ "Shape_Area":1.1672951321e-07,
+ "Shape_Le_3":0.00199642738871,
+ "Shape_Ar_2":1.1672951321e-07,
+ "building_height":13.63
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1357,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54998751883078,
+ 45.538317895404845
+ ],
+ [
+ -73.55011318469757,
+ 45.53836236957799
+ ],
+ [
+ -73.55014816382854,
+ 45.538313337640716
+ ],
+ [
+ -73.5500226058804,
+ 45.53826890213842
+ ],
+ [
+ -73.55001726570609,
+ 45.538276351222926
+ ],
+ [
+ -73.54998751883078,
+ 45.538317895404845
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1357,
+ "ID_UEV":"01025645",
+ "CIVIQUE_DE":" 2969",
+ "CIVIQUE_FI":" 2969",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-8968-6-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000386985068688,
+ "OBJECTID":87495,
+ "Join_Count":1,
+ "TARGET_FID":87495,
+ "feature_id":"c31e14eb-c875-4573-828f-735db5cf235a",
+ "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.22,
+ "heightmax":32.13,
+ "elevmin":21.36,
+ "elevmax":22.26,
+ "bldgarea":596.89,
+ "comment":" ",
+ "OBJECTID_2":87495,
+ "Shape_Le_1":0.000386985068688,
+ "Shape_Ar_1":7.7141454236e-09,
+ "OBJECTID_3":87495,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87494,
+ "g_objectid":"944280",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361953",
+ "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":"66023004482927480000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749066",
+ "g_geomet_1":"1.81939e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000386985068688,
+ "Shape_Area":7.7141454236e-09,
+ "Shape_Le_3":0.000386984243389,
+ "Shape_Ar_2":7.7141454236e-09,
+ "building_height":13.955000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1358,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55680249675966,
+ 45.53687811408399
+ ],
+ [
+ -73.55681216806894,
+ 45.536883849960006
+ ],
+ [
+ -73.55681236771844,
+ 45.536883849960006
+ ],
+ [
+ -73.55683766834557,
+ 45.536854749697234
+ ],
+ [
+ -73.55690710230277,
+ 45.53688464406137
+ ],
+ [
+ -73.556982378256,
+ 45.536779909915204
+ ],
+ [
+ -73.55697306847418,
+ 45.53677655004804
+ ],
+ [
+ -73.55694616795313,
+ 45.536766949785196
+ ],
+ [
+ -73.55689541021685,
+ 45.53674884013716
+ ],
+ [
+ -73.55680249675966,
+ 45.53687811408399
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1358,
+ "ID_UEV":"01024428",
+ "CIVIQUE_DE":" 2383",
+ "CIVIQUE_FI":" 2383",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-31-5704-5-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":168,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000506130989932,
+ "OBJECTID":87498,
+ "Join_Count":1,
+ "TARGET_FID":87498,
+ "feature_id":"6dee0f31-2584-4450-ab8a-697225d43f2d",
+ "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":36.1,
+ "elevmin":19.38,
+ "elevmax":25.25,
+ "bldgarea":2093.72,
+ "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_2":87498,
+ "Shape_Le_1":0.000506130989932,
+ "Shape_Ar_1":1.16698426602e-08,
+ "OBJECTID_3":87498,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87497,
+ "g_objectid":"943890",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361086",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431510890000000",
+ "g_sup_tota":"193",
+ "g_geometry":"0.000686312",
+ "g_geomet_1":"2.2253e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000506130989932,
+ "Shape_Area":1.16698426602e-08,
+ "Shape_Le_3":0.000506131833646,
+ "Shape_Ar_2":1.16698426602e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1359,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55662157115043,
+ 45.53682570699108
+ ],
+ [
+ -73.55663046814344,
+ 45.53682864957281
+ ],
+ [
+ -73.55661016774688,
+ 45.536858749881695
+ ],
+ [
+ -73.55661876796361,
+ 45.5368616501953
+ ],
+ [
+ -73.55662946809731,
+ 45.53686754974792
+ ],
+ [
+ -73.5566667683785,
+ 45.5368340500017
+ ],
+ [
+ -73.55669156808325,
+ 45.536812049886485
+ ],
+ [
+ -73.5567264770671,
+ 45.5368318142871
+ ],
+ [
+ -73.55680841969466,
+ 45.536717803634026
+ ],
+ [
+ -73.55672143097111,
+ 45.536686768030215
+ ],
+ [
+ -73.55662157115043,
+ 45.53682570699108
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1359,
+ "ID_UEV":"01024433",
+ "CIVIQUE_DE":" 2371",
+ "CIVIQUE_FI":" 2375",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-7197-2-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":266,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000594238881541,
+ "OBJECTID":87499,
+ "Join_Count":1,
+ "TARGET_FID":87499,
+ "feature_id":"6dee0f31-2584-4450-ab8a-697225d43f2d",
+ "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":36.1,
+ "elevmin":19.38,
+ "elevmax":25.25,
+ "bldgarea":2093.72,
+ "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_2":87499,
+ "Shape_Le_1":0.000594238881541,
+ "Shape_Ar_1":1.46016815889e-08,
+ "OBJECTID_3":87499,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87498,
+ "g_objectid":"943886",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361082",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430789440000000",
+ "g_sup_tota":"193",
+ "g_geometry":"0.000686073",
+ "g_geomet_1":"2.22424e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000594238881541,
+ "Shape_Area":1.46016815889e-08,
+ "Shape_Le_3":0.000594239289468,
+ "Shape_Ar_2":1.46016815889e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1360,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55046449496231,
+ 45.53003674914695
+ ],
+ [
+ -73.55059707481699,
+ 45.53009519608673
+ ],
+ [
+ -73.55068706637685,
+ 45.52999829413626
+ ],
+ [
+ -73.55055290011809,
+ 45.529940493809036
+ ],
+ [
+ -73.55046449496231,
+ 45.53003674914695
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1360,
+ "ID_UEV":"01018575",
+ "CIVIQUE_DE":" 1695",
+ "CIVIQUE_FI":" 1695",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-5351-8-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":492,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000553914073728,
+ "OBJECTID":87500,
+ "Join_Count":1,
+ "TARGET_FID":87500,
+ "feature_id":"79f0d101-b467-4fe9-8aca-3a38a1db9545",
+ "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.56,
+ "heightmax":31.65,
+ "elevmin":19.81,
+ "elevmax":21.09,
+ "bldgarea":1473.85,
+ "comment":" ",
+ "OBJECTID_2":87500,
+ "Shape_Le_1":0.000553914073728,
+ "Shape_Ar_1":1.80654642304e-08,
+ "OBJECTID_3":87500,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87499,
+ "g_objectid":"940599",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424130",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383644400000000",
+ "g_sup_tota":"418.1",
+ "g_geometry":"0.000946821",
+ "g_geomet_1":"4.78914e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000553914073728,
+ "Shape_Area":1.80654642304e-08,
+ "Shape_Le_3":0.000553914982515,
+ "Shape_Ar_2":1.80654642304e-08,
+ "building_height":14.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1361,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5524478337224,
+ 45.52199623808622
+ ],
+ [
+ -73.5526769513021,
+ 45.52210151272493
+ ],
+ [
+ -73.55278542123204,
+ 45.52198366286604
+ ],
+ [
+ -73.55255648081878,
+ 45.521878013210035
+ ],
+ [
+ -73.55253686570563,
+ 45.52189934782694
+ ],
+ [
+ -73.5524478337224,
+ 45.52199623808622
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1361,
+ "ID_UEV":"01022426",
+ "CIVIQUE_DE":" 1660",
+ "CIVIQUE_FI":" 1668",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-64-9052-0-000-0000",
+ "SUPERFICIE":419,
+ "SUPERFIC_1":601,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000825022786729,
+ "OBJECTID":87515,
+ "Join_Count":1,
+ "TARGET_FID":87515,
+ "feature_id":"5d9266e3-69ab-4ab4-9446-6746c4c66d49",
+ "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.48,
+ "heightmax":29.12,
+ "elevmin":17.13,
+ "elevmax":19.04,
+ "bldgarea":1664.97,
+ "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_2":87515,
+ "Shape_Le_1":0.000825022786729,
+ "Shape_Ar_1":3.84833021879e-08,
+ "OBJECTID_3":87515,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87514,
+ "g_objectid":"942285",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567777",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004264905200000000",
+ "g_sup_tota":"419.3",
+ "g_geometry":"0.000943088",
+ "g_geomet_1":"4.74875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000825022786729,
+ "Shape_Area":3.84833021879e-08,
+ "Shape_Le_3":0.000825023216646,
+ "Shape_Ar_2":3.84833021879e-08,
+ "building_height":13.32
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1362,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5562480827047,
+ 45.538413103032575
+ ],
+ [
+ -73.55640075341388,
+ 45.53846720804551
+ ],
+ [
+ -73.55644006098187,
+ 45.5384037707677
+ ],
+ [
+ -73.55629006575577,
+ 45.538350657706985
+ ],
+ [
+ -73.5562480827047,
+ 45.538413103032575
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1362,
+ "ID_UEV":"01025886",
+ "CIVIQUE_DE":" 2830",
+ "CIVIQUE_FI":" 2832",
+ "NOM_RUE":"rue Hochelaga (MTE+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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-0476-2-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":172,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000470968851842,
+ "OBJECTID":87516,
+ "Join_Count":1,
+ "TARGET_FID":87516,
+ "feature_id":"e5aa5270-4144-4fe4-9812-499bd4b3746d",
+ "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":41.33,
+ "elevmin":23.91,
+ "elevmax":25.53,
+ "bldgarea":843.33,
+ "comment":" ",
+ "OBJECTID_2":87516,
+ "Shape_Le_1":0.000470968851842,
+ "Shape_Ar_1":1.17039834906e-08,
+ "OBJECTID_3":87516,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87515,
+ "g_objectid":"944018",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361232",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442088390000000",
+ "g_sup_tota":"184.1",
+ "g_geometry":"0.000735649",
+ "g_geomet_1":"2.12125e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000470968851842,
+ "Shape_Area":1.17039834906e-08,
+ "Shape_Le_3":0.000470970065317,
+ "Shape_Ar_2":1.17039834906e-08,
+ "building_height":20.41
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1363,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55273881476633,
+ 45.52983264171334
+ ],
+ [
+ -73.55286391046295,
+ 45.52989030714225
+ ],
+ [
+ -73.55290442132383,
+ 45.529846893269806
+ ],
+ [
+ -73.55278466670086,
+ 45.52979044912023
+ ],
+ [
+ -73.55278006756791,
+ 45.52978834920325
+ ],
+ [
+ -73.55273881476633,
+ 45.52983264171334
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1363,
+ "ID_UEV":"01018666",
+ "CIVIQUE_DE":" 2316",
+ "CIVIQUE_FI":" 2318",
+ "NOM_RUE":"rue Magnan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-7822-8-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":153,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000395099320438,
+ "OBJECTID":87520,
+ "Join_Count":1,
+ "TARGET_FID":87520,
+ "feature_id":"f781f827-5c89-440c-9211-565a44a84f3d",
+ "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.48,
+ "heightmax":27.31,
+ "elevmin":18.14,
+ "elevmax":19.37,
+ "bldgarea":405.43,
+ "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_2":87520,
+ "Shape_Le_1":0.000395099320438,
+ "Shape_Ar_1":7.8490844761e-09,
+ "OBJECTID_3":87520,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87519,
+ "g_objectid":"940807",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424466",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363822870000000",
+ "g_sup_tota":"156.3",
+ "g_geometry":"0.000679428",
+ "g_geomet_1":"1.80402e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000395099320438,
+ "Shape_Area":7.8490844761e-09,
+ "Shape_Le_3":0.000395099936291,
+ "Shape_Ar_2":7.8490844761e-09,
+ "building_height":12.415
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1364,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56094571839203,
+ 45.5329974180467
+ ],
+ [
+ -73.56104627069068,
+ 45.53303967629032
+ ],
+ [
+ -73.56114727175104,
+ 45.53293123693733
+ ],
+ [
+ -73.5611470703029,
+ 45.53293114880377
+ ],
+ [
+ -73.56104767543172,
+ 45.53288795346658
+ ],
+ [
+ -73.56094571839203,
+ 45.5329974180467
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1364,
+ "ID_UEV":"01022887",
+ "CIVIQUE_DE":" 2476",
+ "CIVIQUE_FI":" 2484",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-3071-5-000-0000",
+ "SUPERFICIE":229,
+ "SUPERFIC_1":380,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000515448470344,
+ "OBJECTID":87529,
+ "Join_Count":1,
+ "TARGET_FID":87529,
+ "feature_id":"5694ca2f-df38-4eb6-b6e1-f8ea3091122f",
+ "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.41,
+ "heightmax":46.57,
+ "elevmin":30.42,
+ "elevmax":35.44,
+ "bldgarea":1238.63,
+ "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_2":87529,
+ "Shape_Le_1":0.000515448470344,
+ "Shape_Ar_1":1.52436396185e-08,
+ "OBJECTID_3":87529,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87528,
+ "g_objectid":"940417",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423863",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306227610000000",
+ "g_sup_tota":"233.1",
+ "g_geometry":"0.000753732",
+ "g_geomet_1":"2.67774e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000515448470344,
+ "Shape_Area":1.52436396185e-08,
+ "Shape_Le_3":0.000515448233028,
+ "Shape_Ar_2":1.52436396185e-08,
+ "building_height":22.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1365,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56133514732103,
+ 45.533140105381854
+ ],
+ [
+ -73.56141478408686,
+ 45.53305457715731
+ ],
+ [
+ -73.56138057027894,
+ 45.53303634879875
+ ],
+ [
+ -73.56137316975783,
+ 45.53304334912156
+ ],
+ [
+ -73.56128996987805,
+ 45.53299994873894
+ ],
+ [
+ -73.56118126972167,
+ 45.533102948992195
+ ],
+ [
+ -73.56130811459965,
+ 45.53316912920224
+ ],
+ [
+ -73.56131770676859,
+ 45.53315883196482
+ ],
+ [
+ -73.56131936062184,
+ 45.53315705580378
+ ],
+ [
+ -73.56132567656057,
+ 45.53315027401623
+ ],
+ [
+ -73.56133514732103,
+ 45.533140105381854
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56114855598291,
+ 45.53308266118616
+ ],
+ [
+ -73.56115067028905,
+ 45.53308354881702
+ ],
+ [
+ -73.56116758293945,
+ 45.53306434829133
+ ],
+ [
+ -73.56114855598291,
+ 45.53308266118616
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1365,
+ "ID_UEV":"01022892",
+ "CIVIQUE_DE":" 2496",
+ "CIVIQUE_FI":" 2508",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-1283-8-000-0000",
+ "SUPERFICIE":392,
+ "SUPERFIC_1":530,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000646422340909,
+ "OBJECTID":87530,
+ "Join_Count":2,
+ "TARGET_FID":87530,
+ "feature_id":"4479423c-d6f1-4875-b881-e8075641bbcd",
+ "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.5,
+ "heightmax":48.03,
+ "elevmin":34.89,
+ "elevmax":37.59,
+ "bldgarea":469.44,
+ "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_2":87530,
+ "Shape_Le_1":0.000646422340909,
+ "Shape_Ar_1":1.99703430871e-08,
+ "OBJECTID_3":87530,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87529,
+ "g_objectid":"940416",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423862",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306128380000000",
+ "g_sup_tota":"391.6",
+ "g_geometry":"0.000886314",
+ "g_geomet_1":"4.49516e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000646422340909,
+ "Shape_Area":1.99703430871e-08,
+ "Shape_Le_3":0.000646422531554,
+ "Shape_Ar_2":1.99703430871e-08,
+ "building_height":23.265
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1366,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54920626517884,
+ 45.52991404924427
+ ],
+ [
+ -73.54920426508662,
+ 45.529916248986
+ ],
+ [
+ -73.54941496545014,
+ 45.530009148953354
+ ],
+ [
+ -73.54949746475803,
+ 45.529919948796895
+ ],
+ [
+ -73.5497863665694,
+ 45.529607548599785
+ ],
+ [
+ -73.54957986514052,
+ 45.52951324928732
+ ],
+ [
+ -73.5495759647808,
+ 45.52951144884458
+ ],
+ [
+ -73.54951066500703,
+ 45.52958124882587
+ ],
+ [
+ -73.54960636546323,
+ 45.52962544870579
+ ],
+ [
+ -73.54941656534406,
+ 45.52982844907396
+ ],
+ [
+ -73.54941406522877,
+ 45.529831148838745
+ ],
+ [
+ -73.54937806536726,
+ 45.52986814874636
+ ],
+ [
+ -73.54936076510907,
+ 45.52988714872323
+ ],
+ [
+ -73.54933366493853,
+ 45.52987414902305
+ ],
+ [
+ -73.54927226552448,
+ 45.529845048760286
+ ],
+ [
+ -73.54920626517884,
+ 45.52991404924427
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1366,
+ "ID_UEV":"01019321",
+ "CIVIQUE_DE":" 2410",
+ "CIVIQUE_FI":" 2440",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":24,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-93-3416-0-000-0000",
+ "SUPERFICIE":1211,
+ "SUPERFIC_1":2105,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0017649562075,
+ "OBJECTID":87532,
+ "Join_Count":1,
+ "TARGET_FID":87532,
+ "feature_id":"6e76626e-9d9a-4f23-a1bf-b8df0cf94534",
+ "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.46,
+ "heightmax":32.06,
+ "elevmin":20.37,
+ "elevmax":21.15,
+ "bldgarea":738.34,
+ "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_2":87532,
+ "Shape_Le_1":0.0017649562075,
+ "Shape_Ar_1":8.50610083475e-08,
+ "OBJECTID_3":87532,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87531,
+ "g_objectid":"940770",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424402",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"24",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004393341600000000",
+ "g_sup_tota":"1211.1",
+ "g_geometry":"0.00167731",
+ "g_geomet_1":"1.41617e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0017649562075,
+ "Shape_Area":8.50610083475e-08,
+ "Shape_Le_3":0.00176495799643,
+ "Shape_Ar_2":8.50610083475e-08,
+ "building_height":14.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1367,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55757189554839,
+ 45.53420132877859
+ ],
+ [
+ -73.55765676816716,
+ 45.53423703366247
+ ],
+ [
+ -73.55775733755293,
+ 45.534129168976264
+ ],
+ [
+ -73.5577273694444,
+ 45.53411504962014
+ ],
+ [
+ -73.55775536893697,
+ 45.53408564988313
+ ],
+ [
+ -73.55778490177364,
+ 45.534099603764
+ ],
+ [
+ -73.55783894023675,
+ 45.534041644256774
+ ],
+ [
+ -73.55783396878448,
+ 45.53403935008623
+ ],
+ [
+ -73.55779026892762,
+ 45.534020350109365
+ ],
+ [
+ -73.55770956916314,
+ 45.534111750007554
+ ],
+ [
+ -73.55768636935231,
+ 45.534101649721656
+ ],
+ [
+ -73.5576822693431,
+ 45.53409985017824
+ ],
+ [
+ -73.55764836939858,
+ 45.53413945002589
+ ],
+ [
+ -73.55763386872991,
+ 45.53413334992445
+ ],
+ [
+ -73.55766946929242,
+ 45.53409165015982
+ ],
+ [
+ -73.5576628071147,
+ 45.53408883887911
+ ],
+ [
+ -73.55757189554839,
+ 45.53420132877859
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1367,
+ "ID_UEV":"01023396",
+ "CIVIQUE_DE":" 2294",
+ "CIVIQUE_FI":" 2300",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1913,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-9198-6-000-0000",
+ "SUPERFICIE":326,
+ "SUPERFIC_1":292,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000904575827364,
+ "OBJECTID":87533,
+ "Join_Count":1,
+ "TARGET_FID":87533,
+ "feature_id":"bcdefeb7-24a4-4cdc-8560-b68a7c3f530b",
+ "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.42,
+ "heightmax":36.8,
+ "elevmin":21.42,
+ "elevmax":25.14,
+ "bldgarea":527.88,
+ "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_2":87533,
+ "Shape_Le_1":0.000904575827364,
+ "Shape_Ar_1":1.71747555551e-08,
+ "OBJECTID_3":87533,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87532,
+ "g_objectid":"941391",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425399",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327919860000000",
+ "g_sup_tota":"325.8",
+ "g_geometry":"0.00095778",
+ "g_geomet_1":"3.7198e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000904575827364,
+ "Shape_Area":1.71747555551e-08,
+ "Shape_Le_3":0.000904575418229,
+ "Shape_Ar_2":1.71747555551e-08,
+ "building_height":17.689999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1368,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55765676816716,
+ 45.53423703366247
+ ],
+ [
+ -73.55770006872504,
+ 45.534255249430515
+ ],
+ [
+ -73.55769616926464,
+ 45.53425984946278
+ ],
+ [
+ -73.55769816935687,
+ 45.534260749684144
+ ],
+ [
+ -73.55777704709489,
+ 45.53429566945987
+ ],
+ [
+ -73.55788009141493,
+ 45.53418514907566
+ ],
+ [
+ -73.5578664693839,
+ 45.534178749499986
+ ],
+ [
+ -73.5579308689363,
+ 45.53411104943568
+ ],
+ [
+ -73.55784676883516,
+ 45.534071449588026
+ ],
+ [
+ -73.55778106886308,
+ 45.53414035024726
+ ],
+ [
+ -73.55775733755293,
+ 45.534129168976264
+ ],
+ [
+ -73.55765676816716,
+ 45.53423703366247
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55778490177364,
+ 45.534099603764
+ ],
+ [
+ -73.55778626874316,
+ 45.53410024947723
+ ],
+ [
+ -73.55778636946722,
+ 45.53410014965248
+ ],
+ [
+ -73.55783916956386,
+ 45.53404174947745
+ ],
+ [
+ -73.55783894023675,
+ 45.534041644256774
+ ],
+ [
+ -73.55778490177364,
+ 45.534099603764
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55786966917174,
+ 45.53405354948202
+ ],
+ [
+ -73.55793576934212,
+ 45.53408524968482
+ ],
+ [
+ -73.55798006904679,
+ 45.53403954973572
+ ],
+ [
+ -73.5579139688764,
+ 45.53400784953293
+ ],
+ [
+ -73.55786966917174,
+ 45.53405354948202
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1368,
+ "ID_UEV":"01023399",
+ "CIVIQUE_DE":" 2302",
+ "CIVIQUE_FI":" 2312",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-8304-9-000-0000",
+ "SUPERFICIE":415,
+ "SUPERFIC_1":655,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00119671592131,
+ "OBJECTID":87534,
+ "Join_Count":2,
+ "TARGET_FID":87534,
+ "feature_id":"ca1979c1-da2c-4f86-8928-3e9dbb286478",
+ "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.6,
+ "heightmax":29.27,
+ "elevmin":24.63,
+ "elevmax":25.23,
+ "bldgarea":38.41,
+ "comment":" ",
+ "OBJECTID_2":87534,
+ "Shape_Le_1":0.00119671592131,
+ "Shape_Ar_1":3.19925282268e-08,
+ "OBJECTID_3":87534,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87533,
+ "g_objectid":"941389",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425397",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328731070000000",
+ "g_sup_tota":"410.4",
+ "g_geometry":"0.00101319",
+ "g_geomet_1":"4.74893e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00119671592131,
+ "Shape_Area":3.19925282268e-08,
+ "Shape_Le_3":0.00119671509132,
+ "Shape_Ar_2":3.19925282268e-08,
+ "building_height":13.334999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1369,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55168816739685,
+ 45.53455834973835
+ ],
+ [
+ -73.55161965884203,
+ 45.53466187699432
+ ],
+ [
+ -73.5517049064781,
+ 45.53469181092863
+ ],
+ [
+ -73.55177296717055,
+ 45.53471124977465
+ ],
+ [
+ -73.55185076752075,
+ 45.53473344953936
+ ],
+ [
+ -73.55185396730859,
+ 45.53472734943792
+ ],
+ [
+ -73.55189666711934,
+ 45.53465665013459
+ ],
+ [
+ -73.55181966716574,
+ 45.53463414999632
+ ],
+ [
+ -73.5518366670504,
+ 45.534606950001034
+ ],
+ [
+ -73.55168996694027,
+ 45.534555550148816
+ ],
+ [
+ -73.55168816739685,
+ 45.53455834973835
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55170866294628,
+ 45.534485527135665
+ ],
+ [
+ -73.55170406741063,
+ 45.53449224956796
+ ],
+ [
+ -73.55209726719697,
+ 45.534625049756535
+ ],
+ [
+ -73.55209821328376,
+ 45.53462363062635
+ ],
+ [
+ -73.55170866294628,
+ 45.534485527135665
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1369,
+ "ID_UEV":"01025532",
+ "CIVIQUE_DE":" 2683",
+ "CIVIQUE_FI":" 2693",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1949,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-78-5059-7-000-0000",
+ "SUPERFICIE":696,
+ "SUPERFIC_1":711,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00156490623775,
+ "OBJECTID":87536,
+ "Join_Count":2,
+ "TARGET_FID":87536,
+ "feature_id":"f934e678-1ab2-46df-913f-d8d0781313c0",
+ "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.53,
+ "heightmax":33.66,
+ "elevmin":20.68,
+ "elevmax":21.89,
+ "bldgarea":712.24,
+ "comment":" ",
+ "OBJECTID_2":87536,
+ "Shape_Le_1":0.00156490623775,
+ "Shape_Ar_1":2.82829322758e-08,
+ "OBJECTID_3":87536,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87535,
+ "g_objectid":"940989",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424816",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004378434360000000",
+ "g_sup_tota":"470.9",
+ "g_geometry":"0.00110418",
+ "g_geomet_1":"5.45129e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00156490623775,
+ "Shape_Area":2.82829322758e-08,
+ "Shape_Le_3":0.00156490539059,
+ "Shape_Ar_2":2.82829322758e-08,
+ "building_height":15.564999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1370,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55317791684922,
+ 45.519369278819454
+ ],
+ [
+ -73.55333797279106,
+ 45.519437427645464
+ ],
+ [
+ -73.55341246003884,
+ 45.51935732143353
+ ],
+ [
+ -73.55333896654192,
+ 45.519324147241896
+ ],
+ [
+ -73.55325516051909,
+ 45.519286411688846
+ ],
+ [
+ -73.55317791684922,
+ 45.519369278819454
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1370,
+ "ID_UEV":"01021963",
+ "CIVIQUE_DE":" 1229",
+ "CIVIQUE_FI":" 1231",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1932,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-61-4169-3-000-0000",
+ "SUPERFICIE":459,
+ "SUPERFIC_1":419,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000569175267131,
+ "OBJECTID":87537,
+ "Join_Count":1,
+ "TARGET_FID":87537,
+ "feature_id":"72eab778-6621-44b4-8e20-243cddac3a1d",
+ "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.58,
+ "heightmax":14.21,
+ "elevmin":17.49,
+ "elevmax":18.24,
+ "bldgarea":1097.38,
+ "comment":" ",
+ "OBJECTID_2":87537,
+ "Shape_Le_1":0.000569175267131,
+ "Shape_Ar_1":1.82084543428e-08,
+ "OBJECTID_3":87537,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87536,
+ "g_objectid":"945108",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1566768",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004261416930000000",
+ "g_sup_tota":"458.8",
+ "g_geometry":"0.000990136",
+ "g_geomet_1":"5.28282e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000569175267131,
+ "Shape_Area":1.82084543428e-08,
+ "Shape_Le_3":0.00056917547844,
+ "Shape_Ar_2":1.82084543428e-08,
+ "building_height":5.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1371,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5598061892261,
+ 45.53635689040846
+ ],
+ [
+ -73.55984566946393,
+ 45.53637274995274
+ ],
+ [
+ -73.55978176903525,
+ 45.536451150150754
+ ],
+ [
+ -73.55977856924741,
+ 45.53645504961115
+ ],
+ [
+ -73.55987308439717,
+ 45.53649200275402
+ ],
+ [
+ -73.55994743135072,
+ 45.53638846290753
+ ],
+ [
+ -73.55995616916373,
+ 45.536369149966596
+ ],
+ [
+ -73.55995786888239,
+ 45.536365549980445
+ ],
+ [
+ -73.55994876954193,
+ 45.536363149689905
+ ],
+ [
+ -73.56000446905286,
+ 45.53625865026679
+ ],
+ [
+ -73.56000276933418,
+ 45.53625825006848
+ ],
+ [
+ -73.55990084197212,
+ 45.53622507048091
+ ],
+ [
+ -73.5598061892261,
+ 45.53635689040846
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1371,
+ "ID_UEV":"01023867",
+ "CIVIQUE_DE":" 2625",
+ "CIVIQUE_FI":" 2625",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":23,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-10-2249-8-000-0000",
+ "SUPERFICIE":381,
+ "SUPERFIC_1":686,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00080191126358,
+ "OBJECTID":87539,
+ "Join_Count":1,
+ "TARGET_FID":87539,
+ "feature_id":"8f1c65ef-dc12-4e6c-9652-1b8f3abac970",
+ "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.61,
+ "heightmax":51.84,
+ "elevmin":36.39,
+ "elevmax":39.99,
+ "bldgarea":411.35,
+ "comment":" ",
+ "OBJECTID_2":87539,
+ "Shape_Le_1":0.00080191126358,
+ "Shape_Ar_1":2.94376801554e-08,
+ "OBJECTID_3":87539,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87538,
+ "g_objectid":"944196",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361470",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004410125560000000",
+ "g_sup_tota":"371.2",
+ "g_geometry":"0.000917481",
+ "g_geomet_1":"4.27647e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00080191126358,
+ "Shape_Area":2.94376801554e-08,
+ "Shape_Le_3":0.000801910123885,
+ "Shape_Ar_2":2.94376801554e-08,
+ "building_height":25.615000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1372,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55990084197212,
+ 45.53622507048091
+ ],
+ [
+ -73.55987066881815,
+ 45.53621524988417
+ ],
+ [
+ -73.55987746949147,
+ 45.53620504977352
+ ],
+ [
+ -73.5598477693809,
+ 45.53619584970899
+ ],
+ [
+ -73.55984286897507,
+ 45.53619394944151
+ ],
+ [
+ -73.55983616902583,
+ 45.53620385007791
+ ],
+ [
+ -73.5598045695471,
+ 45.536193050119465
+ ],
+ [
+ -73.55971646926149,
+ 45.536320850077466
+ ],
+ [
+ -73.5598061892261,
+ 45.53635689040846
+ ],
+ [
+ -73.55990084197212,
+ 45.53622507048091
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55978024648303,
+ 45.53616474575671
+ ],
+ [
+ -73.55972854176063,
+ 45.53623675177497
+ ],
+ [
+ -73.55978856880925,
+ 45.536168350239464
+ ],
+ [
+ -73.55978024648303,
+ 45.53616474575671
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1372,
+ "ID_UEV":"01023869",
+ "CIVIQUE_DE":" 2615",
+ "CIVIQUE_FI":" 2621",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-10-3243-0-000-0000",
+ "SUPERFICIE":391,
+ "SUPERFIC_1":254,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000728603390906,
+ "OBJECTID":87540,
+ "Join_Count":2,
+ "TARGET_FID":87540,
+ "feature_id":"f6a07dc7-73e7-410c-85a0-e68a99dbd02d",
+ "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":47.8,
+ "elevmin":34.4,
+ "elevmax":36.94,
+ "bldgarea":528.23,
+ "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_2":87540,
+ "Shape_Le_1":0.000728603390906,
+ "Shape_Ar_1":1.597530666e-08,
+ "OBJECTID_3":87540,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87539,
+ "g_objectid":"944193",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361467",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004410423890000000",
+ "g_sup_tota":"403.4",
+ "g_geometry":"0.000970644",
+ "g_geomet_1":"4.64746e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000728603390906,
+ "Shape_Area":1.597530666e-08,
+ "Shape_Le_3":0.000728603800787,
+ "Shape_Ar_2":1.597530666e-08,
+ "building_height":23.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1373,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55833967645675,
+ 45.51129165273788
+ ],
+ [
+ -73.55896445526724,
+ 45.511574672083746
+ ],
+ [
+ -73.55908644920211,
+ 45.51143792117342
+ ],
+ [
+ -73.55901446746554,
+ 45.51140484590721
+ ],
+ [
+ -73.55912426749279,
+ 45.511286746036795
+ ],
+ [
+ -73.55916056682854,
+ 45.51130344554787
+ ],
+ [
+ -73.55916436736351,
+ 45.511299245713914
+ ],
+ [
+ -73.55920526673152,
+ 45.511253145566506
+ ],
+ [
+ -73.5591682668239,
+ 45.51123694607849
+ ],
+ [
+ -73.55929208908049,
+ 45.511097434249486
+ ],
+ [
+ -73.55928577404109,
+ 45.51109454382843
+ ],
+ [
+ -73.5591285671515,
+ 45.51102564586716
+ ],
+ [
+ -73.55909306731306,
+ 45.511065745737874
+ ],
+ [
+ -73.55907526703179,
+ 45.51105794591776
+ ],
+ [
+ -73.55907176687039,
+ 45.51106184627748
+ ],
+ [
+ -73.55903746672755,
+ 45.511099946055964
+ ],
+ [
+ -73.5590476668382,
+ 45.51110454608823
+ ],
+ [
+ -73.55902626747012,
+ 45.51112854629567
+ ],
+ [
+ -73.5587245674067,
+ 45.51099544573353
+ ],
+ [
+ -73.55868186669663,
+ 45.51097664540615
+ ],
+ [
+ -73.55866806749916,
+ 45.51097064602879
+ ],
+ [
+ -73.55875946739735,
+ 45.51086614570635
+ ],
+ [
+ -73.55876616734659,
+ 45.510858445710994
+ ],
+ [
+ -73.55873721996858,
+ 45.51084601797964
+ ],
+ [
+ -73.55833967645675,
+ 45.51129165273788
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1373,
+ "ID_UEV":"01021549",
+ "CIVIQUE_DE":" 264",
+ "CIVIQUE_FI":" 264",
+ "NOM_RUE":"boulevard Ren\u00c3\u00a9-L\u00c3\u00a9vesque Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":13,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Service d'h\u00c3\u00b4pital (inclus h\u00c3\u00b4pitaux psychiatriques)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-22-0156-8-000-0000",
+ "SUPERFICIE":3440,
+ "SUPERFIC_1":14128,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00296441212106,
+ "OBJECTID":87541,
+ "Join_Count":1,
+ "TARGET_FID":87541,
+ "feature_id":"cc1d690b-f463-49a7-b121-d2e4871bd0c8",
+ "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":75.19,
+ "elevmin":18.42,
+ "elevmax":23.74,
+ "bldgarea":5424.05,
+ "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_2":87541,
+ "Shape_Le_1":0.00296441212106,
+ "Shape_Ar_1":3.08395226382e-07,
+ "OBJECTID_3":87541,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87540,
+ "g_objectid":"938475",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1181931",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6513",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004122015680000000",
+ "g_sup_tota":"6092.3",
+ "g_geometry":"0.00364686",
+ "g_geomet_1":"7.01625e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00296441212106,
+ "Shape_Area":3.08395226382e-07,
+ "Shape_Le_3":0.00296441083575,
+ "Shape_Ar_2":3.08395226382e-07,
+ "building_height":37.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1374,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55409199587076,
+ 45.53791432913328
+ ],
+ [
+ -73.55401046783066,
+ 45.53789145127975
+ ],
+ [
+ -73.55401026818117,
+ 45.53789165092924
+ ],
+ [
+ -73.55387296778508,
+ 45.53807575114529
+ ],
+ [
+ -73.55387856786346,
+ 45.53807785106227
+ ],
+ [
+ -73.5539545587777,
+ 45.53810623456537
+ ],
+ [
+ -73.55396153571814,
+ 45.53809649310897
+ ],
+ [
+ -73.55398266798758,
+ 45.53806435043972
+ ],
+ [
+ -73.55398420043235,
+ 45.53806484686549
+ ],
+ [
+ -73.55409199587076,
+ 45.53791432913328
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1374,
+ "ID_UEV":"01025245",
+ "CIVIQUE_DE":" 2259",
+ "CIVIQUE_FI":" 2263",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-52-8432-6-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":345,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000638916862375,
+ "OBJECTID":87542,
+ "Join_Count":1,
+ "TARGET_FID":87542,
+ "feature_id":"2b113e00-c2ae-47d2-a946-63dfcb1dfc06",
+ "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":36.44,
+ "elevmin":19.05,
+ "elevmax":24.19,
+ "bldgarea":2686.32,
+ "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_2":87542,
+ "Shape_Le_1":0.000638916862375,
+ "Shape_Ar_1":1.89845398374e-08,
+ "OBJECTID_3":87542,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87541,
+ "g_objectid":"944020",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361236",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004452843260000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000665508",
+ "g_geomet_1":"2.12343e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000638916862375,
+ "Shape_Area":1.89845398374e-08,
+ "Shape_Le_3":0.000638916805999,
+ "Shape_Ar_2":1.89845398374e-08,
+ "building_height":17.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1375,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55567688640103,
+ 45.52949362068434
+ ],
+ [
+ -73.55581054004624,
+ 45.52955624317638
+ ],
+ [
+ -73.55591290268016,
+ 45.52945012767155
+ ],
+ [
+ -73.55577886232648,
+ 45.5293840454876
+ ],
+ [
+ -73.55568967745849,
+ 45.52947878007194
+ ],
+ [
+ -73.55569066851139,
+ 45.52947924861872
+ ],
+ [
+ -73.55567688640103,
+ 45.52949362068434
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1375,
+ "ID_UEV":"01019172",
+ "CIVIQUE_DE":" 2200",
+ "CIVIQUE_FI":" 2210",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1912,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-42-4184-0-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":582,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00059560041167,
+ "OBJECTID":87550,
+ "Join_Count":1,
+ "TARGET_FID":87550,
+ "feature_id":"27fedf68-4ae9-480c-bc9b-60e9a84a5396",
+ "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.45,
+ "heightmax":34.81,
+ "elevmin":18.8,
+ "elevmax":21.06,
+ "bldgarea":1672.46,
+ "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_2":87550,
+ "Shape_Le_1":0.00059560041167,
+ "Shape_Ar_1":2.10551680908e-08,
+ "OBJECTID_3":87550,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87549,
+ "g_objectid":"940896",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424602",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004342528390000000",
+ "g_sup_tota":"167.2",
+ "g_geometry":"0.000666305",
+ "g_geomet_1":"1.93295e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00059560041167,
+ "Shape_Area":2.10551680908e-08,
+ "Shape_Le_3":0.00059560022274,
+ "Shape_Ar_2":2.10551680908e-08,
+ "building_height":16.18
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1376,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56115851597458,
+ 45.530218168483984
+ ],
+ [
+ -73.56118216904372,
+ 45.5302290484821
+ ],
+ [
+ -73.56121066945867,
+ 45.53024214890634
+ ],
+ [
+ -73.56121256882683,
+ 45.53024024863886
+ ],
+ [
+ -73.56124566927406,
+ 45.53020184848681
+ ],
+ [
+ -73.56126697151537,
+ 45.530210965813716
+ ],
+ [
+ -73.56135667709081,
+ 45.530118403092125
+ ],
+ [
+ -73.561287344757,
+ 45.53008831627307
+ ],
+ [
+ -73.56118226617049,
+ 45.53019423122908
+ ],
+ [
+ -73.56115851597458,
+ 45.530218168483984
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1376,
+ "ID_UEV":"01022402",
+ "CIVIQUE_DE":" 2295",
+ "CIVIQUE_FI":" 2297",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-1766-9-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":170,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000521352222021,
+ "OBJECTID":87553,
+ "Join_Count":1,
+ "TARGET_FID":87553,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":87553,
+ "Shape_Le_1":0.000521352222021,
+ "Shape_Ar_1":1.20404265358e-08,
+ "OBJECTID_3":87553,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87552,
+ "g_objectid":"940373",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423709",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303226280000000",
+ "g_sup_tota":"177.9",
+ "g_geometry":"0.000731097",
+ "g_geomet_1":"2.00036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000521352222021,
+ "Shape_Area":1.20404265358e-08,
+ "Shape_Le_3":0.000521352363745,
+ "Shape_Ar_2":1.20404265358e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1377,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5613015198711,
+ 45.530276490418
+ ],
+ [
+ -73.56135006887243,
+ 45.53029764876777
+ ],
+ [
+ -73.56135266881246,
+ 45.53029464862943
+ ],
+ [
+ -73.56138466938883,
+ 45.530260748684896
+ ],
+ [
+ -73.56140619825929,
+ 45.530270772528425
+ ],
+ [
+ -73.56149475090388,
+ 45.53017939871058
+ ],
+ [
+ -73.56144587005271,
+ 45.53015714858383
+ ],
+ [
+ -73.56143236943015,
+ 45.53015124903121
+ ],
+ [
+ -73.56142570095717,
+ 45.53014835501287
+ ],
+ [
+ -73.5613015198711,
+ 45.530276490418
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1377,
+ "ID_UEV":"01022406",
+ "CIVIQUE_DE":" 2307",
+ "CIVIQUE_FI":" 2309",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-0673-8-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000508684691861,
+ "OBJECTID":87554,
+ "Join_Count":1,
+ "TARGET_FID":87554,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":87554,
+ "Shape_Le_1":0.000508684691861,
+ "Shape_Ar_1":1.15619035632e-08,
+ "OBJECTID_3":87554,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87553,
+ "g_objectid":"940378",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423717",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303067380000000",
+ "g_sup_tota":"181.4",
+ "g_geometry":"0.000736417",
+ "g_geomet_1":"2.08538e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000508684691861,
+ "Shape_Area":1.15619035632e-08,
+ "Shape_Le_3":0.00050868415777,
+ "Shape_Ar_2":1.15619035632e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1378,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55696126037572,
+ 45.52038268346436
+ ],
+ [
+ -73.55711199844183,
+ 45.52045282159074
+ ],
+ [
+ -73.55718226876853,
+ 45.520376732650384
+ ],
+ [
+ -73.55703446698891,
+ 45.520304446942966
+ ],
+ [
+ -73.55703381138314,
+ 45.520304125885
+ ],
+ [
+ -73.55696126037572,
+ 45.52038268346436
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1378,
+ "ID_UEV":"01022331",
+ "CIVIQUE_DE":" 1562",
+ "CIVIQUE_FI":" 1572",
+ "NOM_RUE":"avenue Lartigue (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-3974-8-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":256,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000542027233048,
+ "OBJECTID":87558,
+ "Join_Count":1,
+ "TARGET_FID":87558,
+ "feature_id":"de005517-bbb4-4c7a-94fc-49e9ab3ba9df",
+ "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.51,
+ "heightmax":10.64,
+ "elevmin":26.31,
+ "elevmax":27.55,
+ "bldgarea":383.26,
+ "comment":" ",
+ "OBJECTID_2":87558,
+ "Shape_Le_1":0.000542027233048,
+ "Shape_Ar_1":1.66642101336e-08,
+ "OBJECTID_3":87558,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87557,
+ "g_objectid":"942126",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567429",
+ "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":"66023004232486810000000",
+ "g_sup_tota":"63.7",
+ "g_geometry":"0.000384049",
+ "g_geomet_1":"7.44433e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000542027233048,
+ "Shape_Area":1.66642101336e-08,
+ "Shape_Le_3":0.000542025886609,
+ "Shape_Ar_2":1.66642101336e-08,
+ "building_height":4.065
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1379,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55725877229635,
+ 45.52052112150285
+ ],
+ [
+ -73.55731407970286,
+ 45.52054685740184
+ ],
+ [
+ -73.55737923198781,
+ 45.52047720401005
+ ],
+ [
+ -73.55733366693703,
+ 45.52045454649042
+ ],
+ [
+ -73.55733306708922,
+ 45.52045424701618
+ ],
+ [
+ -73.55731876696936,
+ 45.52046844641197
+ ],
+ [
+ -73.55731145727978,
+ 45.520464796963104
+ ],
+ [
+ -73.55725877229635,
+ 45.52052112150285
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1379,
+ "ID_UEV":"01022334",
+ "CIVIQUE_DE":" 1590",
+ "CIVIQUE_FI":" 1590",
+ "NOM_RUE":"avenue Lartigue (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-2086-2-000-0000",
+ "SUPERFICIE":66,
+ "SUPERFIC_1":94,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000313383942554,
+ "OBJECTID":87559,
+ "Join_Count":1,
+ "TARGET_FID":87559,
+ "feature_id":"de005517-bbb4-4c7a-94fc-49e9ab3ba9df",
+ "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.51,
+ "heightmax":10.64,
+ "elevmin":26.31,
+ "elevmax":27.55,
+ "bldgarea":383.26,
+ "comment":" ",
+ "OBJECTID_2":87559,
+ "Shape_Le_1":0.000313383942554,
+ "Shape_Ar_1":5.41366709739e-09,
+ "OBJECTID_3":87559,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87558,
+ "g_objectid":"942037",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567258",
+ "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":"66023004232258380000000",
+ "g_sup_tota":"75.1",
+ "g_geometry":"0.000400338",
+ "g_geomet_1":"8.49871e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000313383942554,
+ "Shape_Area":5.41366709739e-09,
+ "Shape_Le_3":0.000313381805908,
+ "Shape_Ar_2":5.41366709739e-09,
+ "building_height":4.065
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1380,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56083460355596,
+ 45.512137045138815
+ ],
+ [
+ -73.56083895897262,
+ 45.51213903803647
+ ],
+ [
+ -73.56094476780864,
+ 45.51203064544823
+ ],
+ [
+ -73.56094516800694,
+ 45.51203024614924
+ ],
+ [
+ -73.56096476783162,
+ 45.51203884546664
+ ],
+ [
+ -73.56092436848667,
+ 45.512084845789296
+ ],
+ [
+ -73.56097414776056,
+ 45.512106407934674
+ ],
+ [
+ -73.56110411778265,
+ 45.5119583516469
+ ],
+ [
+ -73.56107066839847,
+ 45.5119438455823
+ ],
+ [
+ -73.56102259333986,
+ 45.511922898573204
+ ],
+ [
+ -73.56083460355596,
+ 45.512137045138815
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1380,
+ "ID_UEV":"01020991",
+ "CIVIQUE_DE":" 1253",
+ "CIVIQUE_FI":" 1257",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-3547-5-000-0000",
+ "SUPERFICIE":234,
+ "SUPERFIC_1":371,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000864568786548,
+ "OBJECTID":87568,
+ "Join_Count":1,
+ "TARGET_FID":87568,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":87568,
+ "Shape_Le_1":0.000864568786548,
+ "Shape_Ar_1":1.59422174406e-08,
+ "OBJECTID_3":87568,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87567,
+ "g_objectid":"943381",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161928",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103354750000000",
+ "g_sup_tota":"233.5",
+ "g_geometry":"0.000825195",
+ "g_geomet_1":"2.74447e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000864568786548,
+ "Shape_Area":1.59422174406e-08,
+ "Shape_Le_3":0.000864566963238,
+ "Shape_Ar_2":1.59422174406e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1381,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56084928408903,
+ 45.51199199528465
+ ],
+ [
+ -73.56088136830235,
+ 45.51201234604323
+ ],
+ [
+ -73.56080046798905,
+ 45.51207544607527
+ ],
+ [
+ -73.56076331429736,
+ 45.512104420432955
+ ],
+ [
+ -73.56083460355596,
+ 45.512137045138815
+ ],
+ [
+ -73.56102259333986,
+ 45.511922898573204
+ ],
+ [
+ -73.56101466851399,
+ 45.51191944607587
+ ],
+ [
+ -73.56094225330419,
+ 45.511886088422536
+ ],
+ [
+ -73.56084928408903,
+ 45.51199199528465
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1381,
+ "ID_UEV":"01020993",
+ "CIVIQUE_DE":" 1247",
+ "CIVIQUE_FI":" 1251",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-4143-2-000-0000",
+ "SUPERFICIE":233,
+ "SUPERFIC_1":396,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000780358248054,
+ "OBJECTID":87569,
+ "Join_Count":1,
+ "TARGET_FID":87569,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":87569,
+ "Shape_Le_1":0.000780358248054,
+ "Shape_Ar_1":2.07514375098e-08,
+ "OBJECTID_3":87569,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87568,
+ "g_objectid":"943381",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161928",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103354750000000",
+ "g_sup_tota":"233.5",
+ "g_geometry":"0.000825195",
+ "g_geomet_1":"2.74447e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000780358248054,
+ "Shape_Area":2.07514375098e-08,
+ "Shape_Le_3":0.000780359632251,
+ "Shape_Ar_2":2.07514375098e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1382,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5534459328054,
+ 45.52003410264202
+ ],
+ [
+ -73.55360864354591,
+ 45.52010975900847
+ ],
+ [
+ -73.55366932080436,
+ 45.52004450240216
+ ],
+ [
+ -73.55351176587713,
+ 45.519975947082585
+ ],
+ [
+ -73.55354966600612,
+ 45.51993274724878
+ ],
+ [
+ -73.55354336805384,
+ 45.5199293172345
+ ],
+ [
+ -73.5534459328054,
+ 45.52003410264202
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1382,
+ "ID_UEV":"01021975",
+ "CIVIQUE_DE":" 1270",
+ "CIVIQUE_FI":" 1278",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-62-0927-6-000-0000",
+ "SUPERFICIE":465,
+ "SUPERFIC_1":336,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000648097129698,
+ "OBJECTID":87573,
+ "Join_Count":1,
+ "TARGET_FID":87573,
+ "feature_id":"f85a52eb-3175-4ae5-8d1f-620639cd88b5",
+ "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.27,
+ "heightmax":11.7,
+ "elevmin":15.52,
+ "elevmax":18.46,
+ "bldgarea":697.02,
+ "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_2":87573,
+ "Shape_Le_1":0.000648097129698,
+ "Shape_Ar_1":1.52592458667e-08,
+ "OBJECTID_3":87573,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87572,
+ "g_objectid":"943025",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1979613",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262003330000000",
+ "g_sup_tota":"230.4",
+ "g_geometry":"0.000808283",
+ "g_geomet_1":"2.65998e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000648097129698,
+ "Shape_Area":1.52592458667e-08,
+ "Shape_Le_3":0.000648097217021,
+ "Shape_Ar_2":1.52592458667e-08,
+ "building_height":4.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1383,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55784924107147,
+ 45.53832188929405
+ ],
+ [
+ -73.5578839692916,
+ 45.538327949825316
+ ],
+ [
+ -73.55787876941153,
+ 45.538342650143484
+ ],
+ [
+ -73.55787916871051,
+ 45.53834274996823
+ ],
+ [
+ -73.55793355611057,
+ 45.53835666248028
+ ],
+ [
+ -73.55801585576897,
+ 45.53824184963195
+ ],
+ [
+ -73.55792863142305,
+ 45.538211136884755
+ ],
+ [
+ -73.55784924107147,
+ 45.53832188929405
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1383,
+ "ID_UEV":"01024877",
+ "CIVIQUE_DE":" 2554",
+ "CIVIQUE_FI":" 2558",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-7461-9-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":187,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477401098342,
+ "OBJECTID":87575,
+ "Join_Count":1,
+ "TARGET_FID":87575,
+ "feature_id":"854ff233-c513-43a8-ab8b-43c22e6fac50",
+ "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":48.02,
+ "elevmin":26.87,
+ "elevmax":42.24,
+ "bldgarea":1868.16,
+ "comment":" ",
+ "OBJECTID_2":87575,
+ "Shape_Le_1":0.000477401098342,
+ "Shape_Ar_1":1.24112591483e-08,
+ "OBJECTID_3":87575,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87574,
+ "g_objectid":"944089",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361339",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422815720000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667865",
+ "g_geomet_1":"2.14439e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477401098342,
+ "Shape_Area":1.24112591483e-08,
+ "Shape_Le_3":0.000477400552947,
+ "Shape_Ar_2":1.24112591483e-08,
+ "building_height":23.755000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1384,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55793355611057,
+ 45.53835666248028
+ ],
+ [
+ -73.55796946873784,
+ 45.53836584995431
+ ],
+ [
+ -73.55796856941579,
+ 45.53836754967298
+ ],
+ [
+ -73.55802156916194,
+ 45.53838494975592
+ ],
+ [
+ -73.55802233628364,
+ 45.53838520426406
+ ],
+ [
+ -73.55808936725234,
+ 45.53829169275771
+ ],
+ [
+ -73.55803426938786,
+ 45.53827175029134
+ ],
+ [
+ -73.55800766924038,
+ 45.538262150028494
+ ],
+ [
+ -73.55802096931413,
+ 45.53824365007468
+ ],
+ [
+ -73.55801585576897,
+ 45.53824184963195
+ ],
+ [
+ -73.55793355611057,
+ 45.53835666248028
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1384,
+ "ID_UEV":"01024879",
+ "CIVIQUE_DE":" 2562",
+ "CIVIQUE_FI":" 2564",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-6764-7-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":144,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000466982298907,
+ "OBJECTID":87577,
+ "Join_Count":1,
+ "TARGET_FID":87577,
+ "feature_id":"854ff233-c513-43a8-ab8b-43c22e6fac50",
+ "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":48.02,
+ "elevmin":26.87,
+ "elevmax":42.24,
+ "bldgarea":1868.16,
+ "comment":" ",
+ "OBJECTID_2":87577,
+ "Shape_Le_1":0.000466982298907,
+ "Shape_Ar_1":1.04373382424e-08,
+ "OBJECTID_3":87577,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87576,
+ "g_objectid":"944091",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361341",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422676470000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667861",
+ "g_geomet_1":"2.14437e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000466982298907,
+ "Shape_Area":1.04373382424e-08,
+ "Shape_Le_3":0.000466982206295,
+ "Shape_Ar_2":1.04373382424e-08,
+ "building_height":23.755000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1385,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55033045370932,
+ 45.5299549288272
+ ],
+ [
+ -73.5503362660277,
+ 45.52995784892588
+ ],
+ [
+ -73.55032056656275,
+ 45.52997334874134
+ ],
+ [
+ -73.5503247663967,
+ 45.52997514918408
+ ],
+ [
+ -73.55046449496231,
+ 45.53003674914695
+ ],
+ [
+ -73.55055290011809,
+ 45.529940493809036
+ ],
+ [
+ -73.5504030397903,
+ 45.52987593417731
+ ],
+ [
+ -73.55033045370932,
+ 45.5299549288272
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1385,
+ "ID_UEV":"01018576",
+ "CIVIQUE_DE":" 1685",
+ "CIVIQUE_FI":" 1685",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-6444-0-000-0000",
+ "SUPERFICIE":418,
+ "SUPERFIC_1":498,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000586987504786,
+ "OBJECTID":87583,
+ "Join_Count":1,
+ "TARGET_FID":87583,
+ "feature_id":"79f0d101-b467-4fe9-8aca-3a38a1db9545",
+ "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.56,
+ "heightmax":31.65,
+ "elevmin":19.81,
+ "elevmax":21.09,
+ "bldgarea":1473.85,
+ "comment":" ",
+ "OBJECTID_2":87583,
+ "Shape_Le_1":0.000586987504786,
+ "Shape_Ar_1":1.98973449929e-08,
+ "OBJECTID_3":87583,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87582,
+ "g_objectid":"940599",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424130",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383644400000000",
+ "g_sup_tota":"418.1",
+ "g_geometry":"0.000946821",
+ "g_geomet_1":"4.78914e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000586987504786,
+ "Shape_Area":1.98973449929e-08,
+ "Shape_Le_3":0.000586987239082,
+ "Shape_Ar_2":1.98973449929e-08,
+ "building_height":14.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1386,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55521273370255,
+ 45.52822990413706
+ ],
+ [
+ -73.55524366678364,
+ 45.52824524926913
+ ],
+ [
+ -73.55521776720803,
+ 45.52827104901999
+ ],
+ [
+ -73.55526791790193,
+ 45.52829585681863
+ ],
+ [
+ -73.55537933940683,
+ 45.52817771018347
+ ],
+ [
+ -73.55529795435895,
+ 45.5281392030121
+ ],
+ [
+ -73.55521273370255,
+ 45.52822990413706
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1386,
+ "ID_UEV":"01018331",
+ "CIVIQUE_DE":" 1883",
+ "CIVIQUE_FI":" 1891",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-41-8449-5-000-0000",
+ "SUPERFICIE":203,
+ "SUPERFIC_1":281,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000503927945735,
+ "OBJECTID":87588,
+ "Join_Count":1,
+ "TARGET_FID":87588,
+ "feature_id":"3797a97f-7ec7-42ee-9e37-547756dd2f29",
+ "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.57,
+ "heightmax":35.35,
+ "elevmin":21.71,
+ "elevmax":23.41,
+ "bldgarea":1414.89,
+ "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_2":87588,
+ "Shape_Le_1":0.000503927945735,
+ "Shape_Ar_1":1.26373690059e-08,
+ "OBJECTID_3":87588,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87587,
+ "g_objectid":"940914",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424638",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341775310000000",
+ "g_sup_tota":"203.4",
+ "g_geometry":"0.000728373",
+ "g_geomet_1":"2.33761e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000503927945735,
+ "Shape_Area":1.26373690059e-08,
+ "Shape_Le_3":0.000503927975165,
+ "Shape_Ar_2":1.26373690059e-08,
+ "building_height":16.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1387,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55852304912126,
+ 45.53783095478503
+ ],
+ [
+ -73.55852616886945,
+ 45.537831949435216
+ ],
+ [
+ -73.55861197588382,
+ 45.53785929152338
+ ],
+ [
+ -73.5586868381489,
+ 45.53775484875756
+ ],
+ [
+ -73.55863026899357,
+ 45.53772874953246
+ ],
+ [
+ -73.55864106895201,
+ 45.53771715007671
+ ],
+ [
+ -73.55863886921028,
+ 45.537716449504835
+ ],
+ [
+ -73.55861139672042,
+ 45.537707699101325
+ ],
+ [
+ -73.55852304912126,
+ 45.53783095478503
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1387,
+ "ID_UEV":"01024589",
+ "CIVIQUE_DE":" 2576",
+ "CIVIQUE_FI":" 2578",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1951,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-2107-3-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":190,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000482772723662,
+ "OBJECTID":87594,
+ "Join_Count":1,
+ "TARGET_FID":87594,
+ "feature_id":"7de3239f-60f9-4083-bdc2-09487c2a41b2",
+ "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":47.81,
+ "elevmin":27.08,
+ "elevmax":40.05,
+ "bldgarea":1333.88,
+ "comment":" ",
+ "OBJECTID_2":87594,
+ "Shape_Le_1":0.000482772723662,
+ "Shape_Ar_1":1.23106763433e-08,
+ "OBJECTID_3":87594,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87593,
+ "g_objectid":"944135",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361393",
+ "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":"66023004422280370000000",
+ "g_sup_tota":"195.1",
+ "g_geometry":"0.000685591",
+ "g_geomet_1":"2.25188e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000482772723662,
+ "Shape_Area":1.23106763433e-08,
+ "Shape_Le_3":0.000482771913326,
+ "Shape_Ar_2":1.23106763433e-08,
+ "building_height":23.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1388,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54975240277301,
+ 45.52997734982513
+ ],
+ [
+ -73.54985580142593,
+ 45.53002485921018
+ ],
+ [
+ -73.54997236615363,
+ 45.52987674896309
+ ],
+ [
+ -73.54997496609366,
+ 45.52987354917525
+ ],
+ [
+ -73.54998064801035,
+ 45.52986595889718
+ ],
+ [
+ -73.5498845545504,
+ 45.529821822869124
+ ],
+ [
+ -73.54975240277301,
+ 45.52997734982513
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1388,
+ "ID_UEV":"01019285",
+ "CIVIQUE_DE":" 2415",
+ "CIVIQUE_FI":" 2415",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-93-0137-5-000-0000",
+ "SUPERFICIE":400,
+ "SUPERFIC_1":537,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000625707439582,
+ "OBJECTID":87595,
+ "Join_Count":1,
+ "TARGET_FID":87595,
+ "feature_id":"b2635238-5f35-4d49-9826-d4efc81df553",
+ "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.54,
+ "heightmax":33.47,
+ "elevmin":20.4,
+ "elevmax":21.89,
+ "bldgarea":611.34,
+ "comment":" ",
+ "OBJECTID_2":87595,
+ "Shape_Le_1":0.000625707439582,
+ "Shape_Ar_1":2.15858836592e-08,
+ "OBJECTID_3":87595,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87594,
+ "g_objectid":"940679",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424263",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004393094930000000",
+ "g_sup_tota":"178.4",
+ "g_geometry":"0.000647075",
+ "g_geomet_1":"2.04491e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000625707439582,
+ "Shape_Area":2.15858836592e-08,
+ "Shape_Le_3":0.000625708180359,
+ "Shape_Ar_2":2.15858836592e-08,
+ "building_height":15.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1389,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55861197588382,
+ 45.53785929152338
+ ],
+ [
+ -73.55867366937619,
+ 45.53787894980398
+ ],
+ [
+ -73.55870089994842,
+ 45.53788763365766
+ ],
+ [
+ -73.55876893096324,
+ 45.53779272100756
+ ],
+ [
+ -73.55876096926517,
+ 45.53778904997497
+ ],
+ [
+ -73.5586868381489,
+ 45.53775484875756
+ ],
+ [
+ -73.55861197588382,
+ 45.53785929152338
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1389,
+ "ID_UEV":"01024591",
+ "CIVIQUE_DE":" 2582",
+ "CIVIQUE_FI":" 2584",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-1410-2-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":79,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000429016915504,
+ "OBJECTID":87601,
+ "Join_Count":1,
+ "TARGET_FID":87601,
+ "feature_id":"7de3239f-60f9-4083-bdc2-09487c2a41b2",
+ "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":47.81,
+ "elevmin":27.08,
+ "elevmax":40.05,
+ "bldgarea":1333.88,
+ "comment":" ",
+ "OBJECTID_2":87601,
+ "Shape_Le_1":0.000429016915504,
+ "Shape_Ar_1":1.08883913008e-08,
+ "OBJECTID_3":87601,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87600,
+ "g_objectid":"944138",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361396",
+ "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":"66023004422081460000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000682377",
+ "g_geomet_1":"2.2088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000429016915504,
+ "Shape_Area":1.08883913008e-08,
+ "Shape_Le_3":0.000429016642306,
+ "Shape_Ar_2":1.08883913008e-08,
+ "building_height":23.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1390,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5656189653648,
+ 45.510855710872654
+ ],
+ [
+ -73.56560836955246,
+ 45.51085094446581
+ ],
+ [
+ -73.56551356931762,
+ 45.51080834447981
+ ],
+ [
+ -73.5655088694606,
+ 45.51081344453513
+ ],
+ [
+ -73.56549966939608,
+ 45.5108287447011
+ ],
+ [
+ -73.56549106917934,
+ 45.51082634441056
+ ],
+ [
+ -73.56548196893957,
+ 45.51084304482096
+ ],
+ [
+ -73.56547676905949,
+ 45.510841544751784
+ ],
+ [
+ -73.56546856904107,
+ 45.51085674509301
+ ],
+ [
+ -73.56546646912409,
+ 45.510856044521134
+ ],
+ [
+ -73.5654563688382,
+ 45.51086794524977
+ ],
+ [
+ -73.56525436941546,
+ 45.51110724585301
+ ],
+ [
+ -73.56525946947079,
+ 45.51110934576999
+ ],
+ [
+ -73.56543586879215,
+ 45.51118364595879
+ ],
+ [
+ -73.56552726869035,
+ 45.51107634514751
+ ],
+ [
+ -73.5655232694052,
+ 45.511074644529515
+ ],
+ [
+ -73.5654658692763,
+ 45.51104994464952
+ ],
+ [
+ -73.56547221848993,
+ 45.51104265654366
+ ],
+ [
+ -73.5654660410468,
+ 45.511039797598876
+ ],
+ [
+ -73.5656189653648,
+ 45.510855710872654
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1390,
+ "ID_UEV":"01020584",
+ "CIVIQUE_DE":" 1441",
+ "CIVIQUE_FI":" 1441",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services de l'automobile",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-62-8934-8-000-0000",
+ "SUPERFICIE":1166,
+ "SUPERFIC_1":495,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0011824532648,
+ "OBJECTID":87606,
+ "Join_Count":1,
+ "TARGET_FID":87606,
+ "feature_id":"bd1c8d00-2974-4f0c-899a-26a94a7dbbc3",
+ "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":15.01,
+ "elevmin":23.74,
+ "elevmax":25.44,
+ "bldgarea":2608.11,
+ "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_2":87606,
+ "Shape_Le_1":0.0011824532648,
+ "Shape_Ar_1":5.59318971611e-08,
+ "OBJECTID_3":87606,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87605,
+ "g_objectid":"938319",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161333",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994162713120000000",
+ "g_sup_tota":"403",
+ "g_geometry":"0.000894962",
+ "g_geomet_1":"4.73702e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0011824532648,
+ "Shape_Area":5.59318971611e-08,
+ "Shape_Le_3":0.00118245423474,
+ "Shape_Ar_2":5.59318971611e-08,
+ "building_height":7.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1391,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55525296667292,
+ 45.52990574850179
+ ],
+ [
+ -73.55540106702746,
+ 45.52997624905495
+ ],
+ [
+ -73.5555343672391,
+ 45.529837848787984
+ ],
+ [
+ -73.55538626688455,
+ 45.5297674489589
+ ],
+ [
+ -73.55525296667292,
+ 45.52990574850179
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1391,
+ "ID_UEV":"01019168",
+ "CIVIQUE_DE":" 2240",
+ "CIVIQUE_FI":" 2240",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-43-7732-1-000-0000",
+ "SUPERFICIE":576,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000712242464599,
+ "OBJECTID":87607,
+ "Join_Count":1,
+ "TARGET_FID":87607,
+ "feature_id":"2b2e842a-662c-4baa-adda-6707ce47f8f5",
+ "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":31.23,
+ "elevmin":19.9,
+ "elevmax":20.48,
+ "bldgarea":259.41,
+ "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_2":87607,
+ "Shape_Le_1":0.000712242464599,
+ "Shape_Ar_1":2.98806199994e-08,
+ "OBJECTID_3":87607,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87606,
+ "g_objectid":"938250",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1424542",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004343773210000000",
+ "g_sup_tota":"576.4",
+ "g_geometry":"0.00108818",
+ "g_geomet_1":"6.67555e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000712242464599,
+ "Shape_Area":2.98806199994e-08,
+ "Shape_Le_3":0.000712243426242,
+ "Shape_Ar_2":2.98806199994e-08,
+ "building_height":14.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1392,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.556559299394,
+ 45.53676027951359
+ ],
+ [
+ -73.55656836815751,
+ 45.53676334979905
+ ],
+ [
+ -73.55655966811604,
+ 45.53677605002498
+ ],
+ [
+ -73.5565922685402,
+ 45.53678694980818
+ ],
+ [
+ -73.55657636852644,
+ 45.53681074946681
+ ],
+ [
+ -73.55662157115043,
+ 45.53682570699108
+ ],
+ [
+ -73.55672143097111,
+ 45.536686768030215
+ ],
+ [
+ -73.55663444134824,
+ 45.536655730627764
+ ],
+ [
+ -73.556559299394,
+ 45.53676027951359
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1392,
+ "ID_UEV":"01024435",
+ "CIVIQUE_DE":" 2363",
+ "CIVIQUE_FI":" 2369",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-7894-4-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":336,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00052779294909,
+ "OBJECTID":87608,
+ "Join_Count":1,
+ "TARGET_FID":87608,
+ "feature_id":"6dee0f31-2584-4450-ab8a-697225d43f2d",
+ "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":36.1,
+ "elevmin":19.38,
+ "elevmax":25.25,
+ "bldgarea":2093.72,
+ "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_2":87608,
+ "Shape_Le_1":0.00052779294909,
+ "Shape_Ar_1":1.38990115822e-08,
+ "OBJECTID_3":87608,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87607,
+ "g_objectid":"943886",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361082",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430789440000000",
+ "g_sup_tota":"193",
+ "g_geometry":"0.000686073",
+ "g_geomet_1":"2.22424e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00052779294909,
+ "Shape_Area":1.38990115822e-08,
+ "Shape_Le_3":0.000527792415818,
+ "Shape_Ar_2":1.38990115822e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1393,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56579031229492,
+ 45.51118066200824
+ ],
+ [
+ -73.56592848863069,
+ 45.511242615404676
+ ],
+ [
+ -73.56608289862871,
+ 45.5110642987287
+ ],
+ [
+ -73.56594239394816,
+ 45.511001143838016
+ ],
+ [
+ -73.56580951371993,
+ 45.51115644506418
+ ],
+ [
+ -73.56581046969926,
+ 45.51115684526249
+ ],
+ [
+ -73.56579031229492,
+ 45.51118066200824
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1393,
+ "ID_UEV":"01020590",
+ "CIVIQUE_DE":" 1599",
+ "CIVIQUE_FI":" 1605",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-62-4746-0-000-0000",
+ "SUPERFICIE":314,
+ "SUPERFIC_1":837,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000778038630789,
+ "OBJECTID":87609,
+ "Join_Count":1,
+ "TARGET_FID":87609,
+ "feature_id":"bd1c8d00-2974-4f0c-899a-26a94a7dbbc3",
+ "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":15.01,
+ "elevmin":23.74,
+ "elevmax":25.44,
+ "bldgarea":2608.11,
+ "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_2":87609,
+ "Shape_Le_1":0.000778038630789,
+ "Shape_Ar_1":3.46267331729e-08,
+ "OBJECTID_3":87609,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87608,
+ "g_objectid":"943128",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161329",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994162586400000000",
+ "g_sup_tota":"559",
+ "g_geometry":"0.00118253",
+ "g_geomet_1":"6.42729e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000778038630789,
+ "Shape_Area":3.46267331729e-08,
+ "Shape_Le_3":0.00077803873332,
+ "Shape_Ar_2":3.46267331729e-08,
+ "building_height":7.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1394,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55427080987182,
+ 45.53560177824976
+ ],
+ [
+ -73.55434960757017,
+ 45.53562975346065
+ ],
+ [
+ -73.5544199921108,
+ 45.53553289197968
+ ],
+ [
+ -73.55434688172505,
+ 45.53549571760358
+ ],
+ [
+ -73.55427080987182,
+ 45.53560177824976
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1394,
+ "ID_UEV":"01024283",
+ "CIVIQUE_DE":" 2200",
+ "CIVIQUE_FI":" 2202",
+ "NOM_RUE":"rue Bercy (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-5256-9-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":153,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000415889133799,
+ "OBJECTID":87611,
+ "Join_Count":1,
+ "TARGET_FID":87611,
+ "feature_id":"a5fb5220-ce89-425a-9dd7-06017dd9ae71",
+ "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.44,
+ "heightmax":29.76,
+ "elevmin":19.18,
+ "elevmax":20.38,
+ "bldgarea":397.76,
+ "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_2":87611,
+ "Shape_Le_1":0.000415889133799,
+ "Shape_Ar_1":1.00917364545e-08,
+ "OBJECTID_3":87611,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87610,
+ "g_objectid":"941025",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424861",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359525690000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000667149",
+ "g_geomet_1":"2.01891e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000415889133799,
+ "Shape_Area":1.00917364545e-08,
+ "Shape_Le_3":0.000415889791686,
+ "Shape_Ar_2":1.00917364545e-08,
+ "building_height":13.66
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1395,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56565062150082,
+ 45.51110831784489
+ ],
+ [
+ -73.56566216969522,
+ 45.511094745276566
+ ],
+ [
+ -73.56580951371993,
+ 45.51115644506418
+ ],
+ [
+ -73.56594239394816,
+ 45.511001143838016
+ ],
+ [
+ -73.56583916976372,
+ 45.51095474511569
+ ],
+ [
+ -73.56579377468479,
+ 45.510934329605924
+ ],
+ [
+ -73.56564990294251,
+ 45.511107991390986
+ ],
+ [
+ -73.56565062150082,
+ 45.51110831784489
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1395,
+ "ID_UEV":"01020588",
+ "CIVIQUE_DE":" 1591",
+ "CIVIQUE_FI":" 1591",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-62-5838-4-000-0000",
+ "SUPERFICIE":326,
+ "SUPERFIC_1":661,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000771212652035,
+ "OBJECTID":87613,
+ "Join_Count":1,
+ "TARGET_FID":87613,
+ "feature_id":"bd1c8d00-2974-4f0c-899a-26a94a7dbbc3",
+ "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":15.01,
+ "elevmin":23.74,
+ "elevmax":25.44,
+ "bldgarea":2608.11,
+ "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_2":87613,
+ "Shape_Le_1":0.000771212652035,
+ "Shape_Ar_1":3.1977100615e-08,
+ "OBJECTID_3":87613,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87612,
+ "g_objectid":"943128",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161329",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994162586400000000",
+ "g_sup_tota":"559",
+ "g_geometry":"0.00118253",
+ "g_geomet_1":"6.42729e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000771212652035,
+ "Shape_Area":3.1977100615e-08,
+ "Shape_Le_3":0.000771211975441,
+ "Shape_Ar_2":3.1977100615e-08,
+ "building_height":7.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1396,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5570456320721,
+ 45.53621904592253
+ ],
+ [
+ -73.55705456773596,
+ 45.536223049704276
+ ],
+ [
+ -73.55703316836787,
+ 45.53624585021611
+ ],
+ [
+ -73.55703296781905,
+ 45.53624595004086
+ ],
+ [
+ -73.5570653676944,
+ 45.53626485019298
+ ],
+ [
+ -73.55713286810922,
+ 45.536207549888815
+ ],
+ [
+ -73.5571621689208,
+ 45.53618264946
+ ],
+ [
+ -73.5571627687686,
+ 45.53618275018407
+ ],
+ [
+ -73.55716674826866,
+ 45.536183706163406
+ ],
+ [
+ -73.55717463532301,
+ 45.53617264090495
+ ],
+ [
+ -73.55722209254738,
+ 45.536106059597266
+ ],
+ [
+ -73.55714426521752,
+ 45.53608125629524
+ ],
+ [
+ -73.5570456320721,
+ 45.53621904592253
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1396,
+ "ID_UEV":"01024142",
+ "CIVIQUE_DE":" 2357",
+ "CIVIQUE_FI":" 2359",
+ "NOM_RUE":"avenue Gascon (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-3931-8-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":184,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000556977719497,
+ "OBJECTID":87630,
+ "Join_Count":1,
+ "TARGET_FID":87630,
+ "feature_id":"47fb90ef-3470-4ecb-9a38-503a576ad111",
+ "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.72,
+ "heightmax":10.87,
+ "elevmin":22.34,
+ "elevmax":25.25,
+ "bldgarea":459.22,
+ "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_2":87630,
+ "Shape_Le_1":0.000556977719497,
+ "Shape_Ar_1":1.36020905617e-08,
+ "OBJECTID_3":87630,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87629,
+ "g_objectid":"940974",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424779",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430442840000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000656898",
+ "g_geomet_1":"1.92684e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000556977719497,
+ "Shape_Area":1.36020905617e-08,
+ "Shape_Le_3":0.000556979250883,
+ "Shape_Ar_2":1.36020905617e-08,
+ "building_height":5.074999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1397,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56056161344955,
+ 45.53020576773229
+ ],
+ [
+ -73.56049436934151,
+ 45.530173749169485
+ ],
+ [
+ -73.56049166867741,
+ 45.530176548759016
+ ],
+ [
+ -73.56039356882998,
+ 45.53028324882317
+ ],
+ [
+ -73.56039356882998,
+ 45.53028334864792
+ ],
+ [
+ -73.56045824267561,
+ 45.53031401552969
+ ],
+ [
+ -73.56056161344955,
+ 45.53020576773229
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1397,
+ "ID_UEV":"01022507",
+ "CIVIQUE_DE":" 2250",
+ "CIVIQUE_FI":" 2254",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-7467-8-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":257,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000444663561135,
+ "OBJECTID":87632,
+ "Join_Count":1,
+ "TARGET_FID":87632,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":87632,
+ "Shape_Le_1":0.000444663561135,
+ "Shape_Ar_1":1.03959132685e-08,
+ "OBJECTID_3":87632,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87631,
+ "g_objectid":"940365",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423697",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303687120000000",
+ "g_sup_tota":"187.2",
+ "g_geometry":"0.000741132",
+ "g_geomet_1":"2.15661e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000444663561135,
+ "Shape_Area":1.03959132685e-08,
+ "Shape_Le_3":0.000444663602856,
+ "Shape_Ar_2":1.03959132685e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1398,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5597367309872,
+ 45.53185350558511
+ ],
+ [
+ -73.55958046928508,
+ 45.53178374877128
+ ],
+ [
+ -73.55946286943772,
+ 45.53190214901526
+ ],
+ [
+ -73.55946876899034,
+ 45.531905048429536
+ ],
+ [
+ -73.55961984250358,
+ 45.53197937379936
+ ],
+ [
+ -73.5597367309872,
+ 45.53185350558511
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1398,
+ "ID_UEV":"01022799",
+ "CIVIQUE_DE":" 2269",
+ "CIVIQUE_FI":" 2275",
+ "NOM_RUE":"rue Messier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1958,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-15-4755-3-000-0000",
+ "SUPERFICIE":445,
+ "SUPERFIC_1":659,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00068471653915,
+ "OBJECTID":87636,
+ "Join_Count":1,
+ "TARGET_FID":87636,
+ "feature_id":"f2423283-3821-420d-9c68-6971f57819d5",
+ "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":44.92,
+ "elevmin":27.73,
+ "elevmax":30.6,
+ "bldgarea":1317.37,
+ "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_2":87636,
+ "Shape_Le_1":0.00068471653915,
+ "Shape_Ar_1":2.77445343948e-08,
+ "OBJECTID_3":87636,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87635,
+ "g_objectid":"940479",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423959",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004315366140000000",
+ "g_sup_tota":"225.8",
+ "g_geometry":"0.000758264",
+ "g_geomet_1":"2.6003e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00068471653915,
+ "Shape_Area":2.77445343948e-08,
+ "Shape_Le_3":0.000684716026183,
+ "Shape_Ar_2":2.77445343948e-08,
+ "building_height":21.2
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1399,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.560816248393,
+ 45.53210918014484
+ ],
+ [
+ -73.56102073174323,
+ 45.532203733066126
+ ],
+ [
+ -73.56106707021097,
+ 45.532151848479316
+ ],
+ [
+ -73.56098416890612,
+ 45.53211524877001
+ ],
+ [
+ -73.56098426873086,
+ 45.532115148945266
+ ],
+ [
+ -73.56102449270801,
+ 45.53211980203753
+ ],
+ [
+ -73.5608702463866,
+ 45.53204871782437
+ ],
+ [
+ -73.560816248393,
+ 45.53210918014484
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1399,
+ "ID_UEV":"01022803",
+ "CIVIQUE_DE":" 2221",
+ "CIVIQUE_FI":" 2229",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-05-3981-7-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":386,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000677007759134,
+ "OBJECTID":87637,
+ "Join_Count":1,
+ "TARGET_FID":87637,
+ "feature_id":"ada9fd07-c9ed-47a4-a85a-50277b60332c",
+ "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.49,
+ "heightmax":48.63,
+ "elevmin":33.18,
+ "elevmax":37.16,
+ "bldgarea":314.59,
+ "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_2":87637,
+ "Shape_Le_1":0.000677007759134,
+ "Shape_Ar_1":1.66368987451e-08,
+ "OBJECTID_3":87637,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87636,
+ "g_objectid":"945314",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1423872",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004305459130000000",
+ "g_sup_tota":"520.3",
+ "g_geometry":"0.00107029",
+ "g_geomet_1":"5.99992e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000677007759134,
+ "Shape_Area":1.66368987451e-08,
+ "Shape_Le_3":0.0006770074948,
+ "Shape_Ar_2":1.66368987451e-08,
+ "building_height":23.07
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1400,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55843782216961,
+ 45.53365739272479
+ ],
+ [
+ -73.55852024593445,
+ 45.53369457969139
+ ],
+ [
+ -73.55861394180182,
+ 45.53359378007918
+ ],
+ [
+ -73.55853114032172,
+ 45.53355699870682
+ ],
+ [
+ -73.55843782216961,
+ 45.53365739272479
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1400,
+ "ID_UEV":"01023233",
+ "CIVIQUE_DE":" 2322",
+ "CIVIQUE_FI":" 2328",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-2542-2-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00045571566783,
+ "OBJECTID":87638,
+ "Join_Count":1,
+ "TARGET_FID":87638,
+ "feature_id":"4bacb033-2d1d-46d5-a267-28cce712eae4",
+ "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.47,
+ "heightmax":42.06,
+ "elevmin":21.6,
+ "elevmax":31.04,
+ "bldgarea":2833.95,
+ "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_2":87638,
+ "Shape_Le_1":0.00045571566783,
+ "Shape_Ar_1":1.17688828471e-08,
+ "OBJECTID_3":87638,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87637,
+ "g_objectid":"941354",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425360",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327194660000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000808317",
+ "g_geomet_1":"2.69006e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00045571566783,
+ "Shape_Area":1.17688828471e-08,
+ "Shape_Le_3":0.0004557148582,
+ "Shape_Ar_2":1.17688828471e-08,
+ "building_height":19.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1401,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55852024593445,
+ 45.53369457969139
+ ],
+ [
+ -73.5586026696993,
+ 45.533731766658
+ ],
+ [
+ -73.55869674328193,
+ 45.533630560552226
+ ],
+ [
+ -73.55861394180182,
+ 45.53359378007918
+ ],
+ [
+ -73.55852024593445,
+ 45.53369457969139
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55866816912256,
+ 45.53354474994055
+ ],
+ [
+ -73.55872926906237,
+ 45.53357374947925
+ ],
+ [
+ -73.5587703689792,
+ 45.533530850019005
+ ],
+ [
+ -73.55870916921464,
+ 45.53350194940574
+ ],
+ [
+ -73.55866816912256,
+ 45.53354474994055
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1401,
+ "ID_UEV":"01023235",
+ "CIVIQUE_DE":" 2330",
+ "CIVIQUE_FI":" 2338",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-1946-6-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000710816750111,
+ "OBJECTID":87639,
+ "Join_Count":2,
+ "TARGET_FID":87639,
+ "feature_id":"4bacb033-2d1d-46d5-a267-28cce712eae4",
+ "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.47,
+ "heightmax":42.06,
+ "elevmin":21.6,
+ "elevmax":31.04,
+ "bldgarea":2833.95,
+ "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_2":87639,
+ "Shape_Le_1":0.000710816750111,
+ "Shape_Ar_1":1.56250096888e-08,
+ "OBJECTID_3":87639,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87638,
+ "g_objectid":"941354",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425360",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327194660000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000808317",
+ "g_geomet_1":"2.69006e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000710816750111,
+ "Shape_Area":1.56250096888e-08,
+ "Shape_Le_3":0.000710816645985,
+ "Shape_Ar_2":1.56250096888e-08,
+ "building_height":19.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1402,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55345763748183,
+ 45.535261088978366
+ ],
+ [
+ -73.55345676693808,
+ 45.535261949629565
+ ],
+ [
+ -73.55344846709492,
+ 45.53525774979561
+ ],
+ [
+ -73.55344746704881,
+ 45.53525865001698
+ ],
+ [
+ -73.55341151305274,
+ 45.53529668504427
+ ],
+ [
+ -73.55342792478075,
+ 45.53530251175181
+ ],
+ [
+ -73.55345763748183,
+ 45.535261088978366
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55335270008888,
+ 45.53520634005085
+ ],
+ [
+ -73.5534425675423,
+ 45.535238349620435
+ ],
+ [
+ -73.55352126721455,
+ 45.535129049616245
+ ],
+ [
+ -73.55351656735755,
+ 45.535127449722324
+ ],
+ [
+ -73.55346426728396,
+ 45.53510865029427
+ ],
+ [
+ -73.55344106747313,
+ 45.535140949445555
+ ],
+ [
+ -73.55340804256896,
+ 45.53512918541387
+ ],
+ [
+ -73.55335270008888,
+ 45.53520634005085
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1402,
+ "ID_UEV":"01024257",
+ "CIVIQUE_DE":" 2124",
+ "CIVIQUE_FI":" 2124",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-2619-0-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000593003612504,
+ "OBJECTID":87642,
+ "Join_Count":2,
+ "TARGET_FID":87642,
+ "feature_id":"86270378-ca95-4e28-9f0a-566dbdfcd03a",
+ "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.23,
+ "heightmax":35.05,
+ "elevmin":19.73,
+ "elevmax":20.76,
+ "bldgarea":430.14,
+ "comment":" ",
+ "OBJECTID_2":87642,
+ "Shape_Le_1":0.000593003612504,
+ "Shape_Ar_1":1.16856902472e-08,
+ "OBJECTID_3":87642,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87641,
+ "g_objectid":"941016",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424850",
+ "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":"66023004369261900000000",
+ "g_sup_tota":"251.4",
+ "g_geometry":"0.000740353",
+ "g_geomet_1":"2.90839e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000593003612504,
+ "Shape_Area":1.16856902472e-08,
+ "Shape_Le_3":0.000593003327788,
+ "Shape_Ar_2":1.16856902472e-08,
+ "building_height":16.91
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1403,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55918041846338,
+ 45.507927045247236
+ ],
+ [
+ -73.55892916676947,
+ 45.508206444821866
+ ],
+ [
+ -73.55901016690753,
+ 45.50824244468337
+ ],
+ [
+ -73.55901282080688,
+ 45.508243691143726
+ ],
+ [
+ -73.5591490411172,
+ 45.50809190177014
+ ],
+ [
+ -73.55913120935966,
+ 45.508083949065295
+ ],
+ [
+ -73.55920034474197,
+ 45.50801101944329
+ ],
+ [
+ -73.55920356431488,
+ 45.50801249163348
+ ],
+ [
+ -73.55930276942911,
+ 45.50790570613373
+ ],
+ [
+ -73.55923157100204,
+ 45.5078740580916
+ ],
+ [
+ -73.55918041846338,
+ 45.507927045247236
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1403,
+ "ID_UEV":"01020521",
+ "CIVIQUE_DE":" 995",
+ "CIVIQUE_FI":" 999",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1989,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-19-8108-9-000-0000",
+ "SUPERFICIE":359,
+ "SUPERFIC_1":671,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00109215301179,
+ "OBJECTID":87657,
+ "Join_Count":1,
+ "TARGET_FID":87657,
+ "feature_id":"e2283162-ba44-4070-a7cd-5c75a66bb0d8",
+ "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.98,
+ "heightmax":17.98,
+ "elevmin":15.4,
+ "elevmax":17.95,
+ "bldgarea":1979.75,
+ "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_2":87657,
+ "Shape_Le_1":0.00109215301179,
+ "Shape_Ar_1":3.55351689269e-08,
+ "OBJECTID_3":87657,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87656,
+ "g_objectid":"938018",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180672",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019730600000000",
+ "g_sup_tota":"226.2",
+ "g_geometry":"0.00111504",
+ "g_geomet_1":"2.60432e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00109215301179,
+ "Shape_Area":3.55351689269e-08,
+ "Shape_Le_3":0.00109215401434,
+ "Shape_Ar_2":3.55351689269e-08,
+ "building_height":8.5
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1404,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55901282080688,
+ 45.508243691143726
+ ],
+ [
+ -73.55901506731335,
+ 45.50824474514916
+ ],
+ [
+ -73.55913906673639,
+ 45.50811554494674
+ ],
+ [
+ -73.55918419022005,
+ 45.50813698748228
+ ],
+ [
+ -73.55937059090189,
+ 45.50793585410668
+ ],
+ [
+ -73.55930276942911,
+ 45.50790570613373
+ ],
+ [
+ -73.55920356431488,
+ 45.50801249163348
+ ],
+ [
+ -73.55920034474197,
+ 45.50801101944329
+ ],
+ [
+ -73.55913120935966,
+ 45.508083949065295
+ ],
+ [
+ -73.5591490411172,
+ 45.50809190177014
+ ],
+ [
+ -73.55901282080688,
+ 45.508243691143726
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1404,
+ "ID_UEV":"01020522",
+ "CIVIQUE_DE":" 1001",
+ "CIVIQUE_FI":" 1003",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-19-7306-0-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":513,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0010532267742,
+ "OBJECTID":87658,
+ "Join_Count":1,
+ "TARGET_FID":87658,
+ "feature_id":"e2283162-ba44-4070-a7cd-5c75a66bb0d8",
+ "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.98,
+ "heightmax":17.98,
+ "elevmin":15.4,
+ "elevmax":17.95,
+ "bldgarea":1979.75,
+ "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_2":87658,
+ "Shape_Le_1":0.0010532267742,
+ "Shape_Ar_1":2.01932876011e-08,
+ "OBJECTID_3":87658,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87657,
+ "g_objectid":"939522",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180670",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019670880000000",
+ "g_sup_tota":"196.7",
+ "g_geometry":"0.000768918",
+ "g_geomet_1":"2.26642e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0010532267742,
+ "Shape_Area":2.01932876011e-08,
+ "Shape_Le_3":0.00105322653346,
+ "Shape_Ar_2":2.01932876011e-08,
+ "building_height":8.5
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1405,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55824546977446,
+ 45.53448127693967
+ ],
+ [
+ -73.55832977851831,
+ 45.53451594490523
+ ],
+ [
+ -73.55841884467578,
+ 45.53442041352156
+ ],
+ [
+ -73.5583361664028,
+ 45.534383999072595
+ ],
+ [
+ -73.55824546977446,
+ 45.53448127693967
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1405,
+ "ID_UEV":"01023413",
+ "CIVIQUE_DE":" 2358",
+ "CIVIQUE_FI":" 2360",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-3931-4-000-0000",
+ "SUPERFICIE":262,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000445110318276,
+ "OBJECTID":87663,
+ "Join_Count":1,
+ "TARGET_FID":87663,
+ "feature_id":"2b5271da-9059-46a0-9f26-abb91e871ca1",
+ "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.61,
+ "heightmax":42.18,
+ "elevmin":24.03,
+ "elevmax":27.55,
+ "bldgarea":1216.54,
+ "comment":" ",
+ "OBJECTID_2":87663,
+ "Shape_Le_1":0.000445110318276,
+ "Shape_Ar_1":1.1243672453e-08,
+ "OBJECTID_3":87663,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87662,
+ "g_objectid":"941385",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425393",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328462770000000",
+ "g_sup_tota":"264.4",
+ "g_geometry":"0.000898564",
+ "g_geomet_1":"3.0623e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000445110318276,
+ "Shape_Area":1.1243672453e-08,
+ "Shape_Le_3":0.000445110143049,
+ "Shape_Ar_2":1.1243672453e-08,
+ "building_height":19.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1406,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55832977851831,
+ 45.53451594490523
+ ],
+ [
+ -73.5583358687272,
+ 45.53451844951713
+ ],
+ [
+ -73.55841046928957,
+ 45.534549149673815
+ ],
+ [
+ -73.55841407197369,
+ 45.53455062815926
+ ],
+ [
+ -73.55854482710393,
+ 45.534410384282104
+ ],
+ [
+ -73.55846296901265,
+ 45.534374249522294
+ ],
+ [
+ -73.55842096887446,
+ 45.534421349715814
+ ],
+ [
+ -73.55841884467578,
+ 45.53442041352156
+ ],
+ [
+ -73.55832977851831,
+ 45.53451594490523
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1406,
+ "ID_UEV":"01023416",
+ "CIVIQUE_DE":" 2364",
+ "CIVIQUE_FI":" 2370",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-3336-6-000-0000",
+ "SUPERFICIE":260,
+ "SUPERFIC_1":360,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000568409440886,
+ "OBJECTID":87664,
+ "Join_Count":1,
+ "TARGET_FID":87664,
+ "feature_id":"2b5271da-9059-46a0-9f26-abb91e871ca1",
+ "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.61,
+ "heightmax":42.18,
+ "elevmin":24.03,
+ "elevmax":27.55,
+ "bldgarea":1216.54,
+ "comment":" ",
+ "OBJECTID_2":87664,
+ "Shape_Le_1":0.000568409440886,
+ "Shape_Ar_1":1.63663601844e-08,
+ "OBJECTID_3":87664,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87663,
+ "g_objectid":"941384",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425392",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328393140000000",
+ "g_sup_tota":"262.2",
+ "g_geometry":"0.000892839",
+ "g_geomet_1":"3.0378e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000568409440886,
+ "Shape_Area":1.63663601844e-08,
+ "Shape_Le_3":0.000568409625343,
+ "Shape_Ar_2":1.63663601844e-08,
+ "building_height":19.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1407,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56060015029854,
+ 45.51202975152211
+ ],
+ [
+ -73.56060922715595,
+ 45.51203390549064
+ ],
+ [
+ -73.56064306774522,
+ 45.512042345628046
+ ],
+ [
+ -73.56064286809573,
+ 45.51204214597855
+ ],
+ [
+ -73.56069532914796,
+ 45.512039049612746
+ ],
+ [
+ -73.5608620427709,
+ 45.511849138876954
+ ],
+ [
+ -73.56078183223761,
+ 45.5118121866334
+ ],
+ [
+ -73.56063716009871,
+ 45.51197698829767
+ ],
+ [
+ -73.56064146785131,
+ 45.51197894612176
+ ],
+ [
+ -73.56059664923782,
+ 45.51202814982955
+ ],
+ [
+ -73.56060015029854,
+ 45.51202975152211
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1407,
+ "ID_UEV":"01020997",
+ "CIVIQUE_DE":" 1235",
+ "CIVIQUE_FI":" 1239",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-5435-1-000-0000",
+ "SUPERFICIE":233,
+ "SUPERFIC_1":433,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000733144957921,
+ "OBJECTID":87668,
+ "Join_Count":1,
+ "TARGET_FID":87668,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":87668,
+ "Shape_Le_1":0.000733144957921,
+ "Shape_Ar_1":2.3060615535e-08,
+ "OBJECTID_3":87668,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87667,
+ "g_objectid":"943384",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161931",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103543510000000",
+ "g_sup_tota":"232.9",
+ "g_geometry":"0.00082382",
+ "g_geomet_1":"2.73867e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000733144957921,
+ "Shape_Area":2.3060615535e-08,
+ "Shape_Le_3":0.000733143002385,
+ "Shape_Ar_2":2.3060615535e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1408,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5605251711216,
+ 45.51197657550885
+ ],
+ [
+ -73.56058836828042,
+ 45.51200464604787
+ ],
+ [
+ -73.56058926850179,
+ 45.51200364600176
+ ],
+ [
+ -73.56062056850628,
+ 45.51196944568367
+ ],
+ [
+ -73.56063716009871,
+ 45.51197698829767
+ ],
+ [
+ -73.56078183223761,
+ 45.5118121866334
+ ],
+ [
+ -73.56070183484364,
+ 45.51177533151663
+ ],
+ [
+ -73.5605251711216,
+ 45.51197657550885
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1408,
+ "ID_UEV":"01020999",
+ "CIVIQUE_DE":" 1229",
+ "CIVIQUE_FI":" 1233",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-6031-7-000-0000",
+ "SUPERFICIE":233,
+ "SUPERFIC_1":435,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000710239635574,
+ "OBJECTID":87669,
+ "Join_Count":1,
+ "TARGET_FID":87669,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":87669,
+ "Shape_Le_1":0.000710239635574,
+ "Shape_Ar_1":2.17077276528e-08,
+ "OBJECTID_3":87669,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87668,
+ "g_objectid":"943384",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161931",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103543510000000",
+ "g_sup_tota":"232.9",
+ "g_geometry":"0.00082382",
+ "g_geomet_1":"2.73867e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000710239635574,
+ "Shape_Area":2.17077276528e-08,
+ "Shape_Le_3":0.000710241110891,
+ "Shape_Ar_2":2.17077276528e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1409,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56052304692292,
+ 45.51184947342475
+ ],
+ [
+ -73.56055296826672,
+ 45.51186274561951
+ ],
+ [
+ -73.56047196812867,
+ 45.51195294582209
+ ],
+ [
+ -73.5605251711216,
+ 45.51197657550885
+ ],
+ [
+ -73.56070183484364,
+ 45.51177533151663
+ ],
+ [
+ -73.56068536825698,
+ 45.51176774573517
+ ],
+ [
+ -73.56062087697374,
+ 45.51173803213477
+ ],
+ [
+ -73.56052304692292,
+ 45.51184947342475
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1409,
+ "ID_UEV":"01021001",
+ "CIVIQUE_DE":" 1223",
+ "CIVIQUE_FI":" 1227",
+ "NOM_RUE":"rue Sainte-\u00c3\u2030lisabeth (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1895,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-03-6627-2-000-0000",
+ "SUPERFICIE":235,
+ "SUPERFIC_1":435,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000717392121977,
+ "OBJECTID":87670,
+ "Join_Count":1,
+ "TARGET_FID":87670,
+ "feature_id":"d0b9fb4f-1001-43ca-ab1e-2dd01189727e",
+ "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":40.01,
+ "elevmin":23.95,
+ "elevmax":25.82,
+ "bldgarea":2354.79,
+ "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_2":87670,
+ "Shape_Le_1":0.000717392121977,
+ "Shape_Ar_1":1.92455050508e-08,
+ "OBJECTID_3":87670,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87669,
+ "g_objectid":"943387",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161935",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004103732370000000",
+ "g_sup_tota":"232.4",
+ "g_geometry":"0.000821485",
+ "g_geomet_1":"2.72914e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000717392121977,
+ "Shape_Area":1.92455050508e-08,
+ "Shape_Le_3":0.000717391558356,
+ "Shape_Ar_2":1.92455050508e-08,
+ "building_height":19.744999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1410,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56689290180782,
+ 45.51606584681168
+ ],
+ [
+ -73.56714785151398,
+ 45.516182076991555
+ ],
+ [
+ -73.56715955888838,
+ 45.51615746524512
+ ],
+ [
+ -73.56718013177951,
+ 45.516111180736694
+ ],
+ [
+ -73.56690800052564,
+ 45.5159871174618
+ ],
+ [
+ -73.566902581211,
+ 45.51599933295315
+ ],
+ [
+ -73.56692407051129,
+ 45.516004745972545
+ ],
+ [
+ -73.56689290180782,
+ 45.51606584681168
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1410,
+ "ID_UEV":"01021367",
+ "CIVIQUE_DE":" 337",
+ "CIVIQUE_FI":" 341",
+ "NOM_RUE":"terrasse Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-57-6398-8-000-0000",
+ "SUPERFICIE":202,
+ "SUPERFIC_1":435,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000761291114661,
+ "OBJECTID":87671,
+ "Join_Count":1,
+ "TARGET_FID":87671,
+ "feature_id":"8e1da87e-3f79-40b6-947c-b870b1e48e84",
+ "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":25.2,
+ "elevmin":25.38,
+ "elevmax":42.64,
+ "bldgarea":8192.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_2":87671,
+ "Shape_Le_1":0.000761291114661,
+ "Shape_Ar_1":2.19603586716e-08,
+ "OBJECTID_3":87671,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87670,
+ "g_objectid":"943095",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161254",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994157639880000000",
+ "g_sup_tota":"202.3",
+ "g_geometry":"0.00075391",
+ "g_geomet_1":"2.32959e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000761291114661,
+ "Shape_Area":2.19603586716e-08,
+ "Shape_Le_3":0.000761292238698,
+ "Shape_Ar_2":2.19603586716e-08,
+ "building_height":12.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1411,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5688209745302,
+ 45.51167749427124
+ ],
+ [
+ -73.56865677091508,
+ 45.51160174527462
+ ],
+ [
+ -73.56865137138553,
+ 45.511599144435266
+ ],
+ [
+ -73.56854017111385,
+ 45.51171634498363
+ ],
+ [
+ -73.5683735177455,
+ 45.511892096793126
+ ],
+ [
+ -73.56854113698573,
+ 45.51196976224502
+ ],
+ [
+ -73.5688209745302,
+ 45.51167749427124
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1411,
+ "ID_UEV":"01058818",
+ "CIVIQUE_DE":" 2078",
+ "CIVIQUE_FI":" 2080",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1941,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-43-3919-4-000-0000",
+ "SUPERFICIE":643,
+ "SUPERFIC_1":1294,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00117995991337,
+ "OBJECTID":87673,
+ "Join_Count":1,
+ "TARGET_FID":87673,
+ "feature_id":"52e76a82-a2a8-4a98-99f5-9661df77bb96",
+ "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":14.04,
+ "elevmin":34.77,
+ "elevmax":37.85,
+ "bldgarea":640.44,
+ "comment":" ",
+ "OBJECTID_2":87673,
+ "Shape_Le_1":0.00117995991337,
+ "Shape_Ar_1":7.10861304177e-08,
+ "OBJECTID_3":87673,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87672,
+ "g_objectid":"945456",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2160962",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994143262740000000",
+ "g_sup_tota":"580.7",
+ "g_geometry":"0.00116435",
+ "g_geomet_1":"6.5496e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00117995991337,
+ "Shape_Area":7.10861304177e-08,
+ "Shape_Le_3":0.00117996187656,
+ "Shape_Ar_2":7.10861304177e-08,
+ "building_height":6.76
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1412,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55310999375305,
+ 45.530658421699094
+ ],
+ [
+ -73.55324441991588,
+ 45.53071869785991
+ ],
+ [
+ -73.5533474669339,
+ 45.53062134894639
+ ],
+ [
+ -73.5533435674735,
+ 45.53061934885416
+ ],
+ [
+ -73.55321386724802,
+ 45.53055344923259
+ ],
+ [
+ -73.55315142372108,
+ 45.53061425779206
+ ],
+ [
+ -73.55310999375305,
+ 45.530658421699094
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55323916337854,
+ 45.53053630545643
+ ],
+ [
+ -73.55323516679135,
+ 45.530541149204964
+ ],
+ [
+ -73.5532340669205,
+ 45.53054244872532
+ ],
+ [
+ -73.5533779674411,
+ 45.53060484908481
+ ],
+ [
+ -73.55338246674928,
+ 45.53060694900179
+ ],
+ [
+ -73.55338504510559,
+ 45.530604102647516
+ ],
+ [
+ -73.55323916337854,
+ 45.53053630545643
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1412,
+ "ID_UEV":"01018477",
+ "CIVIQUE_DE":" 2359",
+ "CIVIQUE_FI":" 2361",
+ "NOM_RUE":"avenue Lalonde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-3716-4-000-0000",
+ "SUPERFICIE":381,
+ "SUPERFIC_1":310,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00092116029252,
+ "OBJECTID":87675,
+ "Join_Count":2,
+ "TARGET_FID":87675,
+ "feature_id":"e63f6105-1210-45f1-9047-5b2a6623685f",
+ "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":26.47,
+ "elevmin":17.11,
+ "elevmax":18.37,
+ "bldgarea":323.66,
+ "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_2":87675,
+ "Shape_Le_1":0.00092116029252,
+ "Shape_Ar_1":2.12122122298e-08,
+ "OBJECTID_3":87675,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87674,
+ "g_objectid":"940636",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424180",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004364371640000000",
+ "g_sup_tota":"380.9",
+ "g_geometry":"0.000882398",
+ "g_geomet_1":"4.39598e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00092116029252,
+ "Shape_Area":2.12122122298e-08,
+ "Shape_Le_3":0.000921160827549,
+ "Shape_Ar_2":2.12122122298e-08,
+ "building_height":11.975
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1413,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55323916337854,
+ 45.53053630545643
+ ],
+ [
+ -73.55338504510559,
+ 45.530604102647516
+ ],
+ [
+ -73.55344692295897,
+ 45.53053578384964
+ ],
+ [
+ -73.55329706622847,
+ 45.53046613045785
+ ],
+ [
+ -73.55323916337854,
+ 45.53053630545643
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1413,
+ "ID_UEV":"01018478",
+ "CIVIQUE_DE":" 2351",
+ "CIVIQUE_FI":" 2355",
+ "NOM_RUE":"avenue Lalonde (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-64-3105-0-000-0000",
+ "SUPERFICIE":217,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000509275072643,
+ "OBJECTID":87676,
+ "Join_Count":1,
+ "TARGET_FID":87676,
+ "feature_id":"e63f6105-1210-45f1-9047-5b2a6623685f",
+ "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":26.47,
+ "elevmin":17.11,
+ "elevmax":18.37,
+ "bldgarea":323.66,
+ "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_2":87676,
+ "Shape_Le_1":0.000509275072643,
+ "Shape_Ar_1":1.43554938808e-08,
+ "OBJECTID_3":87676,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87675,
+ "g_objectid":"940636",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424180",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004364371640000000",
+ "g_sup_tota":"380.9",
+ "g_geometry":"0.000882398",
+ "g_geomet_1":"4.39598e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000509275072643,
+ "Shape_Area":1.43554938808e-08,
+ "Shape_Le_3":0.000509274481435,
+ "Shape_Ar_2":1.43554938808e-08,
+ "building_height":11.975
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1414,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55388143040554,
+ 45.53539830753616
+ ],
+ [
+ -73.5539568673374,
+ 45.53542425027922
+ ],
+ [
+ -73.55396906394299,
+ 45.53542844201928
+ ],
+ [
+ -73.55403726043306,
+ 45.535333363893926
+ ],
+ [
+ -73.55399906712509,
+ 45.53532234989682
+ ],
+ [
+ -73.55399856710204,
+ 45.53532225007208
+ ],
+ [
+ -73.5539889668392,
+ 45.535335749795316
+ ],
+ [
+ -73.55393890427885,
+ 45.535318177042534
+ ],
+ [
+ -73.55388143040554,
+ 45.53539830753616
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1414,
+ "ID_UEV":"01024271",
+ "CIVIQUE_DE":" 2170",
+ "CIVIQUE_FI":" 2170",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-8540-3-000-0000",
+ "SUPERFICIE":191,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000418170562624,
+ "OBJECTID":87699,
+ "Join_Count":1,
+ "TARGET_FID":87699,
+ "feature_id":"a04fd897-b8f0-4ade-8f68-935acae84a06",
+ "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.58,
+ "heightmax":26.6,
+ "elevmin":19.08,
+ "elevmax":20.61,
+ "bldgarea":231.72,
+ "comment":" ",
+ "OBJECTID_2":87699,
+ "Shape_Le_1":0.000418170562624,
+ "Shape_Ar_1":9.40206152749e-09,
+ "OBJECTID_3":87699,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87698,
+ "g_objectid":"941021",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424857",
+ "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":"66023004359774420000000",
+ "g_sup_tota":"240",
+ "g_geometry":"0.000730218",
+ "g_geomet_1":"2.78157e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000418170562624,
+ "Shape_Area":9.40206152749e-09,
+ "Shape_Le_3":0.000418169897935,
+ "Shape_Ar_2":9.40206152749e-09,
+ "building_height":12.010000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1415,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54685795545213,
+ 45.52946264623443
+ ],
+ [
+ -73.54697904646767,
+ 45.529515489498536
+ ],
+ [
+ -73.5470624648827,
+ 45.52941924854978
+ ],
+ [
+ -73.54692856482325,
+ 45.52936184842086
+ ],
+ [
+ -73.5469284649985,
+ 45.52936184842086
+ ],
+ [
+ -73.54690806477721,
+ 45.52938124859604
+ ],
+ [
+ -73.54686706468513,
+ 45.52936004887745
+ ],
+ [
+ -73.54679526551094,
+ 45.52942864916312
+ ],
+ [
+ -73.54685916504027,
+ 45.52946174871103
+ ],
+ [
+ -73.54685946541385,
+ 45.52946214890934
+ ],
+ [
+ -73.54685795545213,
+ 45.52946264623443
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1415,
+ "ID_UEV":"01018798",
+ "CIVIQUE_DE":" 1427",
+ "CIVIQUE_FI":" 1429",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-12-3678-3-000-0000",
+ "SUPERFICIE":327,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000652931449893,
+ "OBJECTID":87700,
+ "Join_Count":1,
+ "TARGET_FID":87700,
+ "feature_id":"8c3e505e-c027-4ce3-8c01-76b54c998acb",
+ "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.1,
+ "heightmax":12.52,
+ "elevmin":19.64,
+ "elevmax":20.09,
+ "bldgarea":681.9,
+ "comment":" ",
+ "OBJECTID_2":87700,
+ "Shape_Le_1":0.000652931449893,
+ "Shape_Ar_1":2.26766472853e-08,
+ "OBJECTID_3":87700,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87699,
+ "g_objectid":"940724",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424327",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014312418660000000",
+ "g_sup_tota":"167.5",
+ "g_geometry":"0.00072346",
+ "g_geomet_1":"1.94798e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000652931449893,
+ "Shape_Area":2.26766472853e-08,
+ "Shape_Le_3":0.000652930334345,
+ "Shape_Ar_2":2.26766472853e-08,
+ "building_height":5.71
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1416,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56452676392087,
+ 45.51548005361188
+ ],
+ [
+ -73.56474492236212,
+ 45.51557937383933
+ ],
+ [
+ -73.56480087008593,
+ 45.51554384612189
+ ],
+ [
+ -73.56480096991068,
+ 45.51554384612189
+ ],
+ [
+ -73.56481026170606,
+ 45.515547651153476
+ ],
+ [
+ -73.56491157483116,
+ 45.51543375741227
+ ],
+ [
+ -73.56469806948216,
+ 45.5153363455462
+ ],
+ [
+ -73.56483457038097,
+ 45.51518844574047
+ ],
+ [
+ -73.56489906616082,
+ 45.51511859000122
+ ],
+ [
+ -73.56486739473632,
+ 45.515104168472895
+ ],
+ [
+ -73.56452676392087,
+ 45.51548005361188
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1416,
+ "ID_UEV":"01021278",
+ "CIVIQUE_DE":" 1720",
+ "CIVIQUE_FI":" 1726",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1893,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-77-3516-6-000-0000",
+ "SUPERFICIE":1117,
+ "SUPERFIC_1":1034,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0015416365984,
+ "OBJECTID":87704,
+ "Join_Count":1,
+ "TARGET_FID":87704,
+ "feature_id":"36e64f7a-bd36-4f21-b0e7-ea3e7953f79d",
+ "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":21.99,
+ "elevmin":23.69,
+ "elevmax":26.31,
+ "bldgarea":3784.88,
+ "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_2":87704,
+ "Shape_Le_1":0.0015416365984,
+ "Shape_Ar_1":6.23004962816e-08,
+ "OBJECTID_3":87704,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87703,
+ "g_objectid":"943147",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161370",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994177222300000000",
+ "g_sup_tota":"394.7",
+ "g_geometry":"0.00127652",
+ "g_geomet_1":"4.62324e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0015416365984,
+ "Shape_Area":6.23004962816e-08,
+ "Shape_Le_3":0.00154163637808,
+ "Shape_Ar_2":6.23004962816e-08,
+ "building_height":10.739999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1417,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5504030397903,
+ 45.52987593417731
+ ],
+ [
+ -73.55028376630462,
+ 45.529824548714245
+ ],
+ [
+ -73.55021906637866,
+ 45.5298989487278
+ ],
+ [
+ -73.55033045370932,
+ 45.5299549288272
+ ],
+ [
+ -73.5504030397903,
+ 45.52987593417731
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1417,
+ "ID_UEV":"01018577",
+ "CIVIQUE_DE":" 1675",
+ "CIVIQUE_FI":" 1675",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-7536-2-000-0000",
+ "SUPERFICIE":413,
+ "SUPERFIC_1":367,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00046041274529,
+ "OBJECTID":87705,
+ "Join_Count":1,
+ "TARGET_FID":87705,
+ "feature_id":"79f0d101-b467-4fe9-8aca-3a38a1db9545",
+ "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.56,
+ "heightmax":31.65,
+ "elevmin":19.81,
+ "elevmax":21.09,
+ "bldgarea":1473.85,
+ "comment":" ",
+ "OBJECTID_2":87705,
+ "Shape_Le_1":0.00046041274529,
+ "Shape_Ar_1":1.25305272152e-08,
+ "OBJECTID_3":87705,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87704,
+ "g_objectid":"940599",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424130",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383644400000000",
+ "g_sup_tota":"418.1",
+ "g_geometry":"0.000946821",
+ "g_geomet_1":"4.78914e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00046041274529,
+ "Shape_Area":1.25305272152e-08,
+ "Shape_Le_3":0.000460411661388,
+ "Shape_Ar_2":1.25305272152e-08,
+ "building_height":14.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1418,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55807068743412,
+ 45.53520369514471
+ ],
+ [
+ -73.55807492953622,
+ 45.5352054937888
+ ],
+ [
+ -73.55808326894955,
+ 45.53519695022936
+ ],
+ [
+ -73.5581720689077,
+ 45.535239550215366
+ ],
+ [
+ -73.55817246910601,
+ 45.53523984968961
+ ],
+ [
+ -73.55818494989737,
+ 45.535245783416464
+ ],
+ [
+ -73.55827346836772,
+ 45.53514268243914
+ ],
+ [
+ -73.5582537687183,
+ 45.53513374947325
+ ],
+ [
+ -73.55828306952988,
+ 45.5351019494457
+ ],
+ [
+ -73.55822676927183,
+ 45.53507645006841
+ ],
+ [
+ -73.55822326911043,
+ 45.53507464962568
+ ],
+ [
+ -73.55818706870011,
+ 45.535110350012935
+ ],
+ [
+ -73.55816656955339,
+ 45.535100050077546
+ ],
+ [
+ -73.55815006879249,
+ 45.53511604991606
+ ],
+ [
+ -73.55814719635787,
+ 45.53511457952452
+ ],
+ [
+ -73.55807068743412,
+ 45.53520369514471
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1418,
+ "ID_UEV":"01023721",
+ "CIVIQUE_DE":" 2408",
+ "CIVIQUE_FI":" 2416",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-5314-9-000-0000",
+ "SUPERFICIE":245,
+ "SUPERFIC_1":438,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000613303112928,
+ "OBJECTID":87708,
+ "Join_Count":1,
+ "TARGET_FID":87708,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":87708,
+ "Shape_Le_1":0.000613303112928,
+ "Shape_Ar_1":1.78955384655e-08,
+ "OBJECTID_3":87708,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87707,
+ "g_objectid":"941139",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425061",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329531490000000",
+ "g_sup_tota":"245.3",
+ "g_geometry":"0.000734525",
+ "g_geomet_1":"2.82431e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000613303112928,
+ "Shape_Area":1.78955384655e-08,
+ "Shape_Le_3":0.000613303900235,
+ "Shape_Ar_2":1.78955384655e-08,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1419,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55152557716549,
+ 45.53096082773031
+ ],
+ [
+ -73.55161833953659,
+ 45.53100217046409
+ ],
+ [
+ -73.5517215421373,
+ 45.53088778299509
+ ],
+ [
+ -73.5516861664053,
+ 45.530876249189845
+ ],
+ [
+ -73.55171216580565,
+ 45.53083684899168
+ ],
+ [
+ -73.55174946608683,
+ 45.53078054873363
+ ],
+ [
+ -73.55174986628515,
+ 45.53077994888583
+ ],
+ [
+ -73.55170655673405,
+ 45.53076024114251
+ ],
+ [
+ -73.55165923800527,
+ 45.530812686006946
+ ],
+ [
+ -73.55160497291301,
+ 45.53087282816878
+ ],
+ [
+ -73.55152557716549,
+ 45.53096082773031
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1419,
+ "ID_UEV":"01018732",
+ "CIVIQUE_DE":" 1818",
+ "CIVIQUE_FI":" 1822",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-74-6441-5-000-0000",
+ "SUPERFICIE":236,
+ "SUPERFIC_1":243,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000726038563691,
+ "OBJECTID":87710,
+ "Join_Count":1,
+ "TARGET_FID":87710,
+ "feature_id":"12dcaefd-3554-4490-b1b3-7ddb4c1195d1",
+ "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.46,
+ "heightmax":33.5,
+ "elevmin":19.08,
+ "elevmax":21.19,
+ "bldgarea":1785.7,
+ "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_2":87710,
+ "Shape_Le_1":0.000726038563691,
+ "Shape_Ar_1":2.10235710293e-08,
+ "OBJECTID_3":87710,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87709,
+ "g_objectid":"940673",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424253",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004374774250000000",
+ "g_sup_tota":"150",
+ "g_geometry":"0.000544028",
+ "g_geomet_1":"1.72938e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000726038563691,
+ "Shape_Area":2.10235710293e-08,
+ "Shape_Le_3":0.000726037806507,
+ "Shape_Ar_2":2.10235710293e-08,
+ "building_height":15.52
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1420,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55161833953659,
+ 45.53100217046409
+ ],
+ [
+ -73.55168963868772,
+ 45.53103394890791
+ ],
+ [
+ -73.55177080789831,
+ 45.53094470828196
+ ],
+ [
+ -73.5517569664327,
+ 45.53094024854393
+ ],
+ [
+ -73.55176776639115,
+ 45.53092374868235
+ ],
+ [
+ -73.55172056637288,
+ 45.53090844851638
+ ],
+ [
+ -73.55173186635439,
+ 45.530891149157505
+ ],
+ [
+ -73.5517215421373,
+ 45.53088778299509
+ ],
+ [
+ -73.55161833953659,
+ 45.53100217046409
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1420,
+ "ID_UEV":"01018734",
+ "CIVIQUE_DE":" 1826",
+ "CIVIQUE_FI":" 1828",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-74-5845-8-000-0000",
+ "SUPERFICIE":176,
+ "SUPERFIC_1":140,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000468160430917,
+ "OBJECTID":87711,
+ "Join_Count":1,
+ "TARGET_FID":87711,
+ "feature_id":"12dcaefd-3554-4490-b1b3-7ddb4c1195d1",
+ "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.46,
+ "heightmax":33.5,
+ "elevmin":19.08,
+ "elevmax":21.19,
+ "bldgarea":1785.7,
+ "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_2":87711,
+ "Shape_Le_1":0.000468160430917,
+ "Shape_Ar_1":1.01308324078e-08,
+ "OBJECTID_3":87711,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87710,
+ "g_objectid":"940653",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424224",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004374524930000000",
+ "g_sup_tota":"176.1",
+ "g_geometry":"0.000719451",
+ "g_geomet_1":"2.11222e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000468160430917,
+ "Shape_Area":1.01308324078e-08,
+ "Shape_Le_3":0.000468158396991,
+ "Shape_Ar_2":1.01308324078e-08,
+ "building_height":15.52
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1421,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55112399929497,
+ 45.5212805638972
+ ],
+ [
+ -73.55116036518055,
+ 45.52129554750181
+ ],
+ [
+ -73.5511645650145,
+ 45.5212906479953
+ ],
+ [
+ -73.55120826487138,
+ 45.52123694767729
+ ],
+ [
+ -73.55122436543397,
+ 45.521243447977035
+ ],
+ [
+ -73.55124586552611,
+ 45.521217047479055
+ ],
+ [
+ -73.55128556519853,
+ 45.5212330482169
+ ],
+ [
+ -73.55125306549841,
+ 45.52127294753879
+ ],
+ [
+ -73.55129109423046,
+ 45.52129081077259
+ ],
+ [
+ -73.55139377792236,
+ 45.52117658248359
+ ],
+ [
+ -73.55128356510629,
+ 45.52112524828188
+ ],
+ [
+ -73.55127856487572,
+ 45.52112294781608
+ ],
+ [
+ -73.55125606473744,
+ 45.521147247497765
+ ],
+ [
+ -73.55124930543295,
+ 45.52114414753468
+ ],
+ [
+ -73.55112399929497,
+ 45.5212805638972
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1421,
+ "ID_UEV":"01022061",
+ "CIVIQUE_DE":" 1201",
+ "CIVIQUE_FI":" 1211",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-73-9671-8-000-0000",
+ "SUPERFICIE":357,
+ "SUPERFIC_1":451,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000809177939182,
+ "OBJECTID":87713,
+ "Join_Count":1,
+ "TARGET_FID":87713,
+ "feature_id":"51cb76dd-fad4-47d5-ac66-51d7f00801f3",
+ "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.51,
+ "heightmax":14.26,
+ "elevmin":17.25,
+ "elevmax":21.23,
+ "bldgarea":1111.21,
+ "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_2":87713,
+ "Shape_Le_1":0.000809177939182,
+ "Shape_Ar_1":1.9593012933e-08,
+ "OBJECTID_3":87713,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87712,
+ "g_objectid":"942296",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567814",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004273837990000000",
+ "g_sup_tota":"603",
+ "g_geometry":"0.00109247",
+ "g_geomet_1":"6.93928e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000809177939182,
+ "Shape_Area":1.9593012933e-08,
+ "Shape_Le_3":0.000809177030852,
+ "Shape_Ar_2":1.9593012933e-08,
+ "building_height":5.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1422,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55081506508503,
+ 45.521198148226254
+ ],
+ [
+ -73.55087176554139,
+ 45.521134147972845
+ ],
+ [
+ -73.55097116490917,
+ 45.52102214820387
+ ],
+ [
+ -73.55088486506631,
+ 45.52098434789963
+ ],
+ [
+ -73.55081896544475,
+ 45.521058648088434
+ ],
+ [
+ -73.55079436538949,
+ 45.52104784812998
+ ],
+ [
+ -73.55077926487301,
+ 45.52106484801462
+ ],
+ [
+ -73.55071706506234,
+ 45.52103764801934
+ ],
+ [
+ -73.55080606556932,
+ 45.520937247706115
+ ],
+ [
+ -73.55065186511332,
+ 45.52086974819062
+ ],
+ [
+ -73.55056266495687,
+ 45.52097034815334
+ ],
+ [
+ -73.55053456474022,
+ 45.52095804812571
+ ],
+ [
+ -73.55053436509073,
+ 45.52095814795046
+ ],
+ [
+ -73.55042426468991,
+ 45.521073548056094
+ ],
+ [
+ -73.55060386469845,
+ 45.52115824800504
+ ],
+ [
+ -73.55060396542251,
+ 45.52115824800504
+ ],
+ [
+ -73.55063766481823,
+ 45.52112034787605
+ ],
+ [
+ -73.55081506508503,
+ 45.521198148226254
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1422,
+ "ID_UEV":"01022064",
+ "CIVIQUE_DE":" 1151",
+ "CIVIQUE_FI":" 1175",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1965,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-83-3746-3-000-0000",
+ "SUPERFICIE":1214,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00161670900344,
+ "OBJECTID":87714,
+ "Join_Count":1,
+ "TARGET_FID":87714,
+ "feature_id":"0e16c6e4-64f8-4fd9-8f73-d76c59eed9da",
+ "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.44,
+ "heightmax":15.95,
+ "elevmin":17.81,
+ "elevmax":20.43,
+ "bldgarea":730.02,
+ "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_2":87714,
+ "Shape_Le_1":0.00161670900344,
+ "Shape_Ar_1":8.40838950009e-08,
+ "OBJECTID_3":87714,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87713,
+ "g_objectid":"938505",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1567837",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004283374630000000",
+ "g_sup_tota":"1213.6",
+ "g_geometry":"0.00156494",
+ "g_geomet_1":"1.39788e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00161670900344,
+ "Shape_Area":8.40838950009e-08,
+ "Shape_Le_3":0.00161671071746,
+ "Shape_Ar_2":8.40838950009e-08,
+ "building_height":6.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1423,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55232782369195,
+ 45.52002231972457
+ ],
+ [
+ -73.55249109111281,
+ 45.520098360101535
+ ],
+ [
+ -73.5525502692014,
+ 45.520035925567804
+ ],
+ [
+ -73.55239076634264,
+ 45.519960047968134
+ ],
+ [
+ -73.55239056579381,
+ 45.51995994814339
+ ],
+ [
+ -73.55237236621358,
+ 45.51997824754838
+ ],
+ [
+ -73.5523704785366,
+ 45.519977318548705
+ ],
+ [
+ -73.55232782369195,
+ 45.52002231972457
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1423,
+ "ID_UEV":"01022067",
+ "CIVIQUE_DE":" 1204",
+ "CIVIQUE_FI":" 1210",
+ "NOM_RUE":"rue Dalcourt (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-72-0033-2-000-0000",
+ "SUPERFICIE":223,
+ "SUPERFIC_1":242,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000532901968598,
+ "OBJECTID":87715,
+ "Join_Count":1,
+ "TARGET_FID":87715,
+ "feature_id":"0abfd535-8270-461a-9580-5cee63fdd4ae",
+ "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.73,
+ "heightmax":13.43,
+ "elevmin":18.17,
+ "elevmax":20.3,
+ "bldgarea":1798.08,
+ "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_2":87715,
+ "Shape_Le_1":0.000532901968598,
+ "Shape_Ar_1":1.4766059375e-08,
+ "OBJECTID_3":87715,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87714,
+ "g_objectid":"942266",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567750",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262833470000000",
+ "g_sup_tota":"469.2",
+ "g_geometry":"0.000996936",
+ "g_geomet_1":"5.44425e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000532901968598,
+ "Shape_Area":1.4766059375e-08,
+ "Shape_Le_3":0.000532902771814,
+ "Shape_Ar_2":1.4766059375e-08,
+ "building_height":6.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1424,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5607569399027,
+ 45.534260157030914
+ ],
+ [
+ -73.56076656984317,
+ 45.53426444949504
+ ],
+ [
+ -73.56085333193757,
+ 45.53430313383286
+ ],
+ [
+ -73.56096024154375,
+ 45.534188620458764
+ ],
+ [
+ -73.5608649107089,
+ 45.53414450781308
+ ],
+ [
+ -73.5607569399027,
+ 45.534260157030914
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1424,
+ "ID_UEV":"01023152",
+ "CIVIQUE_DE":" 2541",
+ "CIVIQUE_FI":" 2545",
+ "NOM_RUE":"rue Sheppard (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-4816-8-000-0000",
+ "SUPERFICIE":272,
+ "SUPERFIC_1":379,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000525458233483,
+ "OBJECTID":87716,
+ "Join_Count":1,
+ "TARGET_FID":87716,
+ "feature_id":"228f7c1f-91c7-40c1-8e1f-5aec2ebf83d7",
+ "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.51,
+ "heightmax":50.56,
+ "elevmin":31.57,
+ "elevmax":39.27,
+ "bldgarea":1377.3,
+ "comment":" ",
+ "OBJECTID_2":87716,
+ "Shape_Le_1":0.000525458233483,
+ "Shape_Ar_1":1.57102257133e-08,
+ "OBJECTID_3":87716,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87715,
+ "g_objectid":"941411",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425419",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308412130000000",
+ "g_sup_tota":"275.3",
+ "g_geometry":"0.000838285",
+ "g_geomet_1":"3.14994e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000525458233483,
+ "Shape_Area":1.57102257133e-08,
+ "Shape_Le_3":0.000525459507786,
+ "Shape_Ar_2":1.57102257133e-08,
+ "building_height":24.025000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1425,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55950062747382,
+ 45.53609761046665
+ ],
+ [
+ -73.55943846903196,
+ 45.5360750500738
+ ],
+ [
+ -73.55934236927676,
+ 45.536205549796584
+ ],
+ [
+ -73.55933956878792,
+ 45.53620934943223
+ ],
+ [
+ -73.55928046894033,
+ 45.536285749538
+ ],
+ [
+ -73.55934046900929,
+ 45.536308649874584
+ ],
+ [
+ -73.55934606908767,
+ 45.536310849616314
+ ],
+ [
+ -73.55936368410858,
+ 45.536288324297026
+ ],
+ [
+ -73.55950062747382,
+ 45.53609761046665
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1425,
+ "ID_UEV":"01023875",
+ "CIVIQUE_DE":" 2581",
+ "CIVIQUE_FI":" 2585",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-10-6128-0-000-0000",
+ "SUPERFICIE":312,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000663123487912,
+ "OBJECTID":87726,
+ "Join_Count":1,
+ "TARGET_FID":87726,
+ "feature_id":"f6a07dc7-73e7-410c-85a0-e68a99dbd02d",
+ "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":47.8,
+ "elevmin":34.4,
+ "elevmax":36.94,
+ "bldgarea":528.23,
+ "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_2":87726,
+ "Shape_Le_1":0.000663123487912,
+ "Shape_Ar_1":1.72093471354e-08,
+ "OBJECTID_3":87726,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87725,
+ "g_objectid":"944192",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361466",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004410523390000000",
+ "g_sup_tota":"408.4",
+ "g_geometry":"0.000984416",
+ "g_geomet_1":"4.70428e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000663123487912,
+ "Shape_Area":1.72093471354e-08,
+ "Shape_Le_3":0.00066312384204,
+ "Shape_Ar_2":1.72093471354e-08,
+ "building_height":23.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1426,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55292797636686,
+ 45.518993322634024
+ ],
+ [
+ -73.55306700795789,
+ 45.51905744249727
+ ],
+ [
+ -73.55312436581868,
+ 45.518998746445284
+ ],
+ [
+ -73.55298736579614,
+ 45.51893254645015
+ ],
+ [
+ -73.55292797636686,
+ 45.518993322634024
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55254061947585,
+ 45.51881467770551
+ ],
+ [
+ -73.55287515648513,
+ 45.51896896269776
+ ],
+ [
+ -73.55294096617449,
+ 45.51889674713747
+ ],
+ [
+ -73.55294096617449,
+ 45.518896646413396
+ ],
+ [
+ -73.55291316633141,
+ 45.51888004672707
+ ],
+ [
+ -73.55312726613226,
+ 45.51870314648332
+ ],
+ [
+ -73.55312776615533,
+ 45.51870344685688
+ ],
+ [
+ -73.55319566586913,
+ 45.51869194722588
+ ],
+ [
+ -73.55319556604438,
+ 45.51869194722588
+ ],
+ [
+ -73.55312716630752,
+ 45.5186406471984
+ ],
+ [
+ -73.55319696628881,
+ 45.518594547051
+ ],
+ [
+ -73.55321556606737,
+ 45.51860854679729
+ ],
+ [
+ -73.55321676576297,
+ 45.51860724727693
+ ],
+ [
+ -73.55362286632406,
+ 45.51880134705482
+ ],
+ [
+ -73.55362316579831,
+ 45.518801446879564
+ ],
+ [
+ -73.55364056588125,
+ 45.51879194644147
+ ],
+ [
+ -73.55364096607957,
+ 45.51879204716554
+ ],
+ [
+ -73.55366286637003,
+ 45.51876814678284
+ ],
+ [
+ -73.55371950567249,
+ 45.5187937711659
+ ],
+ [
+ -73.55373709910968,
+ 45.51877458323073
+ ],
+ [
+ -73.5538954373464,
+ 45.5188516317477
+ ],
+ [
+ -73.55390303122176,
+ 45.51884388858488
+ ],
+ [
+ -73.55402819976345,
+ 45.51890421510774
+ ],
+ [
+ -73.55411700691619,
+ 45.51880898499696
+ ],
+ [
+ -73.55384326587587,
+ 45.51868394685696
+ ],
+ [
+ -73.55381736630027,
+ 45.51871194724886
+ ],
+ [
+ -73.55331386646361,
+ 45.51848204725897
+ ],
+ [
+ -73.55331186637139,
+ 45.51848414717595
+ ],
+ [
+ -73.55328226608556,
+ 45.518524247046656
+ ],
+ [
+ -73.55317756611363,
+ 45.51848614726818
+ ],
+ [
+ -73.55316006620593,
+ 45.518479746793176
+ ],
+ [
+ -73.55319896638103,
+ 45.51842714724535
+ ],
+ [
+ -73.5532107663856,
+ 45.518411347056315
+ ],
+ [
+ -73.55311296601242,
+ 45.51837534719481
+ ],
+ [
+ -73.55307046585116,
+ 45.51843254677491
+ ],
+ [
+ -73.55303616570832,
+ 45.518419947273046
+ ],
+ [
+ -73.55298546642798,
+ 45.518401246770416
+ ],
+ [
+ -73.55297046573625,
+ 45.518395646692035
+ ],
+ [
+ -73.55297026608676,
+ 45.51839584724085
+ ],
+ [
+ -73.55281206634562,
+ 45.51856674720791
+ ],
+ [
+ -73.55270216649363,
+ 45.51868554675087
+ ],
+ [
+ -73.55270206576957,
+ 45.518685646575626
+ ],
+ [
+ -73.5527219659678,
+ 45.51870144676465
+ ],
+ [
+ -73.55269216603249,
+ 45.51871994671846
+ ],
+ [
+ -73.55269206620774,
+ 45.51871994671846
+ ],
+ [
+ -73.55266656593112,
+ 45.51871984689372
+ ],
+ [
+ -73.55266626645688,
+ 45.51875884689356
+ ],
+ [
+ -73.5526653662355,
+ 45.51875884689356
+ ],
+ [
+ -73.55261296633716,
+ 45.51873524688443
+ ],
+ [
+ -73.55254061947585,
+ 45.51881467770551
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1426,
+ "ID_UEV":"01021887",
+ "CIVIQUE_DE":" 1205",
+ "CIVIQUE_FI":" 1205",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-60-3887-3-001-0012",
+ "SUPERFICIE":6125,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00468836346997,
+ "OBJECTID":87727,
+ "Join_Count":2,
+ "TARGET_FID":87727,
+ "feature_id":"35a69615-6df9-4090-a385-07079828cab6",
+ "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":3.16,
+ "heightmax":3.88,
+ "elevmin":17.57,
+ "elevmax":18.14,
+ "bldgarea":107.55,
+ "comment":" ",
+ "OBJECTID_2":87727,
+ "Shape_Le_1":0.00468836346997,
+ "Shape_Ar_1":3.28157837952e-07,
+ "OBJECTID_3":87727,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87726,
+ "g_objectid":"938500",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1566757",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004260388730010012",
+ "g_sup_tota":"7951.7",
+ "g_geometry":"0.00403074",
+ "g_geomet_1":"9.18226e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00468836346997,
+ "Shape_Area":3.28157837952e-07,
+ "Shape_Le_3":0.00468836226414,
+ "Shape_Ar_2":3.28157837952e-07,
+ "building_height":0.3599999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1427,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5578936540907,
+ 45.53564471098492
+ ],
+ [
+ -73.55789626931922,
+ 45.53564564987713
+ ],
+ [
+ -73.55794596945277,
+ 45.53558814992348
+ ],
+ [
+ -73.55794366718834,
+ 45.5355871678638
+ ],
+ [
+ -73.5578936540907,
+ 45.53564471098492
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5580075352414,
+ 45.53551368515874
+ ],
+ [
+ -73.5580121694479,
+ 45.53551565017741
+ ],
+ [
+ -73.55799936939722,
+ 45.53553055014507
+ ],
+ [
+ -73.55799956904671,
+ 45.53553055014507
+ ],
+ [
+ -73.55806839056562,
+ 45.53555979250072
+ ],
+ [
+ -73.5581615855106,
+ 45.53545292875995
+ ],
+ [
+ -73.5581358693967,
+ 45.53544335008084
+ ],
+ [
+ -73.558143069369,
+ 45.53543394946749
+ ],
+ [
+ -73.55813856916149,
+ 45.53543205009933
+ ],
+ [
+ -73.55809471821851,
+ 45.53541337567704
+ ],
+ [
+ -73.5580075352414,
+ 45.53551368515874
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1427,
+ "ID_UEV":"01023893",
+ "CIVIQUE_DE":" 2415",
+ "CIVIQUE_FI":" 2419",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2004,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-6760-2-000-0000",
+ "SUPERFICIE":208,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000623699090256,
+ "OBJECTID":87728,
+ "Join_Count":2,
+ "TARGET_FID":87728,
+ "feature_id":"a71ca623-7086-4569-9560-653b710cfc84",
+ "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.53,
+ "heightmax":40.65,
+ "elevmin":21.14,
+ "elevmax":28.77,
+ "bldgarea":2362.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_2":87728,
+ "Shape_Le_1":0.000623699090256,
+ "Shape_Ar_1":1.14313214402e-08,
+ "OBJECTID_3":87728,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87727,
+ "g_objectid":"941264",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425235",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329816370000000",
+ "g_sup_tota":"176.1",
+ "g_geometry":"0.000588445",
+ "g_geomet_1":"2.02995e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000623699090256,
+ "Shape_Area":1.14313214402e-08,
+ "Shape_Le_3":0.000623700464623,
+ "Shape_Ar_2":1.14313214402e-08,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1428,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55774038533237,
+ 45.53558964459672
+ ],
+ [
+ -73.5578936540907,
+ 45.53564471098492
+ ],
+ [
+ -73.55794366718834,
+ 45.5355871678638
+ ],
+ [
+ -73.55779678451584,
+ 45.53552452558668
+ ],
+ [
+ -73.55774038533237,
+ 45.53558964459672
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1428,
+ "ID_UEV":"01023895",
+ "CIVIQUE_DE":" 2388",
+ "CIVIQUE_FI":" 2388",
+ "NOM_RUE":"rue du Havre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1998,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-8163-7-000-0000",
+ "SUPERFICIE":176,
+ "SUPERFIC_1":426,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000484930638455,
+ "OBJECTID":87729,
+ "Join_Count":1,
+ "TARGET_FID":87729,
+ "feature_id":"3fccef1c-e0bd-4d86-b698-896be7250b0b",
+ "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.67,
+ "heightmax":33.76,
+ "elevmin":24.54,
+ "elevmax":26.66,
+ "bldgarea":224.19,
+ "comment":" ",
+ "OBJECTID_2":87729,
+ "Shape_Le_1":0.000484930638455,
+ "Shape_Ar_1":1.23356970745e-08,
+ "OBJECTID_3":87729,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87728,
+ "g_objectid":"941264",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425235",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329816370000000",
+ "g_sup_tota":"176.1",
+ "g_geometry":"0.000588445",
+ "g_geomet_1":"2.02995e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000484930638455,
+ "Shape_Area":1.23356970745e-08,
+ "Shape_Le_3":0.000484930632977,
+ "Shape_Ar_2":1.23356970745e-08,
+ "building_height":15.544999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1429,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55784922038706,
+ 45.535463981427895
+ ],
+ [
+ -73.55785336895966,
+ 45.53546574949504
+ ],
+ [
+ -73.55786456911642,
+ 45.535452949444355
+ ],
+ [
+ -73.5579372694113,
+ 45.53548385014986
+ ],
+ [
+ -73.55797796912982,
+ 45.53550114950874
+ ],
+ [
+ -73.5580075352414,
+ 45.53551368515874
+ ],
+ [
+ -73.55809471821851,
+ 45.53541337567704
+ ],
+ [
+ -73.55794738948228,
+ 45.53535063357518
+ ],
+ [
+ -73.55784922038706,
+ 45.535463981427895
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1429,
+ "ID_UEV":"01023897",
+ "CIVIQUE_DE":" 2405",
+ "CIVIQUE_FI":" 2413",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1912,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-7249-5-000-0000",
+ "SUPERFICIE":247,
+ "SUPERFIC_1":486,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000619833705512,
+ "OBJECTID":87730,
+ "Join_Count":1,
+ "TARGET_FID":87730,
+ "feature_id":"a71ca623-7086-4569-9560-653b710cfc84",
+ "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.53,
+ "heightmax":40.65,
+ "elevmin":21.14,
+ "elevmax":28.77,
+ "bldgarea":2362.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_2":87730,
+ "Shape_Le_1":0.000619833705512,
+ "Shape_Ar_1":2.03197307207e-08,
+ "OBJECTID_3":87730,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87729,
+ "g_objectid":"941122",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425037",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329676020000000",
+ "g_sup_tota":"207.6",
+ "g_geometry":"0.000794377",
+ "g_geomet_1":"2.41149e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000619833705512,
+ "Shape_Area":2.03197307207e-08,
+ "Shape_Le_3":0.000619833970729,
+ "Shape_Ar_2":2.03197307207e-08,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1430,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55775360536644,
+ 45.53542322775006
+ ],
+ [
+ -73.55784922038706,
+ 45.535463981427895
+ ],
+ [
+ -73.55794738948228,
+ 45.53535063357518
+ ],
+ [
+ -73.55785065570504,
+ 45.535309440128856
+ ],
+ [
+ -73.55775360536644,
+ 45.53542322775006
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1430,
+ "ID_UEV":"01023899",
+ "CIVIQUE_DE":" 2397",
+ "CIVIQUE_FI":" 2403",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-8345-0-000-0000",
+ "SUPERFICIE":185,
+ "SUPERFIC_1":362,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000508581509739,
+ "OBJECTID":87731,
+ "Join_Count":1,
+ "TARGET_FID":87731,
+ "feature_id":"a71ca623-7086-4569-9560-653b710cfc84",
+ "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.53,
+ "heightmax":40.65,
+ "elevmin":21.14,
+ "elevmax":28.77,
+ "bldgarea":2362.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_2":87731,
+ "Shape_Le_1":0.000508581509739,
+ "Shape_Ar_1":1.49217609722e-08,
+ "OBJECTID_3":87731,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87730,
+ "g_objectid":"941461",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425522",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329884000000000",
+ "g_sup_tota":"85.6",
+ "g_geometry":"0.000485447",
+ "g_geomet_1":"9.8588e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000508581509739,
+ "Shape_Area":1.49217609722e-08,
+ "Shape_Le_3":0.000508581134112,
+ "Shape_Ar_2":1.49217609722e-08,
+ "building_height":19.06
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1431,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55003031037236,
+ 45.53101816400736
+ ],
+ [
+ -73.55003296607038,
+ 45.531019350213136
+ ],
+ [
+ -73.5500249351245,
+ 45.53102805025461
+ ],
+ [
+ -73.550126215874,
+ 45.531071161954856
+ ],
+ [
+ -73.55020359354285,
+ 45.530983001414675
+ ],
+ [
+ -73.55010496579338,
+ 45.53093754877915
+ ],
+ [
+ -73.55011886571492,
+ 45.53092264881149
+ ],
+ [
+ -73.55011377555215,
+ 45.53092035913756
+ ],
+ [
+ -73.55003031037236,
+ 45.53101816400736
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1431,
+ "ID_UEV":"01018849",
+ "CIVIQUE_DE":" 1708",
+ "CIVIQUE_FI":" 1714",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-84-8250-7-000-0000",
+ "SUPERFICIE":229,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000505257893532,
+ "OBJECTID":87749,
+ "Join_Count":1,
+ "TARGET_FID":87749,
+ "feature_id":"6f30f9af-b226-4124-b778-93c9694c9bb7",
+ "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":34.35,
+ "elevmin":22,
+ "elevmax":23.39,
+ "bldgarea":1398.34,
+ "comment":" ",
+ "OBJECTID_2":87749,
+ "Shape_Le_1":0.000505257893532,
+ "Shape_Ar_1":1.28906494904e-08,
+ "OBJECTID_3":87749,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87748,
+ "g_objectid":"940692",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424282",
+ "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":"66023004384894520000000",
+ "g_sup_tota":"164.5",
+ "g_geometry":"0.000649749",
+ "g_geomet_1":"1.89515e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000505257893532,
+ "Shape_Area":1.28906494904e-08,
+ "Shape_Le_3":0.000505257766126,
+ "Shape_Ar_2":1.28906494904e-08,
+ "building_height":15.915000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1432,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55962493356567,
+ 45.507832823276466
+ ],
+ [
+ -73.55974627009613,
+ 45.507887778148735
+ ],
+ [
+ -73.55988388345631,
+ 45.50773755989077
+ ],
+ [
+ -73.55989867280735,
+ 45.50774415551866
+ ],
+ [
+ -73.55993040088913,
+ 45.507709809510395
+ ],
+ [
+ -73.55991276698245,
+ 45.50770254478691
+ ],
+ [
+ -73.55997736708368,
+ 45.507625144635014
+ ],
+ [
+ -73.55997956682539,
+ 45.50762264451972
+ ],
+ [
+ -73.55987216978666,
+ 45.50757491659942
+ ],
+ [
+ -73.5597548882993,
+ 45.50769648245699
+ ],
+ [
+ -73.55971535050487,
+ 45.50773478907955
+ ],
+ [
+ -73.55962493356567,
+ 45.507832823276466
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1432,
+ "ID_UEV":"01058692",
+ "CIVIQUE_DE":" 1008",
+ "CIVIQUE_FI":" 1012",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-18-2569-0-000-0000",
+ "SUPERFICIE":407,
+ "SUPERFIC_1":1117,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000997952386666,
+ "OBJECTID":87750,
+ "Join_Count":1,
+ "TARGET_FID":87750,
+ "feature_id":"42a97640-1a73-4856-a5b4-b32c962506ba",
+ "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":26.38,
+ "elevmin":16.09,
+ "elevmax":17.98,
+ "bldgarea":3386.31,
+ "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_2":87750,
+ "Shape_Le_1":0.000997952386666,
+ "Shape_Ar_1":4.40196755467e-08,
+ "OBJECTID_3":87750,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87749,
+ "g_objectid":"939513",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180606",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004018228040000000",
+ "g_sup_tota":"146.6",
+ "g_geometry":"0.000583479",
+ "g_geomet_1":"1.68943e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000997952386666,
+ "Shape_Area":4.40196755467e-08,
+ "Shape_Le_3":0.000997951496483,
+ "Shape_Ar_2":4.40196755467e-08,
+ "building_height":12.695
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1433,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55974627009613,
+ 45.507887778148735
+ ],
+ [
+ -73.55982417027109,
+ 45.507923059451926
+ ],
+ [
+ -73.55996511292147,
+ 45.507773787280755
+ ],
+ [
+ -73.55989867280735,
+ 45.50774415551866
+ ],
+ [
+ -73.55988388345631,
+ 45.50773755989077
+ ],
+ [
+ -73.55974627009613,
+ 45.507887778148735
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1433,
+ "ID_UEV":"01058693",
+ "CIVIQUE_DE":" 1014",
+ "CIVIQUE_FI":" 1016",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1890,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-18-2280-4-000-0000",
+ "SUPERFICIE":147,
+ "SUPERFIC_1":469,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000583480126447,
+ "OBJECTID":87751,
+ "Join_Count":1,
+ "TARGET_FID":87751,
+ "feature_id":"42a97640-1a73-4856-a5b4-b32c962506ba",
+ "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":26.38,
+ "elevmin":16.09,
+ "elevmax":17.98,
+ "bldgarea":3386.31,
+ "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_2":87751,
+ "Shape_Le_1":0.000583480126447,
+ "Shape_Ar_1":1.68943180868e-08,
+ "OBJECTID_3":87751,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87750,
+ "g_objectid":"939513",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180606",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004018228040000000",
+ "g_sup_tota":"146.6",
+ "g_geometry":"0.000583479",
+ "g_geomet_1":"1.68943e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000583480126447,
+ "Shape_Area":1.68943180868e-08,
+ "Shape_Le_3":0.000583479259467,
+ "Shape_Ar_2":1.68943180868e-08,
+ "building_height":12.695
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1434,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5605671631659,
+ 45.50803751167212
+ ],
+ [
+ -73.56056526829434,
+ 45.50803954503927
+ ],
+ [
+ -73.56044586800425,
+ 45.507984444476826
+ ],
+ [
+ -73.56044046847468,
+ 45.50798194526086
+ ],
+ [
+ -73.5602944671378,
+ 45.50813537050124
+ ],
+ [
+ -73.5604194117483,
+ 45.50819241090134
+ ],
+ [
+ -73.56054416929982,
+ 45.508063099182976
+ ],
+ [
+ -73.56056839883438,
+ 45.50803807554704
+ ],
+ [
+ -73.5605671631659,
+ 45.50803751167212
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1434,
+ "ID_UEV":"01058696",
+ "CIVIQUE_DE":" 1060",
+ "CIVIQUE_FI":" 1066",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-09-7708-8-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":816,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00070524453341,
+ "OBJECTID":87752,
+ "Join_Count":1,
+ "TARGET_FID":87752,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":87752,
+ "Shape_Le_1":0.00070524453341,
+ "Shape_Ar_1":2.76161191082e-08,
+ "OBJECTID_3":87752,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87751,
+ "g_objectid":"939512",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180598",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004009770880000000",
+ "g_sup_tota":"250.8",
+ "g_geometry":"0.000715273",
+ "g_geomet_1":"2.88771e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00070524453341,
+ "Shape_Area":2.76161191082e-08,
+ "Shape_Le_3":0.000705243910799,
+ "Shape_Ar_2":2.76161191082e-08,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1435,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56611463840169,
+ 45.51617208822159
+ ],
+ [
+ -73.56617227055568,
+ 45.516193745695105
+ ],
+ [
+ -73.5661625704681,
+ 45.516206445921036
+ ],
+ [
+ -73.56616146969792,
+ 45.516208245464455
+ ],
+ [
+ -73.5662444699282,
+ 45.516233446266824
+ ],
+ [
+ -73.56622867423577,
+ 45.51625908413972
+ ],
+ [
+ -73.56623273467481,
+ 45.51626093584381
+ ],
+ [
+ -73.56630986503009,
+ 45.51609645164022
+ ],
+ [
+ -73.56623387051856,
+ 45.51607104579242
+ ],
+ [
+ -73.56622446990521,
+ 45.51606824620289
+ ],
+ [
+ -73.56637546967403,
+ 45.51580884575193
+ ],
+ [
+ -73.56637284275433,
+ 45.51580767303598
+ ],
+ [
+ -73.56632658702422,
+ 45.515859770762106
+ ],
+ [
+ -73.56621284796641,
+ 45.51606483327573
+ ],
+ [
+ -73.56611463840169,
+ 45.51617208822159
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1435,
+ "ID_UEV":"01021303",
+ "CIVIQUE_DE":" 2054",
+ "CIVIQUE_FI":" 2056",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1973,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-67-2294-2-000-0000",
+ "SUPERFICIE":442,
+ "SUPERFIC_1":392,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00122519757301,
+ "OBJECTID":87753,
+ "Join_Count":1,
+ "TARGET_FID":87753,
+ "feature_id":"f5bdc888-f5f9-44f8-b869-1a86f7f5a96f",
+ "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":17.39,
+ "elevmin":23.15,
+ "elevmax":34.36,
+ "bldgarea":2199.4,
+ "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_2":87753,
+ "Shape_Le_1":0.00122519757301,
+ "Shape_Ar_1":2.22016985564e-08,
+ "OBJECTID_3":87753,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87752,
+ "g_objectid":"943102",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161267",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994168140610000000",
+ "g_sup_tota":"440.4",
+ "g_geometry":"0.000972569",
+ "g_geomet_1":"5.14495e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00122519757301,
+ "Shape_Area":2.22016985564e-08,
+ "Shape_Le_3":0.0012251974654,
+ "Shape_Ar_2":2.22016985564e-08,
+ "building_height":8.435
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1436,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.560048172507,
+ 45.52352812167577
+ ],
+ [
+ -73.5600426695554,
+ 45.52353424785755
+ ],
+ [
+ -73.56009090019673,
+ 45.52355570388292
+ ],
+ [
+ -73.5600954714507,
+ 45.52355084574523
+ ],
+ [
+ -73.560048172507,
+ 45.52352812167577
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55990534577693,
+ 45.52336235413963
+ ],
+ [
+ -73.55994676855038,
+ 45.52338084779818
+ ],
+ [
+ -73.55995896785393,
+ 45.52336734807495
+ ],
+ [
+ -73.56001696872997,
+ 45.52339314782581
+ ],
+ [
+ -73.55999906952329,
+ 45.52341304802404
+ ],
+ [
+ -73.56003309267493,
+ 45.5234282007012
+ ],
+ [
+ -73.56011724044014,
+ 45.52333871096304
+ ],
+ [
+ -73.55998726322346,
+ 45.52327523681302
+ ],
+ [
+ -73.55990534577693,
+ 45.52336235413963
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1436,
+ "ID_UEV":"01032460",
+ "CIVIQUE_DE":" 1905",
+ "CIVIQUE_FI":" 1917",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":14,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-16-1618-6-000-0000",
+ "SUPERFICIE":581,
+ "SUPERFIC_1":415,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000698286303737,
+ "OBJECTID":87758,
+ "Join_Count":1,
+ "TARGET_FID":87758,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":87758,
+ "Shape_Le_1":0.000698286303737,
+ "Shape_Ar_1":1.57330244272e-08,
+ "OBJECTID_3":87758,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87757,
+ "g_objectid":"941938",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566880",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206992580000000",
+ "g_sup_tota":"213.4",
+ "g_geometry":"0.000863485",
+ "g_geomet_1":"2.45474e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000698286303737,
+ "Shape_Area":1.57330244272e-08,
+ "Shape_Le_3":0.00069828587155,
+ "Shape_Ar_2":1.57330244272e-08,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1437,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5581660560405,
+ 45.53741813089232
+ ],
+ [
+ -73.55816676920288,
+ 45.53741834942758
+ ],
+ [
+ -73.5581649183981,
+ 45.537421267727616
+ ],
+ [
+ -73.55825114449657,
+ 45.53745185097244
+ ],
+ [
+ -73.55830064947723,
+ 45.53738212383624
+ ],
+ [
+ -73.55825546933629,
+ 45.537365949529246
+ ],
+ [
+ -73.55827406911484,
+ 45.53734024960313
+ ],
+ [
+ -73.55823886875064,
+ 45.53732784975076
+ ],
+ [
+ -73.55830156948369,
+ 45.537240549861785
+ ],
+ [
+ -73.55829403496358,
+ 45.53723787527802
+ ],
+ [
+ -73.5581660560405,
+ 45.53741813089232
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1437,
+ "ID_UEV":"01024412",
+ "CIVIQUE_DE":" 2533",
+ "CIVIQUE_FI":" 2535",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-4859-9-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":152,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000634782110082,
+ "OBJECTID":87761,
+ "Join_Count":1,
+ "TARGET_FID":87761,
+ "feature_id":"6694d0e9-dd93-4aee-aae5-ff7d1d2b4a8c",
+ "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.58,
+ "heightmax":40.64,
+ "elevmin":27.19,
+ "elevmax":33.25,
+ "bldgarea":641.63,
+ "comment":" ",
+ "OBJECTID_2":87761,
+ "Shape_Le_1":0.000634782110082,
+ "Shape_Ar_1":9.75661008352e-09,
+ "OBJECTID_3":87761,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87760,
+ "g_objectid":"944149",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361409",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421416280000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.00068152",
+ "g_geomet_1":"2.20782e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000634782110082,
+ "Shape_Area":9.75661008352e-09,
+ "Shape_Le_3":0.000634783222558,
+ "Shape_Ar_2":9.75661008352e-09,
+ "building_height":20.03
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1438,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55762379452435,
+ 45.52254117508546
+ ],
+ [
+ -73.55774678850533,
+ 45.52259745106181
+ ],
+ [
+ -73.55779437703072,
+ 45.522546473890955
+ ],
+ [
+ -73.55766986769208,
+ 45.522491647621735
+ ],
+ [
+ -73.55766826779816,
+ 45.522493647713965
+ ],
+ [
+ -73.55762379452435,
+ 45.52254117508546
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55775849587972,
+ 45.52238423529452
+ ],
+ [
+ -73.55779736817584,
+ 45.522401647967975
+ ],
+ [
+ -73.55781636815271,
+ 45.52238064789888
+ ],
+ [
+ -73.55790846772345,
+ 45.522421747815706
+ ],
+ [
+ -73.55788766820316,
+ 45.52244474797703
+ ],
+ [
+ -73.55783936831403,
+ 45.52242324788488
+ ],
+ [
+ -73.5577972683511,
+ 45.52246994788008
+ ],
+ [
+ -73.55784569414531,
+ 45.52249150283089
+ ],
+ [
+ -73.55798455576448,
+ 45.52234275316582
+ ],
+ [
+ -73.55785287433253,
+ 45.52228332866298
+ ],
+ [
+ -73.55775849587972,
+ 45.52238423529452
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1438,
+ "ID_UEV":"01032485",
+ "CIVIQUE_DE":" 1711",
+ "CIVIQUE_FI":" 1717",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-8302-1-000-0000",
+ "SUPERFICIE":424,
+ "SUPERFIC_1":387,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00126634696406,
+ "OBJECTID":87769,
+ "Join_Count":2,
+ "TARGET_FID":87769,
+ "feature_id":"ae986f48-4617-44ac-9c0f-e787de322f39",
+ "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.5,
+ "heightmax":38.47,
+ "elevmin":26.14,
+ "elevmax":27.18,
+ "bldgarea":1323.7,
+ "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_2":87769,
+ "Shape_Le_1":0.00126634696406,
+ "Shape_Ar_1":2.81742756642e-08,
+ "OBJECTID_3":87769,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87768,
+ "g_objectid":"942087",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567327",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235023190000000",
+ "g_sup_tota":"425.5",
+ "g_geometry":"0.00100666",
+ "g_geomet_1":"4.92427e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00126634696406,
+ "Shape_Area":2.81742756642e-08,
+ "Shape_Le_3":0.00126634613646,
+ "Shape_Ar_2":2.81742756642e-08,
+ "building_height":17.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1439,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54591982855908,
+ 45.527387171031414
+ ],
+ [
+ -73.54606517698818,
+ 45.52745223967941
+ ],
+ [
+ -73.54617236448487,
+ 45.52734964861769
+ ],
+ [
+ -73.54617636377002,
+ 45.52734584898204
+ ],
+ [
+ -73.54615866421283,
+ 45.52733694929107
+ ],
+ [
+ -73.54616532998783,
+ 45.52733036175709
+ ],
+ [
+ -73.54603228338502,
+ 45.52727119086306
+ ],
+ [
+ -73.54591982855908,
+ 45.527387171031414
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1439,
+ "ID_UEV":"01018606",
+ "CIVIQUE_DE":" 2371",
+ "CIVIQUE_FI":" 2379",
+ "NOM_RUE":"rue Jean-Langlois (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-20-0151-7-000-0000",
+ "SUPERFICIE":285,
+ "SUPERFIC_1":413,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00064947922644,
+ "OBJECTID":87771,
+ "Join_Count":1,
+ "TARGET_FID":87771,
+ "feature_id":"b00ab300-31ea-4632-8583-3f8d837da58b",
+ "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.16,
+ "heightmax":13.72,
+ "elevmin":19.27,
+ "elevmax":21.01,
+ "bldgarea":1205.67,
+ "comment":" ",
+ "OBJECTID_2":87771,
+ "Shape_Le_1":0.00064947922644,
+ "Shape_Ar_1":2.45167337503e-08,
+ "OBJECTID_3":87771,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87770,
+ "g_objectid":"940941",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424713",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014320015170000000",
+ "g_sup_tota":"285.1",
+ "g_geometry":"0.000754433",
+ "g_geomet_1":"3.29656e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00064947922644,
+ "Shape_Area":2.45167337503e-08,
+ "Shape_Le_3":0.000649477468417,
+ "Shape_Ar_2":2.45167337503e-08,
+ "building_height":6.28
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1440,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56016390356315,
+ 45.53352665288302
+ ],
+ [
+ -73.56024736874292,
+ 45.53356454941472
+ ],
+ [
+ -73.56024216886284,
+ 45.53357025021717
+ ],
+ [
+ -73.56026271567363,
+ 45.53357957348882
+ ],
+ [
+ -73.56042966851624,
+ 45.53340039256436
+ ],
+ [
+ -73.5604044695125,
+ 45.53338904941539
+ ],
+ [
+ -73.5604044695125,
+ 45.533388949590645
+ ],
+ [
+ -73.56039926873311,
+ 45.53339504969208
+ ],
+ [
+ -73.56036586881164,
+ 45.53338095012105
+ ],
+ [
+ -73.56035306876096,
+ 45.53339585008871
+ ],
+ [
+ -73.56033716874718,
+ 45.53338915013946
+ ],
+ [
+ -73.56032796868266,
+ 45.53340004992266
+ ],
+ [
+ -73.56030456922234,
+ 45.533390349835074
+ ],
+ [
+ -73.5603523690884,
+ 45.53333344972922
+ ],
+ [
+ -73.5603460945185,
+ 45.533330846191895
+ ],
+ [
+ -73.56016390356315,
+ 45.53352665288302
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1440,
+ "ID_UEV":"01023123",
+ "CIVIQUE_DE":" 2412",
+ "CIVIQUE_FI":" 2420",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1936,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-9028-7-000-0000",
+ "SUPERFICIE":295,
+ "SUPERFIC_1":559,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000863912336421,
+ "OBJECTID":87772,
+ "Join_Count":1,
+ "TARGET_FID":87772,
+ "feature_id":"ea5c0bbc-ef1d-4d43-87d6-830780f61401",
+ "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.49,
+ "heightmax":44.42,
+ "elevmin":27.09,
+ "elevmax":32.72,
+ "bldgarea":1942,
+ "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_2":87772,
+ "Shape_Le_1":0.000863912336421,
+ "Shape_Ar_1":2.42709710197e-08,
+ "OBJECTID_3":87772,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87771,
+ "g_objectid":"941318",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425324",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307902870000000",
+ "g_sup_tota":"295.3",
+ "g_geometry":"0.000855558",
+ "g_geomet_1":"3.40104e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000863912336421,
+ "Shape_Area":2.42709710197e-08,
+ "Shape_Le_3":0.000863910762916,
+ "Shape_Ar_2":2.42709710197e-08,
+ "building_height":20.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1441,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56066628644182,
+ 45.53358728157808
+ ],
+ [
+ -73.56058386897222,
+ 45.533550350018935
+ ],
+ [
+ -73.5605828689261,
+ 45.533551549714545
+ ],
+ [
+ -73.5604653689035,
+ 45.53367085017989
+ ],
+ [
+ -73.56054988449142,
+ 45.5337119617879
+ ],
+ [
+ -73.56066628644182,
+ 45.53358728157808
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1441,
+ "ID_UEV":"01023125",
+ "CIVIQUE_DE":" 2500",
+ "CIVIQUE_FI":" 2508",
+ "NOM_RUE":"rue Sheppard (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-6743-4-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":391,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000523878433419,
+ "OBJECTID":87773,
+ "Join_Count":1,
+ "TARGET_FID":87773,
+ "feature_id":"5f62825a-28c5-4384-9ef9-20328e7f4785",
+ "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":49.71,
+ "elevmin":32.12,
+ "elevmax":38.48,
+ "bldgarea":1378.45,
+ "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_2":87773,
+ "Shape_Le_1":0.000523878433419,
+ "Shape_Ar_1":1.48044198592e-08,
+ "OBJECTID_3":87773,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87772,
+ "g_objectid":"941424",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425434",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307604880000000",
+ "g_sup_tota":"269.9",
+ "g_geometry":"0.00083741",
+ "g_geomet_1":"3.11159e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000523878433419,
+ "Shape_Area":1.48044198592e-08,
+ "Shape_Le_3":0.000523879301623,
+ "Shape_Ar_2":1.48044198592e-08,
+ "building_height":23.595
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1442,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56064319814692,
+ 45.533756984547495
+ ],
+ [
+ -73.56067876993113,
+ 45.53377305003652
+ ],
+ [
+ -73.56073519249698,
+ 45.53379842081077
+ ],
+ [
+ -73.56085384545045,
+ 45.533671328619214
+ ],
+ [
+ -73.56076171080615,
+ 45.533630042542725
+ ],
+ [
+ -73.56064319814692,
+ 45.533756984547495
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1442,
+ "ID_UEV":"01023129",
+ "CIVIQUE_DE":" 2520",
+ "CIVIQUE_FI":" 2528",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-5253-5-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":389,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000549392220179,
+ "OBJECTID":87774,
+ "Join_Count":1,
+ "TARGET_FID":87774,
+ "feature_id":"5f62825a-28c5-4384-9ef9-20328e7f4785",
+ "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":49.71,
+ "elevmin":32.12,
+ "elevmax":38.48,
+ "bldgarea":1378.45,
+ "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_2":87774,
+ "Shape_Le_1":0.000549392220179,
+ "Shape_Ar_1":1.66003656547e-08,
+ "OBJECTID_3":87774,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87773,
+ "g_objectid":"941424",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425434",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307604880000000",
+ "g_sup_tota":"269.9",
+ "g_geometry":"0.00083741",
+ "g_geomet_1":"3.11159e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000549392220179,
+ "Shape_Area":1.66003656547e-08,
+ "Shape_Le_3":0.000549393146914,
+ "Shape_Ar_2":1.66003656547e-08,
+ "building_height":23.595
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1443,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56073519249698,
+ 45.53379842081077
+ ],
+ [
+ -73.56075526986166,
+ 45.53380745000411
+ ],
+ [
+ -73.56080756993525,
+ 45.53383074963968
+ ],
+ [
+ -73.56082746473756,
+ 45.5338395575998
+ ],
+ [
+ -73.5609459782961,
+ 45.53371261559503
+ ],
+ [
+ -73.56085384545045,
+ 45.533671328619214
+ ],
+ [
+ -73.56073519249698,
+ 45.53379842081077
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1443,
+ "ID_UEV":"01023131",
+ "CIVIQUE_DE":" 2530",
+ "CIVIQUE_FI":" 2538",
+ "NOM_RUE":"rue Sheppard (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-4558-8-000-0000",
+ "SUPERFICIE":261,
+ "SUPERFIC_1":389,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000549524208111,
+ "OBJECTID":87775,
+ "Join_Count":1,
+ "TARGET_FID":87775,
+ "feature_id":"5f62825a-28c5-4384-9ef9-20328e7f4785",
+ "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":49.71,
+ "elevmin":32.12,
+ "elevmax":38.48,
+ "bldgarea":1378.45,
+ "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_2":87775,
+ "Shape_Le_1":0.000549524208111,
+ "Shape_Ar_1":1.66034307126e-08,
+ "OBJECTID_3":87775,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87774,
+ "g_objectid":"940556",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424058",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307386250000000",
+ "g_sup_tota":"260.6",
+ "g_geometry":"0.000830224",
+ "g_geomet_1":"3.0043e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000549524208111,
+ "Shape_Area":1.66034307126e-08,
+ "Shape_Le_3":0.00054952377219,
+ "Shape_Ar_2":1.66034307126e-08,
+ "building_height":23.595
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1444,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56297849918023,
+ 45.52808348011881
+ ],
+ [
+ -73.56295037018528,
+ 45.528070548767104
+ ],
+ [
+ -73.56323247042401,
+ 45.52776914817794
+ ],
+ [
+ -73.56299897044798,
+ 45.52766104786936
+ ],
+ [
+ -73.56299516991301,
+ 45.52765934815069
+ ],
+ [
+ -73.56284586986285,
+ 45.52781464757822
+ ],
+ [
+ -73.56272476985409,
+ 45.52794054906738
+ ],
+ [
+ -73.56272467002934,
+ 45.52794064889213
+ ],
+ [
+ -73.56276266998307,
+ 45.52795924867068
+ ],
+ [
+ -73.56269277017705,
+ 45.528029648499775
+ ],
+ [
+ -73.56268647312407,
+ 45.52803599591478
+ ],
+ [
+ -73.5628059561518,
+ 45.528092085731465
+ ],
+ [
+ -73.56292057924318,
+ 45.52814589486745
+ ],
+ [
+ -73.56297849918023,
+ 45.52808348011881
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56259606877539,
+ 45.5279935560081
+ ],
+ [
+ -73.56259614971438,
+ 45.52799359377963
+ ],
+ [
+ -73.56275897017218,
+ 45.527819747633544
+ ],
+ [
+ -73.56276266998307,
+ 45.52781564762434
+ ],
+ [
+ -73.56276159529324,
+ 45.527815182674836
+ ],
+ [
+ -73.56259606877539,
+ 45.5279935560081
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1444,
+ "ID_UEV":"01034165",
+ "CIVIQUE_DE":" 2265",
+ "CIVIQUE_FI":" 2265",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1932,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Centre d'appels t\u00c3\u00a9l\u00c3\u00a9phoniques",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-81-8432-9-000-0000",
+ "SUPERFICIE":3203,
+ "SUPERFIC_1":4611,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00207804731241,
+ "OBJECTID":87779,
+ "Join_Count":2,
+ "TARGET_FID":87779,
+ "feature_id":"721fc9ce-7bfa-4f73-9404-e1ffa391d37e",
+ "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.49,
+ "heightmax":15.14,
+ "elevmin":34.09,
+ "elevmax":38.26,
+ "bldgarea":1269.36,
+ "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_2":87779,
+ "Shape_Le_1":0.00207804731241,
+ "Shape_Ar_1":1.23503595309e-07,
+ "OBJECTID_3":87779,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87778,
+ "g_objectid":"938264",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1565527",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":"6",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994381622260000000",
+ "g_sup_tota":"999.4",
+ "g_geometry":"0.00148995",
+ "g_geomet_1":"1.16262e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00207804731241,
+ "Shape_Area":1.23503595309e-07,
+ "Shape_Le_3":0.00207804776714,
+ "Shape_Ar_2":1.23503595309e-07,
+ "building_height":6.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1445,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55836323149978,
+ 45.524201785834045
+ ],
+ [
+ -73.55849508110495,
+ 45.52426281113012
+ ],
+ [
+ -73.55857183644294,
+ 45.52418077407376
+ ],
+ [
+ -73.55849826830229,
+ 45.5241511477076
+ ],
+ [
+ -73.55852686854199,
+ 45.52411614789221
+ ],
+ [
+ -73.55852666799318,
+ 45.52411604806746
+ ],
+ [
+ -73.55847266820092,
+ 45.524090447966095
+ ],
+ [
+ -73.55843086771222,
+ 45.524134147822956
+ ],
+ [
+ -73.55842785138607,
+ 45.524132718800224
+ ],
+ [
+ -73.55836323149978,
+ 45.524201785834045
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1445,
+ "ID_UEV":"01032581",
+ "CIVIQUE_DE":" 1856",
+ "CIVIQUE_FI":" 1862",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-2588-9-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":332,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000600519479286,
+ "OBJECTID":87780,
+ "Join_Count":1,
+ "TARGET_FID":87780,
+ "feature_id":"9bb99e32-c99b-44c8-818f-39b0d2b9b223",
+ "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.8,
+ "heightmax":38.5,
+ "elevmin":24.03,
+ "elevmax":25.06,
+ "bldgarea":1568.1,
+ "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_2":87780,
+ "Shape_Le_1":0.000600519479286,
+ "Shape_Ar_1":1.77620610883e-08,
+ "OBJECTID_3":87780,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87779,
+ "g_objectid":"942090",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567336",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226358130000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100319",
+ "g_geomet_1":"4.90198e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000600519479286,
+ "Shape_Area":1.77620610883e-08,
+ "Shape_Le_3":0.000600519644294,
+ "Shape_Ar_2":1.77620610883e-08,
+ "building_height":17.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1446,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55875575499594,
+ 45.52438346057854
+ ],
+ [
+ -73.55888610992787,
+ 45.52444379249732
+ ],
+ [
+ -73.55895187824842,
+ 45.52437349788891
+ ],
+ [
+ -73.55882660988199,
+ 45.52430772956836
+ ],
+ [
+ -73.55875575499594,
+ 45.52438346057854
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55912076013682,
+ 45.52419299406172
+ ],
+ [
+ -73.55900226816199,
+ 45.524133747624646
+ ],
+ [
+ -73.55895176853113,
+ 45.52418374813177
+ ],
+ [
+ -73.55907285774803,
+ 45.52424419246581
+ ],
+ [
+ -73.55912076013682,
+ 45.52419299406172
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1446,
+ "ID_UEV":"01032585",
+ "CIVIQUE_DE":" 1888",
+ "CIVIQUE_FI":" 1896",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-17-9408-2-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":302,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000894091552701,
+ "OBJECTID":87783,
+ "Join_Count":2,
+ "TARGET_FID":87783,
+ "feature_id":"484c1994-a068-41bf-85bb-c2d8f7518d59",
+ "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":3.62,
+ "heightmax":30.4,
+ "elevmin":24.39,
+ "elevmax":25.53,
+ "bldgarea":79.21,
+ "comment":" ",
+ "OBJECTID_2":87783,
+ "Shape_Le_1":0.000894091552701,
+ "Shape_Ar_1":2.26447642798e-08,
+ "OBJECTID_3":87783,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87782,
+ "g_objectid":"941992",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567165",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004217940820000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100255",
+ "g_geomet_1":"4.87854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000894091552701,
+ "Shape_Area":2.26447642798e-08,
+ "Shape_Le_3":0.000894090892722,
+ "Shape_Ar_2":2.26447642798e-08,
+ "building_height":13.389999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1447,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55973160575086,
+ 45.52446121056671
+ ],
+ [
+ -73.55938056798067,
+ 45.524324547789945
+ ],
+ [
+ -73.55930266780572,
+ 45.52442344803399
+ ],
+ [
+ -73.55930246815622,
+ 45.52442364768349
+ ],
+ [
+ -73.55932586851587,
+ 45.52443394761888
+ ],
+ [
+ -73.55930556811931,
+ 45.524456647406645
+ ],
+ [
+ -73.55929726827615,
+ 45.52445294759575
+ ],
+ [
+ -73.55929376811476,
+ 45.52445694778021
+ ],
+ [
+ -73.5591839231214,
+ 45.52458162888936
+ ],
+ [
+ -73.55944533805375,
+ 45.52470262008015
+ ],
+ [
+ -73.5594638676852,
+ 45.52467914777475
+ ],
+ [
+ -73.55951016838141,
+ 45.524697147705496
+ ],
+ [
+ -73.55948967552995,
+ 45.52472313991127
+ ],
+ [
+ -73.55952321394702,
+ 45.52473866310911
+ ],
+ [
+ -73.5597673178293,
+ 45.52447775809236
+ ],
+ [
+ -73.55973160575086,
+ 45.52446121056671
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55888610992787,
+ 45.52444379249732
+ ],
+ [
+ -73.55889077650997,
+ 45.52444595176955
+ ],
+ [
+ -73.55896206846653,
+ 45.52437884795577
+ ],
+ [
+ -73.55895187824842,
+ 45.52437349788891
+ ],
+ [
+ -73.55888610992787,
+ 45.52444379249732
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55907285774803,
+ 45.52424419246581
+ ],
+ [
+ -73.55907316801414,
+ 45.52424434804852
+ ],
+ [
+ -73.55912366854432,
+ 45.52419444826547
+ ],
+ [
+ -73.55912076013682,
+ 45.52419299406172
+ ],
+ [
+ -73.55907285774803,
+ 45.52424419246581
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1447,
+ "ID_UEV":"01032587",
+ "CIVIQUE_DE":" 1930",
+ "CIVIQUE_FI":" 1930",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Centre d'entraide et de ressources communautaires (inclus ressources d'h\u00c3\u00a9bergement, de meubles et d'alimentation)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-17-6528-0-000-0000",
+ "SUPERFICIE":2053,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00192934062819,
+ "OBJECTID":87785,
+ "Join_Count":3,
+ "TARGET_FID":87785,
+ "feature_id":"da39a8a6-4431-401f-bc7a-aaab8f29cae0",
+ "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.44,
+ "heightmax":44.49,
+ "elevmin":23.57,
+ "elevmax":26.73,
+ "bldgarea":3138.76,
+ "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_2":87785,
+ "Shape_Le_1":0.00192934062819,
+ "Shape_Ar_1":1.26525080437e-07,
+ "OBJECTID_3":87785,
+ "Join_Cou_1":5,
+ "TARGET_F_1":87784,
+ "g_objectid":"941992",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567165",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004217940820000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100255",
+ "g_geomet_1":"4.87854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00192934062819,
+ "Shape_Area":1.26525080437e-07,
+ "Shape_Le_3":0.00192934280049,
+ "Shape_Ar_2":1.26525080437e-07,
+ "building_height":21.025000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1448,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55825557006035,
+ 45.52246049060945
+ ],
+ [
+ -73.55812846797626,
+ 45.52240214799103
+ ],
+ [
+ -73.55805046797656,
+ 45.52248594771861
+ ],
+ [
+ -73.55804696781516,
+ 45.52248974825358
+ ],
+ [
+ -73.55814756777788,
+ 45.5225353474786
+ ],
+ [
+ -73.55812946802237,
+ 45.52255504802734
+ ],
+ [
+ -73.558155498899,
+ 45.52256683004546
+ ],
+ [
+ -73.55825557006035,
+ 45.52246049060945
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1448,
+ "ID_UEV":"01032481",
+ "CIVIQUE_DE":" 1733",
+ "CIVIQUE_FI":" 1741",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-6316-3-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":338,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000571301779057,
+ "OBJECTID":87788,
+ "Join_Count":1,
+ "TARGET_FID":87788,
+ "feature_id":"434cfa69-ab8e-4254-9cb1-121ba5d505f8",
+ "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.48,
+ "heightmax":38.1,
+ "elevmin":25,
+ "elevmax":27.04,
+ "bldgarea":1158.9,
+ "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_2":87788,
+ "Shape_Le_1":0.000571301779057,
+ "Shape_Ar_1":1.65337849194e-08,
+ "OBJECTID_3":87788,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87787,
+ "g_objectid":"942079",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567318",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"18",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225442540000000",
+ "g_sup_tota":"802.7",
+ "g_geometry":"0.00125938",
+ "g_geomet_1":"9.31909e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000571301779057,
+ "Shape_Area":1.65337849194e-08,
+ "Shape_Le_3":0.000571302207397,
+ "Shape_Ar_2":1.65337849194e-08,
+ "building_height":17.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1449,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56233046300231,
+ 45.528467165977226
+ ],
+ [
+ -73.56234086995703,
+ 45.52847194857186
+ ],
+ [
+ -73.56240564632536,
+ 45.52850161091091
+ ],
+ [
+ -73.56243014655587,
+ 45.52847566367124
+ ],
+ [
+ -73.56251912727775,
+ 45.5283814309086
+ ],
+ [
+ -73.56250337025618,
+ 45.52837484877055
+ ],
+ [
+ -73.56245536984129,
+ 45.528354948572314
+ ],
+ [
+ -73.56245336974906,
+ 45.52835404925027
+ ],
+ [
+ -73.56244887044086,
+ 45.52835884893203
+ ],
+ [
+ -73.56243767208275,
+ 45.528353631065514
+ ],
+ [
+ -73.56233046300231,
+ 45.528467165977226
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1449,
+ "ID_UEV":"01034504",
+ "CIVIQUE_DE":" 2321",
+ "CIVIQUE_FI":" 2325",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-91-2369-8-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":282,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000494307561226,
+ "OBJECTID":87808,
+ "Join_Count":1,
+ "TARGET_FID":87808,
+ "feature_id":"627c93de-3511-4cbc-a377-97d2326e5737",
+ "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.93,
+ "heightmax":40.68,
+ "elevmin":27.05,
+ "elevmax":39.63,
+ "bldgarea":2860.19,
+ "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_2":87808,
+ "Shape_Le_1":0.000494307561226,
+ "Shape_Ar_1":1.27484392417e-08,
+ "OBJECTID_3":87808,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87807,
+ "g_objectid":"942997",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885548",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994391236980000000",
+ "g_sup_tota":"149.6",
+ "g_geometry":"0.000604984",
+ "g_geomet_1":"1.72273e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000494307561226,
+ "Shape_Area":1.27484392417e-08,
+ "Shape_Le_3":0.000494307688009,
+ "Shape_Ar_2":1.27484392417e-08,
+ "building_height":19.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1450,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5564476377701,
+ 45.535996382777135
+ ],
+ [
+ -73.5565166544419,
+ 45.53602201345545
+ ],
+ [
+ -73.55658538872656,
+ 45.535926254543305
+ ],
+ [
+ -73.55653036820378,
+ 45.535906449673206
+ ],
+ [
+ -73.55651592778968,
+ 45.53590124349788
+ ],
+ [
+ -73.5564476377701,
+ 45.535996382777135
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1450,
+ "ID_UEV":"01024158",
+ "CIVIQUE_DE":" 2317",
+ "CIVIQUE_FI":" 2317",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-8607-9-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000382433293228,
+ "OBJECTID":87812,
+ "Join_Count":1,
+ "TARGET_FID":87812,
+ "feature_id":"0d0450ed-53d1-4796-8a46-274cefb95f1e",
+ "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,
+ "heightmax":33.2,
+ "elevmin":20.33,
+ "elevmax":23.69,
+ "bldgarea":773.97,
+ "comment":" ",
+ "OBJECTID_2":87812,
+ "Shape_Le_1":0.000382433293228,
+ "Shape_Ar_1":8.34332303561e-09,
+ "OBJECTID_3":87812,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87811,
+ "g_objectid":"940996",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424829",
+ "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":"66023004430801060000000",
+ "g_sup_tota":"152.3",
+ "g_geometry":"0.000642156",
+ "g_geomet_1":"1.75506e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000382433293228,
+ "Shape_Area":8.34332303561e-09,
+ "Shape_Le_3":0.000382433516833,
+ "Shape_Ar_2":8.34332303561e-09,
+ "building_height":16.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1451,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55637862739358,
+ 45.53597074400493
+ ],
+ [
+ -73.55640446851325,
+ 45.5359803496637
+ ],
+ [
+ -73.5564476377701,
+ 45.535996382777135
+ ],
+ [
+ -73.55651592778968,
+ 45.53590124349788
+ ],
+ [
+ -73.55644648483924,
+ 45.535876205472796
+ ],
+ [
+ -73.55637862739358,
+ 45.53597074400493
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1451,
+ "ID_UEV":"01024160",
+ "CIVIQUE_DE":" 2313",
+ "CIVIQUE_FI":" 2313",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-9104-6-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000380920289574,
+ "OBJECTID":87830,
+ "Join_Count":1,
+ "TARGET_FID":87830,
+ "feature_id":"0d0450ed-53d1-4796-8a46-274cefb95f1e",
+ "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,
+ "heightmax":33.2,
+ "elevmin":20.33,
+ "elevmax":23.69,
+ "bldgarea":773.97,
+ "comment":" ",
+ "OBJECTID_2":87830,
+ "Shape_Le_1":0.000380920289574,
+ "Shape_Ar_1":8.29046901906e-09,
+ "OBJECTID_3":87830,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87829,
+ "g_objectid":"940998",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424831",
+ "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":"66023004430910460000000",
+ "g_sup_tota":"152.3",
+ "g_geometry":"0.000642159",
+ "g_geomet_1":"1.7551e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000380920289574,
+ "Shape_Area":8.29046901906e-09,
+ "Shape_Le_3":0.000380919934906,
+ "Shape_Ar_2":8.29046901906e-09,
+ "building_height":16.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1452,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55630962601028,
+ 45.53594509354153
+ ],
+ [
+ -73.55637862739358,
+ 45.53597074400493
+ ],
+ [
+ -73.55644648483924,
+ 45.535876205472796
+ ],
+ [
+ -73.5563770454861,
+ 45.53585116924636
+ ],
+ [
+ -73.55630962601028,
+ 45.53594509354153
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1452,
+ "ID_UEV":"01024162",
+ "CIVIQUE_DE":" 2309",
+ "CIVIQUE_FI":" 2309",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-9701-9-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000379417451512,
+ "OBJECTID":87831,
+ "Join_Count":1,
+ "TARGET_FID":87831,
+ "feature_id":"0d0450ed-53d1-4796-8a46-274cefb95f1e",
+ "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,
+ "heightmax":33.2,
+ "elevmin":20.33,
+ "elevmax":23.69,
+ "bldgarea":773.97,
+ "comment":" ",
+ "OBJECTID_2":87831,
+ "Shape_Le_1":0.000379417451512,
+ "Shape_Ar_1":8.23694786934e-09,
+ "OBJECTID_3":87831,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87830,
+ "g_objectid":"940998",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424831",
+ "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":"66023004430910460000000",
+ "g_sup_tota":"152.3",
+ "g_geometry":"0.000642159",
+ "g_geomet_1":"1.7551e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000379417451512,
+ "Shape_Area":8.23694786934e-09,
+ "Shape_Le_3":0.000379416915317,
+ "Shape_Ar_2":8.23694786934e-09,
+ "building_height":16.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1453,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55054614890749,
+ 45.53623678774785
+ ],
+ [
+ -73.55083659305618,
+ 45.53633980508823
+ ],
+ [
+ -73.55086999387696,
+ 45.53629349360015
+ ],
+ [
+ -73.55083626570294,
+ 45.53628094985625
+ ],
+ [
+ -73.55074906653803,
+ 45.53624854998089
+ ],
+ [
+ -73.55075890152393,
+ 45.53623548193224
+ ],
+ [
+ -73.55059007989011,
+ 45.53617560327177
+ ],
+ [
+ -73.55054614890749,
+ 45.53623678774785
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1453,
+ "ID_UEV":"01025557",
+ "CIVIQUE_DE":" 2817",
+ "CIVIQUE_FI":" 2817",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-80-3939-6-000-0000",
+ "SUPERFICIE":196,
+ "SUPERFIC_1":372,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000765085626913,
+ "OBJECTID":87833,
+ "Join_Count":1,
+ "TARGET_FID":87833,
+ "feature_id":"9cf52ec4-8f02-446a-ba21-b805414f3e6d",
+ "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":34.16,
+ "elevmin":20.86,
+ "elevmax":22.29,
+ "bldgarea":923.51,
+ "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_2":87833,
+ "Shape_Le_1":0.000765085626913,
+ "Shape_Ar_1":2.01587374394e-08,
+ "OBJECTID_3":87833,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87832,
+ "g_objectid":"943732",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360882",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004480434630000000",
+ "g_sup_tota":"194.2",
+ "g_geometry":"0.000768265",
+ "g_geomet_1":"2.23657e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000765085626913,
+ "Shape_Area":2.01587374394e-08,
+ "Shape_Le_3":0.000765085498027,
+ "Shape_Ar_2":2.01587374394e-08,
+ "building_height":16.819999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1454,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54991735642271,
+ 45.53841588643431
+ ],
+ [
+ -73.54988136645375,
+ 45.53846615044279
+ ],
+ [
+ -73.54987856596489,
+ 45.53846995097775
+ ],
+ [
+ -73.5499995661489,
+ 45.538511650742386
+ ],
+ [
+ -73.55000526605203,
+ 45.538513650834616
+ ],
+ [
+ -73.55004322913356,
+ 45.53846043525118
+ ],
+ [
+ -73.54991735642271,
+ 45.53841588643431
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1454,
+ "ID_UEV":"01025651",
+ "CIVIQUE_DE":" 2999",
+ "CIVIQUE_FI":" 2999",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-9886-9-000-0000",
+ "SUPERFICIE":289,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000399457852105,
+ "OBJECTID":87834,
+ "Join_Count":1,
+ "TARGET_FID":87834,
+ "feature_id":"c31e14eb-c875-4573-828f-735db5cf235a",
+ "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.22,
+ "heightmax":32.13,
+ "elevmin":21.36,
+ "elevmax":22.26,
+ "bldgarea":596.89,
+ "comment":" ",
+ "OBJECTID_2":87834,
+ "Shape_Le_1":0.000399457852105,
+ "Shape_Ar_1":8.46318895194e-09,
+ "OBJECTID_3":87834,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87833,
+ "g_objectid":"944282",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361955",
+ "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":"66023004482988690000000",
+ "g_sup_tota":"288.7",
+ "g_geometry":"0.000841233",
+ "g_geomet_1":"3.32882e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000399457852105,
+ "Shape_Area":8.46318895194e-09,
+ "Shape_Le_3":0.000399458306134,
+ "Shape_Ar_2":8.46318895194e-09,
+ "building_height":13.955000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1455,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56277673987648,
+ 45.52664743548106
+ ],
+ [
+ -73.56278087046265,
+ 45.52664934743973
+ ],
+ [
+ -73.56278486974779,
+ 45.526650647859405
+ ],
+ [
+ -73.56279356978926,
+ 45.526634947495126
+ ],
+ [
+ -73.5628912703377,
+ 45.52666184801617
+ ],
+ [
+ -73.56289597019472,
+ 45.52665334762419
+ ],
+ [
+ -73.56292887009313,
+ 45.526661147444294
+ ],
+ [
+ -73.5628877701763,
+ 45.52674654796511
+ ],
+ [
+ -73.56287926978432,
+ 45.526764147697556
+ ],
+ [
+ -73.56288157025011,
+ 45.52676404787281
+ ],
+ [
+ -73.56290129238258,
+ 45.526758910045956
+ ],
+ [
+ -73.56304471985978,
+ 45.526606978579494
+ ],
+ [
+ -73.56302377015271,
+ 45.526597148090204
+ ],
+ [
+ -73.56304637011573,
+ 45.526573347532256
+ ],
+ [
+ -73.56304627029098,
+ 45.526573347532256
+ ],
+ [
+ -73.5629548703928,
+ 45.52653444825648
+ ],
+ [
+ -73.56290371245821,
+ 45.52651274221957
+ ],
+ [
+ -73.56277673987648,
+ 45.52664743548106
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1455,
+ "ID_UEV":"01032604",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-89-8975-2-000-0000",
+ "SUPERFICIE":551,
+ "SUPERFIC_1":329,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000913581746431,
+ "OBJECTID":87837,
+ "Join_Count":1,
+ "TARGET_FID":87837,
+ "feature_id":"fea151a4-3164-4aba-815c-95e38c0d6c22",
+ "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":22.96,
+ "elevmin":31.4,
+ "elevmax":40.04,
+ "bldgarea":1665.18,
+ "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_2":87837,
+ "Shape_Le_1":0.000913581746431,
+ "Shape_Ar_1":2.78015440928e-08,
+ "OBJECTID_3":87837,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87836,
+ "g_objectid":"943536",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2317252",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994289867820000000",
+ "g_sup_tota":"270.9",
+ "g_geometry":"0.000934579",
+ "g_geomet_1":"3.11623e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000913581746431,
+ "Shape_Area":2.78015440928e-08,
+ "Shape_Le_3":0.000913582895896,
+ "Shape_Ar_2":2.78015440928e-08,
+ "building_height":11.22
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1456,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5626279038765,
+ 45.526683277061885
+ ],
+ [
+ -73.56263146968843,
+ 45.52668494800224
+ ],
+ [
+ -73.56274557027369,
+ 45.52656364744467
+ ],
+ [
+ -73.56278686984001,
+ 45.52658284797035
+ ],
+ [
+ -73.56274157008923,
+ 45.52663114785948
+ ],
+ [
+ -73.56277673987648,
+ 45.52664743548106
+ ],
+ [
+ -73.56290371245821,
+ 45.52651274221957
+ ],
+ [
+ -73.5628221835188,
+ 45.52647814889775
+ ],
+ [
+ -73.5626279038765,
+ 45.526683277061885
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1456,
+ "ID_UEV":"01032606",
+ "CIVIQUE_DE":" 2215",
+ "CIVIQUE_FI":" 2219",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-89-9969-4-000-0000",
+ "SUPERFICIE":277,
+ "SUPERFIC_1":576,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000877189777007,
+ "OBJECTID":87839,
+ "Join_Count":1,
+ "TARGET_FID":87839,
+ "feature_id":"fea151a4-3164-4aba-815c-95e38c0d6c22",
+ "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":22.96,
+ "elevmin":31.4,
+ "elevmax":40.04,
+ "bldgarea":1665.18,
+ "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_2":87839,
+ "Shape_Le_1":0.000877189777007,
+ "Shape_Ar_1":1.27755230255e-08,
+ "OBJECTID_3":87839,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87838,
+ "g_objectid":"942985",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885486",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994289957260000000",
+ "g_sup_tota":"557",
+ "g_geometry":"0.00111866",
+ "g_geomet_1":"6.43464e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000877189777007,
+ "Shape_Area":1.27755230255e-08,
+ "Shape_Le_3":0.000877190105825,
+ "Shape_Ar_2":1.27755230255e-08,
+ "building_height":11.22
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1457,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.560048172507,
+ 45.52352812167577
+ ],
+ [
+ -73.5600954714507,
+ 45.52355084574523
+ ],
+ [
+ -73.56023513346648,
+ 45.52340239915169
+ ],
+ [
+ -73.56014836867412,
+ 45.523353948176464
+ ],
+ [
+ -73.56014536943509,
+ 45.52335244810729
+ ],
+ [
+ -73.56011724044014,
+ 45.52333871096304
+ ],
+ [
+ -73.56003309267493,
+ 45.5234282007012
+ ],
+ [
+ -73.56003566923259,
+ 45.52342934823613
+ ],
+ [
+ -73.56001636888216,
+ 45.52345084742896
+ ],
+ [
+ -73.56008866897874,
+ 45.52348304765482
+ ],
+ [
+ -73.560048172507,
+ 45.52352812167577
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1457,
+ "ID_UEV":"01032458",
+ "CIVIQUE_DE":" 1921",
+ "CIVIQUE_FI":" 1929",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-16-0415-8-000-0000",
+ "SUPERFICIE":255,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000684617014925,
+ "OBJECTID":87842,
+ "Join_Count":1,
+ "TARGET_FID":87842,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":87842,
+ "Shape_Le_1":0.000684617014925,
+ "Shape_Ar_1":2.21204843299e-08,
+ "OBJECTID_3":87842,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87841,
+ "g_objectid":"941938",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566880",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206992580000000",
+ "g_sup_tota":"213.4",
+ "g_geometry":"0.000863485",
+ "g_geomet_1":"2.45474e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000684617014925,
+ "Shape_Area":2.21204843299e-08,
+ "Shape_Le_3":0.000684617334489,
+ "Shape_Ar_2":2.21204843299e-08,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1458,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54966637272676,
+ 45.537958589267774
+ ],
+ [
+ -73.54980124405401,
+ 45.53800632168469
+ ],
+ [
+ -73.54983644711619,
+ 45.53795737068641
+ ],
+ [
+ -73.54968319814293,
+ 45.5379031325738
+ ],
+ [
+ -73.54965486590119,
+ 45.53793505041254
+ ],
+ [
+ -73.54967736603946,
+ 45.537942650583155
+ ],
+ [
+ -73.54966637272676,
+ 45.537958589267774
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1458,
+ "ID_UEV":"01025655",
+ "CIVIQUE_DE":" 2930",
+ "CIVIQUE_FI":" 2930",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-92-1627-4-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000451716122442,
+ "OBJECTID":87852,
+ "Join_Count":1,
+ "TARGET_FID":87852,
+ "feature_id":"7036df54-0c1b-43f8-967d-1f9df7dc5bb2",
+ "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":32.36,
+ "elevmin":21.41,
+ "elevmax":22.32,
+ "bldgarea":841.74,
+ "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_2":87852,
+ "Shape_Le_1":0.000451716122442,
+ "Shape_Ar_1":9.14277662647e-09,
+ "OBJECTID_3":87852,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87851,
+ "g_objectid":"944284",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361958",
+ "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":"66023004492193360000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749065",
+ "g_geomet_1":"1.81938e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000451716122442,
+ "Shape_Area":9.14277662647e-09,
+ "Shape_Le_3":0.000451717250243,
+ "Shape_Ar_2":9.14277662647e-09,
+ "building_height":15.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1459,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54968319814293,
+ 45.5379031325738
+ ],
+ [
+ -73.54983644711619,
+ 45.53795737068641
+ ],
+ [
+ -73.54986666613559,
+ 45.53791535076312
+ ],
+ [
+ -73.54986246630162,
+ 45.5379139505187
+ ],
+ [
+ -73.54974406605764,
+ 45.53787285060187
+ ],
+ [
+ -73.54971806575797,
+ 45.53786385108615
+ ],
+ [
+ -73.54968319814293,
+ 45.5379031325738
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54978466595142,
+ 45.53785635074029
+ ],
+ [
+ -73.54979436603901,
+ 45.53786205064342
+ ],
+ [
+ -73.54979516643563,
+ 45.53786245084173
+ ],
+ [
+ -73.54985166634317,
+ 45.537885451003056
+ ],
+ [
+ -73.54985416645846,
+ 45.53788235103996
+ ],
+ [
+ -73.54986316597417,
+ 45.53787085050964
+ ],
+ [
+ -73.54979776637566,
+ 45.5378458511554
+ ],
+ [
+ -73.54979736617736,
+ 45.53784575043133
+ ],
+ [
+ -73.54978466595142,
+ 45.53785635074029
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1459,
+ "ID_UEV":"01025653",
+ "CIVIQUE_DE":" 2920",
+ "CIVIQUE_FI":" 2920",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-92-1220-8-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":203,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000602820823702,
+ "OBJECTID":87853,
+ "Join_Count":2,
+ "TARGET_FID":87853,
+ "feature_id":"5b09a281-f967-4737-9add-617da7bb7c12",
+ "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":24.57,
+ "elevmin":21.33,
+ "elevmax":21.98,
+ "bldgarea":10.57,
+ "comment":" ",
+ "OBJECTID_2":87853,
+ "Shape_Le_1":0.000602820823702,
+ "Shape_Ar_1":9.07176415483e-09,
+ "OBJECTID_3":87853,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87852,
+ "g_objectid":"944283",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361956",
+ "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":"66023004492122080000000",
+ "g_sup_tota":"280.3",
+ "g_geometry":"0.000842467",
+ "g_geomet_1":"3.22926e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000602820823702,
+ "Shape_Area":9.07176415483e-09,
+ "Shape_Le_3":0.000602821136411,
+ "Shape_Ar_2":9.07176415483e-09,
+ "building_height":12.025
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1460,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55872850643726,
+ 45.53830867465591
+ ],
+ [
+ -73.55879756897447,
+ 45.53833114961316
+ ],
+ [
+ -73.55879076920048,
+ 45.538341449548554
+ ],
+ [
+ -73.55882566919112,
+ 45.53835254988057
+ ],
+ [
+ -73.5588835693431,
+ 45.53837114965913
+ ],
+ [
+ -73.55889976883111,
+ 45.53834614940556
+ ],
+ [
+ -73.55892111783716,
+ 45.53835299054837
+ ],
+ [
+ -73.55900844470581,
+ 45.53823113151181
+ ],
+ [
+ -73.55900296873386,
+ 45.538229149406014
+ ],
+ [
+ -73.55891996940291,
+ 45.5381991498212
+ ],
+ [
+ -73.55885986950922,
+ 45.53817745007955
+ ],
+ [
+ -73.55883366416411,
+ 45.538167935252304
+ ],
+ [
+ -73.55872850643726,
+ 45.53830867465591
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1460,
+ "ID_UEV":"01024651",
+ "CIVIQUE_DE":" 2625",
+ "CIVIQUE_FI":" 2625",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-0364-2-000-0000",
+ "SUPERFICIE":378,
+ "SUPERFIC_1":599,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000746076599464,
+ "OBJECTID":87855,
+ "Join_Count":1,
+ "TARGET_FID":87855,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":87855,
+ "Shape_Le_1":0.000746076599464,
+ "Shape_Ar_1":3.17100409365e-08,
+ "OBJECTID_3":87855,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87854,
+ "g_objectid":"944115",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361369",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004412936930000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.00066682",
+ "g_geomet_1":"2.13249e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000746076599464,
+ "Shape_Area":3.17100409365e-08,
+ "Shape_Le_3":0.000746074749082,
+ "Shape_Ar_2":3.17100409365e-08,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1461,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55791710840967,
+ 45.53870962120235
+ ],
+ [
+ -73.5579763692359,
+ 45.53873425093523
+ ],
+ [
+ -73.5579769690837,
+ 45.538734350759974
+ ],
+ [
+ -73.55798822499843,
+ 45.53873128946773
+ ],
+ [
+ -73.55807276576738,
+ 45.53861251510578
+ ],
+ [
+ -73.55804416912495,
+ 45.53860015122629
+ ],
+ [
+ -73.55804496952157,
+ 45.53859935082967
+ ],
+ [
+ -73.5580129689452,
+ 45.53859085043769
+ ],
+ [
+ -73.55800342983626,
+ 45.538588344926474
+ ],
+ [
+ -73.55791710840967,
+ 45.53870962120235
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1461,
+ "ID_UEV":"01024930",
+ "CIVIQUE_DE":" 2577",
+ "CIVIQUE_FI":" 2579",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-23-7210-8-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00044635775892,
+ "OBJECTID":87856,
+ "Join_Count":1,
+ "TARGET_FID":87856,
+ "feature_id":"2a540e9d-5f42-4b5a-9b81-dc3f2618e82a",
+ "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":42.58,
+ "elevmin":26.8,
+ "elevmax":34.1,
+ "bldgarea":1269.01,
+ "comment":" ",
+ "OBJECTID_2":87856,
+ "Shape_Le_1":0.00044635775892,
+ "Shape_Ar_1":1.07267448461e-08,
+ "OBJECTID_3":87856,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87855,
+ "g_objectid":"944071",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361315",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004423621580000000",
+ "g_sup_tota":"413.6",
+ "g_geometry":"0.000893797",
+ "g_geomet_1":"4.76489e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00044635775892,
+ "Shape_Area":1.07267448461e-08,
+ "Shape_Le_3":0.000446357373621,
+ "Shape_Ar_2":1.07267448461e-08,
+ "building_height":21.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1462,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55781968755039,
+ 45.53759463183709
+ ],
+ [
+ -73.55782936875221,
+ 45.53759755013712
+ ],
+ [
+ -73.55790949654788,
+ 45.53762169873271
+ ],
+ [
+ -73.55799317486697,
+ 45.53750379311585
+ ],
+ [
+ -73.55791406870115,
+ 45.53747504988394
+ ],
+ [
+ -73.55791386905166,
+ 45.53747504988394
+ ],
+ [
+ -73.55789806886263,
+ 45.53750115000836
+ ],
+ [
+ -73.55788813315267,
+ 45.537498189440186
+ ],
+ [
+ -73.55781968755039,
+ 45.53759463183709
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55792731931218,
+ 45.53744297556317
+ ],
+ [
+ -73.55793176915766,
+ 45.537444449552
+ ],
+ [
+ -73.55795996919906,
+ 45.53740234958906
+ ],
+ [
+ -73.55795683236377,
+ 45.537401390012434
+ ],
+ [
+ -73.55792731931218,
+ 45.53744297556317
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1462,
+ "ID_UEV":"01024573",
+ "CIVIQUE_DE":" 2522",
+ "CIVIQUE_FI":" 2530",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-7679-8-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000591521341523,
+ "OBJECTID":87859,
+ "Join_Count":2,
+ "TARGET_FID":87859,
+ "feature_id":"859b0466-4167-4415-926e-ec0d9e4d1fa0",
+ "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.59,
+ "heightmax":33.39,
+ "elevmin":27.27,
+ "elevmax":27.99,
+ "bldgarea":38.45,
+ "comment":" ",
+ "OBJECTID_2":87859,
+ "Shape_Le_1":0.000591521341523,
+ "Shape_Ar_1":1.3015072085e-08,
+ "OBJECTID_3":87859,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87858,
+ "g_objectid":"944128",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361386",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421767980000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681387",
+ "g_geomet_1":"2.20736e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000591521341523,
+ "Shape_Area":1.3015072085e-08,
+ "Shape_Le_3":0.000591519893191,
+ "Shape_Ar_2":1.3015072085e-08,
+ "building_height":16.4
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1463,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55790949654788,
+ 45.53762169873271
+ ],
+ [
+ -73.55796706934662,
+ 45.53763905025226
+ ],
+ [
+ -73.55799616871006,
+ 45.53764785011848
+ ],
+ [
+ -73.55799924708943,
+ 45.5376488501646
+ ],
+ [
+ -73.55807988839797,
+ 45.53753522622001
+ ],
+ [
+ -73.55800736886683,
+ 45.537508949828464
+ ],
+ [
+ -73.55799317486697,
+ 45.53750379311585
+ ],
+ [
+ -73.55790949654788,
+ 45.53762169873271
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1463,
+ "ID_UEV":"01024574",
+ "CIVIQUE_DE":" 2532",
+ "CIVIQUE_FI":" 2538",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-6983-5-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000469917048651,
+ "OBJECTID":87860,
+ "Join_Count":1,
+ "TARGET_FID":87860,
+ "feature_id":"7de3239f-60f9-4083-bdc2-09487c2a41b2",
+ "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":47.81,
+ "elevmin":27.08,
+ "elevmax":40.05,
+ "bldgarea":1333.88,
+ "comment":" ",
+ "OBJECTID_2":87860,
+ "Shape_Le_1":0.000469917048651,
+ "Shape_Ar_1":1.26163444637e-08,
+ "OBJECTID_3":87860,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87859,
+ "g_objectid":"944128",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361386",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421767980000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681387",
+ "g_geomet_1":"2.20736e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000469917048651,
+ "Shape_Area":1.26163444637e-08,
+ "Shape_Le_3":0.000469916694369,
+ "Shape_Ar_2":1.26163444637e-08,
+ "building_height":23.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1464,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55555147414306,
+ 45.53011928712569
+ ],
+ [
+ -73.5557173352087,
+ 45.530196711559284
+ ],
+ [
+ -73.55577456806371,
+ 45.530135548666934
+ ],
+ [
+ -73.5556144680551,
+ 45.53006154885169
+ ],
+ [
+ -73.55560986802284,
+ 45.53005934910997
+ ],
+ [
+ -73.55555147414306,
+ 45.53011928712569
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55591563212256,
+ 45.5299921032033
+ ],
+ [
+ -73.55591296833067,
+ 45.5299948488335
+ ],
+ [
+ -73.55591836786023,
+ 45.52999734894879
+ ],
+ [
+ -73.55593181902007,
+ 45.53000364420311
+ ],
+ [
+ -73.55593437938994,
+ 45.53000094983426
+ ],
+ [
+ -73.55591563212256,
+ 45.5299921032033
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1464,
+ "ID_UEV":"01025466",
+ "CIVIQUE_DE":" 2259",
+ "CIVIQUE_FI":" 2259",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Service de r\u00c3\u00a9paration d'automobiles (garage) sans pompes \u00c3\u00a0 essence(5531)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-43-4650-8-000-0000",
+ "SUPERFICIE":487,
+ "SUPERFIC_1":141,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000581034886088,
+ "OBJECTID":87861,
+ "Join_Count":2,
+ "TARGET_FID":87861,
+ "feature_id":"9e4013ff-b0e7-4db3-a3be-ee66815a799d",
+ "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.53,
+ "heightmax":31.34,
+ "elevmin":20.39,
+ "elevmax":21.75,
+ "bldgarea":1004.98,
+ "comment":" ",
+ "OBJECTID_2":87861,
+ "Shape_Le_1":0.000581034886088,
+ "Shape_Ar_1":1.45166973673e-08,
+ "OBJECTID_3":87861,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87860,
+ "g_objectid":"945086",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1423916",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6411",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004343465080000000",
+ "g_sup_tota":"487.2",
+ "g_geometry":"0.000993868",
+ "g_geomet_1":"5.60682e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000581034886088,
+ "Shape_Area":1.45166973673e-08,
+ "Shape_Le_3":0.000581034373948,
+ "Shape_Ar_2":1.45166973673e-08,
+ "building_height":14.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1465,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55696966813753,
+ 45.5319588485723
+ ],
+ [
+ -73.55690896839602,
+ 45.532024848917935
+ ],
+ [
+ -73.55679236769545,
+ 45.53215174865457
+ ],
+ [
+ -73.55694546828059,
+ 45.53222114843754
+ ],
+ [
+ -73.5571415681507,
+ 45.53231014894451
+ ],
+ [
+ -73.55737776789152,
+ 45.53206464841509
+ ],
+ [
+ -73.55737776789152,
+ 45.53206454859034
+ ],
+ [
+ -73.55734766848197,
+ 45.532049948996246
+ ],
+ [
+ -73.5575525682183,
+ 45.53184014885408
+ ],
+ [
+ -73.55757206821822,
+ 45.53182034848059
+ ],
+ [
+ -73.55750006849522,
+ 45.53178564903877
+ ],
+ [
+ -73.55749636778499,
+ 45.53178944867441
+ ],
+ [
+ -73.55747586773894,
+ 45.53181204863743
+ ],
+ [
+ -73.55745146823251,
+ 45.53180114885423
+ ],
+ [
+ -73.55746366843539,
+ 45.531787649131
+ ],
+ [
+ -73.55746336806183,
+ 45.53178744858218
+ ],
+ [
+ -73.55730986817773,
+ 45.53172284848097
+ ],
+ [
+ -73.55724556845007,
+ 45.53169574920975
+ ],
+ [
+ -73.55720286774,
+ 45.53175014920032
+ ],
+ [
+ -73.55709756792027,
+ 45.531709248932984
+ ],
+ [
+ -73.55714416809073,
+ 45.531649848711844
+ ],
+ [
+ -73.55714446846429,
+ 45.5316495492376
+ ],
+ [
+ -73.55712976814613,
+ 45.53164404898397
+ ],
+ [
+ -73.55716076777706,
+ 45.53160304889189
+ ],
+ [
+ -73.55702046814194,
+ 45.53155064899355
+ ],
+ [
+ -73.55689826826232,
+ 45.53168354900688
+ ],
+ [
+ -73.55689836808706,
+ 45.53168354900688
+ ],
+ [
+ -73.55686286824861,
+ 45.531743449251074
+ ],
+ [
+ -73.55683316813804,
+ 45.53173464848553
+ ],
+ [
+ -73.5568299683502,
+ 45.531737948997446
+ ],
+ [
+ -73.55689366823005,
+ 45.5317703488728
+ ],
+ [
+ -73.55690606808243,
+ 45.53175814866992
+ ],
+ [
+ -73.55700156798981,
+ 45.531806248909554
+ ],
+ [
+ -73.55704286845545,
+ 45.53176584866528
+ ],
+ [
+ -73.55714486776328,
+ 45.53181714869275
+ ],
+ [
+ -73.55704526784668,
+ 45.53191494906594
+ ],
+ [
+ -73.55702126853856,
+ 45.531902848687814
+ ],
+ [
+ -73.5570176685524,
+ 45.53190654849871
+ ],
+ [
+ -73.55696966813753,
+ 45.5319588485723
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1465,
+ "ID_UEV":"01022979",
+ "CIVIQUE_DE":" 2151",
+ "CIVIQUE_FI":" 2151",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1905,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-35-4261-0-000-0000",
+ "SUPERFICIE":5922,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00310917183879,
+ "OBJECTID":87870,
+ "Join_Count":1,
+ "TARGET_FID":87870,
+ "feature_id":"e001ed9e-14ec-4ced-9157-325bc9f15dc8",
+ "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.46,
+ "heightmax":75.82,
+ "elevmin":19.23,
+ "elevmax":21.2,
+ "bldgarea":2341.31,
+ "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_2":87870,
+ "Shape_Le_1":0.00310917183879,
+ "Shape_Ar_1":2.69697670016e-07,
+ "OBJECTID_3":87870,
+ "Join_Cou_1":1,
+ "TARGET_F_1":87869,
+ "g_objectid":"938572",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004335426100000000",
+ "g_sup_tota":"5922.3",
+ "g_geometry":"0.00370795",
+ "g_geomet_1":"6.82624e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00310917183879,
+ "Shape_Area":2.69697670016e-07,
+ "Shape_Le_3":0.00310917194276,
+ "Shape_Ar_2":2.69697670016e-07,
+ "building_height":36.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1466,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55985732827493,
+ 45.523003766560876
+ ],
+ [
+ -73.55997707840129,
+ 45.52305810449822
+ ],
+ [
+ -73.56005910016918,
+ 45.52297092242043
+ ],
+ [
+ -73.5600670267937,
+ 45.522974599748274
+ ],
+ [
+ -73.56007016902493,
+ 45.52297124797501
+ ],
+ [
+ -73.56001666835641,
+ 45.522946347546196
+ ],
+ [
+ -73.56008826878042,
+ 45.52287054818754
+ ],
+ [
+ -73.56009846889107,
+ 45.5228753478693
+ ],
+ [
+ -73.56012346914463,
+ 45.522849147920134
+ ],
+ [
+ -73.56012046900628,
+ 45.522847647850966
+ ],
+ [
+ -73.5600516681718,
+ 45.52281254821083
+ ],
+ [
+ -73.55997326797379,
+ 45.522881348145994
+ ],
+ [
+ -73.55997276615209,
+ 45.522881064859554
+ ],
+ [
+ -73.55985732827493,
+ 45.523003766560876
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1466,
+ "ID_UEV":"01032408",
+ "CIVIQUE_DE":" 1874",
+ "CIVIQUE_FI":" 1880",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-15-0451-5-000-0000",
+ "SUPERFICIE":469,
+ "SUPERFIC_1":361,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000829247653427,
+ "OBJECTID":87876,
+ "Join_Count":1,
+ "TARGET_FID":87876,
+ "feature_id":"efe7f60b-e277-4767-94f1-fb601a5ab6a0",
+ "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.46,
+ "heightmax":38.13,
+ "elevmin":24.8,
+ "elevmax":26.63,
+ "bldgarea":1884.27,
+ "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_2":87876,
+ "Shape_Le_1":0.000829247653427,
+ "Shape_Ar_1":2.63539904117e-08,
+ "OBJECTID_3":87876,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87875,
+ "g_objectid":"941930",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566868",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004215224670000000",
+ "g_sup_tota":"522.5",
+ "g_geometry":"0.00124702",
+ "g_geomet_1":"6.12237e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000829247653427,
+ "Shape_Area":2.63539904117e-08,
+ "Shape_Le_3":0.000829246185102,
+ "Shape_Ar_2":2.63539904117e-08,
+ "building_height":17.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1467,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5570540839007,
+ 45.53797428693409
+ ],
+ [
+ -73.55704226950698,
+ 45.538000249462236
+ ],
+ [
+ -73.55702916908274,
+ 45.53799725022321
+ ],
+ [
+ -73.55702876888442,
+ 45.537998049720514
+ ],
+ [
+ -73.55700421919121,
+ 45.538033397573535
+ ],
+ [
+ -73.55717780723187,
+ 45.538094997536405
+ ],
+ [
+ -73.5572253687776,
+ 45.538050749992415
+ ],
+ [
+ -73.55718246931735,
+ 45.53802784965583
+ ],
+ [
+ -73.55718875827642,
+ 45.53802207870626
+ ],
+ [
+ -73.5570540839007,
+ 45.53797428693409
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1467,
+ "ID_UEV":"01025978",
+ "CIVIQUE_DE":" 2791",
+ "CIVIQUE_FI":" 2799",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-3738-3-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":314,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000535118643186,
+ "OBJECTID":87883,
+ "Join_Count":1,
+ "TARGET_FID":87883,
+ "feature_id":"4e3226f4-4bb9-4646-9fb1-c0c9dd04fa82",
+ "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":37.71,
+ "elevmin":25.6,
+ "elevmax":27.49,
+ "bldgarea":805.92,
+ "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_2":87883,
+ "Shape_Le_1":0.000535118643186,
+ "Shape_Ar_1":1.3107483486e-08,
+ "OBJECTID_3":87883,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87882,
+ "g_objectid":"944080",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361328",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004432343150000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000742173",
+ "g_geomet_1":"2.14042e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000535118643186,
+ "Shape_Area":1.3107483486e-08,
+ "Shape_Le_3":0.000535116828293,
+ "Shape_Ar_2":1.3107483486e-08,
+ "building_height":18.595
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1468,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54969276603018,
+ 45.53756375091667
+ ],
+ [
+ -73.54995528083339,
+ 45.53764733480695
+ ],
+ [
+ -73.55009165852506,
+ 45.53745824245422
+ ],
+ [
+ -73.55012866652659,
+ 45.5374008504192
+ ],
+ [
+ -73.54994186654575,
+ 45.53734145109738
+ ],
+ [
+ -73.5498540657344,
+ 45.53731345070548
+ ],
+ [
+ -73.54969276603018,
+ 45.53756375091667
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1468,
+ "ID_UEV":"01025579",
+ "CIVIQUE_DE":" 2915",
+ "CIVIQUE_FI":" 2915",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Atelier d'usinage",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-91-0069-2-000-0000",
+ "SUPERFICIE":1371,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00116287487881,
+ "OBJECTID":87890,
+ "Join_Count":1,
+ "TARGET_FID":87890,
+ "feature_id":"d2f27203-84d7-447f-abd8-6989e5059aca",
+ "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":38.2,
+ "elevmin":20.9,
+ "elevmax":22.1,
+ "bldgarea":718.76,
+ "comment":" ",
+ "OBJECTID_2":87890,
+ "Shape_Le_1":0.00116287487881,
+ "Shape_Ar_1":8.14209555784e-08,
+ "OBJECTID_3":87890,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87889,
+ "g_objectid":"1836450",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Industrie lourde",
+ "g_no_lot":"3361025",
+ "g_nb_poly_":"1",
+ "g_utilisat":"3280",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004491006920000000",
+ "g_sup_tota":"1371.4",
+ "g_geometry":"0.00167528",
+ "g_geomet_1":"1.58164e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00116287487881,
+ "Shape_Area":8.14209555784e-08,
+ "Shape_Le_3":0.00116287606454,
+ "Shape_Ar_2":8.14209555784e-08,
+ "building_height":18.84
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1469,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5515569428205,
+ 45.538566258476344
+ ],
+ [
+ -73.55168135593168,
+ 45.53861028658575
+ ],
+ [
+ -73.55171166668191,
+ 45.53856755080212
+ ],
+ [
+ -73.55170686700016,
+ 45.538565851083455
+ ],
+ [
+ -73.55158796673312,
+ 45.53852515046562
+ ],
+ [
+ -73.5515569428205,
+ 45.538566258476344
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1469,
+ "ID_UEV":"01025583",
+ "CIVIQUE_DE":" 3140",
+ "CIVIQUE_FI":" 3140",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-6594-3-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000366633793455,
+ "OBJECTID":87892,
+ "Join_Count":1,
+ "TARGET_FID":87892,
+ "feature_id":"449dbcee-b963-4154-a860-c067bbf911dc",
+ "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":10.15,
+ "elevmin":20.29,
+ "elevmax":21.73,
+ "bldgarea":502.96,
+ "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_2":87892,
+ "Shape_Le_1":0.000366633793455,
+ "Shape_Ar_1":6.52934693641e-09,
+ "OBJECTID_3":87892,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87891,
+ "g_objectid":"944245",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361918",
+ "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":"66023004472659430000000",
+ "g_sup_tota":"280.3",
+ "g_geometry":"0.000842466",
+ "g_geomet_1":"3.22915e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000366633793455,
+ "Shape_Area":6.52934693641e-09,
+ "Shape_Le_3":0.000366633628579,
+ "Shape_Ar_2":6.52934693641e-09,
+ "building_height":4.82
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1470,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55152047621085,
+ 45.5386147634109
+ ],
+ [
+ -73.55164653777933,
+ 45.538659376079636
+ ],
+ [
+ -73.55168135593168,
+ 45.53861028658575
+ ],
+ [
+ -73.5515569428205,
+ 45.538566258476344
+ ],
+ [
+ -73.55154766721292,
+ 45.538578550410065
+ ],
+ [
+ -73.55152047621085,
+ 45.5386147634109
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1470,
+ "ID_UEV":"01025585",
+ "CIVIQUE_DE":" 3130",
+ "CIVIQUE_FI":" 3130",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-73-6902-6-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000386564293058,
+ "OBJECTID":87893,
+ "Join_Count":1,
+ "TARGET_FID":87893,
+ "feature_id":"449dbcee-b963-4154-a860-c067bbf911dc",
+ "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":10.15,
+ "elevmin":20.29,
+ "elevmax":21.73,
+ "bldgarea":502.96,
+ "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_2":87893,
+ "Shape_Le_1":0.000386564293058,
+ "Shape_Ar_1":7.69172989654e-09,
+ "OBJECTID_3":87893,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87892,
+ "g_objectid":"944245",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361918",
+ "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":"66023004472659430000000",
+ "g_sup_tota":"280.3",
+ "g_geometry":"0.000842466",
+ "g_geomet_1":"3.22915e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000386564293058,
+ "Shape_Area":7.69172989654e-09,
+ "Shape_Le_3":0.000386564454288,
+ "Shape_Ar_2":7.69172989654e-09,
+ "building_height":4.82
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1471,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5573472907667,
+ 45.52130784393215
+ ],
+ [
+ -73.55743650081571,
+ 45.5213486632605
+ ],
+ [
+ -73.55751827437071,
+ 45.52126203516509
+ ],
+ [
+ -73.55742946721799,
+ 45.521220647465206
+ ],
+ [
+ -73.5573472907667,
+ 45.52130784393215
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1471,
+ "ID_UEV":"01022266",
+ "CIVIQUE_DE":" 1350",
+ "CIVIQUE_FI":" 1354",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-1672-8-000-0000",
+ "SUPERFICIE":206,
+ "SUPERFIC_1":356,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000435026149502,
+ "OBJECTID":87895,
+ "Join_Count":1,
+ "TARGET_FID":87895,
+ "feature_id":"333df6ad-c94c-4d01-aab1-4064ef1af923",
+ "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.53,
+ "heightmax":11.59,
+ "elevmin":26.46,
+ "elevmax":27.83,
+ "bldgarea":615.98,
+ "comment":" ",
+ "OBJECTID_2":87895,
+ "Shape_Le_1":0.000435026149502,
+ "Shape_Ar_1":1.1105304622e-08,
+ "OBJECTID_3":87895,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87894,
+ "g_objectid":"942058",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567295",
+ "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":"66023004233268000000000",
+ "g_sup_tota":"312.2",
+ "g_geometry":"0.000864736",
+ "g_geomet_1":"3.66924e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000435026149502,
+ "Shape_Area":1.1105304622e-08,
+ "Shape_Le_3":0.000435027864611,
+ "Shape_Ar_2":1.1105304622e-08,
+ "building_height":4.53
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1472,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5596885300235,
+ 45.537512120838
+ ],
+ [
+ -73.55971866900322,
+ 45.537523949620876
+ ],
+ [
+ -73.5597127694506,
+ 45.537531449966735
+ ],
+ [
+ -73.55974756871717,
+ 45.537544349842165
+ ],
+ [
+ -73.5597481694643,
+ 45.53754465021573
+ ],
+ [
+ -73.55975406901692,
+ 45.5375331496854
+ ],
+ [
+ -73.55977856295216,
+ 45.53753941166481
+ ],
+ [
+ -73.55985572298508,
+ 45.53743746092038
+ ],
+ [
+ -73.55976835294898,
+ 45.53740578589859
+ ],
+ [
+ -73.5596885300235,
+ 45.537512120838
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1472,
+ "ID_UEV":"01024348",
+ "CIVIQUE_DE":" 2634",
+ "CIVIQUE_FI":" 2636",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-3071-3-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":178,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000471665881849,
+ "OBJECTID":87899,
+ "Join_Count":1,
+ "TARGET_FID":87899,
+ "feature_id":"eaffc312-dfec-499d-a4e4-8935bfc906bd",
+ "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.62,
+ "heightmax":54.58,
+ "elevmin":40.73,
+ "elevmax":42.77,
+ "bldgarea":479.67,
+ "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_2":87899,
+ "Shape_Le_1":0.000471665881849,
+ "Shape_Ar_1":1.20759086584e-08,
+ "OBJECTID_3":87899,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87898,
+ "g_objectid":"944176",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361440",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411307130000000",
+ "g_sup_tota":"191.7",
+ "g_geometry":"0.000684713",
+ "g_geomet_1":"2.21274e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000471665881849,
+ "Shape_Area":1.20759086584e-08,
+ "Shape_Le_3":0.000471665847452,
+ "Shape_Ar_2":1.20759086584e-08,
+ "building_height":26.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1473,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55544442514196,
+ 45.53785878070846
+ ],
+ [
+ -73.55544906834167,
+ 45.5378610505973
+ ],
+ [
+ -73.55545236795426,
+ 45.53786235101698
+ ],
+ [
+ -73.55546816814329,
+ 45.5378402501777
+ ],
+ [
+ -73.55554702249893,
+ 45.53786801674587
+ ],
+ [
+ -73.55563232409433,
+ 45.53774884488358
+ ],
+ [
+ -73.55557256774165,
+ 45.5377354494817
+ ],
+ [
+ -73.55554322915854,
+ 45.53772074826421
+ ],
+ [
+ -73.55544442514196,
+ 45.53785878070846
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1473,
+ "ID_UEV":"01024967",
+ "CIVIQUE_DE":" 2353",
+ "CIVIQUE_FI":" 2357",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-6313-1-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":184,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000529844304559,
+ "OBJECTID":87904,
+ "Join_Count":1,
+ "TARGET_FID":87904,
+ "feature_id":"7075300e-10d1-4fc1-b33a-1cfddfec4ecc",
+ "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":35.88,
+ "elevmin":18.61,
+ "elevmax":24.32,
+ "bldgarea":2355.29,
+ "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_2":87904,
+ "Shape_Le_1":0.000529844304559,
+ "Shape_Ar_1":1.28580211322e-08,
+ "OBJECTID_3":87904,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87903,
+ "g_objectid":"943987",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361196",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442571660000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667772",
+ "g_geomet_1":"2.14427e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000529844304559,
+ "Shape_Area":1.28580211322e-08,
+ "Shape_Le_3":0.000529843318745,
+ "Shape_Ar_2":1.28580211322e-08,
+ "building_height":17.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1474,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55765966938009,
+ 45.522287777609144
+ ],
+ [
+ -73.5576737680518,
+ 45.52229444788076
+ ],
+ [
+ -73.55762036810735,
+ 45.52235024811575
+ ],
+ [
+ -73.55762036810735,
+ 45.5223503479405
+ ],
+ [
+ -73.55769176798255,
+ 45.52238524793114
+ ],
+ [
+ -73.5576943679226,
+ 45.52238264799111
+ ],
+ [
+ -73.55771186783028,
+ 45.52236334764068
+ ],
+ [
+ -73.55775849587972,
+ 45.52238423529452
+ ],
+ [
+ -73.55785287433253,
+ 45.52228332866298
+ ],
+ [
+ -73.55771993924564,
+ 45.52222334028522
+ ],
+ [
+ -73.55765966938009,
+ 45.522287777609144
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1474,
+ "ID_UEV":"01032487",
+ "CIVIQUE_DE":" 1701",
+ "CIVIQUE_FI":" 1707",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-9495-5-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":308,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000625465567433,
+ "OBJECTID":87913,
+ "Join_Count":1,
+ "TARGET_FID":87913,
+ "feature_id":"ae986f48-4617-44ac-9c0f-e787de322f39",
+ "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.5,
+ "heightmax":38.47,
+ "elevmin":26.14,
+ "elevmax":27.18,
+ "bldgarea":1323.7,
+ "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_2":87913,
+ "Shape_Le_1":0.000625465567433,
+ "Shape_Ar_1":2.05287909543e-08,
+ "OBJECTID_3":87913,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87912,
+ "g_objectid":"942069",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567307",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224949550000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100599",
+ "g_geomet_1":"4.93595e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000625465567433,
+ "Shape_Area":2.05287909543e-08,
+ "Shape_Le_3":0.000625465660159,
+ "Shape_Ar_2":2.05287909543e-08,
+ "building_height":17.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1475,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54935997010838,
+ 45.53840285345922
+ ],
+ [
+ -73.54948442728633,
+ 45.53844690045439
+ ],
+ [
+ -73.54951960426817,
+ 45.53839793776491
+ ],
+ [
+ -73.54939401124646,
+ 45.538353487873465
+ ],
+ [
+ -73.54935997010838,
+ 45.53840285345922
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1475,
+ "ID_UEV":"01025679",
+ "CIVIQUE_DE":" 3020",
+ "CIVIQUE_FI":" 3020",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-92-4176-9-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000385502609916,
+ "OBJECTID":87918,
+ "Join_Count":1,
+ "TARGET_FID":87918,
+ "feature_id":"7036df54-0c1b-43f8-967d-1f9df7dc5bb2",
+ "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":32.36,
+ "elevmin":21.41,
+ "elevmax":22.32,
+ "bldgarea":841.74,
+ "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_2":87918,
+ "Shape_Le_1":0.000385502609916,
+ "Shape_Ar_1":7.67818794767e-09,
+ "OBJECTID_3":87918,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87917,
+ "g_objectid":"944292",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361972",
+ "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":"66023004492417690000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749067",
+ "g_geomet_1":"1.8194e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000385502609916,
+ "Shape_Area":7.67818794767e-09,
+ "Shape_Le_3":0.000385502234859,
+ "Shape_Ar_2":7.67818794767e-09,
+ "building_height":15.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1476,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55814231573713,
+ 45.52217596849644
+ ],
+ [
+ -73.558197568285,
+ 45.522201948111714
+ ],
+ [
+ -73.55831486775878,
+ 45.5220786474619
+ ],
+ [
+ -73.55827586775894,
+ 45.52206034805691
+ ],
+ [
+ -73.55825780397632,
+ 45.522051839571034
+ ],
+ [
+ -73.55814231573713,
+ 45.52217596849644
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1476,
+ "ID_UEV":"01032392",
+ "CIVIQUE_DE":" 1712",
+ "CIVIQUE_FI":" 1714",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-4865-4-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":170,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000463829920789,
+ "OBJECTID":87929,
+ "Join_Count":1,
+ "TARGET_FID":87929,
+ "feature_id":"223233b2-7f8e-4a42-8863-9b095284fb58",
+ "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":5.78,
+ "heightmax":9.74,
+ "elevmin":26.35,
+ "elevmax":26.99,
+ "bldgarea":231.2,
+ "comment":" ",
+ "OBJECTID_2":87929,
+ "Shape_Le_1":0.000463829920789,
+ "Shape_Ar_1":1.00189835277e-08,
+ "OBJECTID_3":87929,
+ "Join_Cou_1":2,
+ "TARGET_F_1":87928,
+ "g_objectid":"942064",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567301",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224486540000000",
+ "g_sup_tota":"187.7",
+ "g_geometry":"0.000784486",
+ "g_geomet_1":"2.20241e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000463829920789,
+ "Shape_Area":1.00189835277e-08,
+ "Shape_Le_3":0.0004638306523,
+ "Shape_Ar_2":1.00189835277e-08,
+ "building_height":1.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1477,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55209189734504,
+ 45.53736584520789
+ ],
+ [
+ -73.55215752177405,
+ 45.53738858816311
+ ],
+ [
+ -73.55222345377122,
+ 45.53729600925372
+ ],
+ [
+ -73.55215817198389,
+ 45.5372727851612
+ ],
+ [
+ -73.55209189734504,
+ 45.53736584520789
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1477,
+ "ID_UEV":"01025264",
+ "CIVIQUE_DE":" 2147",
+ "CIVIQUE_FI":" 2151",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-2760-6-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":188,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000366648765442,
+ "OBJECTID":87932,
+ "Join_Count":1,
+ "TARGET_FID":87932,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":87932,
+ "Shape_Le_1":0.000366648765442,
+ "Shape_Ar_1":7.59465093575e-09,
+ "OBJECTID_3":87932,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87931,
+ "g_objectid":"943817",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360976",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471216250000000",
+ "g_sup_tota":"161.6",
+ "g_geometry":"0.000646123",
+ "g_geomet_1":"1.86152e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000366648765442,
+ "Shape_Area":7.59465093575e-09,
+ "Shape_Le_3":0.000366647795015,
+ "Shape_Ar_2":7.59465093575e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1478,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55202627291601,
+ 45.53734310225266
+ ],
+ [
+ -73.55209189734504,
+ 45.53736584520789
+ ],
+ [
+ -73.55215817198389,
+ 45.5372727851612
+ ],
+ [
+ -73.55209289019658,
+ 45.537249561968004
+ ],
+ [
+ -73.55202627291601,
+ 45.53734310225266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1478,
+ "ID_UEV":"01025267",
+ "CIVIQUE_DE":" 2141",
+ "CIVIQUE_FI":" 2145",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-3257-2-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":191,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000367827631933,
+ "OBJECTID":87934,
+ "Join_Count":1,
+ "TARGET_FID":87934,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":87934,
+ "Shape_Le_1":0.000367827631933,
+ "Shape_Ar_1":7.63389331796e-09,
+ "OBJECTID_3":87934,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87933,
+ "g_objectid":"944241",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361694",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471276060000000",
+ "g_sup_tota":"140.9",
+ "g_geometry":"0.000625855",
+ "g_geomet_1":"1.62364e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000367827631933,
+ "Shape_Area":7.63389331796e-09,
+ "Shape_Le_3":0.000367828110208,
+ "Shape_Ar_2":7.63389331796e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1479,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55189502405796,
+ 45.53729761454357
+ ],
+ [
+ -73.5519606493863,
+ 45.53732035749879
+ ],
+ [
+ -73.55202760750993,
+ 45.53722633787549
+ ],
+ [
+ -73.55196232482328,
+ 45.53720311468229
+ ],
+ [
+ -73.55189502405796,
+ 45.53729761454357
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1479,
+ "ID_UEV":"01025271",
+ "CIVIQUE_DE":" 2129",
+ "CIVIQUE_FI":" 2133",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-4352-0-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":188,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000370185500336,
+ "OBJECTID":87937,
+ "Join_Count":1,
+ "TARGET_FID":87937,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":87937,
+ "Shape_Le_1":0.000370185500336,
+ "Shape_Ar_1":7.71248420548e-09,
+ "OBJECTID_3":87937,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87936,
+ "g_objectid":"944238",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361691",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471435200000000",
+ "g_sup_tota":"141",
+ "g_geometry":"0.000626021",
+ "g_geomet_1":"1.6242e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000370185500336,
+ "Shape_Area":7.71248420548e-09,
+ "Shape_Le_3":0.000370186023439,
+ "Shape_Ar_2":7.71248420548e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1480,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55823175331462,
+ 45.53808655380171
+ ],
+ [
+ -73.55831825550493,
+ 45.53811826749435
+ ],
+ [
+ -73.5583945288063,
+ 45.53801294788953
+ ],
+ [
+ -73.5583073053597,
+ 45.537982232444364
+ ],
+ [
+ -73.55823175331462,
+ 45.53808655380171
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1480,
+ "ID_UEV":"01024663",
+ "CIVIQUE_DE":" 2565",
+ "CIVIQUE_FI":" 2565",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-4742-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000443450868755,
+ "OBJECTID":87939,
+ "Join_Count":1,
+ "TARGET_FID":87939,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":87939,
+ "Shape_Le_1":0.000443450868755,
+ "Shape_Ar_1":1.14746094295e-08,
+ "OBJECTID_3":87939,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87938,
+ "g_objectid":"944110",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361363",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422414510000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668544",
+ "g_geomet_1":"2.14437e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000443450868755,
+ "Shape_Area":1.14746094295e-08,
+ "Shape_Le_3":0.000443450153551,
+ "Shape_Ar_2":1.14746094295e-08,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1481,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55826579984863,
+ 45.52224463083534
+ ],
+ [
+ -73.5582726679711,
+ 45.52224814808386
+ ],
+ [
+ -73.55825846767598,
+ 45.52226184745659
+ ],
+ [
+ -73.558347412425,
+ 45.52230523704735
+ ],
+ [
+ -73.55838299590039,
+ 45.5223216991374
+ ],
+ [
+ -73.55845066988435,
+ 45.52224855457743
+ ],
+ [
+ -73.55832656793861,
+ 45.52218754816711
+ ],
+ [
+ -73.55834546809072,
+ 45.522168548190244
+ ],
+ [
+ -73.558339364392,
+ 45.52216556423969
+ ],
+ [
+ -73.55826579984863,
+ 45.52224463083534
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1481,
+ "ID_UEV":"01032396",
+ "CIVIQUE_DE":" 1724",
+ "CIVIQUE_FI":" 1732",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-3574-3-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":170,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000545143076098,
+ "OBJECTID":87941,
+ "Join_Count":1,
+ "TARGET_FID":87941,
+ "feature_id":"b86b7acf-0f97-414c-b784-b196cd429e81",
+ "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.51,
+ "heightmax":8.17,
+ "elevmin":25.83,
+ "elevmax":27.1,
+ "bldgarea":170.65,
+ "comment":" ",
+ "OBJECTID_2":87941,
+ "Shape_Le_1":0.000545143076098,
+ "Shape_Ar_1":1.39377431518e-08,
+ "OBJECTID_3":87941,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87940,
+ "g_objectid":"942060",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567297",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224357430000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000928865",
+ "g_geomet_1":"4.40538e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000545143076098,
+ "Shape_Area":1.39377431518e-08,
+ "Shape_Le_3":0.000545143532977,
+ "Shape_Ar_2":1.39377431518e-08,
+ "building_height":2.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1482,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55065141455299,
+ 45.5371910565723
+ ],
+ [
+ -73.5506692660956,
+ 45.537197050553736
+ ],
+ [
+ -73.55082751529943,
+ 45.537250159117846
+ ],
+ [
+ -73.55089295087083,
+ 45.537158278082366
+ ],
+ [
+ -73.55082606649162,
+ 45.53713385069695
+ ],
+ [
+ -73.55076376595687,
+ 45.53711105108444
+ ],
+ [
+ -73.55071979900137,
+ 45.53709503685676
+ ],
+ [
+ -73.55065141455299,
+ 45.5371910565723
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1482,
+ "ID_UEV":"01025324",
+ "CIVIQUE_DE":" 2040",
+ "CIVIQUE_FI":" 2056",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-3439-5-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":502,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000600777093814,
+ "OBJECTID":87945,
+ "Join_Count":1,
+ "TARGET_FID":87945,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":87945,
+ "Shape_Le_1":0.000600777093814,
+ "Shape_Ar_1":2.05017353971e-08,
+ "OBJECTID_3":87945,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87944,
+ "g_objectid":"944231",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481433470000000",
+ "g_sup_tota":"142",
+ "g_geometry":"0.000622867",
+ "g_geomet_1":"1.63499e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000600777093814,
+ "Shape_Area":2.05017353971e-08,
+ "Shape_Le_3":0.000600776209761,
+ "Shape_Ar_2":2.05017353971e-08,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1483,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5567242737281,
+ 45.52050565855959
+ ],
+ [
+ -73.55672696719762,
+ 45.52050264673006
+ ],
+ [
+ -73.55675320222035,
+ 45.52051424798445
+ ],
+ [
+ -73.55675683728006,
+ 45.52051044475152
+ ],
+ [
+ -73.55685186234541,
+ 45.520411028296614
+ ],
+ [
+ -73.55679756667621,
+ 45.520386947150186
+ ],
+ [
+ -73.55681376706355,
+ 45.52036894721943
+ ],
+ [
+ -73.55680826680991,
+ 45.52036654692889
+ ],
+ [
+ -73.55669456732227,
+ 45.52031684679534
+ ],
+ [
+ -73.55669156718392,
+ 45.52031554727498
+ ],
+ [
+ -73.55657980753394,
+ 45.52043776424172
+ ],
+ [
+ -73.5567242737281,
+ 45.52050565855959
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1483,
+ "ID_UEV":"01022271",
+ "CIVIQUE_DE":" 1315",
+ "CIVIQUE_FI":" 1329",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-6877-0-000-0000",
+ "SUPERFICIE":311,
+ "SUPERFIC_1":670,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000717721151039,
+ "OBJECTID":87960,
+ "Join_Count":1,
+ "TARGET_FID":87960,
+ "feature_id":"8a94d231-b463-47db-8a0c-4ecc16ef6498",
+ "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.36,
+ "heightmax":12.72,
+ "elevmin":24.58,
+ "elevmax":27.57,
+ "bldgarea":2130.17,
+ "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_2":87960,
+ "Shape_Le_1":0.000717721151039,
+ "Shape_Ar_1":2.90299629109e-08,
+ "OBJECTID_3":87960,
+ "Join_Cou_1":4,
+ "TARGET_F_1":87959,
+ "g_objectid":"942131",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567436",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232687700000000",
+ "g_sup_tota":"311",
+ "g_geometry":"0.000783456",
+ "g_geomet_1":"3.62611e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000717721151039,
+ "Shape_Area":2.90299629109e-08,
+ "Shape_Le_3":0.000717720788734,
+ "Shape_Ar_2":2.90299629109e-08,
+ "building_height":5.180000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1484,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55109097169283,
+ 45.53733857506548
+ ],
+ [
+ -73.551180433552,
+ 45.537368597133344
+ ],
+ [
+ -73.55123723922905,
+ 45.53728883446244
+ ],
+ [
+ -73.5512118675555,
+ 45.53728215070099
+ ],
+ [
+ -73.55123266707577,
+ 45.53724325052588
+ ],
+ [
+ -73.55123266707577,
+ 45.53724315070114
+ ],
+ [
+ -73.55117351686616,
+ 45.537222672238826
+ ],
+ [
+ -73.55109097169283,
+ 45.53733857506548
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1484,
+ "ID_UEV":"01025332",
+ "CIVIQUE_DE":" 2080",
+ "CIVIQUE_FI":" 2082",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-0354-9-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":91,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00046762391784,
+ "OBJECTID":87965,
+ "Join_Count":1,
+ "TARGET_FID":87965,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":87965,
+ "Shape_Le_1":0.00046762391784,
+ "Shape_Ar_1":1.15850686189e-08,
+ "OBJECTID_3":87965,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87964,
+ "g_objectid":"943832",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360992",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481035490000000",
+ "g_sup_tota":"188.7",
+ "g_geometry":"0.000669447",
+ "g_geomet_1":"2.17428e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00046762391784,
+ "Shape_Area":1.15850686189e-08,
+ "Shape_Le_3":0.000467624470926,
+ "Shape_Ar_2":1.15850686189e-08,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1485,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56002975708947,
+ 45.53302316743552
+ ],
+ [
+ -73.56008226940305,
+ 45.53305434872951
+ ],
+ [
+ -73.5600823692278,
+ 45.53305434872951
+ ],
+ [
+ -73.56011086874344,
+ 45.53302774858203
+ ],
+ [
+ -73.5601348815414,
+ 45.53304043351949
+ ],
+ [
+ -73.56023219538136,
+ 45.53293567509163
+ ],
+ [
+ -73.5602060691766,
+ 45.5329236484579
+ ],
+ [
+ -73.56014732815851,
+ 45.532896604045334
+ ],
+ [
+ -73.56002975708947,
+ 45.53302316743552
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1485,
+ "ID_UEV":"01022954",
+ "CIVIQUE_DE":" 2399",
+ "CIVIQUE_FI":" 2407",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-16-0477-6-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":356,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000536472807184,
+ "OBJECTID":87982,
+ "Join_Count":1,
+ "TARGET_FID":87982,
+ "feature_id":"a674cb3a-93b0-4b10-8747-a68d1a76d21c",
+ "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.51,
+ "heightmax":45.46,
+ "elevmin":28.11,
+ "elevmax":33.18,
+ "bldgarea":1813.91,
+ "comment":" ",
+ "OBJECTID_2":87982,
+ "Shape_Le_1":0.000536472807184,
+ "Shape_Ar_1":1.46999114103e-08,
+ "OBJECTID_3":87982,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87981,
+ "g_objectid":"940535",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424033",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316117300000000",
+ "g_sup_tota":"244.3",
+ "g_geometry":"0.00081606",
+ "g_geomet_1":"2.81497e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000536472807184,
+ "Shape_Area":1.46999114103e-08,
+ "Shape_Le_3":0.000536472768328,
+ "Shape_Ar_2":1.46999114103e-08,
+ "building_height":21.475
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1486,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55558128397092,
+ 45.5375166813001
+ ],
+ [
+ -73.55561516772765,
+ 45.537527849980584
+ ],
+ [
+ -73.55560796775535,
+ 45.53753874976378
+ ],
+ [
+ -73.55561436823035,
+ 45.53754084968077
+ ],
+ [
+ -73.55563106774143,
+ 45.537547349980514
+ ],
+ [
+ -73.55564146840089,
+ 45.537534249556266
+ ],
+ [
+ -73.55566994453416,
+ 45.53754533729777
+ ],
+ [
+ -73.55575043295796,
+ 45.53743034908164
+ ],
+ [
+ -73.55566266991812,
+ 45.537400409751406
+ ],
+ [
+ -73.55558128397092,
+ 45.5375166813001
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1486,
+ "ID_UEV":"01024844",
+ "CIVIQUE_DE":" 2340",
+ "CIVIQUE_FI":" 2342",
+ "NOM_RUE":"rue Montgomery (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-5171-6-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":202,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000495694362215,
+ "OBJECTID":87992,
+ "Join_Count":1,
+ "TARGET_FID":87992,
+ "feature_id":"bade550f-2044-44ba-83c5-2138bf58e40c",
+ "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":35.41,
+ "elevmin":17.57,
+ "elevmax":24.37,
+ "bldgarea":1657.25,
+ "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_2":87992,
+ "Shape_Le_1":0.000495694362215,
+ "Shape_Ar_1":1.28852140161e-08,
+ "OBJECTID_3":87992,
+ "Join_Cou_1":3,
+ "TARGET_F_1":87991,
+ "g_objectid":"943952",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361157",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441447520000000",
+ "g_sup_tota":"186.6",
+ "g_geometry":"0.000667501",
+ "g_geomet_1":"2.14949e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000495694362215,
+ "Shape_Area":1.28852140161e-08,
+ "Shape_Le_3":0.000495695459361,
+ "Shape_Ar_2":1.28852140161e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1487,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55324585973048,
+ 45.52236218121998
+ ],
+ [
+ -73.55325083388072,
+ 45.52236447269256
+ ],
+ [
+ -73.55324723569322,
+ 45.52236833078413
+ ],
+ [
+ -73.55356026631509,
+ 45.522512147667776
+ ],
+ [
+ -73.55340286607125,
+ 45.52268154756566
+ ],
+ [
+ -73.5534025656977,
+ 45.522681847939225
+ ],
+ [
+ -73.55342416651392,
+ 45.5226911478285
+ ],
+ [
+ -73.55327646635769,
+ 45.52286064755114
+ ],
+ [
+ -73.55350936648593,
+ 45.52296894750921
+ ],
+ [
+ -73.55351486584023,
+ 45.52297154744925
+ ],
+ [
+ -73.55404256643314,
+ 45.52240834791722
+ ],
+ [
+ -73.55346046584967,
+ 45.522138748254925
+ ],
+ [
+ -73.55345556634316,
+ 45.522136547613876
+ ],
+ [
+ -73.55324585973048,
+ 45.52236218121998
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55369926642985,
+ 45.52129964751102
+ ],
+ [
+ -73.5535050659279,
+ 45.52151304763933
+ ],
+ [
+ -73.55350976578491,
+ 45.52151514755631
+ ],
+ [
+ -73.55365316628244,
+ 45.521577348266305
+ ],
+ [
+ -73.55361366625954,
+ 45.521622247818776
+ ],
+ [
+ -73.55362696633327,
+ 45.52162814827072
+ ],
+ [
+ -73.55348716582189,
+ 45.5217839477213
+ ],
+ [
+ -73.55368346624081,
+ 45.52187094813604
+ ],
+ [
+ -73.55361446575684,
+ 45.521947747540814
+ ],
+ [
+ -73.5536633663931,
+ 45.521971448274016
+ ],
+ [
+ -73.55362818581396,
+ 45.52200682040873
+ ],
+ [
+ -73.55414795438644,
+ 45.52224848982624
+ ],
+ [
+ -73.55444537547554,
+ 45.52238677497998
+ ],
+ [
+ -73.55492903986514,
+ 45.52187407417947
+ ],
+ [
+ -73.55369986627765,
+ 45.52129884801372
+ ],
+ [
+ -73.55369926642985,
+ 45.52129964751102
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55314994073902,
+ 45.52231812703023
+ ],
+ [
+ -73.55316184506495,
+ 45.522323578720474
+ ],
+ [
+ -73.55337720751396,
+ 45.522087432039655
+ ],
+ [
+ -73.55336917926606,
+ 45.522083698953836
+ ],
+ [
+ -73.55325986936933,
+ 45.52220058294085
+ ],
+ [
+ -73.55320245215329,
+ 45.522261976958966
+ ],
+ [
+ -73.55314994073902,
+ 45.52231812703023
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1487,
+ "ID_UEV":"01022320",
+ "CIVIQUE_DE":" 1600",
+ "CIVIQUE_FI":" 1600",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-54-7537-3-000-0000",
+ "SUPERFICIE":14373,
+ "SUPERFIC_1":20782,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00760740397959,
+ "OBJECTID":87993,
+ "Join_Count":3,
+ "TARGET_FID":87993,
+ "feature_id":"e223d38a-7ae9-49e7-8208-e6439ccb9f9c",
+ "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.44,
+ "heightmax":32.61,
+ "elevmin":16.81,
+ "elevmax":18.55,
+ "bldgarea":2327.6,
+ "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_2":87993,
+ "Shape_Le_1":0.00760740397959,
+ "Shape_Ar_1":1.12127618362e-06,
+ "OBJECTID_3":87993,
+ "Join_Cou_1":10,
+ "TARGET_F_1":87992,
+ "g_objectid":"945117",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1567715",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004254396270000000",
+ "g_sup_tota":"1929.6",
+ "g_geometry":"0.00208741",
+ "g_geomet_1":"2.22224e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00760740397959,
+ "Shape_Area":1.12127618362e-06,
+ "Shape_Le_3":0.007607408819,
+ "Shape_Ar_2":1.12127618362e-06,
+ "building_height":15.084999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1488,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55408007805501,
+ 45.51622174248972
+ ],
+ [
+ -73.55402356645627,
+ 45.51619784660363
+ ],
+ [
+ -73.55392936606923,
+ 45.51630794700445
+ ],
+ [
+ -73.55397786650718,
+ 45.51632844705048
+ ],
+ [
+ -73.55398406643336,
+ 45.51632124707819
+ ],
+ [
+ -73.55398756029952,
+ 45.51632274984532
+ ],
+ [
+ -73.55408007805501,
+ 45.51622174248972
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1488,
+ "ID_UEV":"01118901",
+ "CIVIQUE_DE":" 1095",
+ "CIVIQUE_FI":" 1099",
+ "NOM_RUE":"rue Atateken (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-58-8017-8-000-0000",
+ "SUPERFICIE":108,
+ "SUPERFIC_1":222,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00040918939714,
+ "OBJECTID":88003,
+ "Join_Count":1,
+ "TARGET_FID":88003,
+ "feature_id":"2cdc935a-af33-4cf6-a362-3472fb48a720",
+ "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.64,
+ "heightmax":31.16,
+ "elevmin":19.55,
+ "elevmax":20.4,
+ "bldgarea":160.16,
+ "comment":" ",
+ "OBJECTID_2":88003,
+ "Shape_Le_1":0.00040918939714,
+ "Shape_Ar_1":8.08053790351e-09,
+ "OBJECTID_3":88003,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88002,
+ "g_objectid":"939656",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182356",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004158762000000000",
+ "g_sup_tota":"108.3",
+ "g_geometry":"0.000536513",
+ "g_geomet_1":"1.25651e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00040918939714,
+ "Shape_Area":8.08053790351e-09,
+ "Shape_Le_3":0.000409189773703,
+ "Shape_Ar_2":8.08053790351e-09,
+ "building_height":15.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1489,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55054053174199,
+ 45.538589546420724
+ ],
+ [
+ -73.55061360705417,
+ 45.53860952216201
+ ],
+ [
+ -73.55067565667805,
+ 45.53852293273745
+ ],
+ [
+ -73.55060480269134,
+ 45.53849985973104
+ ],
+ [
+ -73.55054053174199,
+ 45.538589546420724
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1489,
+ "ID_UEV":"01025624",
+ "CIVIQUE_DE":" 3059",
+ "CIVIQUE_FI":" 3059",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-4792-4-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000367136549813,
+ "OBJECTID":88005,
+ "Join_Count":1,
+ "TARGET_FID":88005,
+ "feature_id":"fb799dfc-15ad-4735-937b-a4d19bbcca51",
+ "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,
+ "heightmax":32.29,
+ "elevmin":21.17,
+ "elevmax":21.89,
+ "bldgarea":541.06,
+ "comment":" ",
+ "OBJECTID_2":88005,
+ "Shape_Le_1":0.000367136549813,
+ "Shape_Ar_1":7.70227370229e-09,
+ "OBJECTID_3":88005,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88004,
+ "g_objectid":"944268",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361941",
+ "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":"66023004482479240000000",
+ "g_sup_tota":"167.1",
+ "g_geometry":"0.000694846",
+ "g_geomet_1":"1.92592e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000367136549813,
+ "Shape_Area":7.70227370229e-09,
+ "Shape_Le_3":0.000367136880151,
+ "Shape_Ar_2":7.70227370229e-09,
+ "building_height":15.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1490,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55538517420827,
+ 45.530667725185666
+ ],
+ [
+ -73.5553248674705,
+ 45.530634348646565
+ ],
+ [
+ -73.55523506746624,
+ 45.5307143487385
+ ],
+ [
+ -73.55530260924986,
+ 45.53075171826748
+ ],
+ [
+ -73.5553138903456,
+ 45.53074097226835
+ ],
+ [
+ -73.55531441824765,
+ 45.530741225877165
+ ],
+ [
+ -73.55538517420827,
+ 45.530667725185666
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55504794822608,
+ 45.53064762713658
+ ],
+ [
+ -73.55518202455264,
+ 45.53070980806149
+ ],
+ [
+ -73.5552674673416,
+ 45.53062034890028
+ ],
+ [
+ -73.55514186712531,
+ 45.53056114922795
+ ],
+ [
+ -73.55513826713916,
+ 45.530559248960465
+ ],
+ [
+ -73.55504794822608,
+ 45.53064762713658
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1490,
+ "ID_UEV":"01025474",
+ "CIVIQUE_DE":" 2301",
+ "CIVIQUE_FI":" 2307",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-44-8716-1-000-0000",
+ "SUPERFICIE":321,
+ "SUPERFIC_1":617,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000925361847917,
+ "OBJECTID":88006,
+ "Join_Count":2,
+ "TARGET_FID":88006,
+ "feature_id":"1f749483-f6ca-4f21-9f3d-67945c739b0c",
+ "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":3.18,
+ "heightmax":31.38,
+ "elevmin":19,
+ "elevmax":19.49,
+ "bldgarea":325.16,
+ "comment":" ",
+ "OBJECTID_2":88006,
+ "Shape_Le_1":0.000925361847917,
+ "Shape_Ar_1":2.54579290714e-08,
+ "OBJECTID_3":88006,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88005,
+ "g_objectid":"938249",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1423994",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004344932430000000",
+ "g_sup_tota":"157.8",
+ "g_geometry":"0.00071286",
+ "g_geomet_1":"1.84785e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000925361847917,
+ "Shape_Area":2.54579290714e-08,
+ "Shape_Le_3":0.000925362037176,
+ "Shape_Ar_2":2.54579290714e-08,
+ "building_height":14.1
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1491,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55499897834203,
+ 45.53069554391452
+ ],
+ [
+ -73.55513527509471,
+ 45.530758754563166
+ ],
+ [
+ -73.55518202455264,
+ 45.53070980806149
+ ],
+ [
+ -73.55504794822608,
+ 45.53064762713658
+ ],
+ [
+ -73.55499897834203,
+ 45.53069554391452
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1491,
+ "ID_UEV":"01025476",
+ "CIVIQUE_DE":" 2309",
+ "CIVIQUE_FI":" 2311",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1943,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-44-9324-3-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":242,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000434233389085,
+ "OBJECTID":88008,
+ "Join_Count":1,
+ "TARGET_FID":88008,
+ "feature_id":"1f749483-f6ca-4f21-9f3d-67945c739b0c",
+ "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":3.18,
+ "heightmax":31.38,
+ "elevmin":19,
+ "elevmax":19.49,
+ "bldgarea":325.16,
+ "comment":" ",
+ "OBJECTID_2":88008,
+ "Shape_Le_1":0.000434233389085,
+ "Shape_Ar_1":9.54795178196e-09,
+ "OBJECTID_3":88008,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88007,
+ "g_objectid":"938249",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1423994",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004344932430000000",
+ "g_sup_tota":"157.8",
+ "g_geometry":"0.00071286",
+ "g_geomet_1":"1.84785e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000434233389085,
+ "Shape_Area":9.54795178196e-09,
+ "Shape_Le_3":0.000434232999265,
+ "Shape_Ar_2":9.54795178196e-09,
+ "building_height":14.1
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1492,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55877454093417,
+ 45.52335685028871
+ ],
+ [
+ -73.55868236851833,
+ 45.52331174748945
+ ],
+ [
+ -73.55861857870629,
+ 45.523376272047614
+ ],
+ [
+ -73.55871437628927,
+ 45.5234205726516
+ ],
+ [
+ -73.55877454093417,
+ 45.52335685028871
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55858333787259,
+ 45.52335997453349
+ ],
+ [
+ -73.55858862228894,
+ 45.52336241889081
+ ],
+ [
+ -73.55863626837093,
+ 45.52331384740643
+ ],
+ [
+ -73.55862972580304,
+ 45.5233106808935
+ ],
+ [
+ -73.55858333787259,
+ 45.52335997453349
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1492,
+ "ID_UEV":"01032511",
+ "CIVIQUE_DE":" 1826",
+ "CIVIQUE_FI":" 1832",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-1201-0-000-0000",
+ "SUPERFICIE":243,
+ "SUPERFIC_1":240,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000535348726542,
+ "OBJECTID":88010,
+ "Join_Count":2,
+ "TARGET_FID":88010,
+ "feature_id":"c86945f1-aa23-4ddb-a40b-f1a06854ce76",
+ "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.64,
+ "heightmax":34.95,
+ "elevmin":24.33,
+ "elevmax":25.1,
+ "bldgarea":234.2,
+ "comment":" ",
+ "OBJECTID_2":88010,
+ "Shape_Le_1":0.000535348726542,
+ "Shape_Ar_1":9.21835608163e-09,
+ "OBJECTID_3":88010,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88009,
+ "g_objectid":"941987",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567040",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226020860000000",
+ "g_sup_tota":"242.9",
+ "g_geometry":"0.000702764",
+ "g_geomet_1":"2.83374e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000535348726542,
+ "Shape_Area":9.21835608163e-09,
+ "Shape_Le_3":0.000535350096866,
+ "Shape_Ar_2":9.21835608163e-09,
+ "building_height":16.155
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1493,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55871437628927,
+ 45.5234205726516
+ ],
+ [
+ -73.55884541470597,
+ 45.52348117076971
+ ],
+ [
+ -73.55892037769512,
+ 45.52340191981305
+ ],
+ [
+ -73.55879816792296,
+ 45.5233421481719
+ ],
+ [
+ -73.55878066801526,
+ 45.52335984772908
+ ],
+ [
+ -73.55877454093417,
+ 45.52335685028871
+ ],
+ [
+ -73.55871437628927,
+ 45.5234205726516
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1493,
+ "ID_UEV":"01032512",
+ "CIVIQUE_DE":" 1838",
+ "CIVIQUE_FI":" 1844",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-0208-6-000-0000",
+ "SUPERFICIE":243,
+ "SUPERFIC_1":230,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00050885402994,
+ "OBJECTID":88011,
+ "Join_Count":1,
+ "TARGET_FID":88011,
+ "feature_id":"c86945f1-aa23-4ddb-a40b-f1a06854ce76",
+ "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.64,
+ "heightmax":34.95,
+ "elevmin":24.33,
+ "elevmax":25.1,
+ "bldgarea":234.2,
+ "comment":" ",
+ "OBJECTID_2":88011,
+ "Shape_Le_1":0.00050885402994,
+ "Shape_Ar_1":1.49902194714e-08,
+ "OBJECTID_3":88011,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88010,
+ "g_objectid":"941987",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567040",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226020860000000",
+ "g_sup_tota":"242.9",
+ "g_geometry":"0.000702764",
+ "g_geomet_1":"2.83374e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00050885402994,
+ "Shape_Area":1.49902194714e-08,
+ "Shape_Le_3":0.000508851888791,
+ "Shape_Ar_2":1.49902194714e-08,
+ "building_height":16.155
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1494,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5510094661358,
+ 45.52563124923306
+ ],
+ [
+ -73.55131306646669,
+ 45.52576424907113
+ ],
+ [
+ -73.55153326636899,
+ 45.52551584912743
+ ],
+ [
+ -73.5512298656876,
+ 45.525382747665965
+ ],
+ [
+ -73.5510094661358,
+ 45.52563124923306
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1494,
+ "ID_UEV":"01018295",
+ "CIVIQUE_DE":" 2100",
+ "CIVIQUE_FI":" 2100",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1991,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-78-9553-7-000-0000",
+ "SUPERFICIE":1134,
+ "SUPERFIC_1":5837,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00132687365093,
+ "OBJECTID":88019,
+ "Join_Count":1,
+ "TARGET_FID":88019,
+ "feature_id":"2944e283-411a-4f06-90c8-08e6c347fa4e",
+ "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.66,
+ "heightmax":45.31,
+ "elevmin":17.01,
+ "elevmax":18.17,
+ "bldgarea":909.03,
+ "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_2":88019,
+ "Shape_Le_1":0.00132687365093,
+ "Shape_Ar_1":1.04715751914e-07,
+ "OBJECTID_3":88019,
+ "Join_Cou_1":1,
+ "TARGET_F_1":88018,
+ "g_objectid":"945091",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1424661",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"15",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004278955370000000",
+ "g_sup_tota":"1134.1",
+ "g_geometry":"0.00148514",
+ "g_geomet_1":"1.30675e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00132687365093,
+ "Shape_Area":1.04715751914e-07,
+ "Shape_Le_3":0.00132687471824,
+ "Shape_Ar_2":1.04715751914e-07,
+ "building_height":21.325000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1495,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55382976255534,
+ 45.52829628579525
+ ],
+ [
+ -73.55387635732987,
+ 45.52831810514673
+ ],
+ [
+ -73.55388306717165,
+ 45.5283105490429
+ ],
+ [
+ -73.55383556677982,
+ 45.528289748623294
+ ],
+ [
+ -73.55382976255534,
+ 45.52829628579525
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5545792233743,
+ 45.52807712910652
+ ],
+ [
+ -73.55457786719666,
+ 45.528078549136026
+ ],
+ [
+ -73.55457526725662,
+ 45.52808124890081
+ ],
+ [
+ -73.55472356726067,
+ 45.52815054885904
+ ],
+ [
+ -73.55472806746819,
+ 45.52815274860076
+ ],
+ [
+ -73.55473217287333,
+ 45.528148564954606
+ ],
+ [
+ -73.5545792233743,
+ 45.52807712910652
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55326076689272,
+ 45.52792654842177
+ ],
+ [
+ -73.55321356687446,
+ 45.527968048536906
+ ],
+ [
+ -73.55321736740942,
+ 45.52797014845388
+ ],
+ [
+ -73.55324666732169,
+ 45.52798464912255
+ ],
+ [
+ -73.5532476673678,
+ 45.52798324887813
+ ],
+ [
+ -73.55325376746924,
+ 45.5279639485277
+ ],
+ [
+ -73.55326486690193,
+ 45.52792864923807
+ ],
+ [
+ -73.5532663669711,
+ 45.527922148938316
+ ],
+ [
+ -73.55326076689272,
+ 45.52792654842177
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55315353353059,
+ 45.527979629106895
+ ],
+ [
+ -73.55315703638996,
+ 45.52798126857098
+ ],
+ [
+ -73.55322116794439,
+ 45.52791275282158
+ ],
+ [
+ -73.55319085719415,
+ 45.52794272272877
+ ],
+ [
+ -73.55315353353059,
+ 45.527979629106895
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55335946748728,
+ 45.52792454922886
+ ],
+ [
+ -73.55335226751498,
+ 45.527950148430904
+ ],
+ [
+ -73.55335856726592,
+ 45.52795754895202
+ ],
+ [
+ -73.55339806728882,
+ 45.52797564870752
+ ],
+ [
+ -73.55341656724264,
+ 45.527962049159534
+ ],
+ [
+ -73.5534320670581,
+ 45.527939648846015
+ ],
+ [
+ -73.5534009667031,
+ 45.52792144926577
+ ],
+ [
+ -73.55337426673087,
+ 45.52791364854634
+ ],
+ [
+ -73.55335946748728,
+ 45.52792454922886
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55366756712637,
+ 45.52791234902598
+ ],
+ [
+ -73.55366436733853,
+ 45.52791584918739
+ ],
+ [
+ -73.55368426753677,
+ 45.527922348587815
+ ],
+ [
+ -73.55372476670647,
+ 45.52788414898458
+ ],
+ [
+ -73.55370736752283,
+ 45.5278750487448
+ ],
+ [
+ -73.55370236729226,
+ 45.52787274917833
+ ],
+ [
+ -73.55366756712637,
+ 45.52791234902598
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55363976728327,
+ 45.527813848980244
+ ],
+ [
+ -73.55373456751812,
+ 45.527711448574784
+ ],
+ [
+ -73.55365186676208,
+ 45.5276735484458
+ ],
+ [
+ -73.55375596688621,
+ 45.527561249202584
+ ],
+ [
+ -73.55379726735185,
+ 45.527580148455385
+ ],
+ [
+ -73.55379206747178,
+ 45.52758554888427
+ ],
+ [
+ -73.55382616706581,
+ 45.52760204874585
+ ],
+ [
+ -73.55392976716686,
+ 45.52749614907831
+ ],
+ [
+ -73.55359296746332,
+ 45.52733344912967
+ ],
+ [
+ -73.55361956671148,
+ 45.52730614841032
+ ],
+ [
+ -73.55343056698892,
+ 45.527217449176234
+ ],
+ [
+ -73.55307576645531,
+ 45.52759134861214
+ ],
+ [
+ -73.55326586694805,
+ 45.52768054876861
+ ],
+ [
+ -73.55326606749686,
+ 45.52768054876861
+ ],
+ [
+ -73.5532906675521,
+ 45.527654048445875
+ ],
+ [
+ -73.55363976728327,
+ 45.527813848980244
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55294556620676,
+ 45.52749454918439
+ ],
+ [
+ -73.55294206604536,
+ 45.52749834882004
+ ],
+ [
+ -73.55286516591651,
+ 45.52758244892117
+ ],
+ [
+ -73.55286516591651,
+ 45.527582548745926
+ ],
+ [
+ -73.55295346585162,
+ 45.52762394903631
+ ],
+ [
+ -73.55295666653878,
+ 45.52762554893023
+ ],
+ [
+ -73.55314756742814,
+ 45.52742684912008
+ ],
+ [
+ -73.55321266755242,
+ 45.527359149055776
+ ],
+ [
+ -73.55315336715601,
+ 45.52733094901438
+ ],
+ [
+ -73.55317556692073,
+ 45.527307849028304
+ ],
+ [
+ -73.55314166607687,
+ 45.52729164864097
+ ],
+ [
+ -73.55313656602155,
+ 45.52728934907449
+ ],
+ [
+ -73.55294556620676,
+ 45.52749454918439
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1495,
+ "ID_UEV":"01018306",
+ "CIVIQUE_DE":" 1800",
+ "CIVIQUE_FI":" 1800",
+ "NOM_RUE":"rue Parthenais (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Transport et gestion d'\u00c3\u00a9lectricit\u00c3\u00a9 en bloc",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-50-9995-7-000-0000",
+ "SUPERFICIE":13138,
+ "SUPERFIC_1":3305,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00460836103587,
+ "OBJECTID":88022,
+ "Join_Count":8,
+ "TARGET_FID":88022,
+ "feature_id":"ea7467f8-ed4b-46d5-8326-ca5610cbac5a",
+ "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.56,
+ "heightmax":26.83,
+ "elevmin":17.72,
+ "elevmax":18.81,
+ "bldgarea":637.89,
+ "comment":" ",
+ "OBJECTID_2":88022,
+ "Shape_Le_1":0.00460836103587,
+ "Shape_Ar_1":2.91687949277e-07,
+ "OBJECTID_3":88022,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88021,
+ "g_objectid":"945599",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"5598490",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004351752370000000",
+ "g_sup_tota":"7324.9",
+ "g_geometry":"0.0046988",
+ "g_geomet_1":"8.45453e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00460836103587,
+ "Shape_Area":2.91687949277e-07,
+ "Shape_Le_3":0.00460835688289,
+ "Shape_Ar_2":2.91687949277e-07,
+ "building_height":12.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1496,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56236933619775,
+ 45.51095145809361
+ ],
+ [
+ -73.56262723298227,
+ 45.51107070549895
+ ],
+ [
+ -73.56263975244447,
+ 45.51105724264792
+ ],
+ [
+ -73.56272305124966,
+ 45.51096105655781
+ ],
+ [
+ -73.56259324400486,
+ 45.51090002316783
+ ],
+ [
+ -73.56260568522603,
+ 45.5108861565212
+ ],
+ [
+ -73.56259427912453,
+ 45.51088075609231
+ ],
+ [
+ -73.56255878108472,
+ 45.510864053883274
+ ],
+ [
+ -73.56247799678397,
+ 45.51082606382208
+ ],
+ [
+ -73.56236933619775,
+ 45.51095145809361
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1496,
+ "ID_UEV":"01021577",
+ "CIVIQUE_DE":" 100",
+ "CIVIQUE_FI":" 110",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1892,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-92-1227-1-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000898987283796,
+ "OBJECTID":88047,
+ "Join_Count":1,
+ "TARGET_FID":88047,
+ "feature_id":"3127d77c-46a0-428f-b920-e61f8bdef238",
+ "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.58,
+ "heightmax":21.59,
+ "elevmin":25.17,
+ "elevmax":25.95,
+ "bldgarea":1315.13,
+ "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_2":88047,
+ "Shape_Le_1":0.000898987283796,
+ "Shape_Ar_1":4.25783481548e-08,
+ "OBJECTID_3":88047,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88046,
+ "g_objectid":"938522",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"2161585",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6920",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994192032540000000",
+ "g_sup_tota":"393.9",
+ "g_geometry":"0.000898907",
+ "g_geomet_1":"4.51308e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000898987283796,
+ "Shape_Area":4.25783481548e-08,
+ "Shape_Le_3":0.000898988022009,
+ "Shape_Ar_2":4.25783481548e-08,
+ "building_height":10.505
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1497,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55949034372622,
+ 45.528900669780384
+ ],
+ [
+ -73.55956743181338,
+ 45.52893788822326
+ ],
+ [
+ -73.55967174597615,
+ 45.52882830043601
+ ],
+ [
+ -73.55964406934017,
+ 45.52881634844602
+ ],
+ [
+ -73.55969716891106,
+ 45.528755748529264
+ ],
+ [
+ -73.55964828086532,
+ 45.528734592877456
+ ],
+ [
+ -73.55949034372622,
+ 45.528900669780384
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1497,
+ "ID_UEV":"01035227",
+ "CIVIQUE_DE":" 2132",
+ "CIVIQUE_FI":" 2136",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-12-4415-1-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":349,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000630073225046,
+ "OBJECTID":88053,
+ "Join_Count":1,
+ "TARGET_FID":88053,
+ "feature_id":"bf7bffe9-01f4-4ce2-932b-92a9e3470026",
+ "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.89,
+ "heightmax":39.58,
+ "elevmin":26.07,
+ "elevmax":28.18,
+ "bldgarea":1382.27,
+ "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_2":88053,
+ "Shape_Le_1":0.000630073225046,
+ "Shape_Ar_1":1.64000260252e-08,
+ "OBJECTID_3":88053,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88052,
+ "g_objectid":"943517",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2316894",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004312501170000000",
+ "g_sup_tota":"180.5",
+ "g_geometry":"0.000693818",
+ "g_geomet_1":"2.07547e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000630073225046,
+ "Shape_Area":1.64000260252e-08,
+ "Shape_Le_3":0.000630073424366,
+ "Shape_Ar_2":1.64000260252e-08,
+ "building_height":18.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1498,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55619483834296,
+ 45.5222521554629
+ ],
+ [
+ -73.55646855510159,
+ 45.522378818677836
+ ],
+ [
+ -73.55655677949362,
+ 45.52228449868097
+ ],
+ [
+ -73.55646526718019,
+ 45.52224084828681
+ ],
+ [
+ -73.55644916751692,
+ 45.52225764762264
+ ],
+ [
+ -73.55642376706504,
+ 45.52228624786235
+ ],
+ [
+ -73.55635356688545,
+ 45.52225434801005
+ ],
+ [
+ -73.55630976720384,
+ 45.52223534803318
+ ],
+ [
+ -73.55635076729592,
+ 45.52218924788578
+ ],
+ [
+ -73.55635216754034,
+ 45.52218754816711
+ ],
+ [
+ -73.55628096731463,
+ 45.52216214771524
+ ],
+ [
+ -73.55628646756827,
+ 45.52215454754463
+ ],
+ [
+ -73.55628622115402,
+ 45.52215445851174
+ ],
+ [
+ -73.55619483834296,
+ 45.5222521554629
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1498,
+ "ID_UEV":"01022256",
+ "CIVIQUE_DE":" 1628",
+ "CIVIQUE_FI":" 1640",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-9484-8-000-0000",
+ "SUPERFICIE":351,
+ "SUPERFIC_1":1293,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100142324423,
+ "OBJECTID":88059,
+ "Join_Count":1,
+ "TARGET_FID":88059,
+ "feature_id":"9e2e667f-9af7-43e3-8840-11a26b8f6eae",
+ "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.94,
+ "heightmax":11.78,
+ "elevmin":26.07,
+ "elevmax":27.33,
+ "bldgarea":452.73,
+ "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_2":88059,
+ "Shape_Le_1":0.00100142324423,
+ "Shape_Ar_1":2.97300187849e-08,
+ "OBJECTID_3":88059,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88058,
+ "g_objectid":"942166",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567520",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004244046480000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100259",
+ "g_geomet_1":"4.90553e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100142324423,
+ "Shape_Area":2.97300187849e-08,
+ "Shape_Le_3":0.00100142396775,
+ "Shape_Ar_2":2.97300187849e-08,
+ "building_height":4.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1499,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55996747813845,
+ 45.532958275953966
+ ],
+ [
+ -73.56001846879914,
+ 45.53298704886351
+ ],
+ [
+ -73.55999846877616,
+ 45.5330045487712
+ ],
+ [
+ -73.55999856950022,
+ 45.53300464859595
+ ],
+ [
+ -73.56002975708947,
+ 45.53302316743552
+ ],
+ [
+ -73.56014732815851,
+ 45.532896604045334
+ ],
+ [
+ -73.56006148427193,
+ 45.532857080640056
+ ],
+ [
+ -73.55996747813845,
+ 45.532958275953966
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1499,
+ "ID_UEV":"01022956",
+ "CIVIQUE_DE":" 2389",
+ "CIVIQUE_FI":" 2397",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-16-1173-0-000-0000",
+ "SUPERFICIE":244,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000526910915569,
+ "OBJECTID":88064,
+ "Join_Count":1,
+ "TARGET_FID":88064,
+ "feature_id":"a674cb3a-93b0-4b10-8747-a68d1a76d21c",
+ "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.51,
+ "heightmax":45.46,
+ "elevmin":28.11,
+ "elevmax":33.18,
+ "bldgarea":1813.91,
+ "comment":" ",
+ "OBJECTID_2":88064,
+ "Shape_Le_1":0.000526910915569,
+ "Shape_Ar_1":1.3659156002e-08,
+ "OBJECTID_3":88064,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88063,
+ "g_objectid":"940535",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424033",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316117300000000",
+ "g_sup_tota":"244.3",
+ "g_geometry":"0.00081606",
+ "g_geomet_1":"2.81497e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000526910915569,
+ "Shape_Area":1.3659156002e-08,
+ "Shape_Le_3":0.000526910474026,
+ "Shape_Ar_2":1.3659156002e-08,
+ "building_height":21.475
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1500,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55759508996327,
+ 45.53720463813384
+ ],
+ [
+ -73.55774562388328,
+ 45.53725800300473
+ ],
+ [
+ -73.55775326902,
+ 45.537248849704945
+ ],
+ [
+ -73.55773726918147,
+ 45.5372423494052
+ ],
+ [
+ -73.55777835740712,
+ 45.53719281654554
+ ],
+ [
+ -73.55763870438454,
+ 45.53714330886691
+ ],
+ [
+ -73.55763416910347,
+ 45.53715055020802
+ ],
+ [
+ -73.55763196936174,
+ 45.53714964998665
+ ],
+ [
+ -73.55760106955556,
+ 45.53719575013405
+ ],
+ [
+ -73.55759508996327,
+ 45.53720463813384
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1500,
+ "ID_UEV":"01025962",
+ "CIVIQUE_DE":" 2715",
+ "CIVIQUE_FI":" 2717",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-9146-6-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000478564780215,
+ "OBJECTID":88069,
+ "Join_Count":1,
+ "TARGET_FID":88069,
+ "feature_id":"e81dc582-bb47-4909-8c8a-b623d7bc7de3",
+ "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.58,
+ "heightmax":39.1,
+ "elevmin":26.21,
+ "elevmax":27.55,
+ "bldgarea":794.21,
+ "comment":" ",
+ "OBJECTID_2":88069,
+ "Shape_Le_1":0.000478564780215,
+ "Shape_Ar_1":1.07690792382e-08,
+ "OBJECTID_3":88069,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88068,
+ "g_objectid":"944124",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361381",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421914660000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000742181",
+ "g_geomet_1":"2.1404e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000478564780215,
+ "Shape_Area":1.07690792382e-08,
+ "Shape_Le_3":0.000478565520621,
+ "Shape_Ar_2":1.07690792382e-08,
+ "building_height":19.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1501,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55310218134244,
+ 45.5362851335024
+ ],
+ [
+ -73.55310466706858,
+ 45.53628684940887
+ ],
+ [
+ -73.55310636678725,
+ 45.53628774963023
+ ],
+ [
+ -73.55311116736833,
+ 45.536280049634875
+ ],
+ [
+ -73.55319628100541,
+ 45.53630626846981
+ ],
+ [
+ -73.55322493610376,
+ 45.536266364651304
+ ],
+ [
+ -73.55326356738158,
+ 45.536204350100974
+ ],
+ [
+ -73.55323536734018,
+ 45.5361956500595
+ ],
+ [
+ -73.55317878829229,
+ 45.536178455021975
+ ],
+ [
+ -73.55310218134244,
+ 45.5362851335024
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1501,
+ "ID_UEV":"01024733",
+ "CIVIQUE_DE":" 2161",
+ "CIVIQUE_FI":" 2165",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-4740-9-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000445249831055,
+ "OBJECTID":88070,
+ "Join_Count":1,
+ "TARGET_FID":88070,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88070,
+ "Shape_Le_1":0.000445249831055,
+ "Shape_Ar_1":1.08302683561e-08,
+ "OBJECTID_3":88070,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88069,
+ "g_objectid":"943699",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360842",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004460474090000000",
+ "g_sup_tota":"186.6",
+ "g_geometry":"0.000669258",
+ "g_geomet_1":"2.14992e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000445249831055,
+ "Shape_Area":1.08302683561e-08,
+ "Shape_Le_3":0.000445248647898,
+ "Shape_Ar_2":1.08302683561e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1502,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55293345054015,
+ 45.536215753504514
+ ],
+ [
+ -73.55292746735059,
+ 45.53623744964888
+ ],
+ [
+ -73.55295466734587,
+ 45.53624114945978
+ ],
+ [
+ -73.55295466734587,
+ 45.53624154965809
+ ],
+ [
+ -73.55297806680618,
+ 45.53625804951967
+ ],
+ [
+ -73.55299496686607,
+ 45.53624614969035
+ ],
+ [
+ -73.55301226172834,
+ 45.536258178122715
+ ],
+ [
+ -73.5530891258843,
+ 45.53615114171212
+ ],
+ [
+ -73.55300686669538,
+ 45.536126049727706
+ ],
+ [
+ -73.5530243675024,
+ 45.536097650036815
+ ],
+ [
+ -73.55302546737326,
+ 45.53609534957102
+ ],
+ [
+ -73.55302070276507,
+ 45.5360942514988
+ ],
+ [
+ -73.55293345054015,
+ 45.536215753504514
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1502,
+ "ID_UEV":"01024737",
+ "CIVIQUE_DE":" 2149",
+ "CIVIQUE_FI":" 2151",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1971,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-6133-5-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":188,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000528883366704,
+ "OBJECTID":88071,
+ "Join_Count":1,
+ "TARGET_FID":88071,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88071,
+ "Shape_Le_1":0.000528883366704,
+ "Shape_Ar_1":1.20378207685e-08,
+ "OBJECTID_3":88071,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88070,
+ "g_objectid":"943696",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360839",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004460672900000000",
+ "g_sup_tota":"186.6",
+ "g_geometry":"0.000669055",
+ "g_geomet_1":"2.14903e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000528883366704,
+ "Shape_Area":1.20378207685e-08,
+ "Shape_Le_3":0.00052888457492,
+ "Shape_Ar_2":1.20378207685e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1503,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.558339364392,
+ 45.52216556423969
+ ],
+ [
+ -73.55829636780497,
+ 45.5221445479828
+ ],
+ [
+ -73.55829336856596,
+ 45.52214774777064
+ ],
+ [
+ -73.5582189685524,
+ 45.52222074753976
+ ],
+ [
+ -73.55822306856162,
+ 45.52222274763199
+ ],
+ [
+ -73.55826579984863,
+ 45.52224463083534
+ ],
+ [
+ -73.558339364392,
+ 45.52216556423969
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1503,
+ "ID_UEV":"01032394",
+ "CIVIQUE_DE":" 1716",
+ "CIVIQUE_FI":" 1716",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-4368-9-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":77,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000317043559864,
+ "OBJECTID":88080,
+ "Join_Count":1,
+ "TARGET_FID":88080,
+ "feature_id":"b86b7acf-0f97-414c-b784-b196cd429e81",
+ "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.51,
+ "heightmax":8.17,
+ "elevmin":25.83,
+ "elevmax":27.1,
+ "bldgarea":170.65,
+ "comment":" ",
+ "OBJECTID_2":88080,
+ "Shape_Le_1":0.000317043559864,
+ "Shape_Ar_1":5.16969602618e-09,
+ "OBJECTID_3":88080,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88079,
+ "g_objectid":"942060",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567297",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224357430000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000928865",
+ "g_geomet_1":"4.40538e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000317043559864,
+ "Shape_Area":5.16969602618e-09,
+ "Shape_Le_3":0.00031704295369,
+ "Shape_Ar_2":5.16969602618e-09,
+ "building_height":2.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1504,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5495982787594,
+ 45.53805731324471
+ ],
+ [
+ -73.5497308352317,
+ 45.53810422727856
+ ],
+ [
+ -73.5497660391932,
+ 45.53805527448163
+ ],
+ [
+ -73.54963232619275,
+ 45.53800795125624
+ ],
+ [
+ -73.5495982787594,
+ 45.53805731324471
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1504,
+ "ID_UEV":"01025658",
+ "CIVIQUE_DE":" 2950",
+ "CIVIQUE_FI":" 2950",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-92-2238-9-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000402714638058,
+ "OBJECTID":88114,
+ "Join_Count":1,
+ "TARGET_FID":88114,
+ "feature_id":"7036df54-0c1b-43f8-967d-1f9df7dc5bb2",
+ "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":32.36,
+ "elevmin":21.41,
+ "elevmax":22.32,
+ "bldgarea":841.74,
+ "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_2":88114,
+ "Shape_Le_1":0.000402714638058,
+ "Shape_Ar_1":8.17601155572e-09,
+ "OBJECTID_3":88114,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88113,
+ "g_objectid":"944284",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361958",
+ "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":"66023004492193360000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749065",
+ "g_geomet_1":"1.81938e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000402714638058,
+ "Shape_Area":8.17601155572e-09,
+ "Shape_Le_3":0.000402715697612,
+ "Shape_Ar_2":8.17601155572e-09,
+ "building_height":15.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1505,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55850097526164,
+ 45.538932225891806
+ ],
+ [
+ -73.55850376945524,
+ 45.53893325111894
+ ],
+ [
+ -73.55858753770654,
+ 45.538963973758676
+ ],
+ [
+ -73.55867437444466,
+ 45.53884098067701
+ ],
+ [
+ -73.55866886879511,
+ 45.53883875125766
+ ],
+ [
+ -73.55865626929324,
+ 45.538834151225394
+ ],
+ [
+ -73.55858685691976,
+ 45.53881066812813
+ ],
+ [
+ -73.55850097526164,
+ 45.538932225891806
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1505,
+ "ID_UEV":"01024920",
+ "CIVIQUE_DE":" 2617",
+ "CIVIQUE_FI":" 2619",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-23-2533-8-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":202,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000484224901566,
+ "OBJECTID":88116,
+ "Join_Count":1,
+ "TARGET_FID":88116,
+ "feature_id":"abf0269c-02da-4abb-9c35-4825568117c6",
+ "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":52.71,
+ "elevmin":33.68,
+ "elevmax":42.14,
+ "bldgarea":1138.79,
+ "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_2":88116,
+ "Shape_Le_1":0.000484224901566,
+ "Shape_Ar_1":1.33484836774e-08,
+ "OBJECTID_3":88116,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88115,
+ "g_objectid":"944074",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361318",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004423333080000000",
+ "g_sup_tota":"223.5",
+ "g_geometry":"0.000705898",
+ "g_geomet_1":"2.57478e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000484224901566,
+ "Shape_Area":1.33484836774e-08,
+ "Shape_Le_3":0.000484224748906,
+ "Shape_Ar_2":1.33484836774e-08,
+ "building_height":26.095
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1506,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55352610646648,
+ 45.53801760547841
+ ],
+ [
+ -73.55352206671185,
+ 45.5380236507212
+ ],
+ [
+ -73.55350176721463,
+ 45.538016950771954
+ ],
+ [
+ -73.55349966729766,
+ 45.53802045093336
+ ],
+ [
+ -73.55346566752839,
+ 45.53807885110839
+ ],
+ [
+ -73.55346576735313,
+ 45.53807885110839
+ ],
+ [
+ -73.55343786678597,
+ 45.53811805075773
+ ],
+ [
+ -73.55338191096826,
+ 45.53819678190626
+ ],
+ [
+ -73.55364926502341,
+ 45.538291600127536
+ ],
+ [
+ -73.5536861534151,
+ 45.538239818063445
+ ],
+ [
+ -73.55377276802068,
+ 45.538113751099026
+ ],
+ [
+ -73.55377276802068,
+ 45.53811365127428
+ ],
+ [
+ -73.55369496677115,
+ 45.53808965106684
+ ],
+ [
+ -73.5537012224553,
+ 45.53807965959891
+ ],
+ [
+ -73.55352610646648,
+ 45.53801760547841
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1506,
+ "ID_UEV":"01025781",
+ "CIVIQUE_DE":" 2893",
+ "CIVIQUE_FI":" 2893",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":22,
+ "ANNEE_CONS":2009,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-62-1549-3-000-0000",
+ "SUPERFICIE":552,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00102440393141,
+ "OBJECTID":88121,
+ "Join_Count":1,
+ "TARGET_FID":88121,
+ "feature_id":"dcf69c0d-0526-47e0-a3e4-b5c7709f936c",
+ "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":30.39,
+ "elevmin":19.03,
+ "elevmax":20.12,
+ "bldgarea":984.5,
+ "comment":" ",
+ "OBJECTID_2":88121,
+ "Shape_Le_1":0.00102440393141,
+ "Shape_Ar_1":6.07335275595e-08,
+ "OBJECTID_3":88121,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88120,
+ "g_objectid":"944019",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361234",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"22",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004462154930000000",
+ "g_sup_tota":"551.8",
+ "g_geometry":"0.00103546",
+ "g_geomet_1":"6.35633e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00102440393141,
+ "Shape_Area":6.07335275595e-08,
+ "Shape_Le_3":0.00102440513969,
+ "Shape_Ar_2":6.07335275595e-08,
+ "building_height":14.94
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1507,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55124703284613,
+ 45.53740375612874
+ ],
+ [
+ -73.55131967468509,
+ 45.53743043181927
+ ],
+ [
+ -73.55139570876679,
+ 45.53732367060121
+ ],
+ [
+ -73.55132361281632,
+ 45.5372962286883
+ ],
+ [
+ -73.55124703284613,
+ 45.53740375612874
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1507,
+ "ID_UEV":"01025336",
+ "CIVIQUE_DE":" 2094",
+ "CIVIQUE_FI":" 2098",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-9161-0-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":231,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000417605911594,
+ "OBJECTID":88122,
+ "Join_Count":1,
+ "TARGET_FID":88122,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88122,
+ "Shape_Le_1":0.000417605911594,
+ "Shape_Ar_1":9.81869524812e-09,
+ "OBJECTID_3":88122,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88121,
+ "g_objectid":"944234",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361687",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471856380000000",
+ "g_sup_tota":"156.1",
+ "g_geometry":"0.000636915",
+ "g_geomet_1":"1.79764e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000417605911594,
+ "Shape_Area":9.81869524812e-09,
+ "Shape_Le_3":0.000417606142909,
+ "Shape_Ar_2":9.81869524812e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1508,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55908403991835,
+ 45.531294717227716
+ ],
+ [
+ -73.55919029032148,
+ 45.53134340202668
+ ],
+ [
+ -73.55925181204334,
+ 45.53127665254577
+ ],
+ [
+ -73.55914227821542,
+ 45.53122646408035
+ ],
+ [
+ -73.55912616955892,
+ 45.53124354850126
+ ],
+ [
+ -73.55902056936563,
+ 45.53119444911483
+ ],
+ [
+ -73.55897486941653,
+ 45.53124314920227
+ ],
+ [
+ -73.55908496891803,
+ 45.531293748657866
+ ],
+ [
+ -73.55908403991835,
+ 45.531294717227716
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1508,
+ "ID_UEV":"01025870",
+ "CIVIQUE_DE":" 2220",
+ "CIVIQUE_FI":" 2220",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-14-8383-3-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000657370182305,
+ "OBJECTID":88129,
+ "Join_Count":1,
+ "TARGET_FID":88129,
+ "feature_id":"b7c5cd16-781e-4c4f-8b61-b07e0754b379",
+ "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.46,
+ "heightmax":39.63,
+ "elevmin":26.36,
+ "elevmax":27.57,
+ "bldgarea":759.35,
+ "comment":" ",
+ "OBJECTID_2":88129,
+ "Shape_Le_1":0.000657370182305,
+ "Shape_Ar_1":1.77911390241e-08,
+ "OBJECTID_3":88129,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88128,
+ "g_objectid":"940445",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004314838330000000",
+ "g_sup_tota":"211.9",
+ "g_geometry":"0.000747603",
+ "g_geomet_1":"2.44084e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000657370182305,
+ "Shape_Area":1.77911390241e-08,
+ "Shape_Le_3":0.000657369270219,
+ "Shape_Ar_2":1.77911390241e-08,
+ "building_height":18.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1509,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55914227821542,
+ 45.53122646408035
+ ],
+ [
+ -73.55925181204334,
+ 45.53127665254577
+ ],
+ [
+ -73.55931333376519,
+ 45.53120990396419
+ ],
+ [
+ -73.55920789005393,
+ 45.53116158878659
+ ],
+ [
+ -73.55919336870085,
+ 45.53117704903188
+ ],
+ [
+ -73.5590864689872,
+ 45.53112734889833
+ ],
+ [
+ -73.55908226915324,
+ 45.531125248981354
+ ],
+ [
+ -73.55903466893666,
+ 45.53117584843695
+ ],
+ [
+ -73.5591426694205,
+ 45.53122604859356
+ ],
+ [
+ -73.55914227821542,
+ 45.53122646408035
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1509,
+ "ID_UEV":"01025872",
+ "CIVIQUE_DE":" 2214",
+ "CIVIQUE_FI":" 2214",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-14-7876-7-000-0000",
+ "SUPERFICIE":211,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000660179305959,
+ "OBJECTID":88131,
+ "Join_Count":1,
+ "TARGET_FID":88131,
+ "feature_id":"b7c5cd16-781e-4c4f-8b61-b07e0754b379",
+ "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.46,
+ "heightmax":39.63,
+ "elevmin":26.36,
+ "elevmax":27.57,
+ "bldgarea":759.35,
+ "comment":" ",
+ "OBJECTID_2":88131,
+ "Shape_Le_1":0.000660179305959,
+ "Shape_Ar_1":1.81240178797e-08,
+ "OBJECTID_3":88131,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88130,
+ "g_objectid":"940447",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423903",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004314746830000000",
+ "g_sup_tota":"210.7",
+ "g_geometry":"0.0007443",
+ "g_geomet_1":"2.42658e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000660179305959,
+ "Shape_Area":1.81240178797e-08,
+ "Shape_Le_3":0.000660179025127,
+ "Shape_Ar_2":1.81240178797e-08,
+ "building_height":18.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1510,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55285274537974,
+ 45.536175965698554
+ ],
+ [
+ -73.55287106726779,
+ 45.53618025006878
+ ],
+ [
+ -73.55286656706026,
+ 45.53619804945072
+ ],
+ [
+ -73.55293576719374,
+ 45.536207350239316
+ ],
+ [
+ -73.55293345054015,
+ 45.536215753504514
+ ],
+ [
+ -73.55302070276507,
+ 45.5360942514988
+ ],
+ [
+ -73.55292695293838,
+ 45.53607262909885
+ ],
+ [
+ -73.55285274537974,
+ 45.536175965698554
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1510,
+ "ID_UEV":"01024739",
+ "CIVIQUE_DE":" 2143",
+ "CIVIQUE_FI":" 2145",
+ "NOM_RUE":"rue Hogan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-6729-0-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000488734386419,
+ "OBJECTID":88134,
+ "Join_Count":1,
+ "TARGET_FID":88134,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88134,
+ "Shape_Le_1":0.000488734386419,
+ "Shape_Ar_1":1.24268547989e-08,
+ "OBJECTID_3":88134,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88133,
+ "g_objectid":"943696",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360839",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004460672900000000",
+ "g_sup_tota":"186.6",
+ "g_geometry":"0.000669055",
+ "g_geomet_1":"2.14903e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000488734386419,
+ "Shape_Area":1.24268547989e-08,
+ "Shape_Le_3":0.00048873191645,
+ "Shape_Ar_2":1.24268547989e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1511,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55275919969915,
+ 45.53615405911283
+ ],
+ [
+ -73.5527611674158,
+ 45.53615455014267
+ ],
+ [
+ -73.55285274537974,
+ 45.536175965698554
+ ],
+ [
+ -73.55292695293838,
+ 45.53607262909885
+ ],
+ [
+ -73.55290796735066,
+ 45.536068250299806
+ ],
+ [
+ -73.55283317703135,
+ 45.53605104267178
+ ],
+ [
+ -73.55275919969915,
+ 45.53615405911283
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1511,
+ "ID_UEV":"01024741",
+ "CIVIQUE_DE":" 2137",
+ "CIVIQUE_FI":" 2141",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-7426-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":212,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000446352427793,
+ "OBJECTID":88135,
+ "Join_Count":1,
+ "TARGET_FID":88135,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88135,
+ "Shape_Le_1":0.000446352427793,
+ "Shape_Ar_1":1.12766415426e-08,
+ "OBJECTID_3":88135,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88134,
+ "g_objectid":"943694",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360837",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004460812340000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668917",
+ "g_geomet_1":"2.14839e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000446352427793,
+ "Shape_Area":1.12766415426e-08,
+ "Shape_Le_3":0.000446352968655,
+ "Shape_Ar_2":1.12766415426e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1512,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56126877015946,
+ 45.53363624966349
+ ],
+ [
+ -73.56126597056993,
+ 45.53364005019845
+ ],
+ [
+ -73.56135356993315,
+ 45.53367104982938
+ ],
+ [
+ -73.56135847033897,
+ 45.533672749548046
+ ],
+ [
+ -73.5614742697436,
+ 45.53350984994991
+ ],
+ [
+ -73.56146937023709,
+ 45.53350815023124
+ ],
+ [
+ -73.56139006981772,
+ 45.53347974964103
+ ],
+ [
+ -73.56138496976239,
+ 45.53347785027287
+ ],
+ [
+ -73.56126877015946,
+ 45.53363624966349
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56138574048138,
+ 45.5334563618719
+ ],
+ [
+ -73.56131001216917,
+ 45.53353788541538
+ ],
+ [
+ -73.56138657055563,
+ 45.5334567494797
+ ],
+ [
+ -73.56138574048138,
+ 45.5334563618719
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1512,
+ "ID_UEV":"01022926",
+ "CIVIQUE_DE":" 2535",
+ "CIVIQUE_FI":" 2543",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-0644-0-000-0000",
+ "SUPERFICIE":464,
+ "SUPERFIC_1":516,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000817746404015,
+ "OBJECTID":88141,
+ "Join_Count":2,
+ "TARGET_FID":88141,
+ "feature_id":"ac9031c9-c900-43cc-aba9-96676ec858eb",
+ "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.54,
+ "heightmax":51.11,
+ "elevmin":36.08,
+ "elevmax":38.48,
+ "bldgarea":161.1,
+ "comment":" ",
+ "OBJECTID_2":88141,
+ "Shape_Le_1":0.000817746404015,
+ "Shape_Ar_1":1.86173086942e-08,
+ "OBJECTID_3":88141,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88140,
+ "g_objectid":"940559",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424061",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307064400000000",
+ "g_sup_tota":"464.1",
+ "g_geometry":"0.00097356",
+ "g_geomet_1":"5.35578e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000817746404015,
+ "Shape_Area":1.86173086942e-08,
+ "Shape_Le_3":0.000817744624738,
+ "Shape_Ar_2":1.86173086942e-08,
+ "building_height":24.285
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1513,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56105575404166,
+ 45.533500225405376
+ ],
+ [
+ -73.5611079704783,
+ 45.53352155012973
+ ],
+ [
+ -73.56116067434749,
+ 45.533543134758155
+ ],
+ [
+ -73.56128497414409,
+ 45.5334093237316
+ ],
+ [
+ -73.56124347043166,
+ 45.533389949636764
+ ],
+ [
+ -73.56118392991628,
+ 45.53336224422249
+ ],
+ [
+ -73.56105575404166,
+ 45.533500225405376
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1513,
+ "ID_UEV":"01022931",
+ "CIVIQUE_DE":" 2519",
+ "CIVIQUE_FI":" 2523",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-07-2330-4-000-0000",
+ "SUPERFICIE":288,
+ "SUPERFIC_1":291,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000595794734934,
+ "OBJECTID":88142,
+ "Join_Count":1,
+ "TARGET_FID":88142,
+ "feature_id":"61010342-e54f-46d8-975f-200cb6e7db1b",
+ "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.51,
+ "heightmax":49.45,
+ "elevmin":32.44,
+ "elevmax":38.11,
+ "bldgarea":910.97,
+ "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_2":88142,
+ "Shape_Le_1":0.000595794734934,
+ "Shape_Ar_1":1.96751069924e-08,
+ "OBJECTID_3":88142,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88141,
+ "g_objectid":"940560",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424063",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004307233040000000",
+ "g_sup_tota":"288",
+ "g_geometry":"0.000850233",
+ "g_geomet_1":"3.32468e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000595794734934,
+ "Shape_Area":1.96751069924e-08,
+ "Shape_Le_3":0.000595794347757,
+ "Shape_Ar_2":1.96751069924e-08,
+ "building_height":23.470000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1514,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54953018479203,
+ 45.53815603722163
+ ],
+ [
+ -73.54966042371143,
+ 45.53820213107379
+ ],
+ [
+ -73.5496661658827,
+ 45.53819415048995
+ ],
+ [
+ -73.54969563127021,
+ 45.53815317917617
+ ],
+ [
+ -73.54956423222538,
+ 45.53810667523317
+ ],
+ [
+ -73.54953018479203,
+ 45.53815603722163
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1514,
+ "ID_UEV":"01025663",
+ "CIVIQUE_DE":" 2970",
+ "CIVIQUE_FI":" 2970",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-92-2749-5-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000397803573958,
+ "OBJECTID":88145,
+ "Join_Count":1,
+ "TARGET_FID":88145,
+ "feature_id":"7036df54-0c1b-43f8-967d-1f9df7dc5bb2",
+ "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":32.36,
+ "elevmin":21.41,
+ "elevmax":22.32,
+ "bldgarea":841.74,
+ "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_2":88145,
+ "Shape_Le_1":0.000397803573958,
+ "Shape_Ar_1":8.03393031693e-09,
+ "OBJECTID_3":88145,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88144,
+ "g_objectid":"944288",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361968",
+ "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":"66023004492305560000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749061",
+ "g_geomet_1":"1.81935e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000397803573958,
+ "Shape_Area":8.03393031693e-09,
+ "Shape_Le_3":0.000397803951549,
+ "Shape_Ar_2":8.03393031693e-09,
+ "building_height":15.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1515,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54949613825802,
+ 45.53820539741146
+ ],
+ [
+ -73.54962520536078,
+ 45.53825107667614
+ ],
+ [
+ -73.54966042371143,
+ 45.53820213107379
+ ],
+ [
+ -73.54953018479203,
+ 45.53815603722163
+ ],
+ [
+ -73.54949613825802,
+ 45.53820539741146
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1515,
+ "ID_UEV":"01025666",
+ "CIVIQUE_DE":" 2980",
+ "CIVIQUE_FI":" 2980",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-92-3055-6-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000395331256865,
+ "OBJECTID":88146,
+ "Join_Count":1,
+ "TARGET_FID":88146,
+ "feature_id":"7036df54-0c1b-43f8-967d-1f9df7dc5bb2",
+ "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":32.36,
+ "elevmin":21.41,
+ "elevmax":22.32,
+ "bldgarea":841.74,
+ "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_2":88146,
+ "Shape_Le_1":0.000395331256865,
+ "Shape_Ar_1":7.96208588881e-09,
+ "OBJECTID_3":88146,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88145,
+ "g_objectid":"944288",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361968",
+ "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":"66023004492305560000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749061",
+ "g_geomet_1":"1.81935e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000395331256865,
+ "Shape_Area":7.96208588881e-09,
+ "Shape_Le_3":0.000395329683189,
+ "Shape_Ar_2":7.96208588881e-09,
+ "building_height":15.93
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1516,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55763870438454,
+ 45.53714330886691
+ ],
+ [
+ -73.55777835740712,
+ 45.53719281654554
+ ],
+ [
+ -73.5578131692642,
+ 45.53715084968226
+ ],
+ [
+ -73.55782757190676,
+ 45.53713347388101
+ ],
+ [
+ -73.55767838337253,
+ 45.537080585650806
+ ],
+ [
+ -73.55764656895583,
+ 45.53713074983453
+ ],
+ [
+ -73.55763870438454,
+ 45.53714330886691
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1516,
+ "ID_UEV":"01025960",
+ "CIVIQUE_DE":" 2707",
+ "CIVIQUE_FI":" 2709",
+ "NOM_RUE":"rue Hochelaga (MTE+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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-8740-7-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":141,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000457770527047,
+ "OBJECTID":88147,
+ "Join_Count":1,
+ "TARGET_FID":88147,
+ "feature_id":"e81dc582-bb47-4909-8c8a-b623d7bc7de3",
+ "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.58,
+ "heightmax":39.1,
+ "elevmin":26.21,
+ "elevmax":27.55,
+ "bldgarea":794.21,
+ "comment":" ",
+ "OBJECTID_2":88147,
+ "Shape_Le_1":0.000457770527047,
+ "Shape_Ar_1":1.10927717883e-08,
+ "OBJECTID_3":88147,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88146,
+ "g_objectid":"944124",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361381",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421914660000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000742181",
+ "g_geomet_1":"2.1404e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000457770527047,
+ "Shape_Area":1.10927717883e-08,
+ "Shape_Le_3":0.000457769679541,
+ "Shape_Ar_2":1.10927717883e-08,
+ "building_height":19.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1517,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55529283002193,
+ 45.53776542928143
+ ],
+ [
+ -73.55530446814853,
+ 45.537771149868966
+ ],
+ [
+ -73.55537360892676,
+ 45.53780514694027
+ ],
+ [
+ -73.55545327177292,
+ 45.53769385583707
+ ],
+ [
+ -73.55545176810645,
+ 45.53769305004452
+ ],
+ [
+ -73.55538066770549,
+ 45.537655249740276
+ ],
+ [
+ -73.55537416650643,
+ 45.537651798142264
+ ],
+ [
+ -73.55529283002193,
+ 45.53776542928143
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1517,
+ "ID_UEV":"01024971",
+ "CIVIQUE_DE":" 2335",
+ "CIVIQUE_FI":" 2343",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-7706-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":197,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000456212331718,
+ "OBJECTID":88153,
+ "Join_Count":1,
+ "TARGET_FID":88153,
+ "feature_id":"7075300e-10d1-4fc1-b33a-1cfddfec4ecc",
+ "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":35.88,
+ "elevmin":18.61,
+ "elevmax":24.32,
+ "bldgarea":2355.29,
+ "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_2":88153,
+ "Shape_Le_1":0.000456212331718,
+ "Shape_Ar_1":1.22822476314e-08,
+ "OBJECTID_3":88153,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88152,
+ "g_objectid":"943983",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361192",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442840380000000",
+ "g_sup_tota":"188",
+ "g_geometry":"0.000671083",
+ "g_geomet_1":"2.18312e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000456212331718,
+ "Shape_Area":1.22822476314e-08,
+ "Shape_Le_3":0.000456211694348,
+ "Shape_Ar_2":1.22822476314e-08,
+ "building_height":17.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1518,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55882631310571,
+ 45.53908873940409
+ ],
+ [
+ -73.55883166946782,
+ 45.5390911504865
+ ],
+ [
+ -73.55881610400185,
+ 45.53910828796741
+ ],
+ [
+ -73.5589002337806,
+ 45.53913810049324
+ ],
+ [
+ -73.55901514735301,
+ 45.53897703101546
+ ],
+ [
+ -73.55893246908003,
+ 45.538942650832965
+ ],
+ [
+ -73.55892018613952,
+ 45.53895716049485
+ ],
+ [
+ -73.55882631310571,
+ 45.53908873940409
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1518,
+ "ID_UEV":"01024912",
+ "CIVIQUE_DE":" 2641",
+ "CIVIQUE_FI":" 2641",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1959,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-13-9847-6-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":163,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000586325201829,
+ "OBJECTID":88157,
+ "Join_Count":1,
+ "TARGET_FID":88157,
+ "feature_id":"abf0269c-02da-4abb-9c35-4825568117c6",
+ "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":52.71,
+ "elevmin":33.68,
+ "elevmax":42.14,
+ "bldgarea":1138.79,
+ "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_2":88157,
+ "Shape_Le_1":0.000586325201829,
+ "Shape_Ar_1":1.76901872426e-08,
+ "OBJECTID_3":88157,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88156,
+ "g_objectid":"944077",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361322",
+ "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":"66023004423054470000000",
+ "g_sup_tota":"189.4",
+ "g_geometry":"0.000671145",
+ "g_geomet_1":"2.17082e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000586325201829,
+ "Shape_Area":1.76901872426e-08,
+ "Shape_Le_3":0.000586325746831,
+ "Shape_Ar_2":1.76901872426e-08,
+ "building_height":26.095
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1519,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55971221187093,
+ 45.538109476621344
+ ],
+ [
+ -73.55987523737414,
+ 45.538167266156705
+ ],
+ [
+ -73.55991319775771,
+ 45.538103933200254
+ ],
+ [
+ -73.55975123795112,
+ 45.53804652227947
+ ],
+ [
+ -73.55971221187093,
+ 45.538109476621344
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1519,
+ "ID_UEV":"01026106",
+ "CIVIQUE_DE":" 2728",
+ "CIVIQUE_FI":" 2732",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1945,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-12-3045-5-000-0000",
+ "SUPERFICIE":211,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000492707264719,
+ "OBJECTID":88158,
+ "Join_Count":1,
+ "TARGET_FID":88158,
+ "feature_id":"a4acf0c5-b326-497f-ba42-2e7d553662ef",
+ "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":53.77,
+ "elevmin":41.99,
+ "elevmax":43.37,
+ "bldgarea":819.25,
+ "comment":" ",
+ "OBJECTID_2":88158,
+ "Shape_Le_1":0.000492707264719,
+ "Shape_Ar_1":1.24776520189e-08,
+ "OBJECTID_3":88158,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88157,
+ "g_objectid":"944162",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361425",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004412304550000000",
+ "g_sup_tota":"210.6",
+ "g_geometry":"0.000818763",
+ "g_geomet_1":"2.42551e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000492707264719,
+ "Shape_Area":1.24776520189e-08,
+ "Shape_Le_3":0.000492706837802,
+ "Shape_Ar_2":1.24776520189e-08,
+ "building_height":26.635
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1520,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55237879276892,
+ 45.53638517588546
+ ],
+ [
+ -73.55246697129553,
+ 45.53641455763602
+ ],
+ [
+ -73.55254765936883,
+ 45.53630219813823
+ ],
+ [
+ -73.55245860490254,
+ 45.53627403676768
+ ],
+ [
+ -73.55237879276892,
+ 45.53638517588546
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1520,
+ "ID_UEV":"01024800",
+ "CIVIQUE_DE":" 2106",
+ "CIVIQUE_FI":" 2110",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-0145-4-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":183,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000461503151717,
+ "OBJECTID":88162,
+ "Join_Count":1,
+ "TARGET_FID":88162,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":88162,
+ "Shape_Le_1":0.000461503151717,
+ "Shape_Ar_1":1.2211706567e-08,
+ "OBJECTID_3":88162,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88161,
+ "g_objectid":"943716",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360864",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470014540000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.00066884",
+ "g_geomet_1":"2.14812e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000461503151717,
+ "Shape_Area":1.2211706567e-08,
+ "Shape_Le_3":0.000461503937146,
+ "Shape_Ar_2":1.2211706567e-08,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1521,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5626270342321,
+ 45.52643640056973
+ ],
+ [
+ -73.56266437048616,
+ 45.52639654801258
+ ],
+ [
+ -73.56265780633454,
+ 45.52639351010271
+ ],
+ [
+ -73.5626270342321,
+ 45.52643640056973
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1521,
+ "ID_UEV":"01032610",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-99-1062-5-000-0000",
+ "SUPERFICIE":227,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000114630643057,
+ "OBJECTID":88165,
+ "Join_Count":1,
+ "TARGET_FID":88165,
+ "feature_id":"94ba7cf6-342c-4ab0-9b9d-4b3916913846",
+ "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.5,
+ "heightmax":9.34,
+ "elevmin":29.66,
+ "elevmax":31.91,
+ "bldgarea":920.46,
+ "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_2":88165,
+ "Shape_Le_1":0.000114630643057,
+ "Shape_Ar_1":1.87510929657e-10,
+ "OBJECTID_3":88165,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88164,
+ "g_objectid":"2322295",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1884786",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994299106250000000",
+ "g_sup_tota":"227.4",
+ "g_geometry":"0.000881532",
+ "g_geomet_1":"2.61804e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000114630643057,
+ "Shape_Area":1.87510929657e-10,
+ "Shape_Le_3":0.000114630219956,
+ "Shape_Ar_2":1.87510929657e-10,
+ "building_height":3.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1522,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54844523278311,
+ 45.529190546456846
+ ],
+ [
+ -73.54855919037618,
+ 45.52924244543281
+ ],
+ [
+ -73.5485833650521,
+ 45.52921594870736
+ ],
+ [
+ -73.54859151470848,
+ 45.529219627833854
+ ],
+ [
+ -73.54863397529957,
+ 45.52917272998779
+ ],
+ [
+ -73.54851268193657,
+ 45.5291164279311
+ ],
+ [
+ -73.54844523278311,
+ 45.529190546456846
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1522,
+ "ID_UEV":"01019361",
+ "CIVIQUE_DE":" 2407",
+ "CIVIQUE_FI":" 2411",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-0852-8-000-0000",
+ "SUPERFICIE":113,
+ "SUPERFIC_1":273,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000467230152078,
+ "OBJECTID":88172,
+ "Join_Count":1,
+ "TARGET_FID":88172,
+ "feature_id":"72447a70-7754-47e9-94e3-b216251fd915",
+ "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,
+ "heightmax":32.42,
+ "elevmin":18.18,
+ "elevmax":21.24,
+ "bldgarea":2453.19,
+ "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_2":88172,
+ "Shape_Le_1":0.000467230152078,
+ "Shape_Ar_1":1.24278787965e-08,
+ "OBJECTID_3":88172,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88171,
+ "g_objectid":"940762",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424391",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014302136010000000",
+ "g_sup_tota":"112.9",
+ "g_geometry":"0.000466723",
+ "g_geomet_1":"1.26313e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000467230152078,
+ "Shape_Area":1.24278787965e-08,
+ "Shape_Le_3":0.000467230387584,
+ "Shape_Ar_2":1.24278787965e-08,
+ "building_height":16.21
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1523,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56961357492838,
+ 45.51112407216849
+ ],
+ [
+ -73.5697964988312,
+ 45.51116512891786
+ ],
+ [
+ -73.56979977146413,
+ 45.51115844515641
+ ],
+ [
+ -73.56982797150553,
+ 45.51110044517969
+ ],
+ [
+ -73.56975807080018,
+ 45.51108644453409
+ ],
+ [
+ -73.56976567097078,
+ 45.51106764510603
+ ],
+ [
+ -73.56976557114604,
+ 45.511067545281286
+ ],
+ [
+ -73.56965467124792,
+ 45.5110405449355
+ ],
+ [
+ -73.56961357492838,
+ 45.51112407216849
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56948545571106,
+ 45.511095315446745
+ ],
+ [
+ -73.56948840908466,
+ 45.51109597914642
+ ],
+ [
+ -73.569510903827,
+ 45.511062544151386
+ ],
+ [
+ -73.56948545571106,
+ 45.511095315446745
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56951513333858,
+ 45.511057098756396
+ ],
+ [
+ -73.56956857105456,
+ 45.51107484507833
+ ],
+ [
+ -73.56961947088372,
+ 45.510999144645105
+ ],
+ [
+ -73.56957229784511,
+ 45.510983481153026
+ ],
+ [
+ -73.56951513333858,
+ 45.511057098756396
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1523,
+ "ID_UEV":"01059088",
+ "CIVIQUE_DE":" 96",
+ "CIVIQUE_FI":" 96",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-32-5444-4-000-0000",
+ "SUPERFICIE":325,
+ "SUPERFIC_1":500,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000933603137222,
+ "OBJECTID":88173,
+ "Join_Count":2,
+ "TARGET_FID":88173,
+ "feature_id":"10e416e2-857a-4ba9-8683-c538a8d3a37a",
+ "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":3.68,
+ "heightmax":10.03,
+ "elevmin":37.57,
+ "elevmax":41.8,
+ "bldgarea":205.95,
+ "comment":" ",
+ "OBJECTID_2":88173,
+ "Shape_Le_1":0.000933603137222,
+ "Shape_Ar_1":2.00166494129e-08,
+ "OBJECTID_3":88173,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88172,
+ "g_objectid":"943060",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160895",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994132544440000000",
+ "g_sup_tota":"325.2",
+ "g_geometry":"0.000925348",
+ "g_geomet_1":"3.77051e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000933603137222,
+ "Shape_Area":2.00166494129e-08,
+ "Shape_Le_3":0.000933602727104,
+ "Shape_Ar_2":2.00166494129e-08,
+ "building_height":3.175
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1524,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56045824267561,
+ 45.53031401552969
+ ],
+ [
+ -73.56052833133927,
+ 45.53034724907658
+ ],
+ [
+ -73.560631612181,
+ 45.530239100204604
+ ],
+ [
+ -73.56056161344955,
+ 45.53020576773229
+ ],
+ [
+ -73.56045824267561,
+ 45.53031401552969
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1524,
+ "ID_UEV":"01022509",
+ "CIVIQUE_DE":" 2256",
+ "CIVIQUE_FI":" 2260",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-03-6871-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":251,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000454317136922,
+ "OBJECTID":88175,
+ "Join_Count":1,
+ "TARGET_FID":88175,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":88175,
+ "Shape_Le_1":0.000454317136922,
+ "Shape_Ar_1":1.10175325889e-08,
+ "OBJECTID_3":88175,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88174,
+ "g_objectid":"940365",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423697",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303687120000000",
+ "g_sup_tota":"187.2",
+ "g_geometry":"0.000741132",
+ "g_geomet_1":"2.15661e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000454317136922,
+ "Shape_Area":1.10175325889e-08,
+ "Shape_Le_3":0.000454318117602,
+ "Shape_Ar_2":1.10175325889e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1525,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54981010687278,
+ 45.53091978267213
+ ],
+ [
+ -73.54988261831004,
+ 45.53095220323189
+ ],
+ [
+ -73.54996000677075,
+ 45.53086697268294
+ ],
+ [
+ -73.54996539820641,
+ 45.530859955273016
+ ],
+ [
+ -73.54996266606604,
+ 45.530858749282146
+ ],
+ [
+ -73.54996196639348,
+ 45.530858349083836
+ ],
+ [
+ -73.54995476642118,
+ 45.53086654910226
+ ],
+ [
+ -73.54988828853553,
+ 45.53083749470491
+ ],
+ [
+ -73.54981010687278,
+ 45.53091978267213
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1525,
+ "ID_UEV":"01018843",
+ "CIVIQUE_DE":" 1692",
+ "CIVIQUE_FI":" 1692",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-0139-9-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":136,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000404161297306,
+ "OBJECTID":88178,
+ "Join_Count":1,
+ "TARGET_FID":88178,
+ "feature_id":"6f30f9af-b226-4124-b778-93c9694c9bb7",
+ "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":34.35,
+ "elevmin":22,
+ "elevmax":23.39,
+ "bldgarea":1398.34,
+ "comment":" ",
+ "OBJECTID_2":88178,
+ "Shape_Le_1":0.000404161297306,
+ "Shape_Ar_1":8.42486763677e-09,
+ "OBJECTID_3":88178,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88177,
+ "g_objectid":"940697",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424289",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004384954260000000",
+ "g_sup_tota":"161.3",
+ "g_geometry":"0.00066579",
+ "g_geomet_1":"1.91328e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000404161297306,
+ "Shape_Area":8.42486763677e-09,
+ "Shape_Le_3":0.000404162187889,
+ "Shape_Ar_2":8.42486763677e-09,
+ "building_height":15.915000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1526,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5540783810343,
+ 45.52088600523525
+ ],
+ [
+ -73.5543656604687,
+ 45.521022181478784
+ ],
+ [
+ -73.554409724551,
+ 45.52097499495035
+ ],
+ [
+ -73.55411951692402,
+ 45.5208409680865
+ ],
+ [
+ -73.5540783810343,
+ 45.52088600523525
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1526,
+ "ID_UEV":"01022368",
+ "CIVIQUE_DE":" 1471",
+ "CIVIQUE_FI":" 1473",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-53-6236-5-000-0000",
+ "SUPERFICIE":166,
+ "SUPERFIC_1":277,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000763139613152,
+ "OBJECTID":88180,
+ "Join_Count":1,
+ "TARGET_FID":88180,
+ "feature_id":"bb334a25-b82d-4066-be5d-5fe0183748e4",
+ "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.48,
+ "heightmax":13.39,
+ "elevmin":16.89,
+ "elevmax":19.55,
+ "bldgarea":1730.18,
+ "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_2":88180,
+ "Shape_Le_1":0.000763139613152,
+ "Shape_Ar_1":1.90698624193e-08,
+ "OBJECTID_3":88180,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88179,
+ "g_objectid":"938255",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567709",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004253623650000000",
+ "g_sup_tota":"166.2",
+ "g_geometry":"0.000770943",
+ "g_geomet_1":"1.92965e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000763139613152,
+ "Shape_Area":1.90698624193e-08,
+ "Shape_Le_3":0.000763139940669,
+ "Shape_Ar_2":1.90698624193e-08,
+ "building_height":5.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1527,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55136458592874,
+ 45.53127171167045
+ ],
+ [
+ -73.55136926600068,
+ 45.53127385025828
+ ],
+ [
+ -73.55144066587587,
+ 45.53119644920706
+ ],
+ [
+ -73.55146376586195,
+ 45.53120694879195
+ ],
+ [
+ -73.55142756635095,
+ 45.53124625006468
+ ],
+ [
+ -73.5514276661757,
+ 45.53124634988943
+ ],
+ [
+ -73.55152716626755,
+ 45.53129214966327
+ ],
+ [
+ -73.55153026623064,
+ 45.53128875022594
+ ],
+ [
+ -73.55155106575093,
+ 45.53126504949274
+ ],
+ [
+ -73.5515739085309,
+ 45.53127495372643
+ ],
+ [
+ -73.55165400574961,
+ 45.531184188749606
+ ],
+ [
+ -73.55158546571852,
+ 45.531153449022746
+ ],
+ [
+ -73.55150414542182,
+ 45.53111703367446
+ ],
+ [
+ -73.55136458592874,
+ 45.53127171167045
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1527,
+ "ID_UEV":"01018775",
+ "CIVIQUE_DE":" 1829",
+ "CIVIQUE_FI":" 1835",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-74-7680-7-000-0000",
+ "SUPERFICIE":284,
+ "SUPERFIC_1":314,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000853567518847,
+ "OBJECTID":88181,
+ "Join_Count":1,
+ "TARGET_FID":88181,
+ "feature_id":"32bde229-c231-4ab1-9b7f-8fae3afc6f61",
+ "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.51,
+ "heightmax":32.73,
+ "elevmin":19.16,
+ "elevmax":21.85,
+ "bldgarea":1317.59,
+ "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_2":88181,
+ "Shape_Le_1":0.000853567518847,
+ "Shape_Ar_1":2.28578282843e-08,
+ "OBJECTID_3":88181,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88180,
+ "g_objectid":"940660",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424233",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004374768070000000",
+ "g_sup_tota":"284.1",
+ "g_geometry":"0.000754959",
+ "g_geomet_1":"3.33596e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000853567518847,
+ "Shape_Area":2.28578282843e-08,
+ "Shape_Le_3":0.000853567020082,
+ "Shape_Ar_2":2.28578282843e-08,
+ "building_height":15.11
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1528,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5507382548884,
+ 45.52304904742589
+ ],
+ [
+ -73.55081894655898,
+ 45.523087587872176
+ ],
+ [
+ -73.55091205067245,
+ 45.522987942989474
+ ],
+ [
+ -73.55083135630389,
+ 45.522949407039796
+ ],
+ [
+ -73.5507382548884,
+ 45.52304904742589
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1528,
+ "ID_UEV":"01022135",
+ "CIVIQUE_DE":" 1275",
+ "CIVIQUE_FI":" 1281",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-85-2969-7-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":264,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000451587598148,
+ "OBJECTID":88184,
+ "Join_Count":1,
+ "TARGET_FID":88184,
+ "feature_id":"9eeb7926-ecc8-4733-8a07-4fbf93032822",
+ "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.51,
+ "heightmax":29.65,
+ "elevmin":16.2,
+ "elevmax":17.71,
+ "bldgarea":1649.56,
+ "comment":" ",
+ "OBJECTID_2":88184,
+ "Shape_Le_1":0.000451587598148,
+ "Shape_Ar_1":1.16284960143e-08,
+ "OBJECTID_3":88184,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88183,
+ "g_objectid":"942309",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567835",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004285227260000000",
+ "g_sup_tota":"159.3",
+ "g_geometry":"0.000607802",
+ "g_geomet_1":"1.82707e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000451587598148,
+ "Shape_Area":1.16284960143e-08,
+ "Shape_Le_3":0.000451586948207,
+ "Shape_Ar_2":1.16284960143e-08,
+ "building_height":13.57
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1529,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55308106975741,
+ 45.53793795612207
+ ],
+ [
+ -73.55323964901244,
+ 45.53799416374995
+ ],
+ [
+ -73.55327406696647,
+ 45.53793725105359
+ ],
+ [
+ -73.55328756668969,
+ 45.53794125123805
+ ],
+ [
+ -73.55328916298633,
+ 45.53793902991259
+ ],
+ [
+ -73.55329137441925,
+ 45.537935736595266
+ ],
+ [
+ -73.55301329325073,
+ 45.537837145717994
+ ],
+ [
+ -73.5530099675578,
+ 45.537841751146196
+ ],
+ [
+ -73.55312246734984,
+ 45.53788565065255
+ ],
+ [
+ -73.55308106975741,
+ 45.53793795612207
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1529,
+ "ID_UEV":"01025789",
+ "CIVIQUE_DE":" 2878",
+ "CIVIQUE_FI":" 2880",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1962,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-62-5124-1-000-0000",
+ "SUPERFICIE":194,
+ "SUPERFIC_1":186,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000743726419062,
+ "OBJECTID":88185,
+ "Join_Count":1,
+ "TARGET_FID":88185,
+ "feature_id":"a7dfb750-14b3-4079-b57e-643aa0658cc2",
+ "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":14.35,
+ "elevmin":18.18,
+ "elevmax":19.76,
+ "bldgarea":1156.58,
+ "comment":" ",
+ "OBJECTID_2":88185,
+ "Shape_Le_1":0.000743726419062,
+ "Shape_Ar_1":1.2813345665e-08,
+ "OBJECTID_3":88185,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88184,
+ "g_objectid":"943849",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361011",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004462430650000000",
+ "g_sup_tota":"769.2",
+ "g_geometry":"0.00121194",
+ "g_geomet_1":"8.86037e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000743726419062,
+ "Shape_Area":1.2813345665e-08,
+ "Shape_Le_3":0.000743727628561,
+ "Shape_Ar_2":1.2813345665e-08,
+ "building_height":6.92
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1530,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55301329325073,
+ 45.537837145717994
+ ],
+ [
+ -73.55329137441925,
+ 45.537935736595266
+ ],
+ [
+ -73.55345371823636,
+ 45.53769390619911
+ ],
+ [
+ -73.5534470668505,
+ 45.53769155087467
+ ],
+ [
+ -73.55319036706364,
+ 45.53760135067209
+ ],
+ [
+ -73.55318496753407,
+ 45.537599450404606
+ ],
+ [
+ -73.55301329325073,
+ 45.537837145717994
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1530,
+ "ID_UEV":"01025791",
+ "CIVIQUE_DE":" 2850",
+ "CIVIQUE_FI":" 2870",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-62-4306-5-000-0000",
+ "SUPERFICIE":769,
+ "SUPERFIC_1":1303,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00116438465606,
+ "OBJECTID":88186,
+ "Join_Count":1,
+ "TARGET_FID":88186,
+ "feature_id":"a7dfb750-14b3-4079-b57e-643aa0658cc2",
+ "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":14.35,
+ "elevmin":18.18,
+ "elevmax":19.76,
+ "bldgarea":1156.58,
+ "comment":" ",
+ "OBJECTID_2":88186,
+ "Shape_Le_1":0.00116438465606,
+ "Shape_Ar_1":8.16772693239e-08,
+ "OBJECTID_3":88186,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88185,
+ "g_objectid":"943849",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361011",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"10",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004462430650000000",
+ "g_sup_tota":"769.2",
+ "g_geometry":"0.00121194",
+ "g_geomet_1":"8.86037e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00116438465606,
+ "Shape_Area":8.16772693239e-08,
+ "Shape_Le_3":0.00116438457363,
+ "Shape_Ar_2":8.16772693239e-08,
+ "building_height":6.92
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1531,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5459878469834,
+ 45.52819515972914
+ ],
+ [
+ -73.54599886367846,
+ 45.52818874846227
+ ],
+ [
+ -73.5460193637245,
+ 45.528207349140146
+ ],
+ [
+ -73.54601956427332,
+ 45.52820774843914
+ ],
+ [
+ -73.5460467642686,
+ 45.52820524922317
+ ],
+ [
+ -73.54604186386277,
+ 45.52817724883126
+ ],
+ [
+ -73.54604176403802,
+ 45.52817724883126
+ ],
+ [
+ -73.5459927869594,
+ 45.52817499063361
+ ],
+ [
+ -73.54597830247852,
+ 45.5281908546745
+ ],
+ [
+ -73.54598141773009,
+ 45.52819225941553
+ ],
+ [
+ -73.5459878469834,
+ 45.52819515972914
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54600789017384,
+ 45.528158451201854
+ ],
+ [
+ -73.54601896442551,
+ 45.528163649283286
+ ],
+ [
+ -73.54602216421335,
+ 45.52816024894663
+ ],
+ [
+ -73.54611166384406,
+ 45.5280664487579
+ ],
+ [
+ -73.54625828031723,
+ 45.528135563455784
+ ],
+ [
+ -73.54633079535176,
+ 45.52805614702386
+ ],
+ [
+ -73.54618066432805,
+ 45.52798594864291
+ ],
+ [
+ -73.54618016430499,
+ 45.527986548490716
+ ],
+ [
+ -73.54610596394093,
+ 45.52805124841667
+ ],
+ [
+ -73.54610576429144,
+ 45.528051349140746
+ ],
+ [
+ -73.54610570043957,
+ 45.52805133295295
+ ],
+ [
+ -73.54600789017384,
+ 45.528158451201854
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1531,
+ "ID_UEV":"01018596",
+ "CIVIQUE_DE":" 605",
+ "CIVIQUE_FI":" 615",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-11-9434-7-000-0000",
+ "SUPERFICIE":440,
+ "SUPERFIC_1":438,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100418450212,
+ "OBJECTID":88187,
+ "Join_Count":2,
+ "TARGET_FID":88187,
+ "feature_id":"6ea6693c-43f0-47b5-8738-7dea62f3ad64",
+ "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.88,
+ "heightmax":3.16,
+ "elevmin":19.23,
+ "elevmax":20.03,
+ "bldgarea":16.63,
+ "comment":" ",
+ "OBJECTID_2":88187,
+ "Shape_Le_1":0.00100418450212,
+ "Shape_Ar_1":2.08231415525e-08,
+ "OBJECTID_3":88187,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88186,
+ "g_objectid":"940737",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424350",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014321006160000000",
+ "g_sup_tota":"639.4",
+ "g_geometry":"0.00121831",
+ "g_geomet_1":"7.36396e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100418450212,
+ "Shape_Area":2.08231415525e-08,
+ "Shape_Le_3":0.00100418475468,
+ "Shape_Ar_2":2.08231415525e-08,
+ "building_height":0.6400000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1532,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5459633017868,
+ 45.52818409087339
+ ],
+ [
+ -73.54597782583784,
+ 45.52819625420406
+ ],
+ [
+ -73.54598141773009,
+ 45.52819225941553
+ ],
+ [
+ -73.54597830247852,
+ 45.5281908546745
+ ],
+ [
+ -73.5459633017868,
+ 45.52818409087339
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54563795225154,
+ 45.52815884420559
+ ],
+ [
+ -73.5456390638136,
+ 45.52815934872526
+ ],
+ [
+ -73.5457269644497,
+ 45.528063848817865
+ ],
+ [
+ -73.54572578813645,
+ 45.52806331372125
+ ],
+ [
+ -73.54563795225154,
+ 45.52815884420559
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54574496438045,
+ 45.52805424855502
+ ],
+ [
+ -73.54583346396504,
+ 45.528094648799296
+ ],
+ [
+ -73.54591066446744,
+ 45.52801094889647
+ ],
+ [
+ -73.54595086416289,
+ 45.52802934902553
+ ],
+ [
+ -73.5460148644163,
+ 45.527953148569246
+ ],
+ [
+ -73.54597586441645,
+ 45.527937048905976
+ ],
+ [
+ -73.54599276447634,
+ 45.5279176487308
+ ],
+ [
+ -73.54596366421357,
+ 45.527906448574036
+ ],
+ [
+ -73.54595726373857,
+ 45.527903248786195
+ ],
+ [
+ -73.54594246449498,
+ 45.52792084851864
+ ],
+ [
+ -73.54589656399708,
+ 45.527901248693965
+ ],
+ [
+ -73.5458516644446,
+ 45.527953349118064
+ ],
+ [
+ -73.54584206418176,
+ 45.527949149284105
+ ],
+ [
+ -73.54583896421867,
+ 45.52795244889669
+ ],
+ [
+ -73.54574496438045,
+ 45.52805424855502
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1532,
+ "ID_UEV":"01018598",
+ "CIVIQUE_DE":" 583",
+ "CIVIQUE_FI":" 593",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-21-1830-3-000-0000",
+ "SUPERFICIE":732,
+ "SUPERFIC_1":561,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00106265181811,
+ "OBJECTID":88188,
+ "Join_Count":3,
+ "TARGET_FID":88188,
+ "feature_id":"26341114-e701-490b-8dec-dac9cf16f0cc",
+ "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":3.09,
+ "heightmax":10.17,
+ "elevmin":19.91,
+ "elevmax":20.3,
+ "bldgarea":236.87,
+ "comment":" ",
+ "OBJECTID_2":88188,
+ "Shape_Le_1":0.00106265181811,
+ "Shape_Ar_1":2.41567588875e-08,
+ "OBJECTID_3":88188,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88187,
+ "g_objectid":"940737",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424350",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014321006160000000",
+ "g_sup_tota":"639.4",
+ "g_geometry":"0.00121831",
+ "g_geomet_1":"7.36396e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00106265181811,
+ "Shape_Area":2.41567588875e-08,
+ "Shape_Le_3":0.00106265290156,
+ "Shape_Ar_2":2.41567588875e-08,
+ "building_height":3.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1533,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55106700925691,
+ 45.5318082292167
+ ],
+ [
+ -73.5510699662278,
+ 45.53180934977197
+ ],
+ [
+ -73.55107316601564,
+ 45.531810650191645
+ ],
+ [
+ -73.5512012663472,
+ 45.5318640501361
+ ],
+ [
+ -73.55128861210162,
+ 45.53190045649117
+ ],
+ [
+ -73.55136833790031,
+ 45.53180765724788
+ ],
+ [
+ -73.55116816589998,
+ 45.53171804969853
+ ],
+ [
+ -73.55115106349263,
+ 45.53171039197131
+ ],
+ [
+ -73.55106700925691,
+ 45.5318082292167
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1533,
+ "ID_UEV":"01018906",
+ "CIVIQUE_DE":" 1853",
+ "CIVIQUE_FI":" 1867",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-85-0148-8-000-0000",
+ "SUPERFICIE":491,
+ "SUPERFIC_1":409,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000729412218134,
+ "OBJECTID":88189,
+ "Join_Count":1,
+ "TARGET_FID":88189,
+ "feature_id":"4e994e8e-10a7-4607-9b1a-da44749411b7",
+ "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.53,
+ "heightmax":30.99,
+ "elevmin":18.44,
+ "elevmax":23,
+ "bldgarea":2032.43,
+ "comment":" ",
+ "OBJECTID_2":88189,
+ "Shape_Le_1":0.000729412218134,
+ "Shape_Ar_1":2.86596708198e-08,
+ "OBJECTID_3":88189,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88188,
+ "g_objectid":"941226",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425178",
+ "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":"66023004375905570000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654992",
+ "g_geomet_1":"1.88378e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000729412218134,
+ "Shape_Area":2.86596708198e-08,
+ "Shape_Le_3":0.00072941101147,
+ "Shape_Ar_2":2.86596708198e-08,
+ "building_height":14.229999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1534,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55254856948274,
+ 45.53787371754832
+ ],
+ [
+ -73.55260426719502,
+ 45.537893350647906
+ ],
+ [
+ -73.55261170189037,
+ 45.53789597486964
+ ],
+ [
+ -73.55269172176739,
+ 45.537783614472524
+ ],
+ [
+ -73.55262927913977,
+ 45.53776038678272
+ ],
+ [
+ -73.55254856948274,
+ 45.53787371754832
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1534,
+ "ID_UEV":"01025371",
+ "CIVIQUE_DE":" 2210",
+ "CIVIQUE_FI":" 2214",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-62-8912-6-000-0000",
+ "SUPERFICIE":135,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000410639730411,
+ "OBJECTID":88190,
+ "Join_Count":1,
+ "TARGET_FID":88190,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88190,
+ "Shape_Le_1":0.000410639730411,
+ "Shape_Ar_1":8.91295416807e-09,
+ "OBJECTID_3":88190,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88189,
+ "g_objectid":"943844",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361005",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004462940920000000",
+ "g_sup_tota":"136.8",
+ "g_geometry":"0.000617692",
+ "g_geomet_1":"1.57507e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000410639730411,
+ "Shape_Area":8.91295416807e-09,
+ "Shape_Le_3":0.000410638683759,
+ "Shape_Ar_2":8.91295416807e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1535,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55261170189037,
+ 45.53789597486964
+ ],
+ [
+ -73.55267691802719,
+ 45.53791899391673
+ ],
+ [
+ -73.55275624003029,
+ 45.53780761378064
+ ],
+ [
+ -73.55269172176739,
+ 45.537783614472524
+ ],
+ [
+ -73.55261170189037,
+ 45.53789597486964
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1535,
+ "ID_UEV":"01025373",
+ "CIVIQUE_DE":" 2216",
+ "CIVIQUE_FI":" 2220",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-62-8414-3-000-0000",
+ "SUPERFICIE":140,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000412676835912,
+ "OBJECTID":88191,
+ "Join_Count":1,
+ "TARGET_FID":88191,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88191,
+ "Shape_Le_1":0.000412676835912,
+ "Shape_Ar_1":9.12965682558e-09,
+ "OBJECTID_3":88191,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88190,
+ "g_objectid":"943846",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361007",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004462841430000000",
+ "g_sup_tota":"139.9",
+ "g_geometry":"0.000619919",
+ "g_geomet_1":"1.60086e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000412676835912,
+ "Shape_Area":9.12965682558e-09,
+ "Shape_Le_3":0.000412677699281,
+ "Shape_Ar_2":9.12965682558e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1536,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55277178571119,
+ 45.535747100598506
+ ],
+ [
+ -73.5528594129534,
+ 45.53577723688027
+ ],
+ [
+ -73.55291883295962,
+ 45.535693147570996
+ ],
+ [
+ -73.55291436692633,
+ 45.53569175002454
+ ],
+ [
+ -73.55283696677444,
+ 45.5356675501676
+ ],
+ [
+ -73.5528584668666,
+ 45.535633549499
+ ],
+ [
+ -73.55285321482584,
+ 45.535631865068815
+ ],
+ [
+ -73.55277178571119,
+ 45.535747100598506
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1536,
+ "ID_UEV":"01024517",
+ "CIVIQUE_DE":" 2106",
+ "CIVIQUE_FI":" 2106",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-7279-8-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000468249547007,
+ "OBJECTID":88197,
+ "Join_Count":1,
+ "TARGET_FID":88197,
+ "feature_id":"eb231f79-3f89-4e44-bfc9-97de87e22a5f",
+ "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,
+ "heightmax":31.55,
+ "elevmin":18.92,
+ "elevmax":21.51,
+ "bldgarea":1919.77,
+ "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_2":88197,
+ "Shape_Le_1":0.000468249547007,
+ "Shape_Ar_1":9.29426808526e-09,
+ "OBJECTID_3":88197,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88196,
+ "g_objectid":"943669",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360807",
+ "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":"66023004369658260000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681153",
+ "g_geomet_1":"2.20747e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000468249547007,
+ "Shape_Area":9.29426808526e-09,
+ "Shape_Le_3":0.000468250283458,
+ "Shape_Ar_2":9.29426808526e-09,
+ "building_height":15.775
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1537,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55158406907138,
+ 45.52914908950917
+ ],
+ [
+ -73.5516093661012,
+ 45.52915954862456
+ ],
+ [
+ -73.55160946592596,
+ 45.52915954862456
+ ],
+ [
+ -73.55167466587497,
+ 45.52911304917817
+ ],
+ [
+ -73.55167556609635,
+ 45.52911264897986
+ ],
+ [
+ -73.55172087753832,
+ 45.529125871711905
+ ],
+ [
+ -73.55181287638499,
+ 45.529026032575636
+ ],
+ [
+ -73.55180226618349,
+ 45.52902094870811
+ ],
+ [
+ -73.55173531525445,
+ 45.528988876185984
+ ],
+ [
+ -73.55158406907138,
+ 45.52914908950917
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1537,
+ "ID_UEV":"01018438",
+ "CIVIQUE_DE":" 1705",
+ "CIVIQUE_FI":" 1709",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-72-6142-3-000-0000",
+ "SUPERFICIE":221,
+ "SUPERFIC_1":281,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000597834757821,
+ "OBJECTID":88202,
+ "Join_Count":1,
+ "TARGET_FID":88202,
+ "feature_id":"ef9f99e9-b72a-459d-a003-11d6da78defc",
+ "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.48,
+ "heightmax":34.11,
+ "elevmin":18.43,
+ "elevmax":20.99,
+ "bldgarea":2146.82,
+ "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_2":88202,
+ "Shape_Le_1":0.000597834757821,
+ "Shape_Ar_1":1.42878616459e-08,
+ "OBJECTID_3":88202,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88201,
+ "g_objectid":"940821",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424482",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004372554660000000",
+ "g_sup_tota":"226.2",
+ "g_geometry":"0.00078901",
+ "g_geomet_1":"2.60564e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000597834757821,
+ "Shape_Area":1.42878616459e-08,
+ "Shape_Le_3":0.000597834407036,
+ "Shape_Ar_2":1.42878616459e-08,
+ "building_height":15.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1538,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55267691802719,
+ 45.53791899391673
+ ],
+ [
+ -73.55274038678127,
+ 45.5379413960289
+ ],
+ [
+ -73.55281902799759,
+ 45.53783097007351
+ ],
+ [
+ -73.55275624003029,
+ 45.53780761378064
+ ],
+ [
+ -73.55267691802719,
+ 45.53791899391673
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1538,
+ "ID_UEV":"01025375",
+ "CIVIQUE_DE":" 2222",
+ "CIVIQUE_FI":" 2226",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-62-7917-6-000-0000",
+ "SUPERFICIE":135,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000406603163836,
+ "OBJECTID":88208,
+ "Join_Count":1,
+ "TARGET_FID":88208,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88208,
+ "Shape_Le_1":0.000406603163836,
+ "Shape_Ar_1":8.80815777839e-09,
+ "OBJECTID_3":88208,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88207,
+ "g_objectid":"943848",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361009",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004462732030000000",
+ "g_sup_tota":"200.7",
+ "g_geometry":"0.000681276",
+ "g_geomet_1":"2.31126e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000406603163836,
+ "Shape_Area":8.80815777839e-09,
+ "Shape_Le_3":0.000406603242503,
+ "Shape_Ar_2":8.80815777839e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1539,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55453241186316,
+ 45.53063202389908
+ ],
+ [
+ -73.55468938942563,
+ 45.530703644108186
+ ],
+ [
+ -73.55476506827513,
+ 45.530626227768494
+ ],
+ [
+ -73.55460816625572,
+ 45.53055421815294
+ ],
+ [
+ -73.55453241186316,
+ 45.53063202389908
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55451593448463,
+ 45.53060504153973
+ ],
+ [
+ -73.55451926737214,
+ 45.53060664862823
+ ],
+ [
+ -73.55458225319028,
+ 45.530542325518205
+ ],
+ [
+ -73.55457879799498,
+ 45.530540740013436
+ ],
+ [
+ -73.55451593448463,
+ 45.53060504153973
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1539,
+ "ID_UEV":"01019157",
+ "CIVIQUE_DE":" 2316",
+ "CIVIQUE_FI":" 2322",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1943,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-54-3213-3-000-0000",
+ "SUPERFICIE":182,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000749488771013,
+ "OBJECTID":88220,
+ "Join_Count":1,
+ "TARGET_FID":88220,
+ "feature_id":"7073896e-867e-4f45-b647-51498746bc50",
+ "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.48,
+ "heightmax":38.75,
+ "elevmin":17.54,
+ "elevmax":20.03,
+ "bldgarea":2126.07,
+ "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_2":88220,
+ "Shape_Le_1":0.000749488771013,
+ "Shape_Ar_1":1.79365483635e-08,
+ "OBJECTID_3":88220,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88219,
+ "g_objectid":"940859",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424538",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004354270590000000",
+ "g_sup_tota":"126.9",
+ "g_geometry":"0.000557351",
+ "g_geomet_1":"1.43548e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000749488771013,
+ "Shape_Area":1.79365483635e-08,
+ "Shape_Le_3":0.000749488634844,
+ "Shape_Ar_2":1.79365483635e-08,
+ "building_height":18.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1540,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54940090904655,
+ 45.53095812346892
+ ],
+ [
+ -73.54933336546429,
+ 45.53093165012585
+ ],
+ [
+ -73.54924976538621,
+ 45.53102674983493
+ ],
+ [
+ -73.54929236537221,
+ 45.53104274967345
+ ],
+ [
+ -73.54924756474516,
+ 45.53110164987154
+ ],
+ [
+ -73.54924756474516,
+ 45.53110174969628
+ ],
+ [
+ -73.54926904325359,
+ 45.53111210179236
+ ],
+ [
+ -73.54940090904655,
+ 45.53095812346892
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1540,
+ "ID_UEV":"01018927",
+ "CIVIQUE_DE":" 1671",
+ "CIVIQUE_FI":" 1673",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-94-5058-6-000-0000",
+ "SUPERFICIE":170,
+ "SUPERFIC_1":132,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000545344302457,
+ "OBJECTID":88221,
+ "Join_Count":1,
+ "TARGET_FID":88221,
+ "feature_id":"303a4421-75af-424d-ba33-bc6b6e90f934",
+ "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.56,
+ "heightmax":34.21,
+ "elevmin":22.67,
+ "elevmax":23.71,
+ "bldgarea":660.06,
+ "comment":" ",
+ "OBJECTID_2":88221,
+ "Shape_Le_1":0.000545344302457,
+ "Shape_Ar_1":1.06339899607e-08,
+ "OBJECTID_3":88221,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88220,
+ "g_objectid":"941245",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425204",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004394416350000000",
+ "g_sup_tota":"330.7",
+ "g_geometry":"0.000817833",
+ "g_geomet_1":"3.8095e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000545344302457,
+ "Shape_Area":1.06339899607e-08,
+ "Shape_Le_3":0.000545344409757,
+ "Shape_Ar_2":1.06339899607e-08,
+ "building_height":15.825000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1541,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54797455999979,
+ 45.530601378601034
+ ],
+ [
+ -73.54805823292295,
+ 45.53063688473474
+ ],
+ [
+ -73.54810766505854,
+ 45.53058334989198
+ ],
+ [
+ -73.54810266482797,
+ 45.530581249975
+ ],
+ [
+ -73.54803586498502,
+ 45.53055274956004
+ ],
+ [
+ -73.54808046506325,
+ 45.53050124898375
+ ],
+ [
+ -73.54822755188187,
+ 45.53056420422494
+ ],
+ [
+ -73.54829573668074,
+ 45.53048482826251
+ ],
+ [
+ -73.54813372921008,
+ 45.53041608498463
+ ],
+ [
+ -73.54797455999979,
+ 45.530601378601034
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1541,
+ "ID_UEV":"01018932",
+ "CIVIQUE_DE":" 1583",
+ "CIVIQUE_FI":" 1591",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-04-4003-0-000-0000",
+ "SUPERFICIE":361,
+ "SUPERFIC_1":285,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000994833923821,
+ "OBJECTID":88222,
+ "Join_Count":1,
+ "TARGET_FID":88222,
+ "feature_id":"15061879-18ed-4193-a9a4-11668c1d63cc",
+ "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.59,
+ "heightmax":11.44,
+ "elevmin":18.34,
+ "elevmax":22.03,
+ "bldgarea":1118.3,
+ "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_2":88222,
+ "Shape_Le_1":0.000994833923821,
+ "Shape_Ar_1":2.48503835982e-08,
+ "OBJECTID_3":88222,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88221,
+ "g_objectid":"945749",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1424918",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4299",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014304271100000000",
+ "g_sup_tota":"360.5",
+ "g_geometry":"0.000847156",
+ "g_geomet_1":"4.15171e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000994833923821,
+ "Shape_Area":2.48503835982e-08,
+ "Shape_Le_3":0.000994833047357,
+ "Shape_Ar_2":2.48503835982e-08,
+ "building_height":5.425
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1542,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55551605344496,
+ 45.53637770251925
+ ],
+ [
+ -73.55560529407092,
+ 45.5364070141227
+ ],
+ [
+ -73.55567153903215,
+ 45.53631217971362
+ ],
+ [
+ -73.55558375800587,
+ 45.53628085362879
+ ],
+ [
+ -73.55551605344496,
+ 45.53637770251925
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1542,
+ "ID_UEV":"01024452",
+ "CIVIQUE_DE":" 2285",
+ "CIVIQUE_FI":" 2285",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-6053-7-000-0000",
+ "SUPERFICIE":195,
+ "SUPERFIC_1":260,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000420982624289,
+ "OBJECTID":88226,
+ "Join_Count":1,
+ "TARGET_FID":88226,
+ "feature_id":"6dee0f31-2584-4450-ab8a-697225d43f2d",
+ "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":36.1,
+ "elevmin":19.38,
+ "elevmax":25.25,
+ "bldgarea":2093.72,
+ "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_2":88226,
+ "Shape_Le_1":0.000420982624289,
+ "Shape_Ar_1":1.05136085463e-08,
+ "OBJECTID_3":88226,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88225,
+ "g_objectid":"943875",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361071",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440674900000000",
+ "g_sup_tota":"192",
+ "g_geometry":"0.000683023",
+ "g_geomet_1":"2.21204e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000420982624289,
+ "Shape_Area":1.05136085463e-08,
+ "Shape_Le_3":0.000420982482306,
+ "Shape_Ar_2":1.05136085463e-08,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1543,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55558375800587,
+ 45.53628085362879
+ ],
+ [
+ -73.55550556824922,
+ 45.53625294946434
+ ],
+ [
+ -73.55550546842447,
+ 45.53625294946434
+ ],
+ [
+ -73.55544656822639,
+ 45.53633975022959
+ ],
+ [
+ -73.55544426776059,
+ 45.53634314966692
+ ],
+ [
+ -73.55546496835545,
+ 45.53634964996667
+ ],
+ [
+ -73.55545906790351,
+ 45.536358949855945
+ ],
+ [
+ -73.55545986830013,
+ 45.53635925022951
+ ],
+ [
+ -73.55551605344496,
+ 45.53637770251925
+ ],
+ [
+ -73.55558375800587,
+ 45.53628085362879
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1543,
+ "ID_UEV":"01024453",
+ "CIVIQUE_DE":" 2275",
+ "CIVIQUE_FI":" 2275",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-6749-0-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":255,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000402992492797,
+ "OBJECTID":88227,
+ "Join_Count":1,
+ "TARGET_FID":88227,
+ "feature_id":"6dee0f31-2584-4450-ab8a-697225d43f2d",
+ "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":36.1,
+ "elevmin":19.38,
+ "elevmax":25.25,
+ "bldgarea":2093.72,
+ "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_2":88227,
+ "Shape_Le_1":0.000402992492797,
+ "Shape_Ar_1":9.22933060904e-09,
+ "OBJECTID_3":88227,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88226,
+ "g_objectid":"943875",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361071",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440674900000000",
+ "g_sup_tota":"192",
+ "g_geometry":"0.000683023",
+ "g_geomet_1":"2.21204e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000402992492797,
+ "Shape_Area":9.22933060904e-09,
+ "Shape_Le_3":0.000402993566304,
+ "Shape_Ar_2":9.22933060904e-09,
+ "building_height":17.8
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1544,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5537100421066,
+ 45.53584077578147
+ ],
+ [
+ -73.55374569842708,
+ 45.53585341665215
+ ],
+ [
+ -73.55374654828643,
+ 45.535852214258576
+ ],
+ [
+ -73.55374286736128,
+ 45.53585114946127
+ ],
+ [
+ -73.5537100421066,
+ 45.53584077578147
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5538681384257,
+ 45.53568013797828
+ ],
+ [
+ -73.55385366743465,
+ 45.535677949927745
+ ],
+ [
+ -73.55385746707029,
+ 45.53566555007537
+ ],
+ [
+ -73.55385296686278,
+ 45.535664649854006
+ ],
+ [
+ -73.55380306707973,
+ 45.53565494976641
+ ],
+ [
+ -73.55380296725498,
+ 45.53565494976641
+ ],
+ [
+ -73.5537051668818,
+ 45.53577714964604
+ ],
+ [
+ -73.5537051668818,
+ 45.53577724947078
+ ],
+ [
+ -73.55376236736122,
+ 45.53579924958599
+ ],
+ [
+ -73.55377934656144,
+ 45.53580579665049
+ ],
+ [
+ -73.5538681384257,
+ 45.53568013797828
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1544,
+ "ID_UEV":"01024454",
+ "CIVIQUE_DE":" 2175",
+ "CIVIQUE_FI":" 2181",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1927,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-0082-3-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":314,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000550652296302,
+ "OBJECTID":88228,
+ "Join_Count":2,
+ "TARGET_FID":88228,
+ "feature_id":"6b50014f-8c7d-4792-8f90-963845df504b",
+ "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,
+ "heightmax":32.69,
+ "elevmin":18.16,
+ "elevmax":19.94,
+ "bldgarea":1595.17,
+ "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_2":88228,
+ "Shape_Le_1":0.000550652296302,
+ "Shape_Ar_1":1.14227551051e-08,
+ "OBJECTID_3":88228,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88227,
+ "g_objectid":"943635",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360792",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004460090860000000",
+ "g_sup_tota":"456.9",
+ "g_geometry":"0.00096127",
+ "g_geomet_1":"5.26259e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000550652296302,
+ "Shape_Area":1.14227551051e-08,
+ "Shape_Le_3":0.000550652217615,
+ "Shape_Ar_2":1.14227551051e-08,
+ "building_height":16.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1545,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54726959673634,
+ 45.52940471460619
+ ],
+ [
+ -73.54748338267382,
+ 45.52949816226067
+ ],
+ [
+ -73.54749386517159,
+ 45.52948524889541
+ ],
+ [
+ -73.54744656532857,
+ 45.529466649116856
+ ],
+ [
+ -73.54746366503795,
+ 45.52944544849895
+ ],
+ [
+ -73.54743426530095,
+ 45.52943414851744
+ ],
+ [
+ -73.54744898000827,
+ 45.52941563417447
+ ],
+ [
+ -73.54732963008021,
+ 45.52936274504494
+ ],
+ [
+ -73.54729366529226,
+ 45.52940344926007
+ ],
+ [
+ -73.54727696488187,
+ 45.5293961485637
+ ],
+ [
+ -73.54726959673634,
+ 45.52940471460619
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1545,
+ "ID_UEV":"01018980",
+ "CIVIQUE_DE":" 2461",
+ "CIVIQUE_FI":" 2463",
+ "NOM_RUE":"rue Champagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Couvent",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-9680-4-000-0000",
+ "SUPERFICIE":148,
+ "SUPERFIC_1":143,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000597543525815,
+ "OBJECTID":88237,
+ "Join_Count":1,
+ "TARGET_FID":88237,
+ "feature_id":"9ce3ed00-ce4e-473d-85e6-b8c371c20f50",
+ "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.47,
+ "heightmax":10.09,
+ "elevmin":18.88,
+ "elevmax":19.94,
+ "bldgarea":384.74,
+ "comment":" ",
+ "OBJECTID_2":88237,
+ "Shape_Le_1":0.000597543525815,
+ "Shape_Ar_1":1.04186495262e-08,
+ "OBJECTID_3":88237,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88236,
+ "g_objectid":"944899",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel institutionnel",
+ "g_no_lot":"1424309",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1551",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014302968040000000",
+ "g_sup_tota":"147.9",
+ "g_geometry":"0.0006792",
+ "g_geomet_1":"1.70142e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000597543525815,
+ "Shape_Area":1.04186495262e-08,
+ "Shape_Le_3":0.000597544240344,
+ "Shape_Ar_2":1.04186495262e-08,
+ "building_height":4.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1546,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55597350439555,
+ 45.5315874744327
+ ],
+ [
+ -73.55597656838577,
+ 45.53158894842153
+ ],
+ [
+ -73.55596076819674,
+ 45.53160524863361
+ ],
+ [
+ -73.55602553197457,
+ 45.53163511601809
+ ],
+ [
+ -73.55610421995563,
+ 45.53155060402745
+ ],
+ [
+ -73.55603711614184,
+ 45.53151821854125
+ ],
+ [
+ -73.55597350439555,
+ 45.5315874744327
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1546,
+ "ID_UEV":"01023082",
+ "CIVIQUE_DE":" 2103",
+ "CIVIQUE_FI":" 2105",
+ "NOM_RUE":"place Larivi\u00c3\u00a8re (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1909,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-45-2420-3-000-0000",
+ "SUPERFICIE":96,
+ "SUPERFIC_1":118,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000381439929856,
+ "OBJECTID":88238,
+ "Join_Count":1,
+ "TARGET_FID":88238,
+ "feature_id":"f01ea000-4941-439e-9161-e2b46bad9836",
+ "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.61,
+ "heightmax":29.91,
+ "elevmin":18.4,
+ "elevmax":19.08,
+ "bldgarea":259.39,
+ "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_2":88238,
+ "Shape_Le_1":0.000381439929856,
+ "Shape_Ar_1":8.15573181825e-09,
+ "OBJECTID_3":88238,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88237,
+ "g_objectid":"940525",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424022",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004345162580000000",
+ "g_sup_tota":"187.7",
+ "g_geometry":"0.000602956",
+ "g_geomet_1":"2.15937e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000381439929856,
+ "Shape_Area":8.15573181825e-09,
+ "Shape_Le_3":0.00038143993164,
+ "Shape_Ar_2":8.15573181825e-09,
+ "building_height":13.65
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1547,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55224172979383,
+ 45.52445120650827
+ ],
+ [
+ -73.55242884993332,
+ 45.52453833013013
+ ],
+ [
+ -73.55248657831478,
+ 45.524481999295126
+ ],
+ [
+ -73.55236264454226,
+ 45.52442438962418
+ ],
+ [
+ -73.55233336621373,
+ 45.52445404746661
+ ],
+ [
+ -73.55226676602028,
+ 45.52442154776651
+ ],
+ [
+ -73.55224172979383,
+ 45.52445120650827
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1547,
+ "ID_UEV":"01022314",
+ "CIVIQUE_DE":" 1968",
+ "CIVIQUE_FI":" 1972",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-77-1326-8-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":301,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000578329894855,
+ "OBJECTID":88240,
+ "Join_Count":1,
+ "TARGET_FID":88240,
+ "feature_id":"fd40040d-dff9-4c2a-aac7-6087d0899ae9",
+ "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.53,
+ "heightmax":30.92,
+ "elevmin":16.77,
+ "elevmax":18.72,
+ "bldgarea":1739.44,
+ "comment":" ",
+ "OBJECTID_2":88240,
+ "Shape_Le_1":0.000578329894855,
+ "Shape_Ar_1":1.29237030395e-08,
+ "OBJECTID_3":88240,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88239,
+ "g_objectid":"942335",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729183",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004277132680000000",
+ "g_sup_tota":"226.1",
+ "g_geometry":"0.000857197",
+ "g_geomet_1":"2.63178e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000578329894855,
+ "Shape_Area":1.29237030395e-08,
+ "Shape_Le_3":0.000578330627802,
+ "Shape_Ar_2":1.29237030395e-08,
+ "building_height":14.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1548,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5522923562291,
+ 45.52429919590146
+ ],
+ [
+ -73.55232296645359,
+ 45.52431304815894
+ ],
+ [
+ -73.55237293098781,
+ 45.52433746745046
+ ],
+ [
+ -73.55247806083568,
+ 45.5242243750052
+ ],
+ [
+ -73.55247306600104,
+ 45.52422184791025
+ ],
+ [
+ -73.55239982881089,
+ 45.524184788647375
+ ],
+ [
+ -73.5522923562291,
+ 45.52429919590146
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1548,
+ "ID_UEV":"01022316",
+ "CIVIQUE_DE":" 1469",
+ "CIVIQUE_FI":" 1477",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-77-0706-2-000-0000",
+ "SUPERFICIE":123,
+ "SUPERFIC_1":727,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000488267991511,
+ "OBJECTID":88241,
+ "Join_Count":1,
+ "TARGET_FID":88241,
+ "feature_id":"fd40040d-dff9-4c2a-aac7-6087d0899ae9",
+ "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.53,
+ "heightmax":30.92,
+ "elevmin":16.77,
+ "elevmax":18.72,
+ "bldgarea":1739.44,
+ "comment":" ",
+ "OBJECTID_2":88241,
+ "Shape_Le_1":0.000488267991511,
+ "Shape_Ar_1":1.31426488095e-08,
+ "OBJECTID_3":88241,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88240,
+ "g_objectid":"942355",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729230",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004277070620000000",
+ "g_sup_tota":"122.5",
+ "g_geometry":"0.000516912",
+ "g_geomet_1":"1.43332e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000488267991511,
+ "Shape_Area":1.31426488095e-08,
+ "Shape_Le_3":0.000488267145185,
+ "Shape_Ar_2":1.31426488095e-08,
+ "building_height":14.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1549,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55608239610754,
+ 45.53125990087402
+ ],
+ [
+ -73.55608446544757,
+ 45.53125765796484
+ ],
+ [
+ -73.5559077684506,
+ 45.53117634846001
+ ],
+ [
+ -73.55590516851056,
+ 45.53117904912411
+ ],
+ [
+ -73.55578467284622,
+ 45.531304795030564
+ ],
+ [
+ -73.5559227844308,
+ 45.531369700001946
+ ],
+ [
+ -73.5559330681784,
+ 45.53135904843163
+ ],
+ [
+ -73.55594813452063,
+ 45.531366218726305
+ ],
+ [
+ -73.5559515231661,
+ 45.53136252880795
+ ],
+ [
+ -73.55597191889079,
+ 45.53137202474944
+ ],
+ [
+ -73.55608239610754,
+ 45.53125990087402
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1549,
+ "ID_UEV":"01023104",
+ "CIVIQUE_DE":" 2319",
+ "CIVIQUE_FI":" 2321",
+ "NOM_RUE":"avenue Marchand (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1906,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-44-3185-4-000-0000",
+ "SUPERFICIE":331,
+ "SUPERFIC_1":264,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000744472977443,
+ "OBJECTID":88246,
+ "Join_Count":1,
+ "TARGET_FID":88246,
+ "feature_id":"e3de3ce9-0ffb-4857-80b4-e2e82edb8c20",
+ "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.45,
+ "heightmax":27.32,
+ "elevmin":18.45,
+ "elevmax":19.55,
+ "bldgarea":686.87,
+ "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_2":88246,
+ "Shape_Le_1":0.000744472977443,
+ "Shape_Ar_1":3.19998887521e-08,
+ "OBJECTID_3":88246,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88245,
+ "g_objectid":"940512",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424002",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004344318540000000",
+ "g_sup_tota":"331",
+ "g_geometry":"0.000805606",
+ "g_geomet_1":"3.78753e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000744472977443,
+ "Shape_Area":3.19998887521e-08,
+ "Shape_Le_3":0.000744474855159,
+ "Shape_Ar_2":3.19998887521e-08,
+ "building_height":12.435
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1550,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55700206801288,
+ 45.533232949591245
+ ],
+ [
+ -73.55700584876276,
+ 45.53323461063906
+ ],
+ [
+ -73.55706664653036,
+ 45.533162872618774
+ ],
+ [
+ -73.55707476830776,
+ 45.53315265002507
+ ],
+ [
+ -73.55705436808647,
+ 45.53314524950396
+ ],
+ [
+ -73.55705891595805,
+ 45.53313921954964
+ ],
+ [
+ -73.55705688888615,
+ 45.5331383166303
+ ],
+ [
+ -73.55707534477318,
+ 45.53311328849776
+ ],
+ [
+ -73.55712607193252,
+ 45.533044600078526
+ ],
+ [
+ -73.55717679909185,
+ 45.532975819928446
+ ],
+ [
+ -73.5571985968596,
+ 45.5329463005816
+ ],
+ [
+ -73.55719706801213,
+ 45.53294575019651
+ ],
+ [
+ -73.55711366848286,
+ 45.53291555006288
+ ],
+ [
+ -73.55688526856214,
+ 45.5331793499973
+ ],
+ [
+ -73.55688206787498,
+ 45.53318294998345
+ ],
+ [
+ -73.55700206801288,
+ 45.533232949591245
+ ]
+ ],
+ [
+ [
+ -73.55693666571639,
+ 45.53318401478075
+ ],
+ [
+ -73.55696227301233,
+ 45.53318400219025
+ ],
+ [
+ -73.55696229099877,
+ 45.53320199852371
+ ],
+ [
+ -73.55693668370283,
+ 45.53320201201354
+ ],
+ [
+ -73.55693666571639,
+ 45.53318401478075
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1550,
+ "ID_UEV":"01023107",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc pour la r\u00c3\u00a9cr\u00c3\u00a9ation en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-36-5298-9-000-0000",
+ "SUPERFICIE":779,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000955417237214,
+ "OBJECTID":88247,
+ "Join_Count":1,
+ "TARGET_FID":88247,
+ "feature_id":"79f38dce-fd35-4819-b60d-6ab9e87ab8ca",
+ "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.87,
+ "heightmax":30.05,
+ "elevmin":19.23,
+ "elevmax":20.39,
+ "bldgarea":329.28,
+ "comment":" ",
+ "OBJECTID_2":88247,
+ "Shape_Le_1":0.000955417237214,
+ "Shape_Ar_1":3.69738156535e-08,
+ "OBJECTID_3":88247,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88246,
+ "g_objectid":"938599",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"1425280",
+ "g_nb_poly_":"1",
+ "g_utilisat":"7611",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004336529890000000",
+ "g_sup_tota":"39026.4",
+ "g_geometry":"0.00954657",
+ "g_geomet_1":"4.49521e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000955417237214,
+ "Shape_Area":3.69738156535e-08,
+ "Shape_Le_3":0.000955416983081,
+ "Shape_Ar_2":3.69738156535e-08,
+ "building_height":13.59
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1551,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5599719873392,
+ 45.534359461070565
+ ],
+ [
+ -73.56000546909897,
+ 45.534376649812835
+ ],
+ [
+ -73.56000306880843,
+ 45.53437914992812
+ ],
+ [
+ -73.56005896886816,
+ 45.534404650204735
+ ],
+ [
+ -73.56006599976791,
+ 45.534407848193936
+ ],
+ [
+ -73.56018725895667,
+ 45.53427736375963
+ ],
+ [
+ -73.56009546875272,
+ 45.534235350131596
+ ],
+ [
+ -73.560020976109,
+ 45.53430674371155
+ ],
+ [
+ -73.5599719873392,
+ 45.534359461070565
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56009419531271,
+ 45.53422795320777
+ ],
+ [
+ -73.56009806869277,
+ 45.53422994970271
+ ],
+ [
+ -73.56015816948577,
+ 45.534165149952
+ ],
+ [
+ -73.5601542340525,
+ 45.53416334591198
+ ],
+ [
+ -73.56009419531271,
+ 45.53422795320777
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1551,
+ "ID_UEV":"01023263",
+ "CIVIQUE_DE":" 2510",
+ "CIVIQUE_FI":" 2518",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-18-0520-9-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":421,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000749755596636,
+ "OBJECTID":88258,
+ "Join_Count":2,
+ "TARGET_FID":88258,
+ "feature_id":"29c4e604-8e30-495b-ab15-8f74b8b4825d",
+ "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.81,
+ "heightmax":51.24,
+ "elevmin":31.26,
+ "elevmax":39.48,
+ "bldgarea":1953.11,
+ "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_2":88258,
+ "Shape_Le_1":0.000749755596636,
+ "Shape_Ar_1":1.80502072472e-08,
+ "OBJECTID_3":88258,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88257,
+ "g_objectid":"941408",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425416",
+ "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":"66023004318131530000000",
+ "g_sup_tota":"283.9",
+ "g_geometry":"0.000846859",
+ "g_geomet_1":"3.27499e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000749755596636,
+ "Shape_Area":1.80502072472e-08,
+ "Shape_Le_3":0.000749755682959,
+ "Shape_Ar_2":1.80502072472e-08,
+ "building_height":24.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1552,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54768989489457,
+ 45.528953134429905
+ ],
+ [
+ -73.54773007120767,
+ 45.52897106151557
+ ],
+ [
+ -73.54775523154055,
+ 45.52894197384332
+ ],
+ [
+ -73.54772016517532,
+ 45.52892764854244
+ ],
+ [
+ -73.5477146649217,
+ 45.52892524915122
+ ],
+ [
+ -73.54768989489457,
+ 45.528953134429905
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54791691705393,
+ 45.528755048856716
+ ],
+ [
+ -73.54785036812184,
+ 45.52872296644204
+ ],
+ [
+ -73.54781623345426,
+ 45.5287625051358
+ ],
+ [
+ -73.54780906495823,
+ 45.5287715487183
+ ],
+ [
+ -73.54771236535522,
+ 45.52889364877317
+ ],
+ [
+ -73.54771836473259,
+ 45.52889594923896
+ ],
+ [
+ -73.54777553553438,
+ 45.52891849973927
+ ],
+ [
+ -73.54778677616063,
+ 45.5289055045357
+ ],
+ [
+ -73.54791691705393,
+ 45.528755048856716
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1552,
+ "ID_UEV":"01018973",
+ "CIVIQUE_DE":" 2401",
+ "CIVIQUE_FI":" 2411",
+ "NOM_RUE":"rue Champagne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-6615-3-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":390,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000741035685345,
+ "OBJECTID":88261,
+ "Join_Count":2,
+ "TARGET_FID":88261,
+ "feature_id":"b7ee2925-24ee-4e61-bf72-aa7a709947a5",
+ "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.49,
+ "heightmax":13.14,
+ "elevmin":18.81,
+ "elevmax":19.73,
+ "bldgarea":1083.09,
+ "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_2":88261,
+ "Shape_Le_1":0.000741035685345,
+ "Shape_Ar_1":1.65757150526e-08,
+ "OBJECTID_3":88261,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88260,
+ "g_objectid":"943498",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2258617",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014302402730000000",
+ "g_sup_tota":"99.6",
+ "g_geometry":"0.000643439",
+ "g_geomet_1":"1.1572e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000741035685345,
+ "Shape_Area":1.65757150526e-08,
+ "Shape_Le_3":0.000741035844738,
+ "Shape_Ar_2":1.65757150526e-08,
+ "building_height":5.325
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1553,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5568938822687,
+ 45.520803907024984
+ ],
+ [
+ -73.55689786716468,
+ 45.52080554648907
+ ],
+ [
+ -73.5568860338852,
+ 45.52081979714622
+ ],
+ [
+ -73.55702180273585,
+ 45.52088228473995
+ ],
+ [
+ -73.55710655934209,
+ 45.52078854840308
+ ],
+ [
+ -73.55707326733926,
+ 45.520769446802824
+ ],
+ [
+ -73.55707286714095,
+ 45.52076914642926
+ ],
+ [
+ -73.55706176680894,
+ 45.5207816470057
+ ],
+ [
+ -73.5569630671137,
+ 45.520738447171894
+ ],
+ [
+ -73.55702816723797,
+ 45.52066504720446
+ ],
+ [
+ -73.55702191605043,
+ 45.52066230607086
+ ],
+ [
+ -73.5568938822687,
+ 45.520803907024984
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1553,
+ "ID_UEV":"01021929",
+ "CIVIQUE_DE":" 1584",
+ "CIVIQUE_FI":" 1588",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-4316-9-000-0000",
+ "SUPERFICIE":306,
+ "SUPERFIC_1":372,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000757840704959,
+ "OBJECTID":88262,
+ "Join_Count":1,
+ "TARGET_FID":88262,
+ "feature_id":"8a94d231-b463-47db-8a0c-4ecc16ef6498",
+ "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.36,
+ "heightmax":12.72,
+ "elevmin":24.58,
+ "elevmax":27.57,
+ "bldgarea":2130.17,
+ "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_2":88262,
+ "Shape_Le_1":0.000757840704959,
+ "Shape_Ar_1":1.77489425603e-08,
+ "OBJECTID_3":88262,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88261,
+ "g_objectid":"944639",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004233541090010001",
+ "g_sup_tota":"174.5",
+ "g_geometry":"0.000656333",
+ "g_geomet_1":"2.01802e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000757840704959,
+ "Shape_Area":1.77489425603e-08,
+ "Shape_Le_3":0.000757842035022,
+ "Shape_Ar_2":1.77489425603e-08,
+ "building_height":5.180000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1554,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55702180273585,
+ 45.52088228473995
+ ],
+ [
+ -73.55709284198292,
+ 45.5209149822909
+ ],
+ [
+ -73.55717279171282,
+ 45.520826560048
+ ],
+ [
+ -73.55716546673474,
+ 45.520822346724216
+ ],
+ [
+ -73.55710655934209,
+ 45.52078854840308
+ ],
+ [
+ -73.55702180273585,
+ 45.52088228473995
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1554,
+ "ID_UEV":"01021930",
+ "CIVIQUE_DE":" 1594",
+ "CIVIQUE_FI":" 1596",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1890,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-3522-3-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000400147872863,
+ "OBJECTID":88263,
+ "Join_Count":1,
+ "TARGET_FID":88263,
+ "feature_id":"8a94d231-b463-47db-8a0c-4ecc16ef6498",
+ "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.36,
+ "heightmax":12.72,
+ "elevmin":24.58,
+ "elevmax":27.57,
+ "bldgarea":2130.17,
+ "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_2":88263,
+ "Shape_Le_1":0.000400147872863,
+ "Shape_Ar_1":9.16311073797e-09,
+ "OBJECTID_3":88263,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88262,
+ "g_objectid":"942125",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567428",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004233431690000000",
+ "g_sup_tota":"305.6",
+ "g_geometry":"0.000786213",
+ "g_geomet_1":"3.51979e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000400147872863,
+ "Shape_Area":9.16311073797e-09,
+ "Shape_Le_3":0.000400148758467,
+ "Shape_Ar_2":9.16311073797e-09,
+ "building_height":5.180000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1555,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55709284198292,
+ 45.5209149822909
+ ],
+ [
+ -73.55715838817092,
+ 45.52094515634418
+ ],
+ [
+ -73.55724976558606,
+ 45.52084410042519
+ ],
+ [
+ -73.55723456704348,
+ 45.520835447148464
+ ],
+ [
+ -73.55721606708967,
+ 45.52085144698698
+ ],
+ [
+ -73.55717279171282,
+ 45.520826560048
+ ],
+ [
+ -73.55709284198292,
+ 45.5209149822909
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1555,
+ "ID_UEV":"01021931",
+ "CIVIQUE_DE":" 1600",
+ "CIVIQUE_FI":" 1604",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-3025-7-000-0000",
+ "SUPERFICIE":140,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000419457670232,
+ "OBJECTID":88264,
+ "Join_Count":1,
+ "TARGET_FID":88264,
+ "feature_id":"8a94d231-b463-47db-8a0c-4ecc16ef6498",
+ "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.36,
+ "heightmax":12.72,
+ "elevmin":24.58,
+ "elevmax":27.57,
+ "bldgarea":2130.17,
+ "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_2":88264,
+ "Shape_Le_1":0.000419457670232,
+ "Shape_Ar_1":8.41689636147e-09,
+ "OBJECTID_3":88264,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88263,
+ "g_objectid":"942056",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567293",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004233252990000000",
+ "g_sup_tota":"155.2",
+ "g_geometry":"0.00063465",
+ "g_geomet_1":"1.81477e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000419457670232,
+ "Shape_Area":8.41689636147e-09,
+ "Shape_Le_3":0.000419458559053,
+ "Shape_Ar_2":8.41689636147e-09,
+ "building_height":5.180000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1556,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55793229705971,
+ 45.53676254580514
+ ],
+ [
+ -73.55805678121732,
+ 45.53680668722913
+ ],
+ [
+ -73.55809873549009,
+ 45.53675219011178
+ ],
+ [
+ -73.55796812245273,
+ 45.53670584355014
+ ],
+ [
+ -73.55793229705971,
+ 45.53676254580514
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1556,
+ "ID_UEV":"01025954",
+ "CIVIQUE_DE":" 2681",
+ "CIVIQUE_FI":" 2685",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-20-6596-7-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":223,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000406516888924,
+ "OBJECTID":88268,
+ "Join_Count":1,
+ "TARGET_FID":88268,
+ "feature_id":"75a82f11-6f58-498f-9a37-33b9728739c0",
+ "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":40.46,
+ "elevmin":26.69,
+ "elevmax":28.7,
+ "bldgarea":885.51,
+ "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_2":88268,
+ "Shape_Le_1":0.000406516888924,
+ "Shape_Ar_1":8.85112992097e-09,
+ "OBJECTID_3":88268,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88267,
+ "g_objectid":"940981",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424792",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004420629070000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000797916",
+ "g_geomet_1":"2.15818e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000406516888924,
+ "Shape_Area":8.85112992097e-09,
+ "Shape_Le_3":0.000406518087031,
+ "Shape_Ar_2":8.85112992097e-09,
+ "building_height":19.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1557,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55793229705971,
+ 45.53676254580514
+ ],
+ [
+ -73.55789406867817,
+ 45.53682304949444
+ ],
+ [
+ -73.55785046954537,
+ 45.53680944994645
+ ],
+ [
+ -73.55781996903819,
+ 45.53685815003389
+ ],
+ [
+ -73.55781846896902,
+ 45.53686004940205
+ ],
+ [
+ -73.5578625492391,
+ 45.53687631993651
+ ],
+ [
+ -73.55810981783567,
+ 45.53696397775566
+ ],
+ [
+ -73.55815507441899,
+ 45.536902404772455
+ ],
+ [
+ -73.55804996885283,
+ 45.536862549517345
+ ],
+ [
+ -73.55808236872818,
+ 45.536820650103216
+ ],
+ [
+ -73.55805426941085,
+ 45.53680994996951
+ ],
+ [
+ -73.55805678121732,
+ 45.53680668722913
+ ],
+ [
+ -73.55793229705971,
+ 45.53676254580514
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1557,
+ "ID_UEV":"01025957",
+ "CIVIQUE_DE":" 2504",
+ "CIVIQUE_FI":" 2506",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-7005-6-000-0000",
+ "SUPERFICIE":367,
+ "SUPERFIC_1":589,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000894511269635,
+ "OBJECTID":88270,
+ "Join_Count":1,
+ "TARGET_FID":88270,
+ "feature_id":"75a82f11-6f58-498f-9a37-33b9728739c0",
+ "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":40.46,
+ "elevmin":26.69,
+ "elevmax":28.7,
+ "bldgarea":885.51,
+ "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_2":88270,
+ "Shape_Le_1":0.000894511269635,
+ "Shape_Ar_1":3.13747085071e-08,
+ "OBJECTID_3":88270,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88269,
+ "g_objectid":"940980",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424791",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004420659670000000",
+ "g_sup_tota":"185.7",
+ "g_geometry":"0.000792893",
+ "g_geomet_1":"2.14827e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000894511269635,
+ "Shape_Area":3.13747085071e-08,
+ "Shape_Le_3":0.000894509924471,
+ "Shape_Ar_2":3.13747085071e-08,
+ "building_height":19.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1558,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55396906394299,
+ 45.53542844201928
+ ],
+ [
+ -73.55405986669135,
+ 45.53545965029292
+ ],
+ [
+ -73.55406416724936,
+ 45.535453550191484
+ ],
+ [
+ -73.55412036678335,
+ 45.535374249772104
+ ],
+ [
+ -73.55411716699551,
+ 45.53537314990124
+ ],
+ [
+ -73.55407816699565,
+ 45.53536184991973
+ ],
+ [
+ -73.55403366674217,
+ 45.535349049869055
+ ],
+ [
+ -73.55404206730941,
+ 45.5353347497492
+ ],
+ [
+ -73.55403726043306,
+ 45.535333363893926
+ ],
+ [
+ -73.55396906394299,
+ 45.53542844201928
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1558,
+ "ID_UEV":"01024273",
+ "CIVIQUE_DE":" 2180",
+ "CIVIQUE_FI":" 2180",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-7744-2-000-0000",
+ "SUPERFICIE":240,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000429560952901,
+ "OBJECTID":88273,
+ "Join_Count":1,
+ "TARGET_FID":88273,
+ "feature_id":"a04fd897-b8f0-4ade-8f68-935acae84a06",
+ "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.58,
+ "heightmax":26.6,
+ "elevmin":19.08,
+ "elevmax":20.61,
+ "bldgarea":231.72,
+ "comment":" ",
+ "OBJECTID_2":88273,
+ "Shape_Le_1":0.000429560952901,
+ "Shape_Ar_1":9.48949095154e-09,
+ "OBJECTID_3":88273,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88272,
+ "g_objectid":"941021",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424857",
+ "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":"66023004359774420000000",
+ "g_sup_tota":"240",
+ "g_geometry":"0.000730218",
+ "g_geomet_1":"2.78157e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000429560952901,
+ "Shape_Area":9.48949095154e-09,
+ "Shape_Le_3":0.000429561909852,
+ "Shape_Ar_2":9.48949095154e-09,
+ "building_height":12.010000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1559,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5541175582006,
+ 45.53554736656801
+ ],
+ [
+ -73.55419418313689,
+ 45.53557457285854
+ ],
+ [
+ -73.55427643513121,
+ 45.535459897606486
+ ],
+ [
+ -73.55423936687512,
+ 45.535441049615045
+ ],
+ [
+ -73.55420598853739,
+ 45.53542407760939
+ ],
+ [
+ -73.5541175582006,
+ 45.53554736656801
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55433040974246,
+ 45.535384645035634
+ ],
+ [
+ -73.55432946725296,
+ 45.535384350058
+ ],
+ [
+ -73.55429466708706,
+ 45.535373050076494
+ ],
+ [
+ -73.55426256668595,
+ 45.535421750163934
+ ],
+ [
+ -73.55429598819114,
+ 45.5354326364573
+ ],
+ [
+ -73.55433040974246,
+ 45.535384645035634
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1559,
+ "ID_UEV":"01024279",
+ "CIVIQUE_DE":" 2188",
+ "CIVIQUE_FI":" 2190",
+ "NOM_RUE":"rue Bercy (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-6450-7-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":159,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00064330289881,
+ "OBJECTID":88274,
+ "Join_Count":2,
+ "TARGET_FID":88274,
+ "feature_id":"a5fb5220-ce89-425a-9dd7-06017dd9ae71",
+ "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.44,
+ "heightmax":29.76,
+ "elevmin":19.18,
+ "elevmax":20.38,
+ "bldgarea":397.76,
+ "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_2":88274,
+ "Shape_Le_1":0.00064330289881,
+ "Shape_Ar_1":1.34844092565e-08,
+ "OBJECTID_3":88274,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88273,
+ "g_objectid":"941023",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424859",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359645070000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000660249",
+ "g_geomet_1":"1.94368e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00064330289881,
+ "Shape_Area":1.34844092565e-08,
+ "Shape_Le_3":0.000643302418783,
+ "Shape_Ar_2":1.34844092565e-08,
+ "building_height":13.66
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1560,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55831228850316,
+ 45.53702277902833
+ ],
+ [
+ -73.55838843140283,
+ 45.5370506598104
+ ],
+ [
+ -73.55847198471616,
+ 45.536934256960684
+ ],
+ [
+ -73.55839773219144,
+ 45.53690374026569
+ ],
+ [
+ -73.55831228850316,
+ 45.53702277902833
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1560,
+ "ID_UEV":"01024320",
+ "CIVIQUE_DE":" 2522",
+ "CIVIQUE_FI":" 2524",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-3716-2-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":180,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000451182419493,
+ "OBJECTID":88275,
+ "Join_Count":1,
+ "TARGET_FID":88275,
+ "feature_id":"801ebb9a-38e4-4785-bee3-0926dd17043d",
+ "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":40.54,
+ "elevmin":27.42,
+ "elevmax":32.14,
+ "bldgarea":528.44,
+ "comment":" ",
+ "OBJECTID_2":88275,
+ "Shape_Le_1":0.000451182419493,
+ "Shape_Ar_1":1.13196700582e-08,
+ "OBJECTID_3":88275,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88274,
+ "g_objectid":"940985",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424797",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421311990000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000657944",
+ "g_geomet_1":"1.93452e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000451182419493,
+ "Shape_Area":1.13196700582e-08,
+ "Shape_Le_3":0.000451180797593,
+ "Shape_Ar_2":1.13196700582e-08,
+ "building_height":20.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1561,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5557378991066,
+ 45.53684120141061
+ ],
+ [
+ -73.55582705339764,
+ 45.53686920629913
+ ],
+ [
+ -73.55589921140133,
+ 45.53676796691843
+ ],
+ [
+ -73.55589916823388,
+ 45.536767949831315
+ ],
+ [
+ -73.55589967635083,
+ 45.53676731490995
+ ],
+ [
+ -73.55593181812075,
+ 45.536722220204595
+ ],
+ [
+ -73.55588656783269,
+ 45.53671235014514
+ ],
+ [
+ -73.5558373929032,
+ 45.53670161044126
+ ],
+ [
+ -73.5557378991066,
+ 45.53684120141061
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1561,
+ "ID_UEV":"01024544",
+ "CIVIQUE_DE":" 2330",
+ "CIVIQUE_FI":" 2330",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-3997-8-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":371,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000542075791171,
+ "OBJECTID":88277,
+ "Join_Count":1,
+ "TARGET_FID":88277,
+ "feature_id":"edeb921d-274e-4443-af55-dae075f24078",
+ "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":12.52,
+ "elevmin":18.73,
+ "elevmax":21.15,
+ "bldgarea":1153.25,
+ "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_2":88277,
+ "Shape_Le_1":0.000542075791171,
+ "Shape_Ar_1":1.56344435156e-08,
+ "OBJECTID_3":88277,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88276,
+ "g_objectid":"943896",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361094",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440399780000000",
+ "g_sup_tota":"192.6",
+ "g_geometry":"0.00068428",
+ "g_geomet_1":"2.21889e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000542075791171,
+ "Shape_Area":1.56344435156e-08,
+ "Shape_Le_3":0.000542076705498,
+ "Shape_Ar_2":1.56344435156e-08,
+ "building_height":6.01
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1562,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55582705339764,
+ 45.53686920629913
+ ],
+ [
+ -73.55582846803122,
+ 45.536869649664894
+ ],
+ [
+ -73.55581686767614,
+ 45.53688794996921
+ ],
+ [
+ -73.55581706822497,
+ 45.53688794996921
+ ],
+ [
+ -73.55590264771087,
+ 45.53691623094959
+ ],
+ [
+ -73.55598436640723,
+ 45.53680157728126
+ ],
+ [
+ -73.55589921140133,
+ 45.53676796691843
+ ],
+ [
+ -73.55582705339764,
+ 45.53686920629913
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55593181812075,
+ 45.536722220204595
+ ],
+ [
+ -73.55589967635083,
+ 45.53676731490995
+ ],
+ [
+ -73.55593426787401,
+ 45.53672404942564
+ ],
+ [
+ -73.55593516809537,
+ 45.53672294955477
+ ],
+ [
+ -73.55593181812075,
+ 45.536722220204595
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1562,
+ "ID_UEV":"01024546",
+ "CIVIQUE_DE":" 2336",
+ "CIVIQUE_FI":" 2340",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-3100-7-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":177,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000585768738464,
+ "OBJECTID":88278,
+ "Join_Count":1,
+ "TARGET_FID":88278,
+ "feature_id":"edeb921d-274e-4443-af55-dae075f24078",
+ "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":12.52,
+ "elevmin":18.73,
+ "elevmax":21.15,
+ "bldgarea":1153.25,
+ "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_2":88278,
+ "Shape_Le_1":0.000585768738464,
+ "Shape_Ar_1":1.27945706617e-08,
+ "OBJECTID_3":88278,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88277,
+ "g_objectid":"943898",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361096",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441250330000000",
+ "g_sup_tota":"192.6",
+ "g_geometry":"0.000684338",
+ "g_geomet_1":"2.21915e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000585768738464,
+ "Shape_Area":1.27945706617e-08,
+ "Shape_Le_3":0.000585768869682,
+ "Shape_Ar_2":1.27945706617e-08,
+ "building_height":6.01
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1563,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54805272637407,
+ 45.53038171379535
+ ],
+ [
+ -73.54789726506857,
+ 45.53031574852327
+ ],
+ [
+ -73.54789416510548,
+ 45.53031944923349
+ ],
+ [
+ -73.54773723700573,
+ 45.530500670719675
+ ],
+ [
+ -73.54789355626446,
+ 45.530567006512435
+ ],
+ [
+ -73.54805272637407,
+ 45.53038171379535
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1563,
+ "ID_UEV":"01018936",
+ "CIVIQUE_DE":" 1565",
+ "CIVIQUE_FI":" 1571",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1949,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-03-5992-5-000-0000",
+ "SUPERFICIE":361,
+ "SUPERFIC_1":721,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000827512117744,
+ "OBJECTID":88280,
+ "Join_Count":1,
+ "TARGET_FID":88280,
+ "feature_id":"15061879-18ed-4193-a9a4-11668c1d63cc",
+ "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.59,
+ "heightmax":11.44,
+ "elevmin":18.34,
+ "elevmax":22.03,
+ "bldgarea":1118.3,
+ "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_2":88280,
+ "Shape_Le_1":0.000827512117744,
+ "Shape_Ar_1":3.94045391266e-08,
+ "OBJECTID_3":88280,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88279,
+ "g_objectid":"938260",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1425222",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014303599250000000",
+ "g_sup_tota":"360.5",
+ "g_geometry":"0.0008471",
+ "g_geomet_1":"4.15122e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000827512117744,
+ "Shape_Area":3.94045391266e-08,
+ "Shape_Le_3":0.000827512716775,
+ "Shape_Ar_2":3.94045391266e-08,
+ "building_height":5.425
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1564,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.549362124884,
+ 45.523026523005925
+ ],
+ [
+ -73.5495149556725,
+ 45.52309694082145
+ ],
+ [
+ -73.54956106481313,
+ 45.52304784773028
+ ],
+ [
+ -73.54940856497514,
+ 45.52297704770289
+ ],
+ [
+ -73.549362124884,
+ 45.523026523005925
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5493500424923,
+ 45.522938080078625
+ ],
+ [
+ -73.54934666553802,
+ 45.52294164768919
+ ],
+ [
+ -73.54937976508593,
+ 45.522955748159546
+ ],
+ [
+ -73.54938220404732,
+ 45.52295322196392
+ ],
+ [
+ -73.5493735058045,
+ 45.52294912645132
+ ],
+ [
+ -73.5493500424923,
+ 45.522938080078625
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54926110223992,
+ 45.52290191923848
+ ],
+ [
+ -73.54926116519246,
+ 45.52290194801678
+ ],
+ [
+ -73.54926315089554,
+ 45.52289977525472
+ ],
+ [
+ -73.54926110223992,
+ 45.52290191923848
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1564,
+ "ID_UEV":"01022238",
+ "CIVIQUE_DE":" 1958",
+ "CIVIQUE_FI":" 1962",
+ "NOM_RUE":"rue Falardeau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-95-4066-9-000-0000",
+ "SUPERFICIE":237,
+ "SUPERFIC_1":288,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000557543420918,
+ "OBJECTID":88290,
+ "Join_Count":2,
+ "TARGET_FID":88290,
+ "feature_id":"4ac31965-592a-4721-9fcf-5ad784531bcd",
+ "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.6,
+ "heightmax":30.23,
+ "elevmin":17.15,
+ "elevmax":18.09,
+ "bldgarea":433.35,
+ "comment":" ",
+ "OBJECTID_2":88290,
+ "Shape_Le_1":0.000557543420918,
+ "Shape_Ar_1":1.09334035861e-08,
+ "OBJECTID_3":88290,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88289,
+ "g_objectid":"942352",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729140",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004295437700000000",
+ "g_sup_tota":"367.2",
+ "g_geometry":"0.000899131",
+ "g_geomet_1":"4.22923e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000557543420918,
+ "Shape_Area":1.09334035861e-08,
+ "Shape_Le_3":0.000557541817634,
+ "Shape_Ar_2":1.09334035861e-08,
+ "building_height":13.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1565,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55372126474641,
+ 45.53375418945458
+ ],
+ [
+ -73.553684567011,
+ 45.53379665004566
+ ],
+ [
+ -73.55380256705666,
+ 45.533847049851765
+ ],
+ [
+ -73.55380266688141,
+ 45.53384695002702
+ ],
+ [
+ -73.55381771523722,
+ 45.533847473432445
+ ],
+ [
+ -73.55385051171359,
+ 45.53380892669091
+ ],
+ [
+ -73.55372126474641,
+ 45.53375418945458
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1565,
+ "ID_UEV":"01023951",
+ "CIVIQUE_DE":" 2563",
+ "CIVIQUE_FI":" 2563",
+ "NOM_RUE":"rue Donnacona (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-67-0167-6-000-0000",
+ "SUPERFICIE":82,
+ "SUPERFIC_1":102,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000390603929555,
+ "OBJECTID":88292,
+ "Join_Count":1,
+ "TARGET_FID":88292,
+ "feature_id":"afad3dff-9602-4ba5-b587-5274c73dc13e",
+ "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.86,
+ "heightmax":31.2,
+ "elevmin":19.02,
+ "elevmax":19.88,
+ "bldgarea":598.6,
+ "comment":" ",
+ "OBJECTID_2":88292,
+ "Shape_Le_1":0.000390603929555,
+ "Shape_Ar_1":7.50388336433e-09,
+ "OBJECTID_3":88292,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88291,
+ "g_objectid":"943584",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2409684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357945570000000",
+ "g_sup_tota":"238.1",
+ "g_geometry":"0.000686102",
+ "g_geomet_1":"2.74474e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000390603929555,
+ "Shape_Area":7.50388336433e-09,
+ "Shape_Le_3":0.000390603782441,
+ "Shape_Ar_2":7.50388336433e-09,
+ "building_height":14.67
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1566,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54988014877169,
+ 45.528665022223294
+ ],
+ [
+ -73.55002236036549,
+ 45.52873352718083
+ ],
+ [
+ -73.55011116571957,
+ 45.528649249013924
+ ],
+ [
+ -73.55013046607,
+ 45.52865934929982
+ ],
+ [
+ -73.55013076644356,
+ 45.52865914875101
+ ],
+ [
+ -73.55013644026636,
+ 45.52865334272788
+ ],
+ [
+ -73.54996815193051,
+ 45.528574186200025
+ ],
+ [
+ -73.54988014877169,
+ 45.528665022223294
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1566,
+ "ID_UEV":"01018629",
+ "CIVIQUE_DE":" 2331",
+ "CIVIQUE_FI":" 2341",
+ "NOM_RUE":"rue Olivier-Robert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-81-9196-7-000-0000",
+ "SUPERFICIE":304,
+ "SUPERFIC_1":446,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000622992416143,
+ "OBJECTID":88295,
+ "Join_Count":1,
+ "TARGET_FID":88295,
+ "feature_id":"4169cfd2-1f17-4dfc-aaa2-7d455ddc776c",
+ "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.51,
+ "heightmax":32.13,
+ "elevmin":18.55,
+ "elevmax":20.51,
+ "bldgarea":943.2,
+ "comment":" ",
+ "OBJECTID_2":88295,
+ "Shape_Le_1":0.000622992416143,
+ "Shape_Ar_1":1.95770028601e-08,
+ "OBJECTID_3":88295,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88294,
+ "g_objectid":"940788",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424436",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004381919670000000",
+ "g_sup_tota":"303.7",
+ "g_geometry":"0.000837846",
+ "g_geomet_1":"3.53042e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000622992416143,
+ "Shape_Area":1.95770028601e-08,
+ "Shape_Le_3":0.00062299376042,
+ "Shape_Ar_2":1.95770028601e-08,
+ "building_height":14.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1567,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5497924648722,
+ 45.52875552819536
+ ],
+ [
+ -73.5499306834761,
+ 45.528820531192856
+ ],
+ [
+ -73.5499758896974,
+ 45.52877762813532
+ ],
+ [
+ -73.54983623397686,
+ 45.52871034985306
+ ],
+ [
+ -73.5497924648722,
+ 45.52875552819536
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1567,
+ "ID_UEV":"01018633",
+ "CIVIQUE_DE":" 2349",
+ "CIVIQUE_FI":" 2351",
+ "NOM_RUE":"rue Olivier-Robert (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-92-0008-0-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":156,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000432984253725,
+ "OBJECTID":88296,
+ "Join_Count":1,
+ "TARGET_FID":88296,
+ "feature_id":"4169cfd2-1f17-4dfc-aaa2-7d455ddc776c",
+ "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.51,
+ "heightmax":32.13,
+ "elevmin":18.55,
+ "elevmax":20.51,
+ "bldgarea":943.2,
+ "comment":" ",
+ "OBJECTID_2":88296,
+ "Shape_Le_1":0.000432984253725,
+ "Shape_Ar_1":9.061313516e-09,
+ "OBJECTID_3":88296,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88295,
+ "g_objectid":"940782",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424418",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004392031670000000",
+ "g_sup_tota":"284.1",
+ "g_geometry":"0.000877949",
+ "g_geomet_1":"3.2721e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000432984253725,
+ "Shape_Area":9.061313516e-09,
+ "Shape_Le_3":0.000432984463212,
+ "Shape_Ar_2":9.061313516e-09,
+ "building_height":14.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1568,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54971912156205,
+ 45.5288312331252
+ ],
+ [
+ -73.5498138444552,
+ 45.52887396980815
+ ],
+ [
+ -73.54987406575738,
+ 45.528806448708934
+ ],
+ [
+ -73.54992286656888,
+ 45.528827948801094
+ ],
+ [
+ -73.5499306834761,
+ 45.528820531192856
+ ],
+ [
+ -73.5497924648722,
+ 45.52875552819536
+ ],
+ [
+ -73.54971912156205,
+ 45.5288312331252
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1568,
+ "ID_UEV":"01018635",
+ "CIVIQUE_DE":" 2355",
+ "CIVIQUE_FI":" 2359",
+ "NOM_RUE":"rue Olivier-Robert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-92-0316-7-000-0000",
+ "SUPERFICIE":284,
+ "SUPERFIC_1":173,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00051664284389,
+ "OBJECTID":88297,
+ "Join_Count":1,
+ "TARGET_FID":88297,
+ "feature_id":"4169cfd2-1f17-4dfc-aaa2-7d455ddc776c",
+ "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.51,
+ "heightmax":32.13,
+ "elevmin":18.55,
+ "elevmax":20.51,
+ "bldgarea":943.2,
+ "comment":" ",
+ "OBJECTID_2":88297,
+ "Shape_Le_1":0.00051664284389,
+ "Shape_Ar_1":1.05729028539e-08,
+ "OBJECTID_3":88297,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88296,
+ "g_objectid":"940782",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424418",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004392031670000000",
+ "g_sup_tota":"284.1",
+ "g_geometry":"0.000877949",
+ "g_geomet_1":"3.2721e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00051664284389,
+ "Shape_Area":1.05729028539e-08,
+ "Shape_Le_3":0.000516642683474,
+ "Shape_Ar_2":1.05729028539e-08,
+ "building_height":14.810000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1569,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5602471025436,
+ 45.51353064357463
+ ],
+ [
+ -73.56042406843785,
+ 45.513611105018775
+ ],
+ [
+ -73.56063028478167,
+ 45.51337361475082
+ ],
+ [
+ -73.56045871302103,
+ 45.51329555629518
+ ],
+ [
+ -73.5602471025436,
+ 45.51353064357463
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1569,
+ "ID_UEV":"01021620",
+ "CIVIQUE_DE":" 360",
+ "CIVIQUE_FI":" 360",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":10,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1874,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Universit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-05-7806-6-000-0000",
+ "SUPERFICIE":499,
+ "SUPERFIC_1":4735,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0010137197482,
+ "OBJECTID":88300,
+ "Join_Count":1,
+ "TARGET_FID":88300,
+ "feature_id":"6d99d2b0-be12-4174-950b-d304aac4409c",
+ "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":73.32,
+ "elevmin":22.17,
+ "elevmax":25.09,
+ "bldgarea":7113.31,
+ "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_2":88300,
+ "Shape_Le_1":0.0010137197482,
+ "Shape_Ar_1":5.77363713807e-08,
+ "OBJECTID_3":88300,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88299,
+ "g_objectid":"938346",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"2161956",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004104687480000000",
+ "g_sup_tota":"784.6",
+ "g_geometry":"0.00157664",
+ "g_geomet_1":"9.08697e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0010137197482,
+ "Shape_Area":5.77363713807e-08,
+ "Shape_Le_3":0.00101371827945,
+ "Shape_Ar_2":5.77363713807e-08,
+ "building_height":36.404999999999994
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1570,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.57057677042346,
+ 45.5088688935349
+ ],
+ [
+ -73.5707791943262,
+ 45.508958341904254
+ ],
+ [
+ -73.57080136711124,
+ 45.50889686784647
+ ],
+ [
+ -73.57059699617628,
+ 45.50880656062457
+ ],
+ [
+ -73.57059247078774,
+ 45.508811745216164
+ ],
+ [
+ -73.57059257151181,
+ 45.508811944865656
+ ],
+ [
+ -73.57061857091216,
+ 45.50882384469497
+ ],
+ [
+ -73.57057677042346,
+ 45.5088688935349
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1570,
+ "ID_UEV":"01059080",
+ "CIVIQUE_DE":" 270",
+ "CIVIQUE_FI":" 270",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9940-29-8293-0-000-0000",
+ "SUPERFICIE":245,
+ "SUPERFIC_1":389,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00060724469898,
+ "OBJECTID":88302,
+ "Join_Count":1,
+ "TARGET_FID":88302,
+ "feature_id":"c8a9721b-1d1c-4ff8-818f-c929524a0db5",
+ "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":22.4,
+ "elevmin":37.69,
+ "elevmax":43.72,
+ "bldgarea":2538.81,
+ "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_2":88302,
+ "Shape_Le_1":0.00060724469898,
+ "Shape_Ar_1":1.37461973193e-08,
+ "OBJECTID_3":88302,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88301,
+ "g_objectid":"939769",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1340533",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994029829300000000",
+ "g_sup_tota":"244.6",
+ "g_geometry":"0.000998234",
+ "g_geomet_1":"2.81726e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00060724469898,
+ "Shape_Area":1.37461973193e-08,
+ "Shape_Le_3":0.000607244402542,
+ "Shape_Ar_2":1.37461973193e-08,
+ "building_height":10.944999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1571,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54955980126566,
+ 45.52244115968207
+ ],
+ [
+ -73.5495656648454,
+ 45.52244354828142
+ ],
+ [
+ -73.54954596519597,
+ 45.52246594769562
+ ],
+ [
+ -73.54978157588087,
+ 45.522579057228
+ ],
+ [
+ -73.54987613689605,
+ 45.52247564508525
+ ],
+ [
+ -73.54966786470204,
+ 45.52237984750226
+ ],
+ [
+ -73.54967354841737,
+ 45.522373752796746
+ ],
+ [
+ -73.54963720501485,
+ 45.522356511893804
+ ],
+ [
+ -73.54955980126566,
+ 45.52244115968207
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1571,
+ "ID_UEV":"01022145",
+ "CIVIQUE_DE":" 1169",
+ "CIVIQUE_FI":" 1191",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":14,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-95-1810-3-000-0000",
+ "SUPERFICIE":499,
+ "SUPERFIC_1":810,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000830152669099,
+ "OBJECTID":88305,
+ "Join_Count":1,
+ "TARGET_FID":88305,
+ "feature_id":"0cc90d12-1e41-42a5-ad5b-7a6b6088a432",
+ "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.91,
+ "heightmax":29.54,
+ "elevmin":16.02,
+ "elevmax":18.11,
+ "bldgarea":753.28,
+ "comment":" ",
+ "OBJECTID_2":88305,
+ "Shape_Le_1":0.000830152669099,
+ "Shape_Ar_1":3.55218286912e-08,
+ "OBJECTID_3":88305,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88304,
+ "g_objectid":"942311",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567841",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004295041940000000",
+ "g_sup_tota":"244.1",
+ "g_geometry":"0.000712188",
+ "g_geomet_1":"2.84338e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000830152669099,
+ "Shape_Area":3.55218286912e-08,
+ "Shape_Le_3":0.000830152585242,
+ "Shape_Ar_2":3.55218286912e-08,
+ "building_height":13.315
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1572,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54882286530483,
+ 45.52942131699048
+ ],
+ [
+ -73.5488346653094,
+ 45.52942664907089
+ ],
+ [
+ -73.54883716542469,
+ 45.52942394840679
+ ],
+ [
+ -73.54890846547515,
+ 45.529343248642306
+ ],
+ [
+ -73.54906223785383,
+ 45.52941047566322
+ ],
+ [
+ -73.54909402079427,
+ 45.529375651215624
+ ],
+ [
+ -73.54914302844985,
+ 45.52932195269626
+ ],
+ [
+ -73.5490974651977,
+ 45.529305049039074
+ ],
+ [
+ -73.54905386516559,
+ 45.529288948476484
+ ],
+ [
+ -73.54906106513789,
+ 45.529279448937714
+ ],
+ [
+ -73.54902766521643,
+ 45.52926674871178
+ ],
+ [
+ -73.54898068193476,
+ 45.52924870651289
+ ],
+ [
+ -73.54882286530483,
+ 45.52942131699048
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1572,
+ "ID_UEV":"01018583",
+ "CIVIQUE_DE":" 1585",
+ "CIVIQUE_FI":" 1585",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-92-7474-7-000-0000",
+ "SUPERFICIE":429,
+ "SUPERFIC_1":483,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000838925042363,
+ "OBJECTID":88307,
+ "Join_Count":1,
+ "TARGET_FID":88307,
+ "feature_id":"72447a70-7754-47e9-94e3-b216251fd915",
+ "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,
+ "heightmax":32.42,
+ "elevmin":18.18,
+ "elevmax":21.24,
+ "bldgarea":2453.19,
+ "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_2":88307,
+ "Shape_Le_1":0.000838925042363,
+ "Shape_Ar_1":2.16667099536e-08,
+ "OBJECTID_3":88307,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88306,
+ "g_objectid":"940764",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424395",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004392826820000000",
+ "g_sup_tota":"170",
+ "g_geometry":"0.000736691",
+ "g_geomet_1":"1.92534e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000838925042363,
+ "Shape_Area":2.16667099536e-08,
+ "Shape_Le_3":0.000838925720315,
+ "Shape_Ar_2":2.16667099536e-08,
+ "building_height":16.21
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1573,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54820118555811,
+ 45.52904134173483
+ ],
+ [
+ -73.54827349015129,
+ 45.52907385852205
+ ],
+ [
+ -73.5483768555293,
+ 45.52896027055034
+ ],
+ [
+ -73.54830530007139,
+ 45.528926929984124
+ ],
+ [
+ -73.54820118555811,
+ 45.52904134173483
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1573,
+ "ID_UEV":"01018586",
+ "CIVIQUE_DE":" 1483",
+ "CIVIQUE_FI":" 1489",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-2732-0-000-0000",
+ "SUPERFICIE":108,
+ "SUPERFIC_1":299,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000466494213494,
+ "OBJECTID":88308,
+ "Join_Count":1,
+ "TARGET_FID":88308,
+ "feature_id":"b7ee2925-24ee-4e61-bf72-aa7a709947a5",
+ "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.49,
+ "heightmax":13.14,
+ "elevmin":18.81,
+ "elevmax":19.73,
+ "bldgarea":1083.09,
+ "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_2":88308,
+ "Shape_Le_1":0.000466494213494,
+ "Shape_Ar_1":1.16160744575e-08,
+ "OBJECTID_3":88308,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88307,
+ "g_objectid":"940759",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424388",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014302394240000000",
+ "g_sup_tota":"188",
+ "g_geometry":"0.000629303",
+ "g_geomet_1":"2.16982e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000466494213494,
+ "Shape_Area":1.16160744575e-08,
+ "Shape_Le_3":0.000466493708651,
+ "Shape_Ar_2":1.16160744575e-08,
+ "building_height":5.325
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1574,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54789371904174,
+ 45.528907396709286
+ ],
+ [
+ -73.5478990655113,
+ 45.52890954878694
+ ],
+ [
+ -73.54791526499932,
+ 45.52888964858871
+ ],
+ [
+ -73.54795776516058,
+ 45.52890674919741
+ ],
+ [
+ -73.54799416432107,
+ 45.528921526857275
+ ],
+ [
+ -73.54807407268216,
+ 45.52883081314181
+ ],
+ [
+ -73.54799367329123,
+ 45.52879205326094
+ ],
+ [
+ -73.54789371904174,
+ 45.528907396709286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1574,
+ "ID_UEV":"01018589",
+ "CIVIQUE_DE":" 1459",
+ "CIVIQUE_FI":" 1463",
+ "NOM_RUE":"rue Dufresne (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-5219-5-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":197,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000479291578341,
+ "OBJECTID":88309,
+ "Join_Count":1,
+ "TARGET_FID":88309,
+ "feature_id":"b7ee2925-24ee-4e61-bf72-aa7a709947a5",
+ "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.49,
+ "heightmax":13.14,
+ "elevmin":18.81,
+ "elevmax":19.73,
+ "bldgarea":1083.09,
+ "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_2":88309,
+ "Shape_Le_1":0.000479291578341,
+ "Shape_Ar_1":1.07186097004e-08,
+ "OBJECTID_3":88309,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88308,
+ "g_objectid":"940756",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424380",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014302581500000000",
+ "g_sup_tota":"151.5",
+ "g_geometry":"0.000597045",
+ "g_geomet_1":"1.74826e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000479291578341,
+ "Shape_Area":1.07186097004e-08,
+ "Shape_Le_3":0.00047929078127,
+ "Shape_Ar_2":1.07186097004e-08,
+ "building_height":5.325
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1575,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55659899996571,
+ 45.520687684939006
+ ],
+ [
+ -73.55660415218172,
+ 45.52069005555192
+ ],
+ [
+ -73.55660756690753,
+ 45.52068594654949
+ ],
+ [
+ -73.55671466717,
+ 45.52073004660466
+ ],
+ [
+ -73.55674916336504,
+ 45.520744285570615
+ ],
+ [
+ -73.55687144508298,
+ 45.520611756077976
+ ],
+ [
+ -73.55679596678229,
+ 45.5205867468312
+ ],
+ [
+ -73.55680536739564,
+ 45.52057284690965
+ ],
+ [
+ -73.55673926722525,
+ 45.520551046443934
+ ],
+ [
+ -73.55673906667643,
+ 45.520551147168
+ ],
+ [
+ -73.55669136753443,
+ 45.52060424673889
+ ],
+ [
+ -73.5566797770719,
+ 45.52059912599916
+ ],
+ [
+ -73.55659899996571,
+ 45.520687684939006
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55675320222035,
+ 45.52051424798445
+ ],
+ [
+ -73.5567961673311,
+ 45.520533247062
+ ],
+ [
+ -73.55681226699437,
+ 45.5205404470343
+ ],
+ [
+ -73.55681389206931,
+ 45.52053865288681
+ ],
+ [
+ -73.55675683728006,
+ 45.52051044475152
+ ],
+ [
+ -73.55675320222035,
+ 45.52051424798445
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1575,
+ "ID_UEV":"01021927",
+ "CIVIQUE_DE":" 1556",
+ "CIVIQUE_FI":" 1566",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-6502-2-000-0000",
+ "SUPERFICIE":310,
+ "SUPERFIC_1":555,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00085045951075,
+ "OBJECTID":88310,
+ "Join_Count":1,
+ "TARGET_FID":88310,
+ "feature_id":"8a94d231-b463-47db-8a0c-4ecc16ef6498",
+ "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.36,
+ "heightmax":12.72,
+ "elevmin":24.58,
+ "elevmax":27.57,
+ "bldgarea":2130.17,
+ "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_2":88310,
+ "Shape_Le_1":0.00085045951075,
+ "Shape_Ar_1":2.67592296876e-08,
+ "OBJECTID_3":88310,
+ "Join_Cou_1":6,
+ "TARGET_F_1":88309,
+ "g_objectid":"942131",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567436",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232687700000000",
+ "g_sup_tota":"311",
+ "g_geometry":"0.000783456",
+ "g_geomet_1":"3.62611e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00085045951075,
+ "Shape_Area":2.67592296876e-08,
+ "Shape_Le_3":0.000850460509642,
+ "Shape_Ar_2":2.67592296876e-08,
+ "building_height":5.180000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1576,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55644507740024,
+ 45.53039746272302
+ ],
+ [
+ -73.55644346851311,
+ 45.53039684848606
+ ],
+ [
+ -73.55630846768348,
+ 45.53034534880909
+ ],
+ [
+ -73.55630726798788,
+ 45.53034694870301
+ ],
+ [
+ -73.55623185803566,
+ 45.53042617717663
+ ],
+ [
+ -73.55636193507709,
+ 45.53048580942286
+ ],
+ [
+ -73.55644507740024,
+ 45.53039746272302
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1576,
+ "ID_UEV":"01022995",
+ "CIVIQUE_DE":" 2042",
+ "CIVIQUE_FI":" 2042",
+ "NOM_RUE":"rue Harmony (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-33-9583-7-000-0000",
+ "SUPERFICIE":344,
+ "SUPERFIC_1":161,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000522002365337,
+ "OBJECTID":88311,
+ "Join_Count":1,
+ "TARGET_FID":88311,
+ "feature_id":"38a2c3eb-873e-4b08-bb18-e1bb65e1c336",
+ "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.53,
+ "heightmax":32,
+ "elevmin":19.58,
+ "elevmax":20.9,
+ "bldgarea":647.35,
+ "comment":" ",
+ "OBJECTID_2":88311,
+ "Shape_Le_1":0.000522002365337,
+ "Shape_Ar_1":1.57293247513e-08,
+ "OBJECTID_3":88311,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88310,
+ "g_objectid":"940458",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423928",
+ "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":"66023004333958370000000",
+ "g_sup_tota":"343.7",
+ "g_geometry":"0.000853671",
+ "g_geomet_1":"3.95875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000522002365337,
+ "Shape_Area":1.57293247513e-08,
+ "Shape_Le_3":0.000522002773339,
+ "Shape_Ar_2":1.57293247513e-08,
+ "building_height":14.735
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1577,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55616456536424,
+ 45.52035716610063
+ ],
+ [
+ -73.55612456711692,
+ 45.52033614714577
+ ],
+ [
+ -73.55610836672959,
+ 45.520351746785984
+ ],
+ [
+ -73.5560457667206,
+ 45.52031964728419
+ ],
+ [
+ -73.55596715248394,
+ 45.52039351759706
+ ],
+ [
+ -73.55608139156482,
+ 45.52044625204319
+ ],
+ [
+ -73.55616456536424,
+ 45.52035716610063
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1577,
+ "ID_UEV":"01021926",
+ "CIVIQUE_DE":" 1476",
+ "CIVIQUE_FI":" 1486",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-42-2073-9-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":374,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000493601796839,
+ "OBJECTID":88312,
+ "Join_Count":1,
+ "TARGET_FID":88312,
+ "feature_id":"ea238b54-bb93-404a-91da-386456b7b0e9",
+ "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.78,
+ "heightmax":11.9,
+ "elevmin":24.55,
+ "elevmax":25.93,
+ "bldgarea":281.91,
+ "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_2":88312,
+ "Shape_Le_1":0.000493601796839,
+ "Shape_Ar_1":1.28941133568e-08,
+ "OBJECTID_3":88312,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88311,
+ "g_objectid":"942139",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567443",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004242108050000000",
+ "g_sup_tota":"156.1",
+ "g_geometry":"0.000552244",
+ "g_geomet_1":"1.80637e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000493601796839,
+ "Shape_Area":1.28941133568e-08,
+ "Shape_Le_3":0.000493600859534,
+ "Shape_Ar_2":1.28941133568e-08,
+ "building_height":4.5600000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1578,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54991735642271,
+ 45.53841588643431
+ ],
+ [
+ -73.55004322913356,
+ 45.53846043525118
+ ],
+ [
+ -73.55007820736522,
+ 45.53841140241458
+ ],
+ [
+ -73.54995243717708,
+ 45.53836689316788
+ ],
+ [
+ -73.54991735642271,
+ 45.53841588643431
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1578,
+ "ID_UEV":"01025649",
+ "CIVIQUE_DE":" 2989",
+ "CIVIQUE_FI":" 2989",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-9479-3-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000387425363633,
+ "OBJECTID":88319,
+ "Join_Count":1,
+ "TARGET_FID":88319,
+ "feature_id":"c31e14eb-c875-4573-828f-735db5cf235a",
+ "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.22,
+ "heightmax":32.13,
+ "elevmin":21.36,
+ "elevmax":22.26,
+ "bldgarea":596.89,
+ "comment":" ",
+ "OBJECTID_2":88319,
+ "Shape_Le_1":0.000387425363633,
+ "Shape_Ar_1":7.72671778352e-09,
+ "OBJECTID_3":88319,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88318,
+ "g_objectid":"944280",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361953",
+ "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":"66023004482927480000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749066",
+ "g_geomet_1":"1.81939e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000387425363633,
+ "Shape_Area":7.72671778352e-09,
+ "Shape_Le_3":0.000387425365833,
+ "Shape_Ar_2":7.72671778352e-09,
+ "building_height":13.955000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1579,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55939175734557,
+ 45.53485656492882
+ ],
+ [
+ -73.55930616886644,
+ 45.534941649787605
+ ],
+ [
+ -73.55930226940605,
+ 45.53494584962156
+ ],
+ [
+ -73.55940826889834,
+ 45.53499254961677
+ ],
+ [
+ -73.55948896956214,
+ 45.53502825000403
+ ],
+ [
+ -73.5594914687781,
+ 45.53502954952439
+ ],
+ [
+ -73.5595649694696,
+ 45.534948749935154
+ ],
+ [
+ -73.5595608694604,
+ 45.53494705021649
+ ],
+ [
+ -73.55952376882871,
+ 45.53492865008743
+ ],
+ [
+ -73.55953300576545,
+ 45.534919476103234
+ ],
+ [
+ -73.55939175734557,
+ 45.53485656492882
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1579,
+ "ID_UEV":"01025938",
+ "CIVIQUE_DE":" 2510",
+ "CIVIQUE_FI":" 2510",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1989,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-18-5595-6-000-0000",
+ "SUPERFICIE":289,
+ "SUPERFIC_1":512,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000656032508561,
+ "OBJECTID":88320,
+ "Join_Count":1,
+ "TARGET_FID":88320,
+ "feature_id":"2f74e3ab-c3c1-438e-86e5-15063d00ef98",
+ "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.7,
+ "heightmax":41.9,
+ "elevmin":29.18,
+ "elevmax":31.15,
+ "bldgarea":379.8,
+ "comment":" ",
+ "OBJECTID_2":88320,
+ "Shape_Le_1":0.000656032508561,
+ "Shape_Ar_1":2.33387546167e-08,
+ "OBJECTID_3":88320,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88319,
+ "g_objectid":"941425",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425439",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004318559560000000",
+ "g_sup_tota":"288.9",
+ "g_geometry":"0.000798742",
+ "g_geomet_1":"3.33315e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000656032508561,
+ "Shape_Area":2.33387546167e-08,
+ "Shape_Le_3":0.000656031810583,
+ "Shape_Ar_2":2.33387546167e-08,
+ "building_height":19.599999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1580,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55576279234084,
+ 45.52851630043721
+ ],
+ [
+ -73.55579226672158,
+ 45.52853284886218
+ ],
+ [
+ -73.55576436705374,
+ 45.52855734909268
+ ],
+ [
+ -73.55576446687849,
+ 45.52855744891743
+ ],
+ [
+ -73.55581603670258,
+ 45.52858393125372
+ ],
+ [
+ -73.5559396683029,
+ 45.52845284157567
+ ],
+ [
+ -73.555878866938,
+ 45.528426148798026
+ ],
+ [
+ -73.55585694416449,
+ 45.52841646849552
+ ],
+ [
+ -73.55576279234084,
+ 45.52851630043721
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1580,
+ "ID_UEV":"01018324",
+ "CIVIQUE_DE":" 1929",
+ "CIVIQUE_FI":" 1933",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-41-3979-6-000-0000",
+ "SUPERFICIE":206,
+ "SUPERFIC_1":313,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000536831339866,
+ "OBJECTID":88323,
+ "Join_Count":1,
+ "TARGET_FID":88323,
+ "feature_id":"3797a97f-7ec7-42ee-9e37-547756dd2f29",
+ "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.57,
+ "heightmax":35.35,
+ "elevmin":21.71,
+ "elevmax":23.41,
+ "bldgarea":1414.89,
+ "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_2":88323,
+ "Shape_Le_1":0.000536831339866,
+ "Shape_Ar_1":1.3959246985e-08,
+ "OBJECTID_3":88323,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88322,
+ "g_objectid":"940906",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424622",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341338310000000",
+ "g_sup_tota":"206.1",
+ "g_geometry":"0.000736229",
+ "g_geomet_1":"2.38001e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000536831339866,
+ "Shape_Area":1.3959246985e-08,
+ "Shape_Le_3":0.000536831561089,
+ "Shape_Ar_2":1.3959246985e-08,
+ "building_height":16.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1581,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55568627712184,
+ 45.528473345219005
+ ],
+ [
+ -73.55576279234084,
+ 45.52851630043721
+ ],
+ [
+ -73.55585694416449,
+ 45.52841646849552
+ ],
+ [
+ -73.55580616754244,
+ 45.52839404929623
+ ],
+ [
+ -73.5557743189515,
+ 45.528379990194686
+ ],
+ [
+ -73.55568627712184,
+ 45.528473345219005
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1581,
+ "ID_UEV":"01018325",
+ "CIVIQUE_DE":" 1923",
+ "CIVIQUE_FI":" 1925",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-41-4675-9-000-0000",
+ "SUPERFICIE":205,
+ "SUPERFIC_1":165,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000443616017588,
+ "OBJECTID":88324,
+ "Join_Count":1,
+ "TARGET_FID":88324,
+ "feature_id":"3797a97f-7ec7-42ee-9e37-547756dd2f29",
+ "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.57,
+ "heightmax":35.35,
+ "elevmin":21.71,
+ "elevmax":23.41,
+ "bldgarea":1414.89,
+ "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_2":88324,
+ "Shape_Le_1":0.000443616017588,
+ "Shape_Ar_1":1.13041690525e-08,
+ "OBJECTID_3":88324,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88323,
+ "g_objectid":"940917",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424647",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341516920000000",
+ "g_sup_tota":"177.1",
+ "g_geometry":"0.000658391",
+ "g_geomet_1":"2.03972e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000443616017588,
+ "Shape_Area":1.13041690525e-08,
+ "Shape_Le_3":0.00044361547564,
+ "Shape_Ar_2":1.13041690525e-08,
+ "building_height":16.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1582,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55538649531235,
+ 45.5284182995152
+ ],
+ [
+ -73.5553949903084,
+ 45.52842231588746
+ ],
+ [
+ -73.55543686723948,
+ 45.52837334870138
+ ],
+ [
+ -73.5555151334385,
+ 45.528406405981144
+ ],
+ [
+ -73.5556090298547,
+ 45.528307027297764
+ ],
+ [
+ -73.5555260008461,
+ 45.52827037542778
+ ],
+ [
+ -73.55538649531235,
+ 45.5284182995152
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1582,
+ "ID_UEV":"01018328",
+ "CIVIQUE_DE":" 1905",
+ "CIVIQUE_FI":" 1909",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-41-6460-4-000-0000",
+ "SUPERFICIE":177,
+ "SUPERFIC_1":256,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000589600076808,
+ "OBJECTID":88325,
+ "Join_Count":1,
+ "TARGET_FID":88325,
+ "feature_id":"3797a97f-7ec7-42ee-9e37-547756dd2f29",
+ "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.57,
+ "heightmax":35.35,
+ "elevmin":21.71,
+ "elevmax":23.41,
+ "bldgarea":1414.89,
+ "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_2":88325,
+ "Shape_Le_1":0.000589600076808,
+ "Shape_Ar_1":1.22314958044e-08,
+ "OBJECTID_3":88325,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88324,
+ "g_objectid":"940861",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424646",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341586630000000",
+ "g_sup_tota":"204.6",
+ "g_geometry":"0.000731625",
+ "g_geomet_1":"2.35368e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000589600076808,
+ "Shape_Area":1.22314958044e-08,
+ "Shape_Le_3":0.000589600092916,
+ "Shape_Ar_2":1.22314958044e-08,
+ "building_height":16.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1583,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55535387330445,
+ 45.528328801683145
+ ],
+ [
+ -73.55535836721671,
+ 45.528331549111996
+ ],
+ [
+ -73.55535886723978,
+ 45.52833174876149
+ ],
+ [
+ -73.5553688668016,
+ 45.52832064842948
+ ],
+ [
+ -73.55540266692138,
+ 45.52833574894595
+ ],
+ [
+ -73.55536196720287,
+ 45.52838094887199
+ ],
+ [
+ -73.55534567328604,
+ 45.52839900096342
+ ],
+ [
+ -73.55538649531235,
+ 45.5284182995152
+ ],
+ [
+ -73.5555260008461,
+ 45.52827037542778
+ ],
+ [
+ -73.55544337293516,
+ 45.52823390072423
+ ],
+ [
+ -73.55535387330445,
+ 45.528328801683145
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1583,
+ "ID_UEV":"01018329",
+ "CIVIQUE_DE":" 1899",
+ "CIVIQUE_FI":" 1903",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-41-7056-9-000-0000",
+ "SUPERFICIE":176,
+ "SUPERFIC_1":355,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000612159843363,
+ "OBJECTID":88326,
+ "Join_Count":1,
+ "TARGET_FID":88326,
+ "feature_id":"3797a97f-7ec7-42ee-9e37-547756dd2f29",
+ "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.57,
+ "heightmax":35.35,
+ "elevmin":21.71,
+ "elevmax":23.41,
+ "bldgarea":1414.89,
+ "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_2":88326,
+ "Shape_Le_1":0.000612159843363,
+ "Shape_Ar_1":1.3770180959e-08,
+ "OBJECTID_3":88326,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88325,
+ "g_objectid":"940914",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424638",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004341775310000000",
+ "g_sup_tota":"203.4",
+ "g_geometry":"0.000728373",
+ "g_geomet_1":"2.33761e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000612159843363,
+ "Shape_Area":1.3770180959e-08,
+ "Shape_Le_3":0.000612159017356,
+ "Shape_Ar_2":1.3770180959e-08,
+ "building_height":16.39
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1584,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56197725696668,
+ 45.511338386008006
+ ],
+ [
+ -73.56195499514875,
+ 45.51136140685374
+ ],
+ [
+ -73.56184503774014,
+ 45.51148493683066
+ ],
+ [
+ -73.56214688349372,
+ 45.51162163018438
+ ],
+ [
+ -73.56230060820835,
+ 45.51144614547353
+ ],
+ [
+ -73.5621245893002,
+ 45.51136363987038
+ ],
+ [
+ -73.56209416073877,
+ 45.51139528701318
+ ],
+ [
+ -73.56197725696668,
+ 45.511338386008006
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1584,
+ "ID_UEV":"01021583",
+ "CIVIQUE_DE":" 176",
+ "CIVIQUE_FI":" 182",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1946,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-92-4985-1-000-0000",
+ "SUPERFICIE":598,
+ "SUPERFIC_1":3958,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0011303659201,
+ "OBJECTID":88327,
+ "Join_Count":1,
+ "TARGET_FID":88327,
+ "feature_id":"9b1e369c-4008-46f0-95f2-6bdaf617c312",
+ "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.6,
+ "heightmax":33.17,
+ "elevmin":25.09,
+ "elevmax":25.86,
+ "bldgarea":1849.55,
+ "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_2":88327,
+ "Shape_Le_1":0.0011303659201,
+ "Shape_Ar_1":6.90578408326e-08,
+ "OBJECTID_3":88327,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88326,
+ "g_objectid":"944411",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"5501455",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"118",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994192345720000000",
+ "g_sup_tota":"1253.4",
+ "g_geometry":"0.00162171",
+ "g_geomet_1":"1.4368e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0011303659201,
+ "Shape_Area":6.90578408326e-08,
+ "Shape_Le_3":0.00113036715394,
+ "Shape_Ar_2":6.90578408326e-08,
+ "building_height":16.285
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1585,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55144724081936,
+ 45.534898559671085
+ ],
+ [
+ -73.55170812695034,
+ 45.53498463198547
+ ],
+ [
+ -73.55173346714764,
+ 45.534940649741486
+ ],
+ [
+ -73.55172896694012,
+ 45.53493935022113
+ ],
+ [
+ -73.55167946735538,
+ 45.534925949423325
+ ],
+ [
+ -73.5517022669679,
+ 45.534884349483434
+ ],
+ [
+ -73.55150056612007,
+ 45.534813849829604
+ ],
+ [
+ -73.5514996658987,
+ 45.534813650180105
+ ],
+ [
+ -73.55144724081936,
+ 45.534898559671085
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1585,
+ "ID_UEV":"01025534",
+ "CIVIQUE_DE":" 2701",
+ "CIVIQUE_FI":" 2707",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-78-6391-3-000-0000",
+ "SUPERFICIE":409,
+ "SUPERFIC_1":579,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000743260540561,
+ "OBJECTID":88330,
+ "Join_Count":1,
+ "TARGET_FID":88330,
+ "feature_id":"6268b397-4d87-4802-ab53-55865602e3fa",
+ "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":34.39,
+ "elevmin":21.01,
+ "elevmax":22.02,
+ "bldgarea":1158.36,
+ "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_2":88330,
+ "Shape_Le_1":0.000743260540561,
+ "Shape_Ar_1":2.34057832706e-08,
+ "OBJECTID_3":88330,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88329,
+ "g_objectid":"943654",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360768",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004378639130000000",
+ "g_sup_tota":"408.5",
+ "g_geometry":"0.00113637",
+ "g_geomet_1":"4.70568e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000743260540561,
+ "Shape_Area":2.34057832706e-08,
+ "Shape_Le_3":0.000743260199197,
+ "Shape_Ar_2":2.34057832706e-08,
+ "building_height":15.935
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1586,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55133706217752,
+ 45.53508042327321
+ ],
+ [
+ -73.55133396581172,
+ 45.53508455026208
+ ],
+ [
+ -73.551205691911,
+ 45.53525561570439
+ ],
+ [
+ -73.55161543832367,
+ 45.53540078247043
+ ],
+ [
+ -73.55172231195698,
+ 45.53525178009587
+ ],
+ [
+ -73.5516709669634,
+ 45.53523424961123
+ ],
+ [
+ -73.55164656745697,
+ 45.535269350150685
+ ],
+ [
+ -73.55158656738801,
+ 45.5352487502799
+ ],
+ [
+ -73.5516102672219,
+ 45.53521454996181
+ ],
+ [
+ -73.55161266751244,
+ 45.5352110498004
+ ],
+ [
+ -73.551552867093,
+ 45.535192049823536
+ ],
+ [
+ -73.55149736723156,
+ 45.53527824984165
+ ],
+ [
+ -73.55146706727318,
+ 45.535268549754065
+ ],
+ [
+ -73.55148126756829,
+ 45.53524675018767
+ ],
+ [
+ -73.55148886683958,
+ 45.535249249403634
+ ],
+ [
+ -73.55148986688569,
+ 45.53524475009544
+ ],
+ [
+ -73.55150066684415,
+ 45.535170350081884
+ ],
+ [
+ -73.55145826740696,
+ 45.53516094946854
+ ],
+ [
+ -73.55146806731929,
+ 45.53513945027571
+ ],
+ [
+ -73.55147434818447,
+ 45.53512566007145
+ ],
+ [
+ -73.55133706217752,
+ 45.53508042327321
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1586,
+ "ID_UEV":"01025540",
+ "CIVIQUE_DE":" 2727",
+ "CIVIQUE_FI":" 2743",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":15,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-8026-1-000-0000",
+ "SUPERFICIE":830,
+ "SUPERFIC_1":1687,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00158098682657,
+ "OBJECTID":88347,
+ "Join_Count":1,
+ "TARGET_FID":88347,
+ "feature_id":"6268b397-4d87-4802-ab53-55865602e3fa",
+ "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":34.39,
+ "elevmin":21.01,
+ "elevmax":22.02,
+ "bldgarea":1158.36,
+ "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_2":88347,
+ "Shape_Le_1":0.00158098682657,
+ "Shape_Ar_1":7.4892393827e-08,
+ "OBJECTID_3":88347,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88346,
+ "g_objectid":"943652",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360752",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379720940000000",
+ "g_sup_tota":"547.7",
+ "g_geometry":"0.00120176",
+ "g_geomet_1":"6.30924e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00158098682657,
+ "Shape_Area":7.4892393827e-08,
+ "Shape_Le_3":0.00158098432812,
+ "Shape_Ar_2":7.4892393827e-08,
+ "building_height":15.935
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1587,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54789355626446,
+ 45.530567006512435
+ ],
+ [
+ -73.54797455999979,
+ 45.530601378601034
+ ],
+ [
+ -73.54813372921008,
+ 45.53041608498463
+ ],
+ [
+ -73.54805272637407,
+ 45.53038171379535
+ ],
+ [
+ -73.54789355626446,
+ 45.530567006512435
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1587,
+ "ID_UEV":"01018934",
+ "CIVIQUE_DE":" 1577",
+ "CIVIQUE_FI":" 1577",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres transports par v\u00c3\u00a9hicule automobile",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-03-4998-3-000-0000",
+ "SUPERFICIE":180,
+ "SUPERFIC_1":355,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000664531446167,
+ "OBJECTID":88352,
+ "Join_Count":1,
+ "TARGET_FID":88352,
+ "feature_id":"15061879-18ed-4193-a9a4-11668c1d63cc",
+ "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.59,
+ "heightmax":11.44,
+ "elevmin":18.34,
+ "elevmax":22.03,
+ "bldgarea":1118.3,
+ "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_2":88352,
+ "Shape_Le_1":0.000664531446167,
+ "Shape_Ar_1":2.04803164989e-08,
+ "OBJECTID_3":88352,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88351,
+ "g_objectid":"938260",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1425222",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014303599250000000",
+ "g_sup_tota":"360.5",
+ "g_geometry":"0.0008471",
+ "g_geomet_1":"4.15122e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000664531446167,
+ "Shape_Area":2.04803164989e-08,
+ "Shape_Le_3":0.000664530863012,
+ "Shape_Ar_2":2.04803164989e-08,
+ "building_height":5.425
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1588,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55296390787989,
+ 45.51959886944257
+ ],
+ [
+ -73.55297166633117,
+ 45.519602546770415
+ ],
+ [
+ -73.55283356643778,
+ 45.51974654711575
+ ],
+ [
+ -73.55290776590252,
+ 45.519781746580634
+ ],
+ [
+ -73.55293894989447,
+ 45.51979639473812
+ ],
+ [
+ -73.5531039134367,
+ 45.5196201851737
+ ],
+ [
+ -73.55306986600336,
+ 45.519604146664335
+ ],
+ [
+ -73.5529872659714,
+ 45.51969074688076
+ ],
+ [
+ -73.55296056599917,
+ 45.51967814647957
+ ],
+ [
+ -73.55303176622488,
+ 45.51960344699178
+ ],
+ [
+ -73.55298926606362,
+ 45.51958474648915
+ ],
+ [
+ -73.55303906602192,
+ 45.51952874660467
+ ],
+ [
+ -73.55303211606115,
+ 45.51952569700361
+ ],
+ [
+ -73.55296390787989,
+ 45.51959886944257
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1588,
+ "ID_UEV":"01021969",
+ "CIVIQUE_DE":" 1214",
+ "CIVIQUE_FI":" 1222",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-61-5994-3-000-0000",
+ "SUPERFICIE":318,
+ "SUPERFIC_1":471,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00108508616228,
+ "OBJECTID":88355,
+ "Join_Count":1,
+ "TARGET_FID":88355,
+ "feature_id":"71c25750-e058-4b0f-a161-e876143a7a6b",
+ "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.51,
+ "heightmax":11.74,
+ "elevmin":17.79,
+ "elevmax":19.16,
+ "bldgarea":583.63,
+ "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_2":88355,
+ "Shape_Le_1":0.00108508616228,
+ "Shape_Ar_1":2.31420223111e-08,
+ "OBJECTID_3":88355,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88354,
+ "g_objectid":"941881",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566773",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004261718640000000",
+ "g_sup_tota":"486",
+ "g_geometry":"0.0010161",
+ "g_geomet_1":"5.64261e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00108508616228,
+ "Shape_Area":2.31420223111e-08,
+ "Shape_Le_3":0.00108508675689,
+ "Shape_Ar_2":2.31420223111e-08,
+ "building_height":4.615
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1589,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55327716333227,
+ 45.51985217878532
+ ],
+ [
+ -73.55326766649146,
+ 45.51984784675102
+ ],
+ [
+ -73.5532918663484,
+ 45.51982144715236
+ ],
+ [
+ -73.55322836611805,
+ 45.51979264726316
+ ],
+ [
+ -73.55313805799682,
+ 45.519890947659405
+ ],
+ [
+ -73.55321000645847,
+ 45.519924402439514
+ ],
+ [
+ -73.55327716333227,
+ 45.51985217878532
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1589,
+ "ID_UEV":"01021972",
+ "CIVIQUE_DE":" 1242",
+ "CIVIQUE_FI":" 1248",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1890,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"C",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-62-3708-7-000-0000",
+ "SUPERFICIE":234,
+ "SUPERFIC_1":236,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000427432116587,
+ "OBJECTID":88356,
+ "Join_Count":1,
+ "TARGET_FID":88356,
+ "feature_id":"f85a52eb-3175-4ae5-8d1f-620639cd88b5",
+ "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.27,
+ "heightmax":11.7,
+ "elevmin":15.52,
+ "elevmax":18.46,
+ "bldgarea":697.02,
+ "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_2":88356,
+ "Shape_Le_1":0.000427432116587,
+ "Shape_Ar_1":9.81774637238e-09,
+ "OBJECTID_3":88356,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88355,
+ "g_objectid":"941876",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566763",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004262311220000000",
+ "g_sup_tota":"223",
+ "g_geometry":"0.000802085",
+ "g_geomet_1":"2.57963e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000427432116587,
+ "Shape_Area":9.81774637238e-09,
+ "Shape_Le_3":0.000427431381501,
+ "Shape_Ar_2":9.81774637238e-09,
+ "building_height":4.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1590,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55395084637631,
+ 45.5191895717916
+ ],
+ [
+ -73.5540710461637,
+ 45.51924453116048
+ ],
+ [
+ -73.55410126608241,
+ 45.519199947270046
+ ],
+ [
+ -73.55399176642872,
+ 45.51915104663379
+ ],
+ [
+ -73.5539874658707,
+ 45.51914914726563
+ ],
+ [
+ -73.55395084637631,
+ 45.5191895717916
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1590,
+ "ID_UEV":"01022478",
+ "CIVIQUE_DE":" 1329",
+ "CIVIQUE_FI":" 1331",
+ "NOM_RUE":"rue Sainte-Rose (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-51-7843-1-000-0000",
+ "SUPERFICIE":93,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000365198561654,
+ "OBJECTID":88358,
+ "Join_Count":1,
+ "TARGET_FID":88358,
+ "feature_id":"e0b5ba43-9ce8-4edb-9620-561edb05eb25",
+ "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.49,
+ "heightmax":13.17,
+ "elevmin":17.61,
+ "elevmax":19.53,
+ "bldgarea":1125.92,
+ "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_2":88358,
+ "Shape_Le_1":0.000365198561654,
+ "Shape_Ar_1":6.74136938996e-09,
+ "OBJECTID_3":88358,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88357,
+ "g_objectid":"941868",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566733",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004251784310000000",
+ "g_sup_tota":"93.3",
+ "g_geometry":"0.00047853",
+ "g_geomet_1":"1.07425e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000365198561654,
+ "Shape_Area":6.74136938996e-09,
+ "Shape_Le_3":0.000365197893056,
+ "Shape_Ar_2":6.74136938996e-09,
+ "building_height":5.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1591,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55172087753832,
+ 45.529125871711905
+ ],
+ [
+ -73.55172456655734,
+ 45.52912694909972
+ ],
+ [
+ -73.55171336640058,
+ 45.529145148679966
+ ],
+ [
+ -73.5517373657087,
+ 45.529152649025825
+ ],
+ [
+ -73.5517071664744,
+ 45.52919994886884
+ ],
+ [
+ -73.55172196571799,
+ 45.529204349251614
+ ],
+ [
+ -73.55170896601781,
+ 45.52922444909934
+ ],
+ [
+ -73.55173780098058,
+ 45.529233615888955
+ ],
+ [
+ -73.5518934880159,
+ 45.52906465575955
+ ],
+ [
+ -73.55181287638499,
+ 45.529026032575636
+ ],
+ [
+ -73.55172087753832,
+ 45.529125871711905
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1591,
+ "ID_UEV":"01018437",
+ "CIVIQUE_DE":" 1711",
+ "CIVIQUE_FI":" 1715",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-72-5546-6-000-0000",
+ "SUPERFICIE":226,
+ "SUPERFIC_1":412,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000631013493022,
+ "OBJECTID":88359,
+ "Join_Count":1,
+ "TARGET_FID":88359,
+ "feature_id":"ef9f99e9-b72a-459d-a003-11d6da78defc",
+ "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.48,
+ "heightmax":34.11,
+ "elevmin":18.43,
+ "elevmax":20.99,
+ "bldgarea":2146.82,
+ "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_2":88359,
+ "Shape_Le_1":0.000631013493022,
+ "Shape_Ar_1":1.65763676214e-08,
+ "OBJECTID_3":88359,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88358,
+ "g_objectid":"940821",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424482",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004372554660000000",
+ "g_sup_tota":"226.2",
+ "g_geometry":"0.00078901",
+ "g_geomet_1":"2.60564e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000631013493022,
+ "Shape_Area":1.65763676214e-08,
+ "Shape_Le_3":0.000631011099341,
+ "Shape_Ar_2":1.65763676214e-08,
+ "building_height":15.815
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1592,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55038534652836,
+ 45.52930424324652
+ ],
+ [
+ -73.55053454495513,
+ 45.529373352548475
+ ],
+ [
+ -73.55057653070418,
+ 45.52932711390548
+ ],
+ [
+ -73.55043157078221,
+ 45.52925996782355
+ ],
+ [
+ -73.55038534652836,
+ 45.52930424324652
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1592,
+ "ID_UEV":"01019277",
+ "CIVIQUE_DE":" 2365",
+ "CIVIQUE_FI":" 2367",
+ "NOM_RUE":"rue Logan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-82-5469-0-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":141,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000450648877938,
+ "OBJECTID":88360,
+ "Join_Count":1,
+ "TARGET_FID":88360,
+ "feature_id":"fb49aaec-5e81-4ba6-8196-0780aa47dea6",
+ "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.83,
+ "heightmax":32.55,
+ "elevmin":19.65,
+ "elevmax":21.29,
+ "bldgarea":970.11,
+ "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_2":88360,
+ "Shape_Le_1":0.000450648877938,
+ "Shape_Ar_1":9.66119642898e-09,
+ "OBJECTID_3":88360,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88359,
+ "g_objectid":"940589",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424113",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004382546900000000",
+ "g_sup_tota":"152.4",
+ "g_geometry":"0.000709635",
+ "g_geomet_1":"1.74116e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000450648877938,
+ "Shape_Area":9.66119642898e-09,
+ "Shape_Le_3":0.000450647348842,
+ "Shape_Ar_2":9.66119642898e-09,
+ "building_height":15.36
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1593,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55680522979937,
+ 45.53837992704229
+ ],
+ [
+ -73.55702451149385,
+ 45.53845784250572
+ ],
+ [
+ -73.55704500884192,
+ 45.53842930162127
+ ],
+ [
+ -73.5569670690968,
+ 45.538394150719775
+ ],
+ [
+ -73.55699036873237,
+ 45.538368550618415
+ ],
+ [
+ -73.55701966954396,
+ 45.5383817508674
+ ],
+ [
+ -73.55702466887521,
+ 45.53838355041082
+ ],
+ [
+ -73.55702623279625,
+ 45.53838139653452
+ ],
+ [
+ -73.5568415084507,
+ 45.53831477925395
+ ],
+ [
+ -73.55682676946168,
+ 45.53834415111198
+ ],
+ [
+ -73.55682546904201,
+ 45.53834375091367
+ ],
+ [
+ -73.55680522979937,
+ 45.53837992704229
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1593,
+ "ID_UEV":"01025985",
+ "CIVIQUE_DE":" 2813",
+ "CIVIQUE_FI":" 2817",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-5476-8-000-0000",
+ "SUPERFICIE":153,
+ "SUPERFIC_1":153,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000700125012637,
+ "OBJECTID":88365,
+ "Join_Count":1,
+ "TARGET_FID":88365,
+ "feature_id":"a1468f03-d869-4b19-b6dd-0faf58b1a12f",
+ "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.54,
+ "heightmax":40.33,
+ "elevmin":24.69,
+ "elevmax":27.19,
+ "bldgarea":880.76,
+ "comment":" ",
+ "OBJECTID_2":88365,
+ "Shape_Le_1":0.000700125012637,
+ "Shape_Ar_1":1.43178180574e-08,
+ "OBJECTID_3":88365,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88364,
+ "g_objectid":"944053",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361290",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004432506910000000",
+ "g_sup_tota":"156.6",
+ "g_geometry":"0.000648321",
+ "g_geomet_1":"1.80829e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000700125012637,
+ "Shape_Area":1.43178180574e-08,
+ "Shape_Le_3":0.000700124180511,
+ "Shape_Ar_2":1.43178180574e-08,
+ "building_height":19.895
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1594,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55329090227517,
+ 45.53698039398029
+ ],
+ [
+ -73.55327016750607,
+ 45.5369721498951
+ ],
+ [
+ -73.55327076735388,
+ 45.536971450222545
+ ],
+ [
+ -73.5532128672019,
+ 45.536956949553876
+ ],
+ [
+ -73.5532128672019,
+ 45.53695705027794
+ ],
+ [
+ -73.55315556689774,
+ 45.53703255016236
+ ],
+ [
+ -73.55316096732662,
+ 45.53703455025459
+ ],
+ [
+ -73.55323355250829,
+ 45.53706159466716
+ ],
+ [
+ -73.55329090227517,
+ 45.53698039398029
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1594,
+ "ID_UEV":"01024999",
+ "CIVIQUE_DE":" 2185",
+ "CIVIQUE_FI":" 2185",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-61-4322-4-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000360434895344,
+ "OBJECTID":88367,
+ "Join_Count":1,
+ "TARGET_FID":88367,
+ "feature_id":"347909ea-2a10-4cb2-aa94-60c5ac3a21a8",
+ "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.66,
+ "heightmax":5.42,
+ "elevmin":18.62,
+ "elevmax":19.47,
+ "bldgarea":218.6,
+ "comment":" ",
+ "OBJECTID_2":88367,
+ "Shape_Le_1":0.000360434895344,
+ "Shape_Ar_1":7.7204070668e-09,
+ "OBJECTID_3":88367,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88366,
+ "g_objectid":"943758",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360911",
+ "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":"66023004461432240000000",
+ "g_sup_tota":"187",
+ "g_geometry":"0.000669128",
+ "g_geomet_1":"2.15423e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000360434895344,
+ "Shape_Area":7.7204070668e-09,
+ "Shape_Le_3":0.000360435499513,
+ "Shape_Ar_2":7.7204070668e-09,
+ "building_height":2.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1595,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55236632726603,
+ 45.53704864353037
+ ],
+ [
+ -73.55245359028281,
+ 45.537079299620274
+ ],
+ [
+ -73.55251705004368,
+ 45.53699081892145
+ ],
+ [
+ -73.55243008650113,
+ 45.53695974464679
+ ],
+ [
+ -73.55236632726603,
+ 45.53704864353037
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1595,
+ "ID_UEV":"01025084",
+ "CIVIQUE_DE":" 2150",
+ "CIVIQUE_FI":" 2150",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-0424-1-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000403125152308,
+ "OBJECTID":88369,
+ "Join_Count":1,
+ "TARGET_FID":88369,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":88369,
+ "Shape_Le_1":0.000403125152308,
+ "Shape_Ar_1":9.68940353422e-09,
+ "OBJECTID_3":88369,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88368,
+ "g_objectid":"943777",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360931",
+ "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":"66023004471112040000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667003",
+ "g_geomet_1":"2.14036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000403125152308,
+ "Shape_Area":9.68940353422e-09,
+ "Shape_Le_3":0.000403124517904,
+ "Shape_Ar_2":9.68940353422e-09,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1596,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55360587543265,
+ 45.53398959329539
+ ],
+ [
+ -73.55367420682103,
+ 45.53401613318829
+ ],
+ [
+ -73.55376256611139,
+ 45.53391228847163
+ ],
+ [
+ -73.55369398740943,
+ 45.53388591675195
+ ],
+ [
+ -73.55360587543265,
+ 45.53398959329539
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1596,
+ "ID_UEV":"01023997",
+ "CIVIQUE_DE":" 2084",
+ "CIVIQUE_FI":" 2084",
+ "NOM_RUE":"rue du Havre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-67-0580-0-000-0000",
+ "SUPERFICIE":123,
+ "SUPERFIC_1":150,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000419188808202,
+ "OBJECTID":88373,
+ "Join_Count":1,
+ "TARGET_FID":88373,
+ "feature_id":"84df95cc-1170-460e-9375-5f9c60048045",
+ "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.54,
+ "heightmax":28.03,
+ "elevmin":18.9,
+ "elevmax":19.93,
+ "bldgarea":348.41,
+ "comment":" ",
+ "OBJECTID_2":88373,
+ "Shape_Le_1":0.000419188808202,
+ "Shape_Ar_1":9.43730106998e-09,
+ "OBJECTID_3":88373,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88372,
+ "g_objectid":"941087",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424982",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004367107760000000",
+ "g_sup_tota":"126.6",
+ "g_geometry":"0.000563405",
+ "g_geomet_1":"1.4661e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000419188808202,
+ "Shape_Area":9.43730106998e-09,
+ "Shape_Le_3":0.000419188953492,
+ "Shape_Ar_2":9.43730106998e-09,
+ "building_height":12.745000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1597,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56063403675324,
+ 45.53286643089137
+ ],
+ [
+ -73.5607111257397,
+ 45.5328988298674
+ ],
+ [
+ -73.56081531309806,
+ 45.53278697309063
+ ],
+ [
+ -73.56073894806585,
+ 45.53275379620103
+ ],
+ [
+ -73.56063403675324,
+ 45.53286643089137
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56079979619548,
+ 45.53268846674963
+ ],
+ [
+ -73.56087579340499,
+ 45.53272204113958
+ ],
+ [
+ -73.56087664686162,
+ 45.532721123831095
+ ],
+ [
+ -73.56080155706805,
+ 45.53268657727402
+ ],
+ [
+ -73.56079979619548,
+ 45.53268846674963
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1597,
+ "ID_UEV":"01022878",
+ "CIVIQUE_DE":" 2444",
+ "CIVIQUE_FI":" 2448",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-5555-5-000-0000",
+ "SUPERFICIE":175,
+ "SUPERFIC_1":255,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00064324392522,
+ "OBJECTID":88374,
+ "Join_Count":2,
+ "TARGET_FID":88374,
+ "feature_id":"0e06b25c-d8f3-48ce-972d-c964fd1dd532",
+ "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.85,
+ "heightmax":44.61,
+ "elevmin":32.1,
+ "elevmax":35.53,
+ "bldgarea":661.36,
+ "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_2":88374,
+ "Shape_Le_1":0.00064324392522,
+ "Shape_Ar_1":1.2190810865e-08,
+ "OBJECTID_3":88374,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88373,
+ "g_objectid":"940438",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423891",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306485920000000",
+ "g_sup_tota":"198.1",
+ "g_geometry":"0.00070053",
+ "g_geomet_1":"2.27873e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00064324392522,
+ "Shape_Area":1.2190810865e-08,
+ "Shape_Le_3":0.000643243317835,
+ "Shape_Ar_2":1.2190810865e-08,
+ "building_height":21.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1598,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5607111257397,
+ 45.5328988298674
+ ],
+ [
+ -73.56073686883327,
+ 45.532909648711616
+ ],
+ [
+ -73.56079827274394,
+ 45.53293545385841
+ ],
+ [
+ -73.56090163092738,
+ 45.53282448471249
+ ],
+ [
+ -73.56083136869455,
+ 45.532793949131744
+ ],
+ [
+ -73.56081531309806,
+ 45.53278697309063
+ ],
+ [
+ -73.5607111257397,
+ 45.5328988298674
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56087579340499,
+ 45.53272204113958
+ ],
+ [
+ -73.56088146992575,
+ 45.532724548449444
+ ],
+ [
+ -73.56088234406677,
+ 45.53272374445554
+ ],
+ [
+ -73.56087991140063,
+ 45.53272262569891
+ ],
+ [
+ -73.56087664686162,
+ 45.532721123831095
+ ],
+ [
+ -73.56087579340499,
+ 45.53272204113958
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1598,
+ "ID_UEV":"01022880",
+ "CIVIQUE_DE":" 2452",
+ "CIVIQUE_FI":" 2460",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-4859-2-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":326,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000508074624387,
+ "OBJECTID":88375,
+ "Join_Count":2,
+ "TARGET_FID":88375,
+ "feature_id":"0e06b25c-d8f3-48ce-972d-c964fd1dd532",
+ "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.85,
+ "heightmax":44.61,
+ "elevmin":32.1,
+ "elevmax":35.53,
+ "bldgarea":661.36,
+ "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_2":88375,
+ "Shape_Le_1":0.000508074624387,
+ "Shape_Ar_1":1.35169605015e-08,
+ "OBJECTID_3":88375,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88374,
+ "g_objectid":"940439",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423892",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306416390000000",
+ "g_sup_tota":"210.7",
+ "g_geometry":"0.000712254",
+ "g_geomet_1":"2.42325e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000508074624387,
+ "Shape_Area":1.35169605015e-08,
+ "Shape_Le_3":0.00050807389762,
+ "Shape_Ar_2":1.35169605015e-08,
+ "building_height":21.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1599,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55718138743293,
+ 45.538485521839654
+ ],
+ [
+ -73.55718486870857,
+ 45.53848675121289
+ ],
+ [
+ -73.55722216898975,
+ 45.53843455096405
+ ],
+ [
+ -73.55724716924331,
+ 45.53844335083027
+ ],
+ [
+ -73.55726126881434,
+ 45.538447650488976
+ ],
+ [
+ -73.55724746871755,
+ 45.53847055082556
+ ],
+ [
+ -73.55724576899888,
+ 45.5384737506134
+ ],
+ [
+ -73.55729070722221,
+ 45.53848519178847
+ ],
+ [
+ -73.55736638337373,
+ 45.5383788748355
+ ],
+ [
+ -73.55731656902628,
+ 45.53835305080295
+ ],
+ [
+ -73.55731596917848,
+ 45.53835265060464
+ ],
+ [
+ -73.55730786898481,
+ 45.53836365111191
+ ],
+ [
+ -73.55727629198913,
+ 45.53835218925243
+ ],
+ [
+ -73.55718138743293,
+ 45.538485521839654
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1599,
+ "ID_UEV":"01024945",
+ "CIVIQUE_DE":" 2527",
+ "CIVIQUE_FI":" 2531",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-2782-2-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":245,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000584070258744,
+ "OBJECTID":88377,
+ "Join_Count":1,
+ "TARGET_FID":88377,
+ "feature_id":"2a540e9d-5f42-4b5a-9b81-dc3f2618e82a",
+ "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":42.58,
+ "elevmin":26.8,
+ "elevmax":34.1,
+ "bldgarea":1269.01,
+ "comment":" ",
+ "OBJECTID_2":88377,
+ "Shape_Le_1":0.000584070258744,
+ "Shape_Ar_1":1.08368199556e-08,
+ "OBJECTID_3":88377,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88376,
+ "g_objectid":"944061",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361305",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004432347860000000",
+ "g_sup_tota":"190.1",
+ "g_geometry":"0.000674438",
+ "g_geomet_1":"2.19256e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000584070258744,
+ "Shape_Area":1.08368199556e-08,
+ "Shape_Le_3":0.000584070263464,
+ "Shape_Ar_2":1.08368199556e-08,
+ "building_height":21.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1600,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55918419022005,
+ 45.50813698748228
+ ],
+ [
+ -73.55925398750337,
+ 45.508170156277984
+ ],
+ [
+ -73.55925477710812,
+ 45.50816933159967
+ ],
+ [
+ -73.55929834386532,
+ 45.508122172050896
+ ],
+ [
+ -73.55933657134753,
+ 45.5080816935656
+ ],
+ [
+ -73.55944182440251,
+ 45.50796751743727
+ ],
+ [
+ -73.55937059090189,
+ 45.50793585410668
+ ],
+ [
+ -73.55918419022005,
+ 45.50813698748228
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1600,
+ "ID_UEV":"01020525",
+ "CIVIQUE_DE":" 1005",
+ "CIVIQUE_FI":" 1005",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-19-6708-8-000-0000",
+ "SUPERFICIE":197,
+ "SUPERFIC_1":545,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000705766159456,
+ "OBJECTID":88379,
+ "Join_Count":1,
+ "TARGET_FID":88379,
+ "feature_id":"e2283162-ba44-4070-a7cd-5c75a66bb0d8",
+ "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.98,
+ "heightmax":17.98,
+ "elevmin":15.4,
+ "elevmax":17.95,
+ "bldgarea":1979.75,
+ "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_2":88379,
+ "Shape_Le_1":0.000705766159456,
+ "Shape_Ar_1":2.03420284865e-08,
+ "OBJECTID_3":88379,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88378,
+ "g_objectid":"939522",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180670",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004019670880000000",
+ "g_sup_tota":"196.7",
+ "g_geometry":"0.000768918",
+ "g_geomet_1":"2.26642e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000705766159456,
+ "Shape_Area":2.03420284865e-08,
+ "Shape_Le_3":0.000705766803763,
+ "Shape_Ar_2":2.03420284865e-08,
+ "building_height":8.5
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1601,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55038534652836,
+ 45.52930424324652
+ ],
+ [
+ -73.55033912047587,
+ 45.529348516870854
+ ],
+ [
+ -73.55049255920609,
+ 45.5294195920908
+ ],
+ [
+ -73.55053454495513,
+ 45.529373352548475
+ ],
+ [
+ -73.55038534652836,
+ 45.52930424324652
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1601,
+ "ID_UEV":"01019279",
+ "CIVIQUE_DE":" 2371",
+ "CIVIQUE_FI":" 2373",
+ "NOM_RUE":"rue Logan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-82-5774-3-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":130,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000459993986433,
+ "OBJECTID":88380,
+ "Join_Count":1,
+ "TARGET_FID":88380,
+ "feature_id":"fb49aaec-5e81-4ba6-8196-0780aa47dea6",
+ "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.83,
+ "heightmax":32.55,
+ "elevmin":19.65,
+ "elevmax":21.29,
+ "bldgarea":970.11,
+ "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_2":88380,
+ "Shape_Le_1":0.000459993986433,
+ "Shape_Ar_1":9.93966813127e-09,
+ "OBJECTID_3":88380,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88379,
+ "g_objectid":"940589",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424113",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004382546900000000",
+ "g_sup_tota":"152.4",
+ "g_geometry":"0.000709635",
+ "g_geomet_1":"1.74116e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000459993986433,
+ "Shape_Area":9.93966813127e-09,
+ "Shape_Le_3":0.000459993031423,
+ "Shape_Ar_2":9.93966813127e-09,
+ "building_height":15.36
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1602,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5665524400649,
+ 45.5160577789936
+ ],
+ [
+ -73.56668634282231,
+ 45.51611826469645
+ ],
+ [
+ -73.56675889203109,
+ 45.51595475176068
+ ],
+ [
+ -73.56690248948016,
+ 45.515984638030915
+ ],
+ [
+ -73.56690800052564,
+ 45.5159871174618
+ ],
+ [
+ -73.56718013177951,
+ 45.516111180736694
+ ],
+ [
+ -73.56728457454533,
+ 45.515876455884026
+ ],
+ [
+ -73.56734411685935,
+ 45.5159030884071
+ ],
+ [
+ -73.56740392447338,
+ 45.51592983874136
+ ],
+ [
+ -73.56740563228594,
+ 45.51592804369456
+ ],
+ [
+ -73.56760149653368,
+ 45.51602014596326
+ ],
+ [
+ -73.56760291836184,
+ 45.51601864949138
+ ],
+ [
+ -73.56763174972731,
+ 45.516032211267834
+ ],
+ [
+ -73.56766777117255,
+ 45.515956446083415
+ ],
+ [
+ -73.56766787279594,
+ 45.51595633996342
+ ],
+ [
+ -73.56766696897728,
+ 45.51595592897324
+ ],
+ [
+ -73.56763369675954,
+ 45.51594107577033
+ ],
+ [
+ -73.5676323243941,
+ 45.51594259472526
+ ],
+ [
+ -73.56749898820958,
+ 45.51588307219632
+ ],
+ [
+ -73.56749795938516,
+ 45.51588421073803
+ ],
+ [
+ -73.56746835190476,
+ 45.515870995200565
+ ],
+ [
+ -73.56746958667394,
+ 45.51586962643241
+ ],
+ [
+ -73.56723536454228,
+ 45.51576506945269
+ ],
+ [
+ -73.56721888716376,
+ 45.51578315391971
+ ],
+ [
+ -73.56718036200594,
+ 45.51582543374707
+ ],
+ [
+ -73.56716090877077,
+ 45.5158263897264
+ ],
+ [
+ -73.56711506223218,
+ 45.51580552275696
+ ],
+ [
+ -73.56716002833448,
+ 45.51575653578579
+ ],
+ [
+ -73.56695127050658,
+ 45.51566224546655
+ ],
+ [
+ -73.56705414485475,
+ 45.51554966923214
+ ],
+ [
+ -73.56691108789823,
+ 45.51570369881694
+ ],
+ [
+ -73.56683743432198,
+ 45.51566862525714
+ ],
+ [
+ -73.56683372102125,
+ 45.515672444677875
+ ],
+ [
+ -73.56678778724843,
+ 45.51565085195555
+ ],
+ [
+ -73.56678727013825,
+ 45.5156514455081
+ ],
+ [
+ -73.56657947008831,
+ 45.515561945877394
+ ],
+ [
+ -73.56657427020825,
+ 45.5155596454116
+ ],
+ [
+ -73.56656686968714,
+ 45.515569145849696
+ ],
+ [
+ -73.56639687803533,
+ 45.515503404508806
+ ],
+ [
+ -73.56632033943396,
+ 45.51558817640351
+ ],
+ [
+ -73.56626802676986,
+ 45.515655122835945
+ ],
+ [
+ -73.56629052331084,
+ 45.51566528427574
+ ],
+ [
+ -73.5663469989367,
+ 45.51569078005575
+ ],
+ [
+ -73.56634910874622,
+ 45.51569173423644
+ ],
+ [
+ -73.56648907023624,
+ 45.51573834609809
+ ],
+ [
+ -73.56646028743417,
+ 45.51578109896884
+ ],
+ [
+ -73.56645615325071,
+ 45.5157889788286
+ ],
+ [
+ -73.5665110595596,
+ 45.51581377943267
+ ],
+ [
+ -73.56653417033753,
+ 45.51582144615311
+ ],
+ [
+ -73.56647964174391,
+ 45.51590256500167
+ ],
+ [
+ -73.56646066335078,
+ 45.51594533316089
+ ],
+ [
+ -73.56643398316363,
+ 45.516005458235604
+ ],
+ [
+ -73.56650269136796,
+ 45.51603546951161
+ ],
+ [
+ -73.56651364331184,
+ 45.51604025390489
+ ],
+ [
+ -73.56653675588842,
+ 45.51605069413452
+ ],
+ [
+ -73.56655346978864,
+ 45.516056245649516
+ ],
+ [
+ -73.5665524400649,
+ 45.5160577789936
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1602,
+ "ID_UEV":"01021798",
+ "CIVIQUE_DE":" 312",
+ "CIVIQUE_FI":" 312",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":35,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"R\u00c3\u00a9sidence de tourisme, appartement, maison ou chalet (meubl\u00c3\u00a9 et \u00c3\u00a9quip\u00c3\u00a9 pour repas)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-57-7467-0-000-0000",
+ "SUPERFICIE":3550,
+ "SUPERFIC_1":10676,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0042771799619,
+ "OBJECTID":88384,
+ "Join_Count":1,
+ "TARGET_FID":88384,
+ "feature_id":"8e1da87e-3f79-40b6-947c-b870b1e48e84",
+ "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":25.2,
+ "elevmin":25.38,
+ "elevmax":42.64,
+ "bldgarea":8192.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_2":88384,
+ "Shape_Le_1":0.0042771799619,
+ "Shape_Ar_1":3.53463520286e-07,
+ "OBJECTID_3":88384,
+ "Join_Cou_1":15,
+ "TARGET_F_1":88383,
+ "g_objectid":"943097",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161256",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994157684330000000",
+ "g_sup_tota":"174.8",
+ "g_geometry":"0.000698489",
+ "g_geomet_1":"2.01593e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0042771799619,
+ "Shape_Area":3.53463520286e-07,
+ "Shape_Le_3":0.00427717771051,
+ "Shape_Ar_2":3.53463520286e-07,
+ "building_height":12.35
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1603,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55618606725504,
+ 45.521670748256724
+ ],
+ [
+ -73.55627736732849,
+ 45.521712647670846
+ ],
+ [
+ -73.5563715668162,
+ 45.52161134803558
+ ],
+ [
+ -73.55628026674276,
+ 45.52156934789738
+ ],
+ [
+ -73.55618606725504,
+ 45.521670748256724
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1603,
+ "ID_UEV":"01021985",
+ "CIVIQUE_DE":" 1605",
+ "CIVIQUE_FI":" 1605",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1974,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-44-0622-1-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":389,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477686943897,
+ "OBJECTID":88385,
+ "Join_Count":1,
+ "TARGET_FID":88385,
+ "feature_id":"52d4bd33-0d4c-421c-85a5-8b7f89cabc5e",
+ "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":9.35,
+ "heightmax":10.33,
+ "elevmin":26.39,
+ "elevmax":26.88,
+ "bldgarea":114.64,
+ "comment":" ",
+ "OBJECTID_2":88385,
+ "Shape_Le_1":0.000477686943897,
+ "Shape_Ar_1":1.32049450014e-08,
+ "OBJECTID_3":88385,
+ "Join_Cou_1":1,
+ "TARGET_F_1":88384,
+ "g_objectid":"942167",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567521",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004244062210000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100413",
+ "g_geomet_1":"4.88801e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477686943897,
+ "Shape_Area":1.32049450014e-08,
+ "Shape_Le_3":0.000477686189369,
+ "Shape_Ar_2":1.32049450014e-08,
+ "building_height":0.4900000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1604,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55616022973265,
+ 45.53194799105724
+ ],
+ [
+ -73.55629165845512,
+ 45.532006740169216
+ ],
+ [
+ -73.55636510338866,
+ 45.53192842001087
+ ],
+ [
+ -73.55623709568727,
+ 45.53187120784027
+ ],
+ [
+ -73.55616022973265,
+ 45.53194799105724
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1604,
+ "ID_UEV":"01023078",
+ "CIVIQUE_DE":" 2352",
+ "CIVIQUE_FI":" 2360",
+ "NOM_RUE":"rue Larivi\u00c3\u00a8re (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-45-1155-6-000-0000",
+ "SUPERFICIE":289,
+ "SUPERFIC_1":301,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000500187231885,
+ "OBJECTID":88389,
+ "Join_Count":1,
+ "TARGET_FID":88389,
+ "feature_id":"dbd4b4b8-7a5d-44f0-b4b7-f98cd1ba9c2a",
+ "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.46,
+ "heightmax":31.82,
+ "elevmin":18.54,
+ "elevmax":19.23,
+ "bldgarea":587.07,
+ "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_2":88389,
+ "Shape_Le_1":0.000500187231885,
+ "Shape_Ar_1":1.44173401672e-08,
+ "OBJECTID_3":88389,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88388,
+ "g_objectid":"940576",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424092",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004345064730000000",
+ "g_sup_tota":"260.5",
+ "g_geometry":"0.000856327",
+ "g_geomet_1":"3.04722e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000500187231885,
+ "Shape_Area":1.44173401672e-08,
+ "Shape_Le_3":0.000500188838349,
+ "Shape_Ar_2":1.44173401672e-08,
+ "building_height":14.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1605,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55381771523722,
+ 45.533847473432445
+ ],
+ [
+ -73.5538399671626,
+ 45.533848249547376
+ ],
+ [
+ -73.55383766669681,
+ 45.53386704987475
+ ],
+ [
+ -73.55383796707036,
+ 45.533867149699496
+ ],
+ [
+ -73.55394759172982,
+ 45.533914035854366
+ ],
+ [
+ -73.55398796499443,
+ 45.53386713980695
+ ],
+ [
+ -73.55385285894413,
+ 45.533809922240415
+ ],
+ [
+ -73.55385051171359,
+ 45.53380892669091
+ ],
+ [
+ -73.55381771523722,
+ 45.533847473432445
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1605,
+ "ID_UEV":"01023080",
+ "CIVIQUE_DE":" 2562",
+ "CIVIQUE_FI":" 2562",
+ "NOM_RUE":"rue Larivi\u00c3\u00a8re (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1912,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-9073-8-000-0000",
+ "SUPERFICIE":84,
+ "SUPERFIC_1":110,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000422516413733,
+ "OBJECTID":88390,
+ "Join_Count":1,
+ "TARGET_FID":88390,
+ "feature_id":"afad3dff-9602-4ba5-b587-5274c73dc13e",
+ "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.86,
+ "heightmax":31.2,
+ "elevmin":19.02,
+ "elevmax":19.88,
+ "bldgarea":598.6,
+ "comment":" ",
+ "OBJECTID_2":88390,
+ "Shape_Le_1":0.000422516413733,
+ "Shape_Ar_1":8.38834678922e-09,
+ "OBJECTID_3":88390,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88389,
+ "g_objectid":"943584",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2409684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357945570000000",
+ "g_sup_tota":"238.1",
+ "g_geometry":"0.000686102",
+ "g_geomet_1":"2.74474e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000422516413733,
+ "Shape_Area":8.38834678922e-09,
+ "Shape_Le_3":0.000422516748096,
+ "Shape_Ar_2":8.38834678922e-09,
+ "building_height":14.67
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1606,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55631037154825,
+ 45.53152961025361
+ ],
+ [
+ -73.5563165373002,
+ 45.531532480889574
+ ],
+ [
+ -73.55639426840261,
+ 45.53144844913691
+ ],
+ [
+ -73.55638785893439,
+ 45.53144551644772
+ ],
+ [
+ -73.55631037154825,
+ 45.53152961025361
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1606,
+ "ID_UEV":"01023089",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"place Larivi\u00c3\u00a8re (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-35-9509-7-000-0000",
+ "SUPERFICIE":95,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0002426703567,
+ "OBJECTID":88391,
+ "Join_Count":1,
+ "TARGET_FID":88391,
+ "feature_id":"e3de3ce9-0ffb-4857-80b4-e2e82edb8c20",
+ "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.45,
+ "heightmax":27.32,
+ "elevmin":18.45,
+ "elevmax":19.55,
+ "bldgarea":686.87,
+ "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_2":88391,
+ "Shape_Le_1":0.0002426703567,
+ "Shape_Ar_1":7.53726932897e-10,
+ "OBJECTID_3":88391,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88390,
+ "g_objectid":"945318",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1424012",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004335950970000000",
+ "g_sup_tota":"95.2",
+ "g_geometry":"0.000460729",
+ "g_geomet_1":"1.09867e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0002426703567,
+ "Shape_Area":7.53726932897e-10,
+ "Shape_Le_3":0.000242670755323,
+ "Shape_Ar_2":7.53726932897e-10,
+ "building_height":12.435
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1607,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54874116549423,
+ 45.530467448863966
+ ],
+ [
+ -73.54891336498166,
+ 45.530547548780646
+ ],
+ [
+ -73.5489595649538,
+ 45.53049834867015
+ ],
+ [
+ -73.54901506481524,
+ 45.53043954919613
+ ],
+ [
+ -73.54888476474194,
+ 45.53037884855531
+ ],
+ [
+ -73.54882686548929,
+ 45.53044014904394
+ ],
+ [
+ -73.54878516482535,
+ 45.530420748868764
+ ],
+ [
+ -73.54874116549423,
+ 45.530467448863966
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54888464423279,
+ 45.53034145204667
+ ],
+ [
+ -73.5488815649541,
+ 45.53034484878604
+ ],
+ [
+ -73.54904636302108,
+ 45.53041851225483
+ ],
+ [
+ -73.54905130929234,
+ 45.530413132510354
+ ],
+ [
+ -73.54888464423279,
+ 45.53034145204667
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1607,
+ "ID_UEV":"01019317",
+ "CIVIQUE_DE":" 2490",
+ "CIVIQUE_FI":" 2490",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-93-8291-2-000-0000",
+ "SUPERFICIE":399,
+ "SUPERFIC_1":629,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00105031654034,
+ "OBJECTID":88395,
+ "Join_Count":2,
+ "TARGET_FID":88395,
+ "feature_id":"c0218458-b8dd-464a-a305-a0a2de677e91",
+ "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.51,
+ "heightmax":32.78,
+ "elevmin":21.36,
+ "elevmax":21.97,
+ "bldgarea":200.3,
+ "comment":" ",
+ "OBJECTID_2":88395,
+ "Shape_Le_1":0.00105031654034,
+ "Shape_Ar_1":2.40783662157e-08,
+ "OBJECTID_3":88395,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88394,
+ "g_objectid":"940674",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424256",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004393829120000000",
+ "g_sup_tota":"398.6",
+ "g_geometry":"0.000891356",
+ "g_geomet_1":"4.59069e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00105031654034,
+ "Shape_Area":2.40783662157e-08,
+ "Shape_Le_3":0.00105031683813,
+ "Shape_Ar_2":2.40783662157e-08,
+ "building_height":15.135000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1608,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55405343743803,
+ 45.51828238607355
+ ],
+ [
+ -73.55415427122448,
+ 45.51832871464876
+ ],
+ [
+ -73.55430473499737,
+ 45.51815994067901
+ ],
+ [
+ -73.55416185700594,
+ 45.51809497185576
+ ],
+ [
+ -73.55410326797329,
+ 45.51815990470613
+ ],
+ [
+ -73.55412266634981,
+ 45.51816884666523
+ ],
+ [
+ -73.55411696644668,
+ 45.51817504659142
+ ],
+ [
+ -73.55414146577787,
+ 45.51818614692343
+ ],
+ [
+ -73.55412816570413,
+ 45.51820064669278
+ ],
+ [
+ -73.55405343743803,
+ 45.51828238607355
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1608,
+ "ID_UEV":"01111073",
+ "CIVIQUE_DE":" 1207",
+ "CIVIQUE_FI":" 1213",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-50-6833-5-000-0000",
+ "SUPERFICIE":299,
+ "SUPERFIC_1":452,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000768593761565,
+ "OBJECTID":88402,
+ "Join_Count":1,
+ "TARGET_FID":88402,
+ "feature_id":"450c52b7-2133-4553-b861-84373bef9a1e",
+ "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.1,
+ "heightmax":30.87,
+ "elevmin":18.06,
+ "elevmax":20.78,
+ "bldgarea":3183.14,
+ "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_2":88402,
+ "Shape_Le_1":0.000768593761565,
+ "Shape_Ar_1":2.79078508489e-08,
+ "OBJECTID_3":88402,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88401,
+ "g_objectid":"941855",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566695",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004250683350000000",
+ "g_sup_tota":"299.3",
+ "g_geometry":"0.000775949",
+ "g_geomet_1":"3.46723e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000768593761565,
+ "Shape_Area":2.79078508489e-08,
+ "Shape_Le_3":0.000768592444682,
+ "Shape_Ar_2":2.79078508489e-08,
+ "building_height":14.885
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1609,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56140619825929,
+ 45.530270772528425
+ ],
+ [
+ -73.56143557011731,
+ 45.53028444851878
+ ],
+ [
+ -73.56139856931037,
+ 45.53032364906745
+ ],
+ [
+ -73.56148606974817,
+ 45.530364348785966
+ ],
+ [
+ -73.56148617047224,
+ 45.53036444861071
+ ],
+ [
+ -73.56151927002014,
+ 45.530326749030536
+ ],
+ [
+ -73.56154106688857,
+ 45.53033619281135
+ ],
+ [
+ -73.56162748903924,
+ 45.530247019634544
+ ],
+ [
+ -73.56159497045337,
+ 45.530230348901775
+ ],
+ [
+ -73.56160306974772,
+ 45.53022254908167
+ ],
+ [
+ -73.56157517007988,
+ 45.53020824896181
+ ],
+ [
+ -73.56157347036121,
+ 45.53020744856519
+ ],
+ [
+ -73.56156847013064,
+ 45.530213048643574
+ ],
+ [
+ -73.5615306698264,
+ 45.530195749284694
+ ],
+ [
+ -73.56149475090388,
+ 45.53017939871058
+ ],
+ [
+ -73.56140619825929,
+ 45.530270772528425
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1609,
+ "ID_UEV":"01022408",
+ "CIVIQUE_DE":" 2313",
+ "CIVIQUE_FI":" 2321",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-93-9878-7-000-0000",
+ "SUPERFICIE":363,
+ "SUPERFIC_1":338,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00067785746089,
+ "OBJECTID":88403,
+ "Join_Count":1,
+ "TARGET_FID":88403,
+ "feature_id":"a5e3070e-1695-40bd-b4d3-9ba58c323929",
+ "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":43.48,
+ "elevmin":29.36,
+ "elevmax":39.64,
+ "bldgarea":2573.72,
+ "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_2":88403,
+ "Shape_Le_1":0.00067785746089,
+ "Shape_Ar_1":2.31686288542e-08,
+ "OBJECTID_3":88403,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88402,
+ "g_objectid":"940378",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423717",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004303067380000000",
+ "g_sup_tota":"181.4",
+ "g_geometry":"0.000736417",
+ "g_geomet_1":"2.08538e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00067785746089,
+ "Shape_Area":2.31686288542e-08,
+ "Shape_Le_3":0.000677855326911,
+ "Shape_Ar_2":2.31686288542e-08,
+ "building_height":21.235
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1610,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5616660897401,
+ 45.5108714220288
+ ],
+ [
+ -73.56169246775502,
+ 45.51087724603837
+ ],
+ [
+ -73.56168006790266,
+ 45.510905145706204
+ ],
+ [
+ -73.56165016814259,
+ 45.51089854558171
+ ],
+ [
+ -73.56165006831785,
+ 45.510898645406456
+ ],
+ [
+ -73.56162036820727,
+ 45.51093034560926
+ ],
+ [
+ -73.5617430824991,
+ 45.510987201648334
+ ],
+ [
+ -73.5618861016841,
+ 45.51083857788836
+ ],
+ [
+ -73.56175606781012,
+ 45.510779646214
+ ],
+ [
+ -73.56175314321483,
+ 45.510778321512625
+ ],
+ [
+ -73.5616660897401,
+ 45.5108714220288
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1610,
+ "ID_UEV":"01020806",
+ "CIVIQUE_DE":" 1233",
+ "CIVIQUE_FI":" 1235",
+ "NOM_RUE":"rue De Bullion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":21,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-92-7520-3-000-0000",
+ "SUPERFICIE":282,
+ "SUPERFIC_1":510,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000746678865113,
+ "OBJECTID":88404,
+ "Join_Count":1,
+ "TARGET_FID":88404,
+ "feature_id":"318a063e-ed0c-41a8-a2ff-c2b71f933867",
+ "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":45.18,
+ "elevmin":25.16,
+ "elevmax":26.57,
+ "bldgarea":2738.09,
+ "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_2":88404,
+ "Shape_Le_1":0.000746678865113,
+ "Shape_Ar_1":2.67147291603e-08,
+ "OBJECTID_3":88404,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88403,
+ "g_objectid":"943057",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160709",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"20",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994192642640000000",
+ "g_sup_tota":"564",
+ "g_geometry":"0.00105532",
+ "g_geomet_1":"6.52913e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000746678865113,
+ "Shape_Area":2.67147291603e-08,
+ "Shape_Le_3":0.000746677534365,
+ "Shape_Ar_2":2.67147291603e-08,
+ "building_height":22.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1611,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56155037846904,
+ 45.51079296157621
+ ],
+ [
+ -73.56145851991661,
+ 45.51089115045652
+ ],
+ [
+ -73.56147454673479,
+ 45.51089865709764
+ ],
+ [
+ -73.5615293685074,
+ 45.51082614566039
+ ],
+ [
+ -73.5615480681107,
+ 45.5108331459832
+ ],
+ [
+ -73.5615120682492,
+ 45.510880746199774
+ ],
+ [
+ -73.56155056912532,
+ 45.51089508768844
+ ],
+ [
+ -73.5615545827996,
+ 45.51089079342567
+ ],
+ [
+ -73.56157704156905,
+ 45.51086678422501
+ ],
+ [
+ -73.56158316775084,
+ 45.51085314600618
+ ],
+ [
+ -73.56158866620582,
+ 45.51085435649365
+ ],
+ [
+ -73.56168748730954,
+ 45.510748705938326
+ ],
+ [
+ -73.56162009031677,
+ 45.5107184446508
+ ],
+ [
+ -73.56155037846904,
+ 45.51079296157621
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1611,
+ "ID_UEV":"01020810",
+ "CIVIQUE_DE":" 1225",
+ "CIVIQUE_FI":" 1225",
+ "NOM_RUE":"rue De Bullion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-92-8810-7-000-0000",
+ "SUPERFICIE":169,
+ "SUPERFIC_1":207,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000763189455693,
+ "OBJECTID":88405,
+ "Join_Count":1,
+ "TARGET_FID":88405,
+ "feature_id":"318a063e-ed0c-41a8-a2ff-c2b71f933867",
+ "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":45.18,
+ "elevmin":25.16,
+ "elevmax":26.57,
+ "bldgarea":2738.09,
+ "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_2":88405,
+ "Shape_Le_1":0.000763189455693,
+ "Shape_Ar_1":1.44364829859e-08,
+ "OBJECTID_3":88405,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88404,
+ "g_objectid":"943059",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160712",
+ "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":"66023994192881070000000",
+ "g_sup_tota":"160.4",
+ "g_geometry":"0.000674342",
+ "g_geomet_1":"1.84266e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000763189455693,
+ "Shape_Area":1.44364829859e-08,
+ "Shape_Le_3":0.000763190579392,
+ "Shape_Ar_2":1.44364829859e-08,
+ "building_height":22.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1612,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55779264313782,
+ 45.5099542439435
+ ],
+ [
+ -73.55787020426835,
+ 45.5099911125501
+ ],
+ [
+ -73.55796409618793,
+ 45.509891838188075
+ ],
+ [
+ -73.55795186720675,
+ 45.50988634602834
+ ],
+ [
+ -73.55794616730363,
+ 45.509883746088306
+ ],
+ [
+ -73.55794346753883,
+ 45.509886746226655
+ ],
+ [
+ -73.55788280826684,
+ 45.50985890681339
+ ],
+ [
+ -73.55779264313782,
+ 45.5099542439435
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1612,
+ "ID_UEV":"01020906",
+ "CIVIQUE_DE":" 987",
+ "CIVIQUE_FI":" 989",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-21-7814-7-000-0000",
+ "SUPERFICIE":166,
+ "SUPERFIC_1":255,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000444190328081,
+ "OBJECTID":88407,
+ "Join_Count":1,
+ "TARGET_FID":88407,
+ "feature_id":"836463c5-05bc-4b24-bab9-5368caaaf25b",
+ "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.55,
+ "heightmax":32.26,
+ "elevmin":14.7,
+ "elevmax":17.93,
+ "bldgarea":1063.09,
+ "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_2":88407,
+ "Shape_Le_1":0.000444190328081,
+ "Shape_Ar_1":1.08451396947e-08,
+ "OBJECTID_3":88407,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88406,
+ "g_objectid":"939539",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180856",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004121781470000000",
+ "g_sup_tota":"166.3",
+ "g_geometry":"0.000648191",
+ "g_geomet_1":"1.94173e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000444190328081,
+ "Shape_Area":1.08451396947e-08,
+ "Shape_Le_3":0.000444190241929,
+ "Shape_Ar_2":1.08451396947e-08,
+ "building_height":15.854999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1613,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56943520339377,
+ 45.51135231920446
+ ],
+ [
+ -73.56961875232541,
+ 45.511438582175124
+ ],
+ [
+ -73.56963987110501,
+ 45.511414844569714
+ ],
+ [
+ -73.56964967101734,
+ 45.51140264526616
+ ],
+ [
+ -73.56966697127555,
+ 45.511375945293935
+ ],
+ [
+ -73.56969447074508,
+ 45.511331845238765
+ ],
+ [
+ -73.5697421707864,
+ 45.511254544911615
+ ],
+ [
+ -73.56974207096165,
+ 45.511254544911615
+ ],
+ [
+ -73.56949797067665,
+ 45.51120884496252
+ ],
+ [
+ -73.5694978708519,
+ 45.511209044612016
+ ],
+ [
+ -73.56944177114266,
+ 45.51127214464405
+ ],
+ [
+ -73.56924567127255,
+ 45.51118584480119
+ ],
+ [
+ -73.56920996818732,
+ 45.51122597255089
+ ],
+ [
+ -73.56931878795355,
+ 45.511276210479025
+ ],
+ [
+ -73.56930509667471,
+ 45.51129129210974
+ ],
+ [
+ -73.56938154444457,
+ 45.51132714987836
+ ],
+ [
+ -73.56943520339377,
+ 45.51135231920446
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56945147123025,
+ 45.511160969553394
+ ],
+ [
+ -73.56944947113803,
+ 45.51116504528091
+ ],
+ [
+ -73.56947137142849,
+ 45.51117034498573
+ ],
+ [
+ -73.56975987124291,
+ 45.51123994441819
+ ],
+ [
+ -73.56976465743483,
+ 45.511230169686876
+ ],
+ [
+ -73.56945147123025,
+ 45.511160969553394
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1613,
+ "ID_UEV":"01059091",
+ "CIVIQUE_DE":" 82",
+ "CIVIQUE_FI":" 82",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services personnels",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-32-6863-4-000-0000",
+ "SUPERFICIE":951,
+ "SUPERFIC_1":1233,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00196531233288,
+ "OBJECTID":88408,
+ "Join_Count":2,
+ "TARGET_FID":88408,
+ "feature_id":"cd19c03d-d3c9-4fc9-96a0-79177a921707",
+ "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":16.22,
+ "elevmin":36.6,
+ "elevmax":44.2,
+ "bldgarea":573.43,
+ "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_2":88408,
+ "Shape_Le_1":0.00196531233288,
+ "Shape_Ar_1":6.14102163498e-08,
+ "OBJECTID_3":88408,
+ "Join_Cou_1":6,
+ "TARGET_F_1":88407,
+ "g_objectid":"945141",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"2160898",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6299",
+ "g_nb_logem":" ",
+ "g_nb_locau":"9",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994132686340000000",
+ "g_sup_tota":"951.3",
+ "g_geometry":"0.00153734",
+ "g_geomet_1":"1.09433e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00196531233288,
+ "Shape_Area":6.14102163498e-08,
+ "Shape_Le_3":0.00196531313971,
+ "Shape_Ar_2":6.14102163498e-08,
+ "building_height":7.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1614,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5695001713177,
+ 45.51177624522783
+ ],
+ [
+ -73.56952167140986,
+ 45.51173774525104
+ ],
+ [
+ -73.56955207119297,
+ 45.5117462447437
+ ],
+ [
+ -73.56955607137743,
+ 45.511747545163374
+ ],
+ [
+ -73.5695740713082,
+ 45.51171244462392
+ ],
+ [
+ -73.56956977075016,
+ 45.51171164512662
+ ],
+ [
+ -73.5695394707918,
+ 45.511704445154315
+ ],
+ [
+ -73.56955827111916,
+ 45.51166544515446
+ ],
+ [
+ -73.56956057068564,
+ 45.51166114459644
+ ],
+ [
+ -73.56925477151233,
+ 45.511584244467606
+ ],
+ [
+ -73.56921367069619,
+ 45.51163614524221
+ ],
+ [
+ -73.5692103710836,
+ 45.51164014452734
+ ],
+ [
+ -73.5692202708207,
+ 45.511642444993136
+ ],
+ [
+ -73.56919117055791,
+ 45.51170121658817
+ ],
+ [
+ -73.56920553992558,
+ 45.51170782120928
+ ],
+ [
+ -73.5695001713177,
+ 45.51177624522783
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5692697038556,
+ 45.51155030765087
+ ],
+ [
+ -73.56926487089892,
+ 45.511557944693685
+ ],
+ [
+ -73.56935097109229,
+ 45.51158474449066
+ ],
+ [
+ -73.56935127146585,
+ 45.51158484521473
+ ],
+ [
+ -73.56935666110287,
+ 45.51157308478033
+ ],
+ [
+ -73.5692697038556,
+ 45.51155030765087
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1614,
+ "ID_UEV":"01059094",
+ "CIVIQUE_DE":" 58",
+ "CIVIQUE_FI":" 58",
+ "NOM_RUE":"rue Sherbrooke Ouest (MTL+MTO+WMT)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":15,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-33-7608-0-000-0000",
+ "SUPERFICIE":720,
+ "SUPERFIC_1":1317,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00118610082571,
+ "OBJECTID":88409,
+ "Join_Count":2,
+ "TARGET_FID":88409,
+ "feature_id":"884f586f-fa03-42b8-ad0a-c5c7b2937513",
+ "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.58,
+ "heightmax":17.77,
+ "elevmin":38.91,
+ "elevmax":43.96,
+ "bldgarea":328.94,
+ "comment":" ",
+ "OBJECTID_2":88409,
+ "Shape_Le_1":0.00118610082571,
+ "Shape_Ar_1":4.37565518535e-08,
+ "OBJECTID_3":88409,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88408,
+ "g_objectid":"943065",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2160901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"15",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994133760800000000",
+ "g_sup_tota":"719.9",
+ "g_geometry":"0.00123645",
+ "g_geomet_1":"8.38439e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00118610082571,
+ "Shape_Area":4.37565518535e-08,
+ "Shape_Le_3":0.00118610211068,
+ "Shape_Ar_2":4.37565518535e-08,
+ "building_height":8.595
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1615,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55205697846863,
+ 45.5359061798766
+ ],
+ [
+ -73.55206306687887,
+ 45.535907849917635
+ ],
+ [
+ -73.55206356690194,
+ 45.53590794974238
+ ],
+ [
+ -73.55207006720168,
+ 45.53589714978393
+ ],
+ [
+ -73.55209896691564,
+ 45.53590554945184
+ ],
+ [
+ -73.55209256733995,
+ 45.53591634941029
+ ],
+ [
+ -73.55209836706783,
+ 45.53591795020353
+ ],
+ [
+ -73.55223897337177,
+ 45.53595708869898
+ ],
+ [
+ -73.55230817530389,
+ 45.53586072184513
+ ],
+ [
+ -73.55213556752426,
+ 45.53580875002409
+ ],
+ [
+ -73.55215086679091,
+ 45.535783649945785
+ ],
+ [
+ -73.55215076696616,
+ 45.535783649945785
+ ],
+ [
+ -73.55214616513526,
+ 45.53578198440135
+ ],
+ [
+ -73.55205697846863,
+ 45.5359061798766
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1615,
+ "ID_UEV":"01024755",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2075",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1977,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-2600-6-000-0000",
+ "SUPERFICIE":373,
+ "SUPERFIC_1":502,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000700240612533,
+ "OBJECTID":88446,
+ "Join_Count":1,
+ "TARGET_FID":88446,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88446,
+ "Shape_Le_1":0.000700240612533,
+ "Shape_Ar_1":2.12383610168e-08,
+ "OBJECTID_3":88446,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88445,
+ "g_objectid":"943689",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360832",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470150580000000",
+ "g_sup_tota":"186.4",
+ "g_geometry":"0.000668571",
+ "g_geomet_1":"2.14686e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000700240612533,
+ "Shape_Area":2.12383610168e-08,
+ "Shape_Le_3":0.000700238955271,
+ "Shape_Ar_2":2.12383610168e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1616,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55196568199247,
+ 45.535881140952185
+ ],
+ [
+ -73.55205697846863,
+ 45.5359061798766
+ ],
+ [
+ -73.55214616513526,
+ 45.53578198440135
+ ],
+ [
+ -73.55205942732256,
+ 45.53575060075991
+ ],
+ [
+ -73.55196568199247,
+ 45.535881140952185
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1616,
+ "ID_UEV":"01024757",
+ "CIVIQUE_DE":" 2067",
+ "CIVIQUE_FI":" 2071",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-3695-8-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":225,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000500523027096,
+ "OBJECTID":88447,
+ "Join_Count":1,
+ "TARGET_FID":88447,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88447,
+ "Shape_Le_1":0.000500523027096,
+ "Shape_Ar_1":1.39182658029e-08,
+ "OBJECTID_3":88447,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88446,
+ "g_objectid":"943686",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360829",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379439130000000",
+ "g_sup_tota":"186.3",
+ "g_geometry":"0.000668302",
+ "g_geomet_1":"2.14568e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000500523027096,
+ "Shape_Area":1.39182658029e-08,
+ "Shape_Le_3":0.000500523708456,
+ "Shape_Ar_2":1.39182658029e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1617,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55191702777046,
+ 45.53579672249104
+ ],
+ [
+ -73.55192206757121,
+ 45.535798149715134
+ ],
+ [
+ -73.55195506729436,
+ 45.535807249954914
+ ],
+ [
+ -73.55192086697627,
+ 45.53586884991778
+ ],
+ [
+ -73.55196568199247,
+ 45.535881140952185
+ ],
+ [
+ -73.55205942732256,
+ 45.53575060075991
+ ],
+ [
+ -73.55197268950985,
+ 45.53571921621915
+ ],
+ [
+ -73.55191702777046,
+ 45.53579672249104
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1617,
+ "ID_UEV":"01024759",
+ "CIVIQUE_DE":" 2063",
+ "CIVIQUE_FI":" 2065",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-4391-3-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":164,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000504773499015,
+ "OBJECTID":88448,
+ "Join_Count":1,
+ "TARGET_FID":88448,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88448,
+ "Shape_Le_1":0.000504773499015,
+ "Shape_Ar_1":1.16089889383e-08,
+ "OBJECTID_3":88448,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88447,
+ "g_objectid":"943685",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360828",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379498860000000",
+ "g_sup_tota":"186.2",
+ "g_geometry":"0.00066823",
+ "g_geomet_1":"2.14534e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000504773499015,
+ "Shape_Area":1.16089889383e-08,
+ "Shape_Le_3":0.00050477413038,
+ "Shape_Ar_2":1.16089889383e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1618,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55161916331558,
+ 45.53575499574675
+ ],
+ [
+ -73.55167656704178,
+ 45.53577735019485
+ ],
+ [
+ -73.55166406736467,
+ 45.535793149484554
+ ],
+ [
+ -73.55169299405827,
+ 45.53580435593657
+ ],
+ [
+ -73.5517902980057,
+ 45.53566886227846
+ ],
+ [
+ -73.55170306556587,
+ 45.535638164819744
+ ],
+ [
+ -73.55161916331558,
+ 45.53575499574675
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1618,
+ "ID_UEV":"01024764",
+ "CIVIQUE_DE":" 2043",
+ "CIVIQUE_FI":" 2049",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-6381-2-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":211,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000515897988368,
+ "OBJECTID":88453,
+ "Join_Count":1,
+ "TARGET_FID":88453,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88453,
+ "Shape_Le_1":0.000515897988368,
+ "Shape_Ar_1":1.34938597995e-08,
+ "OBJECTID_3":88453,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88452,
+ "g_objectid":"943684",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360827",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379568570000000",
+ "g_sup_tota":"186.2",
+ "g_geometry":"0.000668163",
+ "g_geomet_1":"2.14504e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000515897988368,
+ "Shape_Area":1.34938597995e-08,
+ "Shape_Le_3":0.00051589641817,
+ "Shape_Ar_2":1.34938597995e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1619,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55329755006373,
+ 45.535927913792484
+ ],
+ [
+ -73.55338517820526,
+ 45.53595805007425
+ ],
+ [
+ -73.55343999188396,
+ 45.53588047815184
+ ],
+ [
+ -73.55340916672151,
+ 45.53586834989473
+ ],
+ [
+ -73.55342156747321,
+ 45.535852850079266
+ ],
+ [
+ -73.55342126709964,
+ 45.53585264953045
+ ],
+ [
+ -73.55336722234128,
+ 45.535829314821314
+ ],
+ [
+ -73.55329755006373,
+ 45.535927913792484
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1619,
+ "ID_UEV":"01024528",
+ "CIVIQUE_DE":" 2154",
+ "CIVIQUE_FI":" 2154",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-3199-2-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":83,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000420583091943,
+ "OBJECTID":88454,
+ "Join_Count":1,
+ "TARGET_FID":88454,
+ "feature_id":"eb231f79-3f89-4e44-bfc9-97de87e22a5f",
+ "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,
+ "heightmax":31.55,
+ "elevmin":18.92,
+ "elevmax":21.51,
+ "bldgarea":1919.77,
+ "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_2":88454,
+ "Shape_Le_1":0.000420583091943,
+ "Shape_Ar_1":9.8162383843e-09,
+ "OBJECTID_3":88454,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88453,
+ "g_objectid":"943673",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360811",
+ "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":"66023004369389630000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681154",
+ "g_geomet_1":"2.20747e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000420583091943,
+ "Shape_Area":9.8162383843e-09,
+ "Shape_Le_3":0.000420584054345,
+ "Shape_Ar_2":9.8162383843e-09,
+ "building_height":15.775
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1620,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55963961230012,
+ 45.52615906583851
+ ],
+ [
+ -73.55964526903578,
+ 45.52616164779211
+ ],
+ [
+ -73.55951405615062,
+ 45.526303195686225
+ ],
+ [
+ -73.5596378820045,
+ 45.526360571533445
+ ],
+ [
+ -73.55980467746573,
+ 45.52618230521951
+ ],
+ [
+ -73.5597026691647,
+ 45.52613404759851
+ ],
+ [
+ -73.559675183185,
+ 45.526121048797656
+ ],
+ [
+ -73.55963961230012,
+ 45.52615906583851
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1620,
+ "ID_UEV":"01034189",
+ "CIVIQUE_DE":" 2011",
+ "CIVIQUE_FI":" 2017",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1966,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-19-3925-7-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":867,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000775146261546,
+ "OBJECTID":88459,
+ "Join_Count":1,
+ "TARGET_FID":88459,
+ "feature_id":"250eb756-7aa3-477f-9e0c-d829e2577fb7",
+ "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.55,
+ "heightmax":42.52,
+ "elevmin":25.82,
+ "elevmax":27.5,
+ "bldgarea":1230.14,
+ "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_2":88459,
+ "Shape_Le_1":0.000775146261546,
+ "Shape_Ar_1":3.21577526411e-08,
+ "OBJECTID_3":88459,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88458,
+ "g_objectid":"942008",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567214",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004219392570000000",
+ "g_sup_tota":"297.3",
+ "g_geometry":"0.000793402",
+ "g_geomet_1":"3.45192e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000775146261546,
+ "Shape_Area":3.21577526411e-08,
+ "Shape_Le_3":0.000775145848664,
+ "Shape_Ar_2":3.21577526411e-08,
+ "building_height":20.485000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1621,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5590321040702,
+ 45.52582695789808
+ ],
+ [
+ -73.55890836814852,
+ 45.52576914767832
+ ],
+ [
+ -73.5588400682364,
+ 45.52584134795014
+ ],
+ [
+ -73.55892526820841,
+ 45.52588104762255
+ ],
+ [
+ -73.55882786803353,
+ 45.52598397053411
+ ],
+ [
+ -73.55886916670053,
+ 45.52600317016047
+ ],
+ [
+ -73.55891488733403,
+ 45.52595372453506
+ ],
+ [
+ -73.55895918793802,
+ 45.52590581405237
+ ],
+ [
+ -73.5590321040702,
+ 45.52582695789808
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1621,
+ "ID_UEV":"01034190",
+ "CIVIQUE_DE":" 1967",
+ "CIVIQUE_FI":" 1977",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-18-9986-5-000-0000",
+ "SUPERFICIE":299,
+ "SUPERFIC_1":342,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000757201901243,
+ "OBJECTID":88460,
+ "Join_Count":1,
+ "TARGET_FID":88460,
+ "feature_id":"4f95662c-071e-4074-8729-3b9d55143853",
+ "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.67,
+ "heightmax":37,
+ "elevmin":25.08,
+ "elevmax":26.05,
+ "bldgarea":652.7,
+ "comment":" ",
+ "OBJECTID_2":88460,
+ "Shape_Le_1":0.000757201901243,
+ "Shape_Ar_1":1.89325278722e-08,
+ "OBJECTID_3":88460,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88459,
+ "g_objectid":"938282",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1567206",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004218879770000000",
+ "g_sup_tota":"131.7",
+ "g_geometry":"0.000616409",
+ "g_geomet_1":"1.50884e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000757201901243,
+ "Shape_Area":1.89325278722e-08,
+ "Shape_Le_3":0.000757202358265,
+ "Shape_Ar_2":1.89325278722e-08,
+ "building_height":17.165
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1622,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5507713463424,
+ 45.52914861466713
+ ],
+ [
+ -73.55077186615054,
+ 45.52914644909964
+ ],
+ [
+ -73.55082316617802,
+ 45.529157649256405
+ ],
+ [
+ -73.55082606649162,
+ 45.5291586484032
+ ],
+ [
+ -73.55085319633979,
+ 45.52911663747314
+ ],
+ [
+ -73.55066526950843,
+ 45.52903074502316
+ ],
+ [
+ -73.55064236647388,
+ 45.52905374878178
+ ],
+ [
+ -73.5506453657129,
+ 45.52905524885095
+ ],
+ [
+ -73.55061986633561,
+ 45.52907968073298
+ ],
+ [
+ -73.5507713463424,
+ 45.52914861466713
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1622,
+ "ID_UEV":"01019267",
+ "CIVIQUE_DE":" 2335",
+ "CIVIQUE_FI":" 2339",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-82-3643-2-000-0000",
+ "SUPERFICIE":169,
+ "SUPERFIC_1":265,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000551996854808,
+ "OBJECTID":88478,
+ "Join_Count":1,
+ "TARGET_FID":88478,
+ "feature_id":"fb49aaec-5e81-4ba6-8196-0780aa47dea6",
+ "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.83,
+ "heightmax":32.55,
+ "elevmin":19.65,
+ "elevmax":21.29,
+ "bldgarea":970.11,
+ "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_2":88478,
+ "Shape_Le_1":0.000551996854808,
+ "Shape_Ar_1":1.29878035692e-08,
+ "OBJECTID_3":88478,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88477,
+ "g_objectid":"940802",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424456",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004382364320000000",
+ "g_sup_tota":"168.5",
+ "g_geometry":"0.000747141",
+ "g_geomet_1":"1.93303e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000551996854808,
+ "Shape_Area":1.29878035692e-08,
+ "Shape_Le_3":0.000551994596344,
+ "Shape_Ar_2":1.29878035692e-08,
+ "building_height":15.36
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1623,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55295029843937,
+ 45.53549927442227
+ ],
+ [
+ -73.55298836674157,
+ 45.53550984955021
+ ],
+ [
+ -73.55298186734115,
+ 45.53552154973003
+ ],
+ [
+ -73.55298226753946,
+ 45.53552164955478
+ ],
+ [
+ -73.5530327707676,
+ 45.53553670420583
+ ],
+ [
+ -73.55309377088267,
+ 45.535450378282626
+ ],
+ [
+ -73.55300692245335,
+ 45.53541914213
+ ],
+ [
+ -73.55295029843937,
+ 45.53549927442227
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1623,
+ "ID_UEV":"01024467",
+ "CIVIQUE_DE":" 2125",
+ "CIVIQUE_FI":" 2125",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-5952-2-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000402125842155,
+ "OBJECTID":88483,
+ "Join_Count":1,
+ "TARGET_FID":88483,
+ "feature_id":"8032f29a-ce7f-449c-86e6-bdf0dbe2cce4",
+ "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":32.01,
+ "elevmin":19.03,
+ "elevmax":21.28,
+ "bldgarea":1563.41,
+ "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_2":88483,
+ "Shape_Le_1":0.000402125842155,
+ "Shape_Ar_1":9.13564267288e-09,
+ "OBJECTID_3":88483,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88482,
+ "g_objectid":"943600",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360782",
+ "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":"66023004369595220000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681135",
+ "g_geomet_1":"2.20742e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000402125842155,
+ "Shape_Area":9.13564267288e-09,
+ "Shape_Le_3":0.000402123614911,
+ "Shape_Ar_2":9.13564267288e-09,
+ "building_height":14.989999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1624,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55169299405827,
+ 45.53580435593657
+ ],
+ [
+ -73.55169736746139,
+ 45.53580605025931
+ ],
+ [
+ -73.55171216670497,
+ 45.53578734975668
+ ],
+ [
+ -73.55179213532064,
+ 45.53581846989676
+ ],
+ [
+ -73.55188594989852,
+ 45.53568783077906
+ ],
+ [
+ -73.55183846749313,
+ 45.5356706501307
+ ],
+ [
+ -73.55183306706424,
+ 45.53566874986321
+ ],
+ [
+ -73.55182436702276,
+ 45.53568085024134
+ ],
+ [
+ -73.5517902980057,
+ 45.53566886227846
+ ],
+ [
+ -73.55169299405827,
+ 45.53580435593657
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1624,
+ "ID_UEV":"01024762",
+ "CIVIQUE_DE":" 2051",
+ "CIVIQUE_FI":" 2055",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-5685-7-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":204,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00054923552922,
+ "OBJECTID":88492,
+ "Join_Count":1,
+ "TARGET_FID":88492,
+ "feature_id":"073ecd2c-3c33-4efb-905c-d0929c7c77fd",
+ "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,
+ "heightmax":33.51,
+ "elevmin":18.35,
+ "elevmax":21.55,
+ "bldgarea":2272.73,
+ "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_2":88492,
+ "Shape_Le_1":0.00054923552922,
+ "Shape_Ar_1":1.37700458986e-08,
+ "OBJECTID_3":88492,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88491,
+ "g_objectid":"943684",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360827",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379568570000000",
+ "g_sup_tota":"186.2",
+ "g_geometry":"0.000668163",
+ "g_geomet_1":"2.14504e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00054923552922,
+ "Shape_Area":1.37700458986e-08,
+ "Shape_Le_3":0.000549236261597,
+ "Shape_Ar_2":1.37700458986e-08,
+ "building_height":16.755
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1625,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55843992568387,
+ 45.53779230192349
+ ],
+ [
+ -73.5584690691141,
+ 45.53779994975817
+ ],
+ [
+ -73.55846276936316,
+ 45.53781174976274
+ ],
+ [
+ -73.55846346903571,
+ 45.53781194941223
+ ],
+ [
+ -73.55852304912126,
+ 45.53783095478503
+ ],
+ [
+ -73.55861139672042,
+ 45.537707699101325
+ ],
+ [
+ -73.55852146901243,
+ 45.53767905029823
+ ],
+ [
+ -73.55852106881412,
+ 45.53767984979552
+ ],
+ [
+ -73.5585198682192,
+ 45.5376796609379
+ ],
+ [
+ -73.55843992568387,
+ 45.53779230192349
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1625,
+ "ID_UEV":"01024587",
+ "CIVIQUE_DE":" 2570",
+ "CIVIQUE_FI":" 2570",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-2803-7-000-0000",
+ "SUPERFICIE":195,
+ "SUPERFIC_1":88,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000493038137894,
+ "OBJECTID":88495,
+ "Join_Count":1,
+ "TARGET_FID":88495,
+ "feature_id":"7de3239f-60f9-4083-bdc2-09487c2a41b2",
+ "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":47.81,
+ "elevmin":27.08,
+ "elevmax":40.05,
+ "bldgarea":1333.88,
+ "comment":" ",
+ "OBJECTID_2":88495,
+ "Shape_Le_1":0.000493038137894,
+ "Shape_Ar_1":1.33258003e-08,
+ "OBJECTID_3":88495,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88494,
+ "g_objectid":"944134",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361392",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422350080000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681585",
+ "g_geomet_1":"2.20825e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000493038137894,
+ "Shape_Area":1.33258003e-08,
+ "Shape_Le_3":0.000493036868738,
+ "Shape_Ar_2":1.33258003e-08,
+ "building_height":23.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1626,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5517322458683,
+ 45.537241201870266
+ ],
+ [
+ -73.55180489939843,
+ 45.53726638108891
+ ],
+ [
+ -73.55189892621631,
+ 45.53713435341797
+ ],
+ [
+ -73.55181706722571,
+ 45.53713295047558
+ ],
+ [
+ -73.55181636755316,
+ 45.537132850650835
+ ],
+ [
+ -73.55181061548936,
+ 45.53713093689352
+ ],
+ [
+ -73.5517322458683,
+ 45.537241201870266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1626,
+ "ID_UEV":"01025275",
+ "CIVIQUE_DE":" 2117",
+ "CIVIQUE_FI":" 2121",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-5546-6-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":232,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000462897394723,
+ "OBJECTID":88498,
+ "Join_Count":1,
+ "TARGET_FID":88498,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":88498,
+ "Shape_Le_1":0.000462897394723,
+ "Shape_Ar_1":1.09042431407e-08,
+ "OBJECTID_3":88498,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88497,
+ "g_objectid":"944408",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"5488540",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471554660000000",
+ "g_sup_tota":"158",
+ "g_geometry":"0.000641021",
+ "g_geomet_1":"1.79964e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000462897394723,
+ "Shape_Area":1.09042431407e-08,
+ "Shape_Le_3":0.000462898373456,
+ "Shape_Ar_2":1.09042431407e-08,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1627,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55931398667299,
+ 45.51031874456471
+ ],
+ [
+ -73.55932036736291,
+ 45.51032154595288
+ ],
+ [
+ -73.55930813838172,
+ 45.510335394613065
+ ],
+ [
+ -73.5594491790582,
+ 45.51039926626342
+ ],
+ [
+ -73.55959076022725,
+ 45.51024253871249
+ ],
+ [
+ -73.55959767511446,
+ 45.51023488368323
+ ],
+ [
+ -73.55952646679485,
+ 45.51020104579192
+ ],
+ [
+ -73.55952156728834,
+ 45.510198746225456
+ ],
+ [
+ -73.55949206682726,
+ 45.51023024587944
+ ],
+ [
+ -73.5595220673114,
+ 45.51024414580098
+ ],
+ [
+ -73.5594971668826,
+ 45.510270845773206
+ ],
+ [
+ -73.55948776716856,
+ 45.51026654611451
+ ],
+ [
+ -73.55947456691958,
+ 45.51028124553335
+ ],
+ [
+ -73.55939086701675,
+ 45.51024414580098
+ ],
+ [
+ -73.55946136756991,
+ 45.51016564577822
+ ],
+ [
+ -73.55946136756991,
+ 45.51016554595348
+ ],
+ [
+ -73.55945764077934,
+ 45.510163501794466
+ ],
+ [
+ -73.55931398667299,
+ 45.51031874456471
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1627,
+ "ID_UEV":"01020851",
+ "CIVIQUE_DE":" 1088",
+ "CIVIQUE_FI":" 1090",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-11-5453-7-000-0000",
+ "SUPERFICIE":323,
+ "SUPERFIC_1":415,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0010417956374,
+ "OBJECTID":88503,
+ "Join_Count":1,
+ "TARGET_FID":88503,
+ "feature_id":"0fef721e-43fb-42f2-97cc-619696231299",
+ "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":36.13,
+ "elevmin":17.15,
+ "elevmax":24.52,
+ "bldgarea":1525.76,
+ "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_2":88503,
+ "Shape_Le_1":0.0010417956374,
+ "Shape_Ar_1":2.58599374536e-08,
+ "OBJECTID_3":88503,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88502,
+ "g_objectid":"939527",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004111545370000000",
+ "g_sup_tota":"322.7",
+ "g_geometry":"0.000811022",
+ "g_geomet_1":"3.73762e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0010417956374,
+ "Shape_Area":2.58599374536e-08,
+ "Shape_Le_3":0.00104179697094,
+ "Shape_Ar_2":2.58599374536e-08,
+ "building_height":17.805
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1628,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5594491790582,
+ 45.51039926626342
+ ],
+ [
+ -73.55951747177575,
+ 45.51043019214994
+ ],
+ [
+ -73.55963376131088,
+ 45.51030359818281
+ ],
+ [
+ -73.5595856673665,
+ 45.51031864563928
+ ],
+ [
+ -73.55953716692855,
+ 45.51033394580525
+ ],
+ [
+ -73.55953676673025,
+ 45.51033394580525
+ ],
+ [
+ -73.55959896744024,
+ 45.51023574613307
+ ],
+ [
+ -73.55959906726498,
+ 45.51023554558426
+ ],
+ [
+ -73.55959767511446,
+ 45.51023488368323
+ ],
+ [
+ -73.55959076022725,
+ 45.51024253871249
+ ],
+ [
+ -73.5594491790582,
+ 45.51039926626342
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1628,
+ "ID_UEV":"01020853",
+ "CIVIQUE_DE":" 1096",
+ "CIVIQUE_FI":" 1096",
+ "NOM_RUE":"avenue de l' H\u00c3\u00b4tel-de-Ville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-11-4557-6-000-0000",
+ "SUPERFICIE":166,
+ "SUPERFIC_1":143,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000688046629317,
+ "OBJECTID":88504,
+ "Join_Count":1,
+ "TARGET_FID":88504,
+ "feature_id":"0fef721e-43fb-42f2-97cc-619696231299",
+ "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":36.13,
+ "elevmin":17.15,
+ "elevmax":24.52,
+ "bldgarea":1525.76,
+ "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_2":88504,
+ "Shape_Le_1":0.000688046629317,
+ "Shape_Ar_1":1.03960840346e-08,
+ "OBJECTID_3":88504,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88503,
+ "g_objectid":"939527",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180701",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1511",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004111545370000000",
+ "g_sup_tota":"322.7",
+ "g_geometry":"0.000811022",
+ "g_geomet_1":"3.73762e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000688046629317,
+ "Shape_Area":1.03960840346e-08,
+ "Shape_Le_3":0.000688048190973,
+ "Shape_Ar_2":1.03960840346e-08,
+ "building_height":17.805
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1629,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55847568003045,
+ 45.52448434562635
+ ],
+ [
+ -73.55839236773542,
+ 45.52444334823223
+ ],
+ [
+ -73.558385868335,
+ 45.524449947457406
+ ],
+ [
+ -73.55830276827997,
+ 45.52453294768768
+ ],
+ [
+ -73.5583897803859,
+ 45.52457591459708
+ ],
+ [
+ -73.55847568003045,
+ 45.52448434562635
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5582387041747,
+ 45.52453767182639
+ ],
+ [
+ -73.558240168271,
+ 45.524538348116565
+ ],
+ [
+ -73.55836496809064,
+ 45.52440474753137
+ ],
+ [
+ -73.5583638727164,
+ 45.5244042430117
+ ],
+ [
+ -73.5582387041747,
+ 45.52453767182639
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1629,
+ "ID_UEV":"01032643",
+ "CIVIQUE_DE":" 1871",
+ "CIVIQUE_FI":" 1875",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-27-4337-7-000-0000",
+ "SUPERFICIE":392,
+ "SUPERFIC_1":286,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000810753486834,
+ "OBJECTID":88506,
+ "Join_Count":2,
+ "TARGET_FID":88506,
+ "feature_id":"b3d2a8cd-12df-4563-8469-bfa4b8880e15",
+ "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.55,
+ "heightmax":35.8,
+ "elevmin":24.1,
+ "elevmax":24.52,
+ "bldgarea":206.18,
+ "comment":" ",
+ "OBJECTID_2":88506,
+ "Shape_Le_1":0.000810753486834,
+ "Shape_Ar_1":1.16384767166e-08,
+ "OBJECTID_3":88506,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88505,
+ "g_objectid":"942103",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567350",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004227433770000000",
+ "g_sup_tota":"392.1",
+ "g_geometry":"0.000950031",
+ "g_geomet_1":"4.51854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000810753486834,
+ "Shape_Area":1.16384767166e-08,
+ "Shape_Le_3":0.000810752707049,
+ "Shape_Ar_2":1.16384767166e-08,
+ "building_height":16.625
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1630,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55638463936147,
+ 45.523648619138754
+ ],
+ [
+ -73.5563966668945,
+ 45.52365434782019
+ ],
+ [
+ -73.55638796685304,
+ 45.523663348235225
+ ],
+ [
+ -73.55650536255429,
+ 45.52371929775768
+ ],
+ [
+ -73.55661649627612,
+ 45.52359987678318
+ ],
+ [
+ -73.55648605770725,
+ 45.523539635695926
+ ],
+ [
+ -73.55638463936147,
+ 45.523648619138754
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1630,
+ "ID_UEV":"01032647",
+ "CIVIQUE_DE":" 1691",
+ "CIVIQUE_FI":" 1701",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-36-8941-3-000-0000",
+ "SUPERFICIE":383,
+ "SUPERFIC_1":307,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000611568351212,
+ "OBJECTID":88508,
+ "Join_Count":1,
+ "TARGET_FID":88508,
+ "feature_id":"435ee9c3-a283-4e39-9fa3-0f13706bae80",
+ "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.51,
+ "heightmax":38.77,
+ "elevmin":25.78,
+ "elevmax":27.14,
+ "bldgarea":648.27,
+ "comment":" ",
+ "OBJECTID_2":88508,
+ "Shape_Le_1":0.000611568351212,
+ "Shape_Ar_1":2.19908114761e-08,
+ "OBJECTID_3":88508,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88507,
+ "g_objectid":"942186",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567550",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004236894130000000",
+ "g_sup_tota":"382.8",
+ "g_geometry":"0.000934215",
+ "g_geomet_1":"4.41654e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000611568351212,
+ "Shape_Area":2.19908114761e-08,
+ "Shape_Le_3":0.000611568771023,
+ "Shape_Ar_2":2.19908114761e-08,
+ "building_height":18.130000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1631,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55121227944498,
+ 45.5381510549775
+ ],
+ [
+ -73.55121426424874,
+ 45.53815175824734
+ ],
+ [
+ -73.55122646714959,
+ 45.538134150421
+ ],
+ [
+ -73.55128868314806,
+ 45.538155427481286
+ ],
+ [
+ -73.55136214606803,
+ 45.5380530216799
+ ],
+ [
+ -73.5512990667204,
+ 45.538031450541304
+ ],
+ [
+ -73.55132738637163,
+ 45.53799060153533
+ ],
+ [
+ -73.55121227944498,
+ 45.5381510549775
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1631,
+ "ID_UEV":"01025442",
+ "CIVIQUE_DE":" 2122",
+ "CIVIQUE_FI":" 2126",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-9240-0-000-0000",
+ "SUPERFICIE":135,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000529154333466,
+ "OBJECTID":88516,
+ "Join_Count":1,
+ "TARGET_FID":88516,
+ "feature_id":"06345140-bcff-47c8-bdc3-498ba633275e",
+ "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":11.19,
+ "elevmin":19.49,
+ "elevmax":20.54,
+ "bldgarea":912.26,
+ "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_2":88516,
+ "Shape_Le_1":0.000529154333466,
+ "Shape_Ar_1":8.20508749073e-09,
+ "OBJECTID_3":88516,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88515,
+ "g_objectid":"943869",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361053",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472924000000000",
+ "g_sup_tota":"135.3",
+ "g_geometry":"0.000616834",
+ "g_geomet_1":"1.5584e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000529154333466,
+ "Shape_Area":8.20508749073e-09,
+ "Shape_Le_3":0.000529155737562,
+ "Shape_Ar_2":8.20508749073e-09,
+ "building_height":5.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1632,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55128868314806,
+ 45.538155427481286
+ ],
+ [
+ -73.55135535888455,
+ 45.53817822979177
+ ],
+ [
+ -73.5514288245025,
+ 45.5380758248897
+ ],
+ [
+ -73.55136214606803,
+ 45.5380530216799
+ ],
+ [
+ -73.55128868314806,
+ 45.538155427481286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1632,
+ "ID_UEV":"01025444",
+ "CIVIQUE_DE":" 2128",
+ "CIVIQUE_FI":" 2132",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-8743-4-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00039299878947,
+ "OBJECTID":88518,
+ "Join_Count":1,
+ "TARGET_FID":88518,
+ "feature_id":"06345140-bcff-47c8-bdc3-498ba633275e",
+ "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":11.19,
+ "elevmin":19.49,
+ "elevmax":20.54,
+ "bldgarea":912.26,
+ "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_2":88518,
+ "Shape_Le_1":0.00039299878947,
+ "Shape_Ar_1":8.50325438388e-09,
+ "OBJECTID_3":88518,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88517,
+ "g_objectid":"943869",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361053",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472924000000000",
+ "g_sup_tota":"135.3",
+ "g_geometry":"0.000616834",
+ "g_geomet_1":"1.5584e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00039299878947,
+ "Shape_Area":8.50325438388e-09,
+ "Shape_Le_3":0.000392999192182,
+ "Shape_Ar_2":8.50325438388e-09,
+ "building_height":5.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1633,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55135535888455,
+ 45.53817822979177
+ ],
+ [
+ -73.5514220364197,
+ 45.53820103300157
+ ],
+ [
+ -73.55149550023899,
+ 45.53809862540154
+ ],
+ [
+ -73.5514288245025,
+ 45.5380758248897
+ ],
+ [
+ -73.55135535888455,
+ 45.53817822979177
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1633,
+ "ID_UEV":"01025446",
+ "CIVIQUE_DE":" 2134",
+ "CIVIQUE_FI":" 2138",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-8245-0-000-0000",
+ "SUPERFICIE":141,
+ "SUPERFIC_1":201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000392998915138,
+ "OBJECTID":88519,
+ "Join_Count":1,
+ "TARGET_FID":88519,
+ "feature_id":"06345140-bcff-47c8-bdc3-498ba633275e",
+ "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":11.19,
+ "elevmin":19.49,
+ "elevmax":20.54,
+ "bldgarea":912.26,
+ "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_2":88519,
+ "Shape_Le_1":0.000392998915138,
+ "Shape_Ar_1":8.50321118884e-09,
+ "OBJECTID_3":88519,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88518,
+ "g_objectid":"943872",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361056",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472774840000000",
+ "g_sup_tota":"139.7",
+ "g_geometry":"0.00062127",
+ "g_geomet_1":"1.60977e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000392998915138,
+ "Shape_Area":8.50321118884e-09,
+ "Shape_Le_3":0.000392999744938,
+ "Shape_Ar_2":8.50321118884e-09,
+ "building_height":5.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1634,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5553633998229,
+ 45.53660120203414
+ ],
+ [
+ -73.55544776792199,
+ 45.53662654942601
+ ],
+ [
+ -73.5554086968757,
+ 45.53669073404044
+ ],
+ [
+ -73.55548350698011,
+ 45.53658577326512
+ ],
+ [
+ -73.55551046775572,
+ 45.536527449532464
+ ],
+ [
+ -73.55542914116378,
+ 45.53650896666577
+ ],
+ [
+ -73.5553633998229,
+ 45.53660120203414
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55530456707396,
+ 45.536683745408816
+ ],
+ [
+ -73.55530686843908,
+ 45.53668444957798
+ ],
+ [
+ -73.5553238800149,
+ 45.536656650634214
+ ],
+ [
+ -73.55530456707396,
+ 45.536683745408816
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1634,
+ "ID_UEV":"01024536",
+ "CIVIQUE_DE":" 2290",
+ "CIVIQUE_FI":" 2290",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-40-7379-5-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":150,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000621318205163,
+ "OBJECTID":88523,
+ "Join_Count":1,
+ "TARGET_FID":88523,
+ "feature_id":"edeb921d-274e-4443-af55-dae075f24078",
+ "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":12.52,
+ "elevmin":18.73,
+ "elevmax":21.15,
+ "bldgarea":1153.25,
+ "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_2":88523,
+ "Shape_Le_1":0.000621318205163,
+ "Shape_Ar_1":1.02140539545e-08,
+ "OBJECTID_3":88523,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88522,
+ "g_objectid":"944828",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004440638530000000",
+ "g_sup_tota":"385.2",
+ "g_geometry":"0.000868996",
+ "g_geomet_1":"4.4367e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000621318205163,
+ "Shape_Area":1.02140539545e-08,
+ "Shape_Le_3":0.000621319104345,
+ "Shape_Ar_2":1.02140539545e-08,
+ "building_height":6.01
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1635,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55290997283882,
+ 45.532872076835176
+ ],
+ [
+ -73.55317257397695,
+ 45.53298334005939
+ ],
+ [
+ -73.55325654547504,
+ 45.532885800489595
+ ],
+ [
+ -73.55300106696751,
+ 45.53277144989279
+ ],
+ [
+ -73.55290997283882,
+ 45.532872076835176
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1635,
+ "ID_UEV":"01025502",
+ "CIVIQUE_DE":" 2529",
+ "CIVIQUE_FI":" 2531",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-66-5363-8-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":668,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000829541265184,
+ "OBJECTID":88526,
+ "Join_Count":1,
+ "TARGET_FID":88526,
+ "feature_id":"0076918e-f1bc-419f-93ce-b4211208ebf3",
+ "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.51,
+ "heightmax":32.35,
+ "elevmin":18.88,
+ "elevmax":19.8,
+ "bldgarea":633.69,
+ "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_2":88526,
+ "Shape_Le_1":0.000829541265184,
+ "Shape_Ar_1":3.55406895042e-08,
+ "OBJECTID_3":88526,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88525,
+ "g_objectid":"941207",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425150",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004366607570000000",
+ "g_sup_tota":"334.5",
+ "g_geometry":"0.000856795",
+ "g_geomet_1":"3.81925e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000829541265184,
+ "Shape_Area":3.55406895042e-08,
+ "Shape_Le_3":0.000829542578776,
+ "Shape_Ar_2":3.55406895042e-08,
+ "building_height":14.920000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1636,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55892111783716,
+ 45.53835299054837
+ ],
+ [
+ -73.55900945824175,
+ 45.538381295810446
+ ],
+ [
+ -73.55909471397172,
+ 45.538262355973245
+ ],
+ [
+ -73.55900844470581,
+ 45.53823113151181
+ ],
+ [
+ -73.55892111783716,
+ 45.53835299054837
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1636,
+ "ID_UEV":"01024649",
+ "CIVIQUE_DE":" 2631",
+ "CIVIQUE_FI":" 2635",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-12-9369-3-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":250,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000480767978749,
+ "OBJECTID":88527,
+ "Join_Count":1,
+ "TARGET_FID":88527,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":88527,
+ "Shape_Le_1":0.000480767978749,
+ "Shape_Ar_1":1.30798414993e-08,
+ "OBJECTID_3":88527,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88526,
+ "g_objectid":"944115",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361369",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004412936930000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.00066682",
+ "g_geomet_1":"2.13249e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000480767978749,
+ "Shape_Area":1.30798414993e-08,
+ "Shape_Le_3":0.000480768514557,
+ "Shape_Ar_2":1.30798414993e-08,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1637,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55460816625572,
+ 45.53055421815294
+ ],
+ [
+ -73.55476506827513,
+ 45.530626227768494
+ ],
+ [
+ -73.55481564884496,
+ 45.53057448707322
+ ],
+ [
+ -73.5546612658266,
+ 45.53050008166373
+ ],
+ [
+ -73.5546502194539,
+ 45.53049475767722
+ ],
+ [
+ -73.55464456721485,
+ 45.53050044858713
+ ],
+ [
+ -73.55462680110783,
+ 45.530491638828366
+ ],
+ [
+ -73.55457879799498,
+ 45.530540740013436
+ ],
+ [
+ -73.55458225319028,
+ 45.530542325518205
+ ],
+ [
+ -73.5545851669937,
+ 45.53053934876223
+ ],
+ [
+ -73.55461066727032,
+ 45.53055164878985
+ ],
+ [
+ -73.55460816625572,
+ 45.53055421815294
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1637,
+ "ID_UEV":"01019159",
+ "CIVIQUE_DE":" 2310",
+ "CIVIQUE_FI":" 2314",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1941,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-54-2705-9-000-0000",
+ "SUPERFICIE":127,
+ "SUPERFIC_1":303,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000565017823765,
+ "OBJECTID":88531,
+ "Join_Count":1,
+ "TARGET_FID":88531,
+ "feature_id":"7073896e-867e-4f45-b647-51498746bc50",
+ "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.48,
+ "heightmax":38.75,
+ "elevmin":17.54,
+ "elevmax":20.03,
+ "bldgarea":2126.07,
+ "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_2":88531,
+ "Shape_Le_1":0.000565017823765,
+ "Shape_Ar_1":1.41017777053e-08,
+ "OBJECTID_3":88531,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88530,
+ "g_objectid":"944823",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004353209650000000",
+ "g_sup_tota":"285.4",
+ "g_geometry":"0.000748601",
+ "g_geomet_1":"3.28772e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000565017823765,
+ "Shape_Area":1.41017777053e-08,
+ "Shape_Le_3":0.000565017280799,
+ "Shape_Ar_2":1.41017777053e-08,
+ "building_height":18.135
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1638,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55210103085973,
+ 45.53664403404523
+ ],
+ [
+ -73.55218356703983,
+ 45.536669349960825
+ ],
+ [
+ -73.5522443675054,
+ 45.53657144976289
+ ],
+ [
+ -73.55224256706266,
+ 45.53657094973983
+ ],
+ [
+ -73.55217165641865,
+ 45.536544036628285
+ ],
+ [
+ -73.55210103085973,
+ 45.53664403404523
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5522774625567,
+ 45.536564827155345
+ ],
+ [
+ -73.55227716667974,
+ 45.53656474981365
+ ],
+ [
+ -73.5522762673577,
+ 45.53656634970757
+ ],
+ [
+ -73.55227551822243,
+ 45.53656757998013
+ ],
+ [
+ -73.5522774625567,
+ 45.536564827155345
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1638,
+ "ID_UEV":"01025022",
+ "CIVIQUE_DE":" 2097",
+ "CIVIQUE_FI":" 2097",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1956,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-2581-8-000-0000",
+ "SUPERFICIE":207,
+ "SUPERFIC_1":232,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000408662818969,
+ "OBJECTID":88551,
+ "Join_Count":2,
+ "TARGET_FID":88551,
+ "feature_id":"cc1e4d13-2710-4040-97b1-cbdbd74c343f",
+ "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.54,
+ "heightmax":27.25,
+ "elevmin":18.99,
+ "elevmax":20.32,
+ "bldgarea":1013.12,
+ "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_2":88551,
+ "Shape_Le_1":0.000408662818969,
+ "Shape_Ar_1":9.40714735887e-09,
+ "OBJECTID_3":88551,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88550,
+ "g_objectid":"943749",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470188470000000",
+ "g_sup_tota":"187",
+ "g_geometry":"0.000669012",
+ "g_geomet_1":"2.15371e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000408662818969,
+ "Shape_Area":9.40714735887e-09,
+ "Shape_Le_3":0.000408665045563,
+ "Shape_Ar_2":9.40714735887e-09,
+ "building_height":13.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1639,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56154810408358,
+ 45.52588369073004
+ ],
+ [
+ -73.56153316904236,
+ 45.5258772479869
+ ],
+ [
+ -73.56149536873812,
+ 45.52586054757651
+ ],
+ [
+ -73.5614301687891,
+ 45.52583154803781
+ ],
+ [
+ -73.56142786922263,
+ 45.525834048153094
+ ],
+ [
+ -73.56130316922773,
+ 45.52596714781591
+ ],
+ [
+ -73.56130546879419,
+ 45.52596814786203
+ ],
+ [
+ -73.56135766904303,
+ 45.52598874773282
+ ],
+ [
+ -73.56138926942108,
+ 45.525948747686854
+ ],
+ [
+ -73.56140746900134,
+ 45.5259560474839
+ ],
+ [
+ -73.56137196916289,
+ 45.52600004771433
+ ],
+ [
+ -73.56142116028016,
+ 45.52601970509561
+ ],
+ [
+ -73.56154810408358,
+ 45.52588369073004
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1639,
+ "ID_UEV":"01032626",
+ "CIVIQUE_DE":" 2115",
+ "CIVIQUE_FI":" 2123",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-08-0394-2-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":568,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000739504351427,
+ "OBJECTID":88599,
+ "Join_Count":1,
+ "TARGET_FID":88599,
+ "feature_id":"efb6e9ca-6a74-42ff-9880-251a7354d8d4",
+ "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.49,
+ "heightmax":41.28,
+ "elevmin":28.53,
+ "elevmax":30.05,
+ "bldgarea":1057.92,
+ "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_2":88599,
+ "Shape_Le_1":0.000739504351427,
+ "Shape_Ar_1":2.1638646243e-08,
+ "OBJECTID_3":88599,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88598,
+ "g_objectid":"941653",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565660",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004208039420000000",
+ "g_sup_tota":"371.8",
+ "g_geometry":"0.000932617",
+ "g_geomet_1":"4.28005e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000739504351427,
+ "Shape_Area":2.1638646243e-08,
+ "Shape_Le_3":0.00073950411107,
+ "Shape_Ar_2":2.1638646243e-08,
+ "building_height":19.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1640,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55868123896985,
+ 45.52179810844624
+ ],
+ [
+ -73.55864466803884,
+ 45.521781648154835
+ ],
+ [
+ -73.55855756779935,
+ 45.521742447606165
+ ],
+ [
+ -73.55855556770713,
+ 45.521744648247214
+ ],
+ [
+ -73.55849216820084,
+ 45.52182194767504
+ ],
+ [
+ -73.55854836773483,
+ 45.5218469479286
+ ],
+ [
+ -73.55861014936075,
+ 45.52187451754524
+ ],
+ [
+ -73.55868123896985,
+ 45.52179810844624
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1640,
+ "ID_UEV":"01032367",
+ "CIVIQUE_DE":" 1713",
+ "CIVIQUE_FI":" 1723",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-2941-5-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":312,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000472095529497,
+ "OBJECTID":88611,
+ "Join_Count":1,
+ "TARGET_FID":88611,
+ "feature_id":"db63cd33-1c0f-4d27-a08b-5143b34c3a12",
+ "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.7,
+ "heightmax":10.83,
+ "elevmin":25.51,
+ "elevmax":26.34,
+ "bldgarea":287.14,
+ "comment":" ",
+ "OBJECTID_2":88611,
+ "Shape_Le_1":0.000472095529497,
+ "Shape_Ar_1":1.31172331634e-08,
+ "OBJECTID_3":88611,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88610,
+ "g_objectid":"941978",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567027",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224294150000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.00092798",
+ "g_geomet_1":"4.38627e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000472095529497,
+ "Shape_Area":1.31172331634e-08,
+ "Shape_Le_3":0.000472095299101,
+ "Shape_Ar_2":1.31172331634e-08,
+ "building_height":4.0649999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1641,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55832637098707,
+ 45.52177856168157
+ ],
+ [
+ -73.55842506798434,
+ 45.521824347965584
+ ],
+ [
+ -73.55849966854672,
+ 45.52174494772146
+ ],
+ [
+ -73.5584397683025,
+ 45.52171714787837
+ ],
+ [
+ -73.55840052638503,
+ 45.52169885656727
+ ],
+ [
+ -73.55832637098707,
+ 45.52177856168157
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1641,
+ "ID_UEV":"01032368",
+ "CIVIQUE_DE":" 1697",
+ "CIVIQUE_FI":" 1699",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-3731-9-000-0000",
+ "SUPERFICIE":300,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000435945779154,
+ "OBJECTID":88612,
+ "Join_Count":1,
+ "TARGET_FID":88612,
+ "feature_id":"264a9583-5a38-4e32-a3ac-c28b333f4c19",
+ "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":3.9,
+ "heightmax":7.92,
+ "elevmin":25.88,
+ "elevmax":26.29,
+ "bldgarea":186.69,
+ "comment":" ",
+ "OBJECTID_2":88612,
+ "Shape_Le_1":0.000435945779154,
+ "Shape_Ar_1":1.12837326586e-08,
+ "OBJECTID_3":88612,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88611,
+ "g_objectid":"942063",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567300",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224482660000000",
+ "g_sup_tota":"334",
+ "g_geometry":"0.000930116",
+ "g_geomet_1":"3.87342e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000435945779154,
+ "Shape_Area":1.12837326586e-08,
+ "Shape_Le_3":0.00043594702599,
+ "Shape_Ar_2":1.12837326586e-08,
+ "building_height":2.01
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1642,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55840052638503,
+ 45.52169885656727
+ ],
+ [
+ -73.55831146832145,
+ 45.52165734745891
+ ],
+ [
+ -73.55823666810959,
+ 45.521736948251856
+ ],
+ [
+ -73.55832637098707,
+ 45.52177856168157
+ ],
+ [
+ -73.55840052638503,
+ 45.52169885656727
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1642,
+ "ID_UEV":"01032370",
+ "CIVIQUE_DE":" 1691",
+ "CIVIQUE_FI":" 1693",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-4826-6-000-0000",
+ "SUPERFICIE":334,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00041523821762,
+ "OBJECTID":88613,
+ "Join_Count":1,
+ "TARGET_FID":88613,
+ "feature_id":"264a9583-5a38-4e32-a3ac-c28b333f4c19",
+ "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":3.9,
+ "heightmax":7.92,
+ "elevmin":25.88,
+ "elevmax":26.29,
+ "bldgarea":186.69,
+ "comment":" ",
+ "OBJECTID_2":88613,
+ "Shape_Le_1":0.00041523821762,
+ "Shape_Ar_1":1.02147768927e-08,
+ "OBJECTID_3":88613,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88612,
+ "g_objectid":"942063",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567300",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224482660000000",
+ "g_sup_tota":"334",
+ "g_geometry":"0.000930116",
+ "g_geomet_1":"3.87342e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00041523821762,
+ "Shape_Area":1.02147768927e-08,
+ "Shape_Le_3":0.000415239047675,
+ "Shape_Ar_2":1.02147768927e-08,
+ "building_height":2.01
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1643,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5580639641025,
+ 45.52165893476232
+ ],
+ [
+ -73.55816206844655,
+ 45.52170494767549
+ ],
+ [
+ -73.55823876802657,
+ 45.521624048261515
+ ],
+ [
+ -73.55816596790694,
+ 45.52158994776817
+ ],
+ [
+ -73.558140785091,
+ 45.52157811628733
+ ],
+ [
+ -73.5580639641025,
+ 45.52165893476232
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1643,
+ "ID_UEV":"01032373",
+ "CIVIQUE_DE":" 1679",
+ "CIVIQUE_FI":" 1681",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-5920-6-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000439557066614,
+ "OBJECTID":88615,
+ "Join_Count":1,
+ "TARGET_FID":88615,
+ "feature_id":"5a599365-a310-4f86-acd6-548e0c40434c",
+ "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":3.15,
+ "heightmax":7.93,
+ "elevmin":26.02,
+ "elevmax":26.53,
+ "bldgarea":189.88,
+ "comment":" ",
+ "OBJECTID_2":88615,
+ "Shape_Le_1":0.000439557066614,
+ "Shape_Ar_1":1.14553058215e-08,
+ "OBJECTID_3":88615,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88614,
+ "g_objectid":"942044",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567277",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224592060000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000930793",
+ "g_geomet_1":"4.37836e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000439557066614,
+ "Shape_Area":1.14553058215e-08,
+ "Shape_Le_3":0.000439556168801,
+ "Shape_Ar_2":1.14553058215e-08,
+ "building_height":2.3899999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1644,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55788895153573,
+ 45.521646126617746
+ ],
+ [
+ -73.55786112021637,
+ 45.52167550926763
+ ],
+ [
+ -73.55789176821237,
+ 45.521647648270644
+ ],
+ [
+ -73.55788895153573,
+ 45.521646126617746
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.558140785091,
+ 45.52157811628733
+ ],
+ [
+ -73.55805166767217,
+ 45.52153624745016
+ ],
+ [
+ -73.55797486826741,
+ 45.52161714776345
+ ],
+ [
+ -73.5580639641025,
+ 45.52165893476232
+ ],
+ [
+ -73.558140785091,
+ 45.52157811628733
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55796464837167,
+ 45.52156621196141
+ ],
+ [
+ -73.5579682681429,
+ 45.52156784782821
+ ],
+ [
+ -73.5579719679538,
+ 45.521563747819
+ ],
+ [
+ -73.55803166854851,
+ 45.52149614757944
+ ],
+ [
+ -73.55803120539765,
+ 45.5214959461313
+ ],
+ [
+ -73.55796464837167,
+ 45.52156621196141
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1644,
+ "ID_UEV":"01032374",
+ "CIVIQUE_DE":" 1673",
+ "CIVIQUE_FI":" 1675",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1983,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-7013-8-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000701986379051,
+ "OBJECTID":88616,
+ "Join_Count":3,
+ "TARGET_FID":88616,
+ "feature_id":"72efd55a-d6d2-470c-9874-6f8d84b7f55f",
+ "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.61,
+ "heightmax":9.13,
+ "elevmin":26.33,
+ "elevmax":27.09,
+ "bldgarea":185.51,
+ "comment":" ",
+ "OBJECTID_2":88616,
+ "Shape_Le_1":0.000701986379051,
+ "Shape_Ar_1":1.06877502834e-08,
+ "OBJECTID_3":88616,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88615,
+ "g_objectid":"942044",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567277",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224592060000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000930793",
+ "g_geomet_1":"4.37836e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000701986379051,
+ "Shape_Area":1.06877502834e-08,
+ "Shape_Le_3":0.000701987108153,
+ "Shape_Ar_2":1.06877502834e-08,
+ "building_height":3.2600000000000007
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1645,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56246929404453,
+ 45.523408175497195
+ ],
+ [
+ -73.56259826671848,
+ 45.523468242115975
+ ],
+ [
+ -73.56267161092795,
+ 45.52338893809931
+ ],
+ [
+ -73.56254054373295,
+ 45.52333113597344
+ ],
+ [
+ -73.56246929404453,
+ 45.523408175497195
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1645,
+ "ID_UEV":"01032300",
+ "CIVIQUE_DE":" 2084",
+ "CIVIQUE_FI":" 2094",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-96-0807-0-000-0000",
+ "SUPERFICIE":243,
+ "SUPERFIC_1":402,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000498478422863,
+ "OBJECTID":88641,
+ "Join_Count":1,
+ "TARGET_FID":88641,
+ "feature_id":"702f3bc8-3ea6-4f74-ba6e-f1235929ae50",
+ "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.27,
+ "heightmax":12.24,
+ "elevmin":26.87,
+ "elevmax":28.4,
+ "bldgarea":806.54,
+ "comment":" ",
+ "OBJECTID_2":88641,
+ "Shape_Le_1":0.000498478422863,
+ "Shape_Ar_1":1.44246748333e-08,
+ "OBJECTID_3":88641,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88640,
+ "g_objectid":"941575",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565485",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994296080700000000",
+ "g_sup_tota":"243.1",
+ "g_geometry":"0.000698009",
+ "g_geomet_1":"2.80057e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000498478422863,
+ "Shape_Area":1.44246748333e-08,
+ "Shape_Le_3":0.000498478211052,
+ "Shape_Ar_2":1.44246748333e-08,
+ "building_height":4.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1646,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55730146041591,
+ 45.52213935979391
+ ],
+ [
+ -73.5573125679425,
+ 45.52214404795974
+ ],
+ [
+ -73.55731366781336,
+ 45.52214444815805
+ ],
+ [
+ -73.5573189684175,
+ 45.52213824823187
+ ],
+ [
+ -73.55739273620766,
+ 45.522169534746524
+ ],
+ [
+ -73.55745777248006,
+ 45.522100000065244
+ ],
+ [
+ -73.55737401771859,
+ 45.52206167006032
+ ],
+ [
+ -73.55730146041591,
+ 45.52213935979391
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1646,
+ "ID_UEV":"01032495",
+ "CIVIQUE_DE":" 1665",
+ "CIVIQUE_FI":" 1667",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-2174-2-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":203,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000395119311842,
+ "OBJECTID":88649,
+ "Join_Count":1,
+ "TARGET_FID":88649,
+ "feature_id":"ae986f48-4617-44ac-9c0f-e787de322f39",
+ "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.5,
+ "heightmax":38.47,
+ "elevmin":26.14,
+ "elevmax":27.18,
+ "bldgarea":1323.7,
+ "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_2":88649,
+ "Shape_Le_1":0.000395119311842,
+ "Shape_Ar_1":8.53479385881e-09,
+ "OBJECTID_3":88649,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88648,
+ "g_objectid":"944641",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004234217420000000",
+ "g_sup_tota":"579.1",
+ "g_geometry":"0.00126208",
+ "g_geomet_1":"6.77734e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000395119311842,
+ "Shape_Area":8.53479385881e-09,
+ "Shape_Le_3":0.000395118851123,
+ "Shape_Ar_2":8.53479385881e-09,
+ "building_height":17.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1647,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55705742758006,
+ 45.5220557705077
+ ],
+ [
+ -73.55717189418941,
+ 45.52210869561011
+ ],
+ [
+ -73.5571869668269,
+ 45.522091048213596
+ ],
+ [
+ -73.55730146041591,
+ 45.52213935979391
+ ],
+ [
+ -73.55737401771859,
+ 45.52206167006032
+ ],
+ [
+ -73.55714846685011,
+ 45.521958447674514
+ ],
+ [
+ -73.55714486686396,
+ 45.52196234803423
+ ],
+ [
+ -73.55705742758006,
+ 45.5220557705077
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1647,
+ "ID_UEV":"01032497",
+ "CIVIQUE_DE":" 1651",
+ "CIVIQUE_FI":" 1659",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-2962-0-000-0000",
+ "SUPERFICIE":368,
+ "SUPERFIC_1":708,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000761204330572,
+ "OBJECTID":88651,
+ "Join_Count":1,
+ "TARGET_FID":88651,
+ "feature_id":"ae986f48-4617-44ac-9c0f-e787de322f39",
+ "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.5,
+ "heightmax":38.47,
+ "elevmin":26.14,
+ "elevmax":27.18,
+ "bldgarea":1323.7,
+ "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_2":88651,
+ "Shape_Le_1":0.000761204330572,
+ "Shape_Ar_1":2.84831119617e-08,
+ "OBJECTID_3":88651,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88650,
+ "g_objectid":"942155",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567497",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004234387040000000",
+ "g_sup_tota":"221.5",
+ "g_geometry":"0.000704681",
+ "g_geomet_1":"2.59576e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000761204330572,
+ "Shape_Area":2.84831119617e-08,
+ "Shape_Le_3":0.00076120264703,
+ "Shape_Ar_2":2.84831119617e-08,
+ "building_height":17.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1648,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55442776315259,
+ 45.522913982744406
+ ],
+ [
+ -73.55449146752905,
+ 45.52285524802157
+ ],
+ [
+ -73.55455296676784,
+ 45.52288824774473
+ ],
+ [
+ -73.55453876737207,
+ 45.522901247444906
+ ],
+ [
+ -73.55458546736727,
+ 45.522924247606234
+ ],
+ [
+ -73.55458996667547,
+ 45.52292654807203
+ ],
+ [
+ -73.55463816673985,
+ 45.522874847846246
+ ],
+ [
+ -73.55464546743622,
+ 45.52287854765714
+ ],
+ [
+ -73.55465866678588,
+ 45.522864848284414
+ ],
+ [
+ -73.55455816754724,
+ 45.52281714824309
+ ],
+ [
+ -73.55456495113343,
+ 45.52281008946435
+ ],
+ [
+ -73.55441696409346,
+ 45.5227414046424
+ ],
+ [
+ -73.55440976681913,
+ 45.522749047980476
+ ],
+ [
+ -73.55435276688853,
+ 45.522809647897226
+ ],
+ [
+ -73.55435286671327,
+ 45.522809847546725
+ ],
+ [
+ -73.55437066699453,
+ 45.52281924816007
+ ],
+ [
+ -73.5543223671054,
+ 45.5228644480861
+ ],
+ [
+ -73.55432190845116,
+ 45.52286485188171
+ ],
+ [
+ -73.55442776315259,
+ 45.522913982744406
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1648,
+ "ID_UEV":"01022290",
+ "CIVIQUE_DE":" 1665",
+ "CIVIQUE_FI":" 1673",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1911,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Service de garderie (pr\u00c3\u00a9maternelle, moins de 50 % de poupons)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-55-4350-1-000-0000",
+ "SUPERFICIE":398,
+ "SUPERFIC_1":2898,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000912391381747,
+ "OBJECTID":88652,
+ "Join_Count":1,
+ "TARGET_FID":88652,
+ "feature_id":"fb741e09-1a88-49b5-8d59-e38085980aa7",
+ "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.55,
+ "heightmax":35.78,
+ "elevmin":22.03,
+ "elevmax":25.16,
+ "bldgarea":447.94,
+ "comment":" ",
+ "OBJECTID_2":88652,
+ "Shape_Le_1":0.000912391381747,
+ "Shape_Ar_1":2.94538032216e-08,
+ "OBJECTID_3":88652,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88651,
+ "g_objectid":"942255",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567717",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004255353660000000",
+ "g_sup_tota":"362.3",
+ "g_geometry":"0.000863812",
+ "g_geomet_1":"4.17362e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000912391381747,
+ "Shape_Area":2.94538032216e-08,
+ "Shape_Le_3":0.000912388706206,
+ "Shape_Ar_2":2.94538032216e-08,
+ "building_height":16.615000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1649,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56185367303043,
+ 45.52296853561972
+ ],
+ [
+ -73.56197175581373,
+ 45.5230238295364
+ ],
+ [
+ -73.56200948956814,
+ 45.522981866270406
+ ],
+ [
+ -73.56189159114587,
+ 45.522926941975086
+ ],
+ [
+ -73.56185367303043,
+ 45.52296853561972
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1649,
+ "ID_UEV":"01032253",
+ "CIVIQUE_DE":" 1340",
+ "CIVIQUE_FI":" 1342",
+ "NOM_RUE":"rue Berthier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-95-6163-4-000-0000",
+ "SUPERFICIE":61,
+ "SUPERFIC_1":122,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000373168910234,
+ "OBJECTID":88671,
+ "Join_Count":1,
+ "TARGET_FID":88671,
+ "feature_id":"ebe94d82-3efd-4a6c-a255-28b22365bae9",
+ "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.14,
+ "heightmax":12.79,
+ "elevmin":26.56,
+ "elevmax":27.84,
+ "bldgarea":2155.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_2":88671,
+ "Shape_Le_1":0.000373168910234,
+ "Shape_Ar_1":7.01405057945e-09,
+ "OBJECTID_3":88671,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88670,
+ "g_objectid":"941642",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565619",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994295756340000000",
+ "g_sup_tota":"218.8",
+ "g_geometry":"0.000660185",
+ "g_geomet_1":"2.465e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000373168910234,
+ "Shape_Area":7.01405057945e-09,
+ "Shape_Le_3":0.000373168959931,
+ "Shape_Ar_2":7.01405057945e-09,
+ "building_height":5.324999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1650,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55358093003774,
+ 45.5236201394082
+ ],
+ [
+ -73.55370232682277,
+ 45.52367625260727
+ ],
+ [
+ -73.55374546640199,
+ 45.52362354783876
+ ],
+ [
+ -73.55374216589009,
+ 45.52362224741908
+ ],
+ [
+ -73.55363496580287,
+ 45.523574747926574
+ ],
+ [
+ -73.55362576573835,
+ 45.52357064791736
+ ],
+ [
+ -73.55358093003774,
+ 45.5236201394082
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1650,
+ "ID_UEV":"01022293",
+ "CIVIQUE_DE":" 1821",
+ "CIVIQUE_FI":" 1825",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1936,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-66-0237-1-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":219,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00039949933451,
+ "OBJECTID":88682,
+ "Join_Count":1,
+ "TARGET_FID":88682,
+ "feature_id":"9141044b-3efe-4ab9-a812-ee5377173041",
+ "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.51,
+ "heightmax":36.99,
+ "elevmin":18.54,
+ "elevmax":24.57,
+ "bldgarea":2092.08,
+ "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_2":88682,
+ "Shape_Le_1":0.00039949933451,
+ "Shape_Ar_1":8.54671219863e-09,
+ "OBJECTID_3":88682,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88681,
+ "g_objectid":"942258",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567727",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004266064300000000",
+ "g_sup_tota":"170.1",
+ "g_geometry":"0.000685075",
+ "g_geomet_1":"1.99727e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00039949933451,
+ "Shape_Area":8.54671219863e-09,
+ "Shape_Le_3":0.0003994993992,
+ "Shape_Ar_2":8.54671219863e-09,
+ "building_height":17.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1651,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55153820184839,
+ 45.53679427118896
+ ],
+ [
+ -73.55160314818858,
+ 45.53681796292894
+ ],
+ [
+ -73.5516910740057,
+ 45.536695369146265
+ ],
+ [
+ -73.55163456690359,
+ 45.53667445001615
+ ],
+ [
+ -73.55162632101974,
+ 45.53667140760967
+ ],
+ [
+ -73.55153820184839,
+ 45.53679427118896
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1651,
+ "ID_UEV":"01025064",
+ "CIVIQUE_DE":" 2078",
+ "CIVIQUE_FI":" 2082",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-6892-5-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":247,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00044023770965,
+ "OBJECTID":88683,
+ "Join_Count":1,
+ "TARGET_FID":88683,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":88683,
+ "Shape_Le_1":0.00044023770965,
+ "Shape_Ar_1":1.00564518435e-08,
+ "OBJECTID_3":88683,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88682,
+ "g_objectid":"943769",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360923",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470639420000000",
+ "g_sup_tota":"139.4",
+ "g_geometry":"0.000620801",
+ "g_geomet_1":"1.60528e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00044023770965,
+ "Shape_Area":1.00564518435e-08,
+ "Shape_Le_3":0.000440238400238,
+ "Shape_Ar_2":1.00564518435e-08,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1652,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55160314818858,
+ 45.53681796292894
+ ],
+ [
+ -73.55166809273014,
+ 45.536841655568246
+ ],
+ [
+ -73.55175582069641,
+ 45.536719338776756
+ ],
+ [
+ -73.5516910740057,
+ 45.536695369146265
+ ],
+ [
+ -73.55160314818858,
+ 45.53681796292894
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1652,
+ "ID_UEV":"01025066",
+ "CIVIQUE_DE":" 2084",
+ "CIVIQUE_FI":" 2088",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-6394-2-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":249,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000439563042095,
+ "OBJECTID":88685,
+ "Join_Count":1,
+ "TARGET_FID":88685,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":88685,
+ "Shape_Le_1":0.000439563042095,
+ "Shape_Ar_1":1.00337985058e-08,
+ "OBJECTID_3":88685,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88684,
+ "g_objectid":"943770",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360924",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470589750000000",
+ "g_sup_tota":"139.4",
+ "g_geometry":"0.000620798",
+ "g_geomet_1":"1.60525e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000439563042095,
+ "Shape_Area":1.00337985058e-08,
+ "Shape_Le_3":0.000439561597118,
+ "Shape_Ar_2":1.00337985058e-08,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1653,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56198994909872,
+ 45.522854302834105
+ ],
+ [
+ -73.5620844120878,
+ 45.522898542284196
+ ],
+ [
+ -73.5621496686941,
+ 45.52282596699508
+ ],
+ [
+ -73.56205216869448,
+ 45.52278334812331
+ ],
+ [
+ -73.56204956875445,
+ 45.52278634826166
+ ],
+ [
+ -73.56198994909872,
+ 45.522854302834105
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56185472703586,
+ 45.52279097527359
+ ],
+ [
+ -73.56189092115093,
+ 45.52280792479619
+ ],
+ [
+ -73.5619551687179,
+ 45.52273464803587
+ ],
+ [
+ -73.56194976918835,
+ 45.52273234757008
+ ],
+ [
+ -73.56192206917,
+ 45.52271944769465
+ ],
+ [
+ -73.56185472703586,
+ 45.52279097527359
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1653,
+ "ID_UEV":"01032257",
+ "CIVIQUE_DE":" 1330",
+ "CIVIQUE_FI":" 1330",
+ "NOM_RUE":"rue Berthier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-95-5644-4-000-0000",
+ "SUPERFICIE":233,
+ "SUPERFIC_1":201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00067477358516,
+ "OBJECTID":88699,
+ "Join_Count":1,
+ "TARGET_FID":88699,
+ "feature_id":"ebe94d82-3efd-4a6c-a255-28b22365bae9",
+ "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.14,
+ "heightmax":12.79,
+ "elevmin":26.56,
+ "elevmax":27.84,
+ "bldgarea":2155.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_2":88699,
+ "Shape_Le_1":0.00067477358516,
+ "Shape_Ar_1":1.32183148842e-08,
+ "OBJECTID_3":88699,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88698,
+ "g_objectid":"941638",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565609",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994295625330000000",
+ "g_sup_tota":"250.8",
+ "g_geometry":"0.000765504",
+ "g_geomet_1":"2.89112e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00067477358516,
+ "Shape_Area":1.32183148842e-08,
+ "Shape_Le_3":0.000674772846271,
+ "Shape_Ar_2":1.32183148842e-08,
+ "building_height":5.324999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1654,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55673726983099,
+ 45.52306625325528
+ ],
+ [
+ -73.55674126731748,
+ 45.52306814812683
+ ],
+ [
+ -73.55680466682377,
+ 45.523002047956446
+ ],
+ [
+ -73.55679963331826,
+ 45.52299966205506
+ ],
+ [
+ -73.55673726983099,
+ 45.52306625325528
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55689670254263,
+ 45.522896010692634
+ ],
+ [
+ -73.55690426674036,
+ 45.522899447901494
+ ],
+ [
+ -73.55690456711393,
+ 45.522899647550986
+ ],
+ [
+ -73.5569169669663,
+ 45.52288554797995
+ ],
+ [
+ -73.55699646703518,
+ 45.52292014759703
+ ],
+ [
+ -73.55695296682781,
+ 45.52296964808109
+ ],
+ [
+ -73.55690986681874,
+ 45.522950947578465
+ ],
+ [
+ -73.55690516696173,
+ 45.5229490482103
+ ],
+ [
+ -73.55686916710023,
+ 45.52299254751835
+ ],
+ [
+ -73.55686916710023,
+ 45.522992648242415
+ ],
+ [
+ -73.55695565580072,
+ 45.52303598567249
+ ],
+ [
+ -73.55710107347761,
+ 45.52288070872802
+ ],
+ [
+ -73.55696883716395,
+ 45.52281898465871
+ ],
+ [
+ -73.55689670254263,
+ 45.522896010692634
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1654,
+ "ID_UEV":"01032552",
+ "CIVIQUE_DE":" 1689",
+ "CIVIQUE_FI":" 1691",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-35-5362-7-000-0000",
+ "SUPERFICIE":422,
+ "SUPERFIC_1":172,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00104241919549,
+ "OBJECTID":88700,
+ "Join_Count":2,
+ "TARGET_FID":88700,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":88700,
+ "Shape_Le_1":0.00104241919549,
+ "Shape_Ar_1":2.1285670111e-08,
+ "OBJECTID_3":88700,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88699,
+ "g_objectid":"942173",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567527",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235426950000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100486",
+ "g_geomet_1":"4.94027e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00104241919549,
+ "Shape_Area":2.1285670111e-08,
+ "Shape_Le_3":0.00104241873572,
+ "Shape_Ar_2":2.1285670111e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1655,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55954169771303,
+ 45.53276319861302
+ ],
+ [
+ -73.55957126922054,
+ 45.532780049210196
+ ],
+ [
+ -73.55954836888397,
+ 45.53279994850911
+ ],
+ [
+ -73.55954846870871,
+ 45.53279994850911
+ ],
+ [
+ -73.55960224726775,
+ 45.532828875202725
+ ],
+ [
+ -73.55972146949208,
+ 45.532700533852854
+ ],
+ [
+ -73.55963632617735,
+ 45.532661332404864
+ ],
+ [
+ -73.55954169771303,
+ 45.53276319861302
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1655,
+ "ID_UEV":"01022965",
+ "CIVIQUE_DE":" 2347",
+ "CIVIQUE_FI":" 2351",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-16-4451-7-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":326,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000533479592325,
+ "OBJECTID":88720,
+ "Join_Count":1,
+ "TARGET_FID":88720,
+ "feature_id":"a674cb3a-93b0-4b10-8747-a68d1a76d21c",
+ "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.51,
+ "heightmax":45.46,
+ "elevmin":28.11,
+ "elevmax":33.18,
+ "bldgarea":1813.91,
+ "comment":" ",
+ "OBJECTID_2":88720,
+ "Shape_Le_1":0.000533479592325,
+ "Shape_Ar_1":1.43967314994e-08,
+ "OBJECTID_3":88720,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88719,
+ "g_objectid":"940530",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424027",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004316514700000000",
+ "g_sup_tota":"241.5",
+ "g_geometry":"0.000814052",
+ "g_geomet_1":"2.78986e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000533479592325,
+ "Shape_Area":1.43967314994e-08,
+ "Shape_Le_3":0.000533482119668,
+ "Shape_Ar_2":1.43967314994e-08,
+ "building_height":21.475
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1656,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55707977033698,
+ 45.53877907044804
+ ],
+ [
+ -73.55718816922048,
+ 45.53881695079194
+ ],
+ [
+ -73.55725875430991,
+ 45.53883419709082
+ ],
+ [
+ -73.55731661579104,
+ 45.53875377611617
+ ],
+ [
+ -73.55724296940936,
+ 45.53872285112897
+ ],
+ [
+ -73.55730516922003,
+ 45.53864965081103
+ ],
+ [
+ -73.55721036898518,
+ 45.53860995113863
+ ],
+ [
+ -73.55721026916044,
+ 45.53860995113863
+ ],
+ [
+ -73.55718129390344,
+ 45.538637965020364
+ ],
+ [
+ -73.55707977033698,
+ 45.53877907044804
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1656,
+ "ID_UEV":"01025151",
+ "CIVIQUE_DE":" 2538",
+ "CIVIQUE_FI":" 2542",
+ "NOM_RUE":"rue Wurtele (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-33-3013-9-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":460,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000779509279956,
+ "OBJECTID":88738,
+ "Join_Count":1,
+ "TARGET_FID":88738,
+ "feature_id":"371d10c2-7fba-4ec3-86e3-d0638969ac6c",
+ "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.54,
+ "heightmax":41.69,
+ "elevmin":26.82,
+ "elevmax":31.02,
+ "bldgarea":962.18,
+ "comment":" ",
+ "OBJECTID_2":88738,
+ "Shape_Le_1":0.000779509279956,
+ "Shape_Ar_1":2.92517255205e-08,
+ "OBJECTID_3":88738,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88737,
+ "g_objectid":"944057",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361296",
+ "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":"66023004433201890000000",
+ "g_sup_tota":"186",
+ "g_geometry":"0.000667683",
+ "g_geomet_1":"2.14249e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000779509279956,
+ "Shape_Area":2.92517255205e-08,
+ "Shape_Le_3":0.00077950796194,
+ "Shape_Ar_2":2.92517255205e-08,
+ "building_height":20.575
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1657,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5509750697655,
+ 45.52369378219259
+ ],
+ [
+ -73.55115085934652,
+ 45.523775758095056
+ ],
+ [
+ -73.55124446618102,
+ 45.52367014800922
+ ],
+ [
+ -73.55124826581665,
+ 45.5236720482767
+ ],
+ [
+ -73.55125376607029,
+ 45.52366604800001
+ ],
+ [
+ -73.55105226577129,
+ 45.52357564814794
+ ],
+ [
+ -73.55104946618177,
+ 45.52357434772826
+ ],
+ [
+ -73.5509587650568,
+ 45.523684247580256
+ ],
+ [
+ -73.55095866523206,
+ 45.523684247580256
+ ],
+ [
+ -73.55097616513976,
+ 45.52369264814749
+ ],
+ [
+ -73.5509750697655,
+ 45.52369378219259
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55085192200045,
+ 45.52361892712209
+ ],
+ [
+ -73.55085776489578,
+ 45.523621647571275
+ ],
+ [
+ -73.55086076503413,
+ 45.523618447783434
+ ],
+ [
+ -73.55095596546728,
+ 45.523513747811506
+ ],
+ [
+ -73.55095010278686,
+ 45.52351111459656
+ ],
+ [
+ -73.55085192200045,
+ 45.52361892712209
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1657,
+ "ID_UEV":"01022401",
+ "CIVIQUE_DE":" 1950",
+ "CIVIQUE_FI":" 1950",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-86-1137-0-000-0000",
+ "SUPERFICIE":473,
+ "SUPERFIC_1":577,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00103957977256,
+ "OBJECTID":88741,
+ "Join_Count":2,
+ "TARGET_FID":88741,
+ "feature_id":"1dba10a8-998e-45d8-b340-db6f46c77863",
+ "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.51,
+ "heightmax":30.25,
+ "elevmin":17.15,
+ "elevmax":18.3,
+ "bldgarea":428.24,
+ "comment":" ",
+ "OBJECTID_2":88741,
+ "Shape_Le_1":0.00103957977256,
+ "Shape_Ar_1":3.13982150881e-08,
+ "OBJECTID_3":88741,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88740,
+ "g_objectid":"938289",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1729168",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"4",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004286113700000000",
+ "g_sup_tota":"472.7",
+ "g_geometry":"0.00102254",
+ "g_geomet_1":"5.47917e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00103957977256,
+ "Shape_Area":3.13982150881e-08,
+ "Shape_Le_3":0.00103958147961,
+ "Shape_Ar_2":3.13982150881e-08,
+ "building_height":13.870000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1658,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55375316100142,
+ 45.53599699971206
+ ],
+ [
+ -73.55375036680783,
+ 45.53599605002798
+ ],
+ [
+ -73.55358316755098,
+ 45.53593745020346
+ ],
+ [
+ -73.5535075669425,
+ 45.536044150267614
+ ],
+ [
+ -73.55367779421667,
+ 45.53610366020605
+ ],
+ [
+ -73.55375316100142,
+ 45.53599699971206
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5537100421066,
+ 45.53584077578147
+ ],
+ [
+ -73.55369856675729,
+ 45.53583714971498
+ ],
+ [
+ -73.55369266720467,
+ 45.53584634977951
+ ],
+ [
+ -73.55371026693712,
+ 45.53585194985789
+ ],
+ [
+ -73.5536952671447,
+ 45.5358741496226
+ ],
+ [
+ -73.5537265671492,
+ 45.535884449558
+ ],
+ [
+ -73.55374654378981,
+ 45.53585371702572
+ ],
+ [
+ -73.55374569842708,
+ 45.53585341665215
+ ],
+ [
+ -73.5537100421066,
+ 45.53584077578147
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1658,
+ "ID_UEV":"01024532",
+ "CIVIQUE_DE":" 2176",
+ "CIVIQUE_FI":" 2186",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-0908-6-000-0000",
+ "SUPERFICIE":457,
+ "SUPERFIC_1":557,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000798380660645,
+ "OBJECTID":88743,
+ "Join_Count":2,
+ "TARGET_FID":88743,
+ "feature_id":"8b8ceb52-1637-4685-9b75-bc0b36270886",
+ "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.14,
+ "heightmax":22.83,
+ "elevmin":19.42,
+ "elevmax":19.94,
+ "bldgarea":12.06,
+ "comment":" ",
+ "OBJECTID_2":88743,
+ "Shape_Le_1":0.000798380660645,
+ "Shape_Ar_1":2.40019218636e-08,
+ "OBJECTID_3":88743,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88742,
+ "g_objectid":"943635",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360792",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004460090860000000",
+ "g_sup_tota":"456.9",
+ "g_geometry":"0.00096127",
+ "g_geomet_1":"5.26259e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000798380660645,
+ "Shape_Area":2.40019218636e-08,
+ "Shape_Le_3":0.000798379707489,
+ "Shape_Ar_2":2.40019218636e-08,
+ "building_height":10.344999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1659,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.54935997010838,
+ 45.53840285345922
+ ],
+ [
+ -73.54932266622991,
+ 45.538456951277574
+ ],
+ [
+ -73.54943926603114,
+ 45.53849845049339
+ ],
+ [
+ -73.54944566650614,
+ 45.53850085078393
+ ],
+ [
+ -73.54948442728633,
+ 45.53844690045439
+ ],
+ [
+ -73.54935997010838,
+ 45.53840285345922
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5491944660736,
+ 45.53846365122682
+ ],
+ [
+ -73.54923536634092,
+ 45.53848145060876
+ ],
+ [
+ -73.54926076589348,
+ 45.53845265071955
+ ],
+ [
+ -73.54921996635021,
+ 45.53843485043829
+ ],
+ [
+ -73.5491944660736,
+ 45.53846365122682
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1659,
+ "ID_UEV":"01025683",
+ "CIVIQUE_DE":" 3030",
+ "CIVIQUE_FI":" 3030",
+ "NOM_RUE":"rue Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-92-4585-1-000-0000",
+ "SUPERFICIE":351,
+ "SUPERFIC_1":193,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000560751038965,
+ "OBJECTID":88747,
+ "Join_Count":2,
+ "TARGET_FID":88747,
+ "feature_id":"9ba4ca1f-676b-4a0e-a512-f159ca25892e",
+ "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.69,
+ "heightmax":25.53,
+ "elevmin":21.76,
+ "elevmax":22.13,
+ "bldgarea":14.16,
+ "comment":" ",
+ "OBJECTID_2":88747,
+ "Shape_Le_1":0.000560751038965,
+ "Shape_Ar_1":9.97903876234e-09,
+ "OBJECTID_3":88747,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88746,
+ "g_objectid":"944292",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361972",
+ "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":"66023004492417690000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749067",
+ "g_geomet_1":"1.8194e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000560751038965,
+ "Shape_Area":9.97903876234e-09,
+ "Shape_Le_3":0.000560752132713,
+ "Shape_Ar_2":9.97903876234e-09,
+ "building_height":12.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1660,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56033473967834,
+ 45.525661028483974
+ ],
+ [
+ -73.56044566925408,
+ 45.52554764825566
+ ],
+ [
+ -73.56064196877368,
+ 45.52564254741593
+ ],
+ [
+ -73.56061366890754,
+ 45.525671348204455
+ ],
+ [
+ -73.56065316893044,
+ 45.52569044800607
+ ],
+ [
+ -73.56065886883357,
+ 45.525693147770845
+ ],
+ [
+ -73.56068916879195,
+ 45.525660947544985
+ ],
+ [
+ -73.56081576905434,
+ 45.52571994756782
+ ],
+ [
+ -73.56081816934488,
+ 45.52571734762778
+ ],
+ [
+ -73.56090586943218,
+ 45.525620247826474
+ ],
+ [
+ -73.5605828689261,
+ 45.52547604783164
+ ],
+ [
+ -73.56054276905539,
+ 45.52545814772563
+ ],
+ [
+ -73.56056756876013,
+ 45.52542434760585
+ ],
+ [
+ -73.56055782820306,
+ 45.52542083125665
+ ],
+ [
+ -73.56032966390471,
+ 45.525658722622246
+ ],
+ [
+ -73.56033473967834,
+ 45.525661028483974
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1660,
+ "ID_UEV":"01032629",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2075",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":25,
+ "ANNEE_CONS":1989,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison d'\u00c3\u00a9tudiants (coll\u00c3\u00a8ge et universit\u00c3\u00a9)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-08-6059-5-000-0000",
+ "SUPERFICIE":1305,
+ "SUPERFIC_1":1485,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00157060259476,
+ "OBJECTID":88754,
+ "Join_Count":1,
+ "TARGET_FID":88754,
+ "feature_id":"cabf726d-4ead-4d87-b0d2-78fba3733729",
+ "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.58,
+ "heightmax":40.29,
+ "elevmin":25.21,
+ "elevmax":28.18,
+ "bldgarea":1055.4,
+ "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_2":88754,
+ "Shape_Le_1":0.00157060259476,
+ "Shape_Ar_1":5.56430284998e-08,
+ "OBJECTID_3":88754,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88753,
+ "g_objectid":"945111",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1566893",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6299",
+ "g_nb_logem":"5",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004208824410000000",
+ "g_sup_tota":"372.8",
+ "g_geometry":"0.000941251",
+ "g_geomet_1":"4.29438e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00157060259476,
+ "Shape_Area":5.56430284998e-08,
+ "Shape_Le_3":0.00157060146488,
+ "Shape_Ar_2":5.56430284998e-08,
+ "building_height":18.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1661,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56037253818394,
+ 45.53275662277022
+ ],
+ [
+ -73.5604305687376,
+ 45.53278094853224
+ ],
+ [
+ -73.56043961771603,
+ 45.53278474906721
+ ],
+ [
+ -73.56049225503538,
+ 45.532728236569156
+ ],
+ [
+ -73.5604400691757,
+ 45.53270544864783
+ ],
+ [
+ -73.56049056880656,
+ 45.532648249067734
+ ],
+ [
+ -73.560478422563,
+ 45.53264294486631
+ ],
+ [
+ -73.56037253818394,
+ 45.53275662277022
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56054304154998,
+ 45.532573571163674
+ ],
+ [
+ -73.56060954012003,
+ 45.532602317992875
+ ],
+ [
+ -73.56061220301261,
+ 45.53259945904809
+ ],
+ [
+ -73.56054691043342,
+ 45.53256941719514
+ ],
+ [
+ -73.56054304154998,
+ 45.532573571163674
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1661,
+ "ID_UEV":"01022872",
+ "CIVIQUE_DE":" 2418",
+ "CIVIQUE_FI":" 2422",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-7542-1-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":241,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000605722820223,
+ "OBJECTID":88764,
+ "Join_Count":2,
+ "TARGET_FID":88764,
+ "feature_id":"7e2e84da-2609-4fa3-be5e-44058bd6aad7",
+ "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":44.33,
+ "elevmin":30.7,
+ "elevmax":32.22,
+ "bldgarea":218.16,
+ "comment":" ",
+ "OBJECTID_2":88764,
+ "Shape_Le_1":0.000605722820223,
+ "Shape_Ar_1":6.67771965462e-09,
+ "OBJECTID_3":88764,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88763,
+ "g_objectid":"940435",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423887",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"11",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306672460000000",
+ "g_sup_tota":"371.6",
+ "g_geometry":"0.000970345",
+ "g_geomet_1":"4.28522e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000605722820223,
+ "Shape_Area":6.67771965462e-09,
+ "Shape_Le_3":0.000605720819903,
+ "Shape_Ar_2":6.67771965462e-09,
+ "building_height":20.904999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1662,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56053683712717,
+ 45.532825580086744
+ ],
+ [
+ -73.56063403675324,
+ 45.53286643089137
+ ],
+ [
+ -73.56073894806585,
+ 45.53275379620103
+ ],
+ [
+ -73.56064266215098,
+ 45.53271196423606
+ ],
+ [
+ -73.56053683712717,
+ 45.532825580086744
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56071579412044,
+ 45.5326471177206
+ ],
+ [
+ -73.56071286952515,
+ 45.5326501484359
+ ],
+ [
+ -73.56071826905472,
+ 45.53265244890169
+ ],
+ [
+ -73.56079979619548,
+ 45.53268846674963
+ ],
+ [
+ -73.56080155706805,
+ 45.53268657727402
+ ],
+ [
+ -73.56071579412044,
+ 45.5326471177206
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1662,
+ "ID_UEV":"01022876",
+ "CIVIQUE_DE":" 2434",
+ "CIVIQUE_FI":" 2442",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":"A",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-06-6150-4-000-0000",
+ "SUPERFICIE":221,
+ "SUPERFIC_1":347,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000715805882862,
+ "OBJECTID":88765,
+ "Join_Count":2,
+ "TARGET_FID":88765,
+ "feature_id":"0e06b25c-d8f3-48ce-972d-c964fd1dd532",
+ "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.85,
+ "heightmax":44.61,
+ "elevmin":32.1,
+ "elevmax":35.53,
+ "bldgarea":661.36,
+ "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_2":88765,
+ "Shape_Le_1":0.000715805882862,
+ "Shape_Ar_1":1.56002464957e-08,
+ "OBJECTID_3":88765,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88764,
+ "g_objectid":"940425",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423875",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004306694650000000",
+ "g_sup_tota":"220.9",
+ "g_geometry":"0.00072271",
+ "g_geomet_1":"2.54469e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000715805882862,
+ "Shape_Area":1.56002464957e-08,
+ "Shape_Le_3":0.000715804308365,
+ "Shape_Ar_2":1.56002464957e-08,
+ "building_height":21.38
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1663,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55103092036254,
+ 45.53850292821786
+ ],
+ [
+ -73.55115688390491,
+ 45.538547505813035
+ ],
+ [
+ -73.55119210405421,
+ 45.53849856111
+ ],
+ [
+ -73.55106576729317,
+ 45.53845384951584
+ ],
+ [
+ -73.55103092036254,
+ 45.53850292821786
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1663,
+ "ID_UEV":"01025600",
+ "CIVIQUE_DE":" 3119",
+ "CIVIQUE_FI":" 3119",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-1088-0-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000388125497889,
+ "OBJECTID":88767,
+ "Join_Count":1,
+ "TARGET_FID":88767,
+ "feature_id":"215d7c30-7807-463c-a82a-56f4cca07cf7",
+ "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":7.05,
+ "heightmax":29.86,
+ "elevmin":20.3,
+ "elevmax":21.55,
+ "bldgarea":398.47,
+ "comment":" ",
+ "OBJECTID_2":88767,
+ "Shape_Le_1":0.000388125497889,
+ "Shape_Ar_1":7.74687832111e-09,
+ "OBJECTID_3":88767,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88766,
+ "g_objectid":"944253",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361926",
+ "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":"66023004482078290000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749124",
+ "g_geomet_1":"1.81954e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000388125497889,
+ "Shape_Area":7.74687832111e-09,
+ "Shape_Le_3":0.000388125282821,
+ "Shape_Ar_2":7.74687832111e-09,
+ "building_height":11.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1664,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55802101877684,
+ 45.532857318960396
+ ],
+ [
+ -73.55813340795225,
+ 45.532908976018724
+ ],
+ [
+ -73.5581685687463,
+ 45.53286894989242
+ ],
+ [
+ -73.55806226888045,
+ 45.53282284974502
+ ],
+ [
+ -73.55805436923559,
+ 45.53281944940836
+ ],
+ [
+ -73.55802101877684,
+ 45.532857318960396
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1664,
+ "ID_UEV":"01025695",
+ "CIVIQUE_DE":" 2351",
+ "CIVIQUE_FI":" 2355",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-26-6162-7-000-0000",
+ "SUPERFICIE":101,
+ "SUPERFIC_1":184,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00035189567242,
+ "OBJECTID":88776,
+ "Join_Count":1,
+ "TARGET_FID":88776,
+ "feature_id":"f700d3b4-8693-4459-bf37-6a9f0d707c6d",
+ "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.68,
+ "heightmax":35.13,
+ "elevmin":22.46,
+ "elevmax":24.36,
+ "bldgarea":307.19,
+ "comment":" ",
+ "OBJECTID_2":88776,
+ "Shape_Le_1":0.00035189567242,
+ "Shape_Ar_1":6.14651434532e-09,
+ "OBJECTID_3":88776,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88775,
+ "g_objectid":"943567",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2361641",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004326646700000000",
+ "g_sup_tota":"100.9",
+ "g_geometry":"0.000514779",
+ "g_geomet_1":"1.16065e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00035189567242,
+ "Shape_Area":6.14651434532e-09,
+ "Shape_Le_3":0.000351896275061,
+ "Shape_Ar_2":6.14651434532e-09,
+ "building_height":16.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1665,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55861014936075,
+ 45.52187451754524
+ ],
+ [
+ -73.55861536812658,
+ 45.52187684768867
+ ],
+ [
+ -73.55858346827429,
+ 45.521912147877615
+ ],
+ [
+ -73.55860476781763,
+ 45.521921547591646
+ ],
+ [
+ -73.55857256849109,
+ 45.52195754745315
+ ],
+ [
+ -73.55866516808489,
+ 45.52199834789573
+ ],
+ [
+ -73.55866516808489,
+ 45.521998248070986
+ ],
+ [
+ -73.55878236773393,
+ 45.52187684768867
+ ],
+ [
+ -73.55866756837543,
+ 45.52182204749979
+ ],
+ [
+ -73.5586877680479,
+ 45.52180114815476
+ ],
+ [
+ -73.5586877680479,
+ 45.52180104743069
+ ],
+ [
+ -73.55868123896985,
+ 45.52179810844624
+ ],
+ [
+ -73.55861014936075,
+ 45.52187451754524
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1665,
+ "ID_UEV":"01032365",
+ "CIVIQUE_DE":" 1727",
+ "CIVIQUE_FI":" 1735",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1980,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-24-1848-3-000-0000",
+ "SUPERFICIE":379,
+ "SUPERFIC_1":483,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00066280747599,
+ "OBJECTID":88790,
+ "Join_Count":1,
+ "TARGET_FID":88790,
+ "feature_id":"db63cd33-1c0f-4d27-a08b-5143b34c3a12",
+ "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.7,
+ "heightmax":10.83,
+ "elevmin":25.51,
+ "elevmax":26.34,
+ "bldgarea":287.14,
+ "comment":" ",
+ "OBJECTID_2":88790,
+ "Shape_Le_1":0.00066280747599,
+ "Shape_Ar_1":1.99534050393e-08,
+ "OBJECTID_3":88790,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88789,
+ "g_objectid":"941978",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567027",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224294150000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.00092798",
+ "g_geomet_1":"4.38627e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00066280747599,
+ "Shape_Area":1.99534050393e-08,
+ "Shape_Le_3":0.00066280533802,
+ "Shape_Ar_2":1.99534050393e-08,
+ "building_height":4.0649999999999995
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1666,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55430223398275,
+ 45.53823079066875
+ ],
+ [
+ -73.55431102125847,
+ 45.53823390861828
+ ],
+ [
+ -73.55431716812465,
+ 45.538221250660484
+ ],
+ [
+ -73.55434966782475,
+ 45.53822905048059
+ ],
+ [
+ -73.55437686782004,
+ 45.53817315042085
+ ],
+ [
+ -73.55442136807352,
+ 45.53818385055455
+ ],
+ [
+ -73.5544094682442,
+ 45.53820825096031
+ ],
+ [
+ -73.55440956806896,
+ 45.538208350785055
+ ],
+ [
+ -73.55442448332509,
+ 45.538212596484435
+ ],
+ [
+ -73.5545223502481,
+ 45.538075940902246
+ ],
+ [
+ -73.5544355144093,
+ 45.53804468676318
+ ],
+ [
+ -73.55430223398275,
+ 45.53823079066875
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1666,
+ "ID_UEV":"01025235",
+ "CIVIQUE_DE":" 2297",
+ "CIVIQUE_FI":" 2301",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-52-5050-9-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":183,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000696830798069,
+ "OBJECTID":88794,
+ "Join_Count":1,
+ "TARGET_FID":88794,
+ "feature_id":"2b113e00-c2ae-47d2-a946-63dfcb1dfc06",
+ "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":36.44,
+ "elevmin":19.05,
+ "elevmax":24.19,
+ "bldgarea":2686.32,
+ "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_2":88794,
+ "Shape_Le_1":0.000696830798069,
+ "Shape_Ar_1":1.55221796107e-08,
+ "OBJECTID_3":88794,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88793,
+ "g_objectid":"944023",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361239",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004452505090000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667693",
+ "g_geomet_1":"2.14383e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000696830798069,
+ "Shape_Area":1.55221796107e-08,
+ "Shape_Le_3":0.00069683082923,
+ "Shape_Ar_2":1.55221796107e-08,
+ "building_height":17.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1667,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.554158559192,
+ 45.53812639376835
+ ],
+ [
+ -73.55416326804223,
+ 45.538128250868375
+ ],
+ [
+ -73.55417886768244,
+ 45.53810875086845
+ ],
+ [
+ -73.55425807816961,
+ 45.538139941155656
+ ],
+ [
+ -73.5543462351125,
+ 45.538016845551276
+ ],
+ [
+ -73.5543092684798,
+ 45.538006350463
+ ],
+ [
+ -73.5542554629411,
+ 45.53799108267262
+ ],
+ [
+ -73.554158559192,
+ 45.53812639376835
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1667,
+ "ID_UEV":"01025239",
+ "CIVIQUE_DE":" 2287",
+ "CIVIQUE_FI":" 2289",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1922,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-52-6443-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":198,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000527359278636,
+ "OBJECTID":88795,
+ "Join_Count":1,
+ "TARGET_FID":88795,
+ "feature_id":"2b113e00-c2ae-47d2-a946-63dfcb1dfc06",
+ "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":36.44,
+ "elevmin":19.05,
+ "elevmax":24.19,
+ "bldgarea":2686.32,
+ "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_2":88795,
+ "Shape_Le_1":0.000527359278636,
+ "Shape_Ar_1":1.3156834153e-08,
+ "OBJECTID_3":88795,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88794,
+ "g_objectid":"944242",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361696",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004452704080000000",
+ "g_sup_tota":"137.5",
+ "g_geometry":"0.000619399",
+ "g_geomet_1":"1.58562e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000527359278636,
+ "Shape_Area":1.3156834153e-08,
+ "Shape_Le_3":0.000527360031299,
+ "Shape_Ar_2":1.3156834153e-08,
+ "building_height":17.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1668,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55208806353515,
+ 45.53771139891222
+ ],
+ [
+ -73.55212736750585,
+ 45.537725251169704
+ ],
+ [
+ -73.55215464124554,
+ 45.53773486402305
+ ],
+ [
+ -73.55223967124567,
+ 45.537615470028214
+ ],
+ [
+ -73.55217381838885,
+ 45.53759098598551
+ ],
+ [
+ -73.55208806353515,
+ 45.53771139891222
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1668,
+ "ID_UEV":"01025357",
+ "CIVIQUE_DE":" 2168",
+ "CIVIQUE_FI":" 2172",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-2594-9-000-0000",
+ "SUPERFICIE":140,
+ "SUPERFIC_1":212,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000435255345524,
+ "OBJECTID":88797,
+ "Join_Count":1,
+ "TARGET_FID":88797,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88797,
+ "Shape_Le_1":0.000435255345524,
+ "Shape_Ar_1":9.98669774017e-09,
+ "OBJECTID_3":88797,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88796,
+ "g_objectid":"943839",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361000",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471209650000000",
+ "g_sup_tota":"146.3",
+ "g_geometry":"0.000627178",
+ "g_geomet_1":"1.68489e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000435255345524,
+ "Shape_Area":9.98669774017e-09,
+ "Shape_Le_3":0.000435254841243,
+ "Shape_Ar_2":9.98669774017e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1669,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55118707324668,
+ 45.536553342812816
+ ],
+ [
+ -73.55111896578948,
+ 45.53652854940333
+ ],
+ [
+ -73.55104986638007,
+ 45.53662264996562
+ ],
+ [
+ -73.55111985431967,
+ 45.53664706296188
+ ],
+ [
+ -73.55118707324668,
+ 45.536553342812816
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1669,
+ "ID_UEV":"01025052",
+ "CIVIQUE_DE":" 2040",
+ "CIVIQUE_FI":" 2040",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-80-0772-4-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":79,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00037868252901,
+ "OBJECTID":88799,
+ "Join_Count":1,
+ "TARGET_FID":88799,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":88799,
+ "Shape_Le_1":0.00037868252901,
+ "Shape_Ar_1":8.16117890039e-09,
+ "OBJECTID_3":88799,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88798,
+ "g_objectid":"943763",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360917",
+ "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":"66023004480007600000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667007",
+ "g_geomet_1":"2.14036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00037868252901,
+ "Shape_Area":8.16117890039e-09,
+ "Shape_Le_3":0.000378683222709,
+ "Shape_Ar_2":8.16117890039e-09,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1670,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56373921321597,
+ 45.523889222859644
+ ],
+ [
+ -73.56371237025154,
+ 45.52387644798998
+ ],
+ [
+ -73.56372546977646,
+ 45.523862948266746
+ ],
+ [
+ -73.56372536995171,
+ 45.523862948266746
+ ],
+ [
+ -73.56362367011813,
+ 45.52381564752441
+ ],
+ [
+ -73.56360547053788,
+ 45.52383514752433
+ ],
+ [
+ -73.56358417009523,
+ 45.523825147962505
+ ],
+ [
+ -73.56351622631463,
+ 45.52389574654176
+ ],
+ [
+ -73.56366807684212,
+ 45.523966463831535
+ ],
+ [
+ -73.56373921321597,
+ 45.523889222859644
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1670,
+ "ID_UEV":"01032309",
+ "CIVIQUE_DE":" 2214",
+ "CIVIQUE_FI":" 2224",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-86-2762-6-000-0000",
+ "SUPERFICIE":254,
+ "SUPERFIC_1":576,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000581504740861,
+ "OBJECTID":88803,
+ "Join_Count":1,
+ "TARGET_FID":88803,
+ "feature_id":"79fc5ce4-b96e-41c2-bf1b-08becd0bf624",
+ "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.73,
+ "heightmax":11.23,
+ "elevmin":29.27,
+ "elevmax":30.47,
+ "bldgarea":273.09,
+ "comment":" ",
+ "OBJECTID_2":88803,
+ "Shape_Le_1":0.000581504740861,
+ "Shape_Ar_1":1.84779246339e-08,
+ "OBJECTID_3":88803,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88802,
+ "g_objectid":"941542",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565378",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994286276260000000",
+ "g_sup_tota":"254.3",
+ "g_geometry":"0.000705797",
+ "g_geomet_1":"2.96497e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000581504740861,
+ "Shape_Area":1.84779246339e-08,
+ "Shape_Le_3":0.000581503509452,
+ "Shape_Ar_2":1.84779246339e-08,
+ "building_height":4.25
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1671,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56366807684212,
+ 45.523966463831535
+ ],
+ [
+ -73.5637428374838,
+ 45.524001280185225
+ ],
+ [
+ -73.5638447702418,
+ 45.5238953481421
+ ],
+ [
+ -73.56379327056483,
+ 45.523870847911596
+ ],
+ [
+ -73.56376427012681,
+ 45.52390114786997
+ ],
+ [
+ -73.56373921321597,
+ 45.523889222859644
+ ],
+ [
+ -73.56366807684212,
+ 45.523966463831535
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1671,
+ "ID_UEV":"01032311",
+ "CIVIQUE_DE":" 2226",
+ "CIVIQUE_FI":" 2230",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-86-1669-4-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":288,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000461208696629,
+ "OBJECTID":88804,
+ "Join_Count":1,
+ "TARGET_FID":88804,
+ "feature_id":"79fc5ce4-b96e-41c2-bf1b-08becd0bf624",
+ "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.73,
+ "heightmax":11.23,
+ "elevmin":29.27,
+ "elevmax":30.47,
+ "bldgarea":273.09,
+ "comment":" ",
+ "OBJECTID_2":88804,
+ "Shape_Le_1":0.000461208696629,
+ "Shape_Ar_1":1.06115343903e-08,
+ "OBJECTID_3":88804,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88803,
+ "g_objectid":"941542",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565378",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994286276260000000",
+ "g_sup_tota":"254.3",
+ "g_geometry":"0.000705797",
+ "g_geomet_1":"2.96497e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000461208696629,
+ "Shape_Area":1.06115343903e-08,
+ "Shape_Le_3":0.000461209527611,
+ "Shape_Ar_2":1.06115343903e-08,
+ "building_height":4.25
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1672,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55760410476746,
+ 45.52226149222438
+ ],
+ [
+ -73.55765966938009,
+ 45.522287777609144
+ ],
+ [
+ -73.55771993924564,
+ 45.52222334028522
+ ],
+ [
+ -73.5576635778337,
+ 45.52219790565911
+ ],
+ [
+ -73.55760410476746,
+ 45.52226149222438
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1672,
+ "ID_UEV":"01032489",
+ "CIVIQUE_DE":" 1693",
+ "CIVIQUE_FI":" 1693",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-0191-8-000-0000",
+ "SUPERFICIE":179,
+ "SUPERFIC_1":78,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000298597584439,
+ "OBJECTID":88809,
+ "Join_Count":1,
+ "TARGET_FID":88809,
+ "feature_id":"ae986f48-4617-44ac-9c0f-e787de322f39",
+ "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.5,
+ "heightmax":38.47,
+ "elevmin":26.14,
+ "elevmax":27.18,
+ "bldgarea":1323.7,
+ "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_2":88809,
+ "Shape_Le_1":0.000298597584439,
+ "Shape_Ar_1":5.13054854482e-09,
+ "OBJECTID_3":88809,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88808,
+ "g_objectid":"942069",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567307",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224949550000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100599",
+ "g_geomet_1":"4.93595e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000298597584439,
+ "Shape_Area":5.13054854482e-09,
+ "Shape_Le_3":0.000298598380442,
+ "Shape_Ar_2":5.13054854482e-09,
+ "building_height":17.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1673,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55491668407956,
+ 45.536915498002124
+ ],
+ [
+ -73.5549610683205,
+ 45.53693284952168
+ ],
+ [
+ -73.55500026796983,
+ 45.53694814968765
+ ],
+ [
+ -73.55499286834804,
+ 45.53695754940168
+ ],
+ [
+ -73.55499346819585,
+ 45.53695784977524
+ ],
+ [
+ -73.55499517241113,
+ 45.536958463112875
+ ],
+ [
+ -73.55508033101431,
+ 45.536839003467534
+ ],
+ [
+ -73.5550079679652,
+ 45.53682115012627
+ ],
+ [
+ -73.55498752637509,
+ 45.536816122916036
+ ],
+ [
+ -73.55491668407956,
+ 45.536915498002124
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1673,
+ "ID_UEV":"01024715",
+ "CIVIQUE_DE":" 2279",
+ "CIVIQUE_FI":" 2283",
+ "NOM_RUE":"rue Hogan (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-51-0611-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000468510836454,
+ "OBJECTID":88829,
+ "Join_Count":1,
+ "TARGET_FID":88829,
+ "feature_id":"04d9439a-309d-4438-be93-19b8d7240a10",
+ "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":32.44,
+ "elevmin":18.46,
+ "elevmax":20.88,
+ "bldgarea":1211.67,
+ "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_2":88829,
+ "Shape_Le_1":0.000468510836454,
+ "Shape_Ar_1":1.14404368942e-08,
+ "OBJECTID_3":88829,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88828,
+ "g_objectid":"943926",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361127",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441991450000000",
+ "g_sup_tota":"186",
+ "g_geometry":"0.000667117",
+ "g_geomet_1":"2.14264e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000468510836454,
+ "Shape_Area":1.14404368942e-08,
+ "Shape_Le_3":0.000468510587736,
+ "Shape_Ar_2":1.14404368942e-08,
+ "building_height":15.964999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1674,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55489731178336,
+ 45.536784706899
+ ],
+ [
+ -73.55483226831637,
+ 45.5367597498129
+ ],
+ [
+ -73.55473406774487,
+ 45.53687434952191
+ ],
+ [
+ -73.5547385679524,
+ 45.536876249789394
+ ],
+ [
+ -73.55480466812278,
+ 45.53690244973856
+ ],
+ [
+ -73.5548126684917,
+ 45.53689245017673
+ ],
+ [
+ -73.55481878837823,
+ 45.53689485766185
+ ],
+ [
+ -73.55489731178336,
+ 45.536784706899
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1674,
+ "ID_UEV":"01024719",
+ "CIVIQUE_DE":" 2265",
+ "CIVIQUE_FI":" 2271",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-51-2004-1-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000451231582109,
+ "OBJECTID":88833,
+ "Join_Count":1,
+ "TARGET_FID":88833,
+ "feature_id":"04d9439a-309d-4438-be93-19b8d7240a10",
+ "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":32.44,
+ "elevmin":18.46,
+ "elevmax":20.88,
+ "bldgarea":1211.67,
+ "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_2":88833,
+ "Shape_Le_1":0.000451231582109,
+ "Shape_Ar_1":1.08535879568e-08,
+ "OBJECTID_3":88833,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88832,
+ "g_objectid":"943923",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361124",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004451200410000000",
+ "g_sup_tota":"185.9",
+ "g_geometry":"0.000667668",
+ "g_geomet_1":"2.15078e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000451231582109,
+ "Shape_Area":1.08535879568e-08,
+ "Shape_Le_3":0.000451230756903,
+ "Shape_Ar_2":1.08535879568e-08,
+ "building_height":15.964999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1675,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55363012025569,
+ 45.53646872829947
+ ],
+ [
+ -73.55363506742627,
+ 45.536470449601865
+ ],
+ [
+ -73.55362006673454,
+ 45.53649165021978
+ ],
+ [
+ -73.55365756756454,
+ 45.536504649919955
+ ],
+ [
+ -73.553702201817,
+ 45.53652052565203
+ ],
+ [
+ -73.55379213851822,
+ 45.536395284265254
+ ],
+ [
+ -73.55373706673409,
+ 45.53637494969447
+ ],
+ [
+ -73.55371336690021,
+ 45.53636614982825
+ ],
+ [
+ -73.5537057910113,
+ 45.53636335113804
+ ],
+ [
+ -73.55363012025569,
+ 45.53646872829947
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1675,
+ "ID_UEV":"01024723",
+ "CIVIQUE_DE":" 2201",
+ "CIVIQUE_FI":" 2213",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-0660-3-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":314,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000494254943134,
+ "OBJECTID":88834,
+ "Join_Count":1,
+ "TARGET_FID":88834,
+ "feature_id":"a5dab926-33cc-4fbf-9538-4f31100747f5",
+ "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.73,
+ "heightmax":14.77,
+ "elevmin":18.91,
+ "elevmax":19.53,
+ "bldgarea":398.17,
+ "comment":" ",
+ "OBJECTID_2":88834,
+ "Shape_Le_1":0.000494254943134,
+ "Shape_Ar_1":1.36131531429e-08,
+ "OBJECTID_3":88834,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88833,
+ "g_objectid":"943702",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360847",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004460155540000000",
+ "g_sup_tota":"318.8",
+ "g_geometry":"0.000790993",
+ "g_geomet_1":"3.67195e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000494254943134,
+ "Shape_Area":1.36131531429e-08,
+ "Shape_Le_3":0.000494256089802,
+ "Shape_Ar_2":1.36131531429e-08,
+ "building_height":7.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1676,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55181778218675,
+ 45.53761336741327
+ ],
+ [
+ -73.55186046670902,
+ 45.537629050690434
+ ],
+ [
+ -73.55185926701341,
+ 45.5376307504091
+ ],
+ [
+ -73.55186546693959,
+ 45.53763295105015
+ ],
+ [
+ -73.55188631772123,
+ 45.53764029851126
+ ],
+ [
+ -73.55195317422145,
+ 45.537546423678805
+ ],
+ [
+ -73.55188373396899,
+ 45.53752076152422
+ ],
+ [
+ -73.55182467549022,
+ 45.537603688909414
+ ],
+ [
+ -73.55181778218675,
+ 45.53761336741327
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1676,
+ "ID_UEV":"01025350",
+ "CIVIQUE_DE":" 2144",
+ "CIVIQUE_FI":" 2148",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-4683-8-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00037921157659,
+ "OBJECTID":88850,
+ "Join_Count":1,
+ "TARGET_FID":88850,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88850,
+ "Shape_Le_1":0.00037921157659,
+ "Shape_Ar_1":8.17020615071e-09,
+ "OBJECTID_3":88850,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88849,
+ "g_objectid":"943834",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360994",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471557970000000",
+ "g_sup_tota":"301.7",
+ "g_geometry":"0.000781829",
+ "g_geomet_1":"3.47542e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00037921157659,
+ "Shape_Area":8.17020615071e-09,
+ "Shape_Le_3":0.000379210805505,
+ "Shape_Ar_2":8.17020615071e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1677,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55188631772123,
+ 45.53764029851126
+ ],
+ [
+ -73.55195829675984,
+ 45.537665665688216
+ ],
+ [
+ -73.55202445808412,
+ 45.53757276662018
+ ],
+ [
+ -73.55195317422145,
+ 45.537546423678805
+ ],
+ [
+ -73.55188631772123,
+ 45.53764029851126
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1677,
+ "ID_UEV":"01025352",
+ "CIVIQUE_DE":" 2150",
+ "CIVIQUE_FI":" 2154",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-4186-2-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":201,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000381613000999,
+ "OBJECTID":88852,
+ "Join_Count":1,
+ "TARGET_FID":88852,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88852,
+ "Shape_Le_1":0.000381613000999,
+ "Shape_Ar_1":8.40902815993e-09,
+ "OBJECTID_3":88852,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88851,
+ "g_objectid":"943836",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360996",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471418620000000",
+ "g_sup_tota":"151.2",
+ "g_geometry":"0.000634206",
+ "g_geomet_1":"1.76635e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000381613000999,
+ "Shape_Area":8.40902815993e-09,
+ "Shape_Le_3":0.000381613344229,
+ "Shape_Ar_2":8.40902815993e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1678,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55195829675984,
+ 45.537665665688216
+ ],
+ [
+ -73.55202352908445,
+ 45.537688655957005
+ ],
+ [
+ -73.55209930056411,
+ 45.537582261662344
+ ],
+ [
+ -73.55203636690665,
+ 45.53755905105965
+ ],
+ [
+ -73.55202576749701,
+ 45.53757325045544
+ ],
+ [
+ -73.55202445808412,
+ 45.53757276662018
+ ],
+ [
+ -73.55195829675984,
+ 45.537665665688216
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1678,
+ "ID_UEV":"01025354",
+ "CIVIQUE_DE":" 2156",
+ "CIVIQUE_FI":" 2160",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-3589-8-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":215,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000400025187063,
+ "OBJECTID":88853,
+ "Join_Count":1,
+ "TARGET_FID":88853,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88853,
+ "Shape_Le_1":0.000400025187063,
+ "Shape_Ar_1":8.68955248968e-09,
+ "OBJECTID_3":88853,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88852,
+ "g_objectid":"943836",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360996",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471418620000000",
+ "g_sup_tota":"151.2",
+ "g_geometry":"0.000634206",
+ "g_geomet_1":"1.76635e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000400025187063,
+ "Shape_Area":8.68955248968e-09,
+ "Shape_Le_3":0.000400026316544,
+ "Shape_Ar_2":8.68955248968e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1679,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55803039151121,
+ 45.53387335682026
+ ],
+ [
+ -73.55803226929564,
+ 45.5338741500223
+ ],
+ [
+ -73.55803866887132,
+ 45.53386664967643
+ ],
+ [
+ -73.55813226941055,
+ 45.53390535020205
+ ],
+ [
+ -73.55810586891256,
+ 45.53393684985603
+ ],
+ [
+ -73.5580520642732,
+ 45.53400126649555
+ ],
+ [
+ -73.55810051075181,
+ 45.534023566984324
+ ],
+ [
+ -73.55828365318989,
+ 45.533826541711825
+ ],
+ [
+ -73.55813581453806,
+ 45.53375994421635
+ ],
+ [
+ -73.55803039151121,
+ 45.53387335682026
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1679,
+ "ID_UEV":"01023371",
+ "CIVIQUE_DE":" 2293",
+ "CIVIQUE_FI":" 2307",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-5974-4-000-0000",
+ "SUPERFICIE":418,
+ "SUPERFIC_1":527,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000877536106001,
+ "OBJECTID":88860,
+ "Join_Count":1,
+ "TARGET_FID":88860,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":88860,
+ "Shape_Le_1":0.000877536106001,
+ "Shape_Ar_1":2.87827365839e-08,
+ "OBJECTID_3":88860,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88859,
+ "g_objectid":"941379",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425386",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327686870000000",
+ "g_sup_tota":"260.1",
+ "g_geometry":"0.000829528",
+ "g_geomet_1":"3.01824e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000877536106001,
+ "Shape_Area":2.87827365839e-08,
+ "Shape_Le_3":0.000877535651689,
+ "Shape_Ar_2":2.87827365839e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1680,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55651229452862,
+ 45.53713249361998
+ ],
+ [
+ -73.55651456801475,
+ 45.537132949576254
+ ],
+ [
+ -73.5565146678395,
+ 45.537132949576254
+ ],
+ [
+ -73.55654786811147,
+ 45.537090050116014
+ ],
+ [
+ -73.55662776837865,
+ 45.53712054972389
+ ],
+ [
+ -73.55662945820478,
+ 45.537121195437116
+ ],
+ [
+ -73.55673692628996,
+ 45.53697041510287
+ ],
+ [
+ -73.55669176773274,
+ 45.53695384959078
+ ],
+ [
+ -73.556691667908,
+ 45.53695384959078
+ ],
+ [
+ -73.55663686771912,
+ 45.53701524990416
+ ],
+ [
+ -73.55660636811125,
+ 45.537001850005666
+ ],
+ [
+ -73.55660165746237,
+ 45.5370071137376
+ ],
+ [
+ -73.55651229452862,
+ 45.53713249361998
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1680,
+ "ID_UEV":"01024562",
+ "CIVIQUE_DE":" 2390",
+ "CIVIQUE_FI":" 2390",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-31-7828-0-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":86,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000654002120579,
+ "OBJECTID":88863,
+ "Join_Count":1,
+ "TARGET_FID":88863,
+ "feature_id":"6e33fb1f-a212-4817-8e1e-b74d2e43ce62",
+ "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":32.1,
+ "elevmin":20.79,
+ "elevmax":24.26,
+ "bldgarea":763.55,
+ "comment":" ",
+ "OBJECTID_2":88863,
+ "Shape_Le_1":0.000654002120579,
+ "Shape_Ar_1":1.35987866843e-08,
+ "OBJECTID_3":88863,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88862,
+ "g_objectid":"943904",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361102",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431842470000000",
+ "g_sup_tota":"192.7",
+ "g_geometry":"0.000684525",
+ "g_geomet_1":"2.21996e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000654002120579,
+ "Shape_Area":1.35987866843e-08,
+ "Shape_Le_3":0.000654000440492,
+ "Shape_Ar_2":1.35987866843e-08,
+ "building_height":15.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1681,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5568438826609,
+ 45.53712651582634
+ ],
+ [
+ -73.55684686841009,
+ 45.53712755004669
+ ],
+ [
+ -73.5567795685441,
+ 45.53722314977883
+ ],
+ [
+ -73.55686436921711,
+ 45.53725251084499
+ ],
+ [
+ -73.5569435068592,
+ 45.53714191042113
+ ],
+ [
+ -73.5568630678981,
+ 45.53711284972853
+ ],
+ [
+ -73.55687696781965,
+ 45.53709384975166
+ ],
+ [
+ -73.5569050680363,
+ 45.537105749580974
+ ],
+ [
+ -73.55694626777787,
+ 45.5370536500562
+ ],
+ [
+ -73.55690679923124,
+ 45.537038251864125
+ ],
+ [
+ -73.5568438826609,
+ 45.53712651582634
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1681,
+ "ID_UEV":"01024569",
+ "CIVIQUE_DE":" 2408",
+ "CIVIQUE_FI":" 2412",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-31-5738-3-000-0000",
+ "SUPERFICIE":195,
+ "SUPERFIC_1":167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00070256670777,
+ "OBJECTID":88864,
+ "Join_Count":1,
+ "TARGET_FID":88864,
+ "feature_id":"c463fad1-e78f-4bc2-a09f-58efcd7281af",
+ "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":33.87,
+ "elevmin":24.01,
+ "elevmax":24.95,
+ "bldgarea":199.38,
+ "comment":" ",
+ "OBJECTID_2":88864,
+ "Shape_Le_1":0.00070256670777,
+ "Shape_Ar_1":1.46342722304e-08,
+ "OBJECTID_3":88864,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88863,
+ "g_objectid":"943908",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361106",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431573830000000",
+ "g_sup_tota":"195.3",
+ "g_geometry":"0.000687205",
+ "g_geomet_1":"2.24963e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00070256670777,
+ "Shape_Area":1.46342722304e-08,
+ "Shape_Le_3":0.000702565833982,
+ "Shape_Ar_2":1.46342722304e-08,
+ "building_height":16.68
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1682,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55788813315267,
+ 45.537498189440186
+ ],
+ [
+ -73.55780376955018,
+ 45.53747304979171
+ ],
+ [
+ -73.55774406895546,
+ 45.537571850211016
+ ],
+ [
+ -73.55776036916755,
+ 45.53757674971752
+ ],
+ [
+ -73.55781968755039,
+ 45.53759463183709
+ ],
+ [
+ -73.55788813315267,
+ 45.537498189440186
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55795683236377,
+ 45.537401390012434
+ ],
+ [
+ -73.55795506879323,
+ 45.537400849519884
+ ],
+ [
+ -73.55787376918094,
+ 45.537373850073415
+ ],
+ [
+ -73.5578454693148,
+ 45.537415850211616
+ ],
+ [
+ -73.55792731931218,
+ 45.53744297556317
+ ],
+ [
+ -73.55795683236377,
+ 45.537401390012434
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1682,
+ "ID_UEV":"01024570",
+ "CIVIQUE_DE":" 2512",
+ "CIVIQUE_FI":" 2518",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-8276-2-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":224,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000676080610247,
+ "OBJECTID":88865,
+ "Join_Count":2,
+ "TARGET_FID":88865,
+ "feature_id":"859b0466-4167-4415-926e-ec0d9e4d1fa0",
+ "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.59,
+ "heightmax":33.39,
+ "elevmin":27.27,
+ "elevmax":27.99,
+ "bldgarea":38.45,
+ "comment":" ",
+ "OBJECTID_2":88865,
+ "Shape_Le_1":0.000676080610247,
+ "Shape_Ar_1":1.35780017292e-08,
+ "OBJECTID_3":88865,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88864,
+ "g_objectid":"944128",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361386",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421767980000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681387",
+ "g_geomet_1":"2.20736e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000676080610247,
+ "Shape_Area":1.35780017292e-08,
+ "Shape_Le_3":0.00067608099519,
+ "Shape_Ar_2":1.35780017292e-08,
+ "building_height":16.4
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1683,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5515842903046,
+ 45.53611294390753
+ ],
+ [
+ -73.55158783273414,
+ 45.53611420115975
+ ],
+ [
+ -73.55159006754943,
+ 45.536110549912244
+ ],
+ [
+ -73.55167642045228,
+ 45.536136821807176
+ ],
+ [
+ -73.55176482830602,
+ 45.536013712712965
+ ],
+ [
+ -73.5516784565174,
+ 45.53598182005525
+ ],
+ [
+ -73.5515842903046,
+ 45.53611294390753
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55170236409467,
+ 45.53594852805242
+ ],
+ [
+ -73.55168416541375,
+ 45.53597386914904
+ ],
+ [
+ -73.55170296753977,
+ 45.53594875018497
+ ],
+ [
+ -73.55170236409467,
+ 45.53594852805242
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1683,
+ "ID_UEV":"01024782",
+ "CIVIQUE_DE":" 2046",
+ "CIVIQUE_FI":" 2054",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-6214-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":322,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000566588617375,
+ "OBJECTID":88866,
+ "Join_Count":1,
+ "TARGET_FID":88866,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":88866,
+ "Shape_Le_1":0.000566588617375,
+ "Shape_Ar_1":1.37291393866e-08,
+ "OBJECTID_3":88866,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88865,
+ "g_objectid":"943709",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360856",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470561770000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668837",
+ "g_geomet_1":"2.14808e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000566588617375,
+ "Shape_Area":1.37291393866e-08,
+ "Shape_Le_3":0.000566588758226,
+ "Shape_Ar_2":1.37291393866e-08,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1684,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55167642045228,
+ 45.536136821807176
+ ],
+ [
+ -73.55176610174604,
+ 45.53616410543941
+ ],
+ [
+ -73.55183802952328,
+ 45.53606394884246
+ ],
+ [
+ -73.5518012670367,
+ 45.536053950179955
+ ],
+ [
+ -73.55184496689355,
+ 45.53597454993582
+ ],
+ [
+ -73.5518450667183,
+ 45.53597445011108
+ ],
+ [
+ -73.55181276756701,
+ 45.53596234973295
+ ],
+ [
+ -73.55180796698593,
+ 45.535960550189536
+ ],
+ [
+ -73.55176736709217,
+ 45.53601464980654
+ ],
+ [
+ -73.55176482830602,
+ 45.536013712712965
+ ],
+ [
+ -73.55167642045228,
+ 45.536136821807176
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1684,
+ "ID_UEV":"01024784",
+ "CIVIQUE_DE":" 2056",
+ "CIVIQUE_FI":" 2058",
+ "NOM_RUE":"rue Montgomery (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-5617-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000607448411271,
+ "OBJECTID":88867,
+ "Join_Count":1,
+ "TARGET_FID":88867,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":88867,
+ "Shape_Le_1":0.000607448411271,
+ "Shape_Ar_1":1.51675459538e-08,
+ "OBJECTID_3":88867,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88866,
+ "g_objectid":"943709",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360856",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470561770000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668837",
+ "g_geomet_1":"2.14808e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000607448411271,
+ "Shape_Area":1.51675459538e-08,
+ "Shape_Le_3":0.000607447207153,
+ "Shape_Ar_2":1.51675459538e-08,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1685,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56201332337801,
+ 45.53104237375684
+ ],
+ [
+ -73.56207129097913,
+ 45.53106934352568
+ ],
+ [
+ -73.56214426556724,
+ 45.53099075177207
+ ],
+ [
+ -73.56213497017458,
+ 45.53098564901878
+ ],
+ [
+ -73.56218467030813,
+ 45.530940849291056
+ ],
+ [
+ -73.56213547019763,
+ 45.53091384894527
+ ],
+ [
+ -73.56213364637253,
+ 45.530912785047285
+ ],
+ [
+ -73.56201332337801,
+ 45.53104237375684
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1685,
+ "ID_UEV":"01022550",
+ "CIVIQUE_DE":" 2416",
+ "CIVIQUE_FI":" 2420",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-4751-9-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000483766052029,
+ "OBJECTID":88901,
+ "Join_Count":1,
+ "TARGET_FID":88901,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":88901,
+ "Shape_Le_1":0.000483766052029,
+ "Shape_Ar_1":1.0144149731e-08,
+ "OBJECTID_3":88901,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88900,
+ "g_objectid":"940343",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423675",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394475190000000",
+ "g_sup_tota":"153.8",
+ "g_geometry":"0.000710803",
+ "g_geomet_1":"1.77326e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000483766052029,
+ "Shape_Area":1.0144149731e-08,
+ "Shape_Le_3":0.000483765799038,
+ "Shape_Ar_2":1.0144149731e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1686,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55051183347618,
+ 45.53826376071428
+ ],
+ [
+ -73.550520665718,
+ 45.538266950609575
+ ],
+ [
+ -73.55058122786322,
+ 45.538288866188516
+ ],
+ [
+ -73.5506449493268,
+ 45.53819994572121
+ ],
+ [
+ -73.55057513045975,
+ 45.538175432000884
+ ],
+ [
+ -73.55051183347618,
+ 45.53826376071428
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1686,
+ "ID_UEV":"01025615",
+ "CIVIQUE_DE":" 2049",
+ "CIVIQUE_FI":" 2049",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-5160-3-000-0000",
+ "SUPERFICIE":171,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000365855433261,
+ "OBJECTID":88909,
+ "Join_Count":1,
+ "TARGET_FID":88909,
+ "feature_id":"d4915543-1bec-49e8-9979-b4fff30cbc65",
+ "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.63,
+ "heightmax":31.57,
+ "elevmin":20.49,
+ "elevmax":21.83,
+ "bldgarea":540.37,
+ "comment":" ",
+ "OBJECTID_2":88909,
+ "Shape_Le_1":0.000365855433261,
+ "Shape_Ar_1":7.74432089699e-09,
+ "OBJECTID_3":88909,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88908,
+ "g_objectid":"944262",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361935",
+ "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":"66023004482456390000000",
+ "g_sup_tota":"171.2",
+ "g_geometry":"0.000703214",
+ "g_geomet_1":"1.97229e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000365855433261,
+ "Shape_Area":7.74432089699e-09,
+ "Shape_Le_3":0.0003658552074,
+ "Shape_Ar_2":7.74432089699e-09,
+ "building_height":15.47
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1687,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55222329908783,
+ 45.53775906477931
+ ],
+ [
+ -73.55228730383784,
+ 45.53778162607148
+ ],
+ [
+ -73.55237088143288,
+ 45.537664268141754
+ ],
+ [
+ -73.5523075799527,
+ 45.53764072119262
+ ],
+ [
+ -73.55222329908783,
+ 45.53775906477931
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1687,
+ "ID_UEV":"01025361",
+ "CIVIQUE_DE":" 2180",
+ "CIVIQUE_FI":" 2184",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-1599-9-000-0000",
+ "SUPERFICIE":138,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000424767943926,
+ "OBJECTID":88913,
+ "Join_Count":1,
+ "TARGET_FID":88913,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88913,
+ "Shape_Le_1":0.000424767943926,
+ "Shape_Ar_1":9.4364688682e-09,
+ "OBJECTID_3":88913,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88912,
+ "g_objectid":"943840",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361001",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471159990000000",
+ "g_sup_tota":"138",
+ "g_geometry":"0.000617311",
+ "g_geomet_1":"1.57069e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000424767943926,
+ "Shape_Area":9.4364688682e-09,
+ "Shape_Le_3":0.000424768110562,
+ "Shape_Ar_2":9.4364688682e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1688,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55228730383784,
+ 45.53778162607148
+ ],
+ [
+ -73.55235270613433,
+ 45.53780467929281
+ ],
+ [
+ -73.55243556607036,
+ 45.5376883295031
+ ],
+ [
+ -73.55237088143288,
+ 45.537664268141754
+ ],
+ [
+ -73.55228730383784,
+ 45.53778162607148
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1688,
+ "ID_UEV":"01025363",
+ "CIVIQUE_DE":" 2186",
+ "CIVIQUE_FI":" 2190",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-1002-2-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000425276422239,
+ "OBJECTID":88915,
+ "Join_Count":1,
+ "TARGET_FID":88915,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88915,
+ "Shape_Le_1":0.000425276422239,
+ "Shape_Ar_1":9.5609804419e-09,
+ "OBJECTID_3":88915,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88914,
+ "g_objectid":"943840",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361001",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471159990000000",
+ "g_sup_tota":"138",
+ "g_geometry":"0.000617311",
+ "g_geomet_1":"1.57069e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000425276422239,
+ "Shape_Area":9.5609804419e-09,
+ "Shape_Le_3":0.000425277107093,
+ "Shape_Ar_2":9.5609804419e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1689,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55610012444303,
+ 45.537707364553526
+ ],
+ [
+ -73.55611776824226,
+ 45.53771474978617
+ ],
+ [
+ -73.55618276854177,
+ 45.53774214943095
+ ],
+ [
+ -73.5561942034216,
+ 45.53772878010941
+ ],
+ [
+ -73.55624453218125,
+ 45.53765926161593
+ ],
+ [
+ -73.5562893975595,
+ 45.5375936740591
+ ],
+ [
+ -73.55620036827422,
+ 45.53762315023849
+ ],
+ [
+ -73.55618017219903,
+ 45.53759299866825
+ ],
+ [
+ -73.55610012444303,
+ 45.537707364553526
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1689,
+ "ID_UEV":"01024856",
+ "CIVIQUE_DE":" 2378",
+ "CIVIQUE_FI":" 2380",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-1092-8-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000542216522047,
+ "OBJECTID":88918,
+ "Join_Count":1,
+ "TARGET_FID":88918,
+ "feature_id":"bade550f-2044-44ba-83c5-2138bf58e40c",
+ "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":35.41,
+ "elevmin":17.57,
+ "elevmax":24.37,
+ "bldgarea":1657.25,
+ "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_2":88918,
+ "Shape_Le_1":0.000542216522047,
+ "Shape_Ar_1":1.28483072456e-08,
+ "OBJECTID_3":88918,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88917,
+ "g_objectid":"943957",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361162",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441109280000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000666845",
+ "g_geomet_1":"2.16727e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000542216522047,
+ "Shape_Area":1.28483072456e-08,
+ "Shape_Le_3":0.000542216686363,
+ "Shape_Ar_2":1.28483072456e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1690,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55825832738175,
+ 45.537744639653695
+ ],
+ [
+ -73.5583480248633,
+ 45.53776818210621
+ ],
+ [
+ -73.55842182952566,
+ 45.53766418990074
+ ],
+ [
+ -73.55833936888861,
+ 45.53765135027989
+ ],
+ [
+ -73.55835142340132,
+ 45.53761346454005
+ ],
+ [
+ -73.55825832738175,
+ 45.537744639653695
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1690,
+ "ID_UEV":"01024582",
+ "CIVIQUE_DE":" 2560",
+ "CIVIQUE_FI":" 2560",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1966,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-4296-4-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":237,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000504319289967,
+ "OBJECTID":88924,
+ "Join_Count":1,
+ "TARGET_FID":88924,
+ "feature_id":"7de3239f-60f9-4083-bdc2-09487c2a41b2",
+ "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":47.81,
+ "elevmin":27.08,
+ "elevmax":40.05,
+ "bldgarea":1333.88,
+ "comment":" ",
+ "OBJECTID_2":88924,
+ "Shape_Le_1":0.000504319289967,
+ "Shape_Ar_1":1.08721996843e-08,
+ "OBJECTID_3":88924,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88923,
+ "g_objectid":"944134",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361392",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422350080000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681585",
+ "g_geomet_1":"2.20825e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000504319289967,
+ "Shape_Area":1.08721996843e-08,
+ "Shape_Le_3":0.000504320989892,
+ "Shape_Ar_2":1.08721996843e-08,
+ "building_height":23.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1691,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55240803872185,
+ 45.53534181482319
+ ],
+ [
+ -73.55245846730627,
+ 45.53536075004887
+ ],
+ [
+ -73.55247796730619,
+ 45.53533514994751
+ ],
+ [
+ -73.55251248148768,
+ 45.53534816043955
+ ],
+ [
+ -73.5525726803068,
+ 45.535262963165515
+ ],
+ [
+ -73.552490066785,
+ 45.53523324956511
+ ],
+ [
+ -73.55251306694633,
+ 45.53520155026163
+ ],
+ [
+ -73.5525085091822,
+ 45.5351996320077
+ ],
+ [
+ -73.55240803872185,
+ 45.53534181482319
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1691,
+ "ID_UEV":"01024479",
+ "CIVIQUE_DE":" 2065",
+ "CIVIQUE_FI":" 2065",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-0031-9-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":88,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000533253655088,
+ "OBJECTID":88926,
+ "Join_Count":1,
+ "TARGET_FID":88926,
+ "feature_id":"8032f29a-ce7f-449c-86e6-bdf0dbe2cce4",
+ "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":32.01,
+ "elevmin":19.03,
+ "elevmax":21.28,
+ "bldgarea":1563.41,
+ "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_2":88926,
+ "Shape_Le_1":0.000533253655088,
+ "Shape_Ar_1":1.10754175702e-08,
+ "OBJECTID_3":88926,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88925,
+ "g_objectid":"943658",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360777",
+ "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":"66023004369933560000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681121",
+ "g_geomet_1":"2.20731e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000533253655088,
+ "Shape_Area":1.10754175702e-08,
+ "Shape_Le_3":0.000533253876673,
+ "Shape_Ar_2":1.10754175702e-08,
+ "building_height":14.989999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1692,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55218333141745,
+ 45.535191367238106
+ ],
+ [
+ -73.55220436745944,
+ 45.53520504952371
+ ],
+ [
+ -73.55223846705346,
+ 45.53522725018774
+ ],
+ [
+ -73.55223896707652,
+ 45.53522764948673
+ ],
+ [
+ -73.55225226715025,
+ 45.53521504998486
+ ],
+ [
+ -73.55227022841015,
+ 45.53522438224974
+ ],
+ [
+ -73.55234416167556,
+ 45.53511975602222
+ ],
+ [
+ -73.5522628674592,
+ 45.53509114948726
+ ],
+ [
+ -73.55225588422353,
+ 45.53508869074078
+ ],
+ [
+ -73.55218333141745,
+ 45.535191367238106
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1692,
+ "ID_UEV":"01024485",
+ "CIVIQUE_DE":" 2035",
+ "CIVIQUE_FI":" 2037",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-79-2021-8-000-0000",
+ "SUPERFICIE":194,
+ "SUPERFIC_1":158,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000452406061266,
+ "OBJECTID":88928,
+ "Join_Count":1,
+ "TARGET_FID":88928,
+ "feature_id":"8032f29a-ce7f-449c-86e6-bdf0dbe2cce4",
+ "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":32.01,
+ "elevmin":19.03,
+ "elevmax":21.28,
+ "bldgarea":1563.41,
+ "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_2":88928,
+ "Shape_Le_1":0.000452406061266,
+ "Shape_Ar_1":1.19057370035e-08,
+ "OBJECTID_3":88928,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88927,
+ "g_objectid":"943625",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360772",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004379271710000000",
+ "g_sup_tota":"193.5",
+ "g_geometry":"0.00068288",
+ "g_geomet_1":"2.22947e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000452406061266,
+ "Shape_Area":1.19057370035e-08,
+ "Shape_Le_3":0.000452405005643,
+ "Shape_Ar_2":1.19057370035e-08,
+ "building_height":14.989999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1693,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55608139156482,
+ 45.52044625204319
+ ],
+ [
+ -73.55621246415573,
+ 45.520506755732484
+ ],
+ [
+ -73.55629039220968,
+ 45.52042328875407
+ ],
+ [
+ -73.55616456536424,
+ 45.52035716610063
+ ],
+ [
+ -73.55608139156482,
+ 45.52044625204319
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1693,
+ "ID_UEV":"01022326",
+ "CIVIQUE_DE":" 1338",
+ "CIVIQUE_FI":" 1342",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1948,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-42-1080-5-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":452,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000522575459171,
+ "OBJECTID":88934,
+ "Join_Count":1,
+ "TARGET_FID":88934,
+ "feature_id":"ea238b54-bb93-404a-91da-386456b7b0e9",
+ "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.78,
+ "heightmax":11.9,
+ "elevmin":24.55,
+ "elevmax":25.93,
+ "bldgarea":281.91,
+ "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_2":88934,
+ "Shape_Le_1":0.000522575459171,
+ "Shape_Ar_1":1.61821821588e-08,
+ "OBJECTID_3":88934,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88933,
+ "g_objectid":"942139",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567443",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004242108050000000",
+ "g_sup_tota":"156.1",
+ "g_geometry":"0.000552244",
+ "g_geomet_1":"1.80637e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000522575459171,
+ "Shape_Area":1.61821821588e-08,
+ "Shape_Le_3":0.000522574501753,
+ "Shape_Ar_2":1.61821821588e-08,
+ "building_height":4.5600000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1694,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55235270613433,
+ 45.53780467929281
+ ],
+ [
+ -73.55241898167252,
+ 45.53782804008228
+ ],
+ [
+ -73.55250111495633,
+ 45.53771271192241
+ ],
+ [
+ -73.55243556607036,
+ 45.5376883295031
+ ],
+ [
+ -73.55235270613433,
+ 45.53780467929281
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1694,
+ "ID_UEV":"01025365",
+ "CIVIQUE_DE":" 2192",
+ "CIVIQUE_FI":" 2196",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-0504-8-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":208,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000424633267842,
+ "OBJECTID":88941,
+ "Join_Count":1,
+ "TARGET_FID":88941,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":88941,
+ "Shape_Le_1":0.000424633267842,
+ "Shape_Ar_1":9.60452033373e-09,
+ "OBJECTID_3":88941,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88940,
+ "g_objectid":"943843",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361004",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004462990750000000",
+ "g_sup_tota":"139.4",
+ "g_geometry":"0.000620279",
+ "g_geomet_1":"1.60504e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000424633267842,
+ "Shape_Area":9.60452033373e-09,
+ "Shape_Le_3":0.000424633702653,
+ "Shape_Ar_2":9.60452033373e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1695,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56260568522603,
+ 45.5108861565212
+ ],
+ [
+ -73.56259324400486,
+ 45.51090002316783
+ ],
+ [
+ -73.56272305124966,
+ 45.51096105655781
+ ],
+ [
+ -73.56273517680881,
+ 45.510947007348804
+ ],
+ [
+ -73.56260568522603,
+ 45.5108861565212
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1695,
+ "ID_UEV":"01021574",
+ "CIVIQUE_DE":" 98",
+ "CIVIQUE_FI":" 98",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1920,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Fondations et organismes de charit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-92-0325-4-000-0000",
+ "SUPERFICIE":22,
+ "SUPERFIC_1":24,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000323700303856,
+ "OBJECTID":88946,
+ "Join_Count":1,
+ "TARGET_FID":88946,
+ "feature_id":"3127d77c-46a0-428f-b920-e61f8bdef238",
+ "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.58,
+ "heightmax":21.59,
+ "elevmin":25.17,
+ "elevmax":25.95,
+ "bldgarea":1315.13,
+ "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_2":88946,
+ "Shape_Le_1":0.000323700303856,
+ "Shape_Ar_1":2.55791914063e-09,
+ "OBJECTID_3":88946,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88945,
+ "g_objectid":"938522",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"2161585",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6920",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994192032540000000",
+ "g_sup_tota":"393.9",
+ "g_geometry":"0.000898907",
+ "g_geomet_1":"4.51308e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000323700303856,
+ "Shape_Area":2.55791914063e-09,
+ "Shape_Le_3":0.00032370042986,
+ "Shape_Ar_2":2.55791914063e-09,
+ "building_height":10.505
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1696,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55598290950552,
+ 45.53802190513711
+ ],
+ [
+ -73.55598786836728,
+ 45.538023550896455
+ ],
+ [
+ -73.5559781682797,
+ 45.538038050665804
+ ],
+ [
+ -73.55597846775393,
+ 45.53803815049055
+ ],
+ [
+ -73.55606207052998,
+ 45.5380638845909
+ ],
+ [
+ -73.55615920540485,
+ 45.537928180491434
+ ],
+ [
+ -73.55607049088229,
+ 45.537899549674776
+ ],
+ [
+ -73.55598290950552,
+ 45.53802190513711
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1696,
+ "ID_UEV":"01024955",
+ "CIVIQUE_DE":" 2389",
+ "CIVIQUE_FI":" 2391",
+ "NOM_RUE":"rue Montgomery (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-2233-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":213,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000521035304136,
+ "OBJECTID":88953,
+ "Join_Count":1,
+ "TARGET_FID":88953,
+ "feature_id":"7075300e-10d1-4fc1-b33a-1cfddfec4ecc",
+ "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":35.88,
+ "elevmin":18.61,
+ "elevmax":24.32,
+ "bldgarea":2355.29,
+ "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_2":88953,
+ "Shape_Le_1":0.000521035304136,
+ "Shape_Ar_1":1.47861411682e-08,
+ "OBJECTID_3":88953,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88952,
+ "g_objectid":"943992",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361201",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442163780000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667869",
+ "g_geomet_1":"2.14469e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000521035304136,
+ "Shape_Area":1.47861411682e-08,
+ "Shape_Le_3":0.000521035633439,
+ "Shape_Ar_2":1.47861411682e-08,
+ "building_height":17.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1697,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55581856199888,
+ 45.537946369279815
+ ],
+ [
+ -73.55586316837237,
+ 45.53796485124718
+ ],
+ [
+ -73.55583906834018,
+ 45.53799355041232
+ ],
+ [
+ -73.55583916816492,
+ 45.53799365113639
+ ],
+ [
+ -73.55588383928959,
+ 45.53800774261352
+ ],
+ [
+ -73.55598177635973,
+ 45.53787091885811
+ ],
+ [
+ -73.5558930627365,
+ 45.53784228804145
+ ],
+ [
+ -73.55581856199888,
+ 45.537946369279815
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1697,
+ "ID_UEV":"01024959",
+ "CIVIQUE_DE":" 2377",
+ "CIVIQUE_FI":" 2381",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-3627-7-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":223,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000522221328176,
+ "OBJECTID":88954,
+ "Join_Count":1,
+ "TARGET_FID":88954,
+ "feature_id":"7075300e-10d1-4fc1-b33a-1cfddfec4ecc",
+ "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":35.88,
+ "elevmin":18.61,
+ "elevmax":24.32,
+ "bldgarea":2355.29,
+ "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_2":88954,
+ "Shape_Le_1":0.000522221328176,
+ "Shape_Ar_1":1.32037176207e-08,
+ "OBJECTID_3":88954,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88953,
+ "g_objectid":"943990",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361199",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442362770000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667821",
+ "g_geomet_1":"2.14448e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000522221328176,
+ "Shape_Area":1.32037176207e-08,
+ "Shape_Le_3":0.000522221812961,
+ "Shape_Ar_2":1.32037176207e-08,
+ "building_height":17.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1698,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55429421922469,
+ 45.537784167555586
+ ],
+ [
+ -73.55435736782012,
+ 45.53781315090649
+ ],
+ [
+ -73.55435826804148,
+ 45.53781215086037
+ ],
+ [
+ -73.55437819521939,
+ 45.53781941648318
+ ],
+ [
+ -73.55445456474821,
+ 45.537712729009534
+ ],
+ [
+ -73.55436340496901,
+ 45.53768751741529
+ ],
+ [
+ -73.55429421922469,
+ 45.537784167555586
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55447606753833,
+ 45.53768269075387
+ ],
+ [
+ -73.554472668101,
+ 45.537681750962335
+ ],
+ [
+ -73.55445867105267,
+ 45.537706994032845
+ ],
+ [
+ -73.55447606753833,
+ 45.53768269075387
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1698,
+ "ID_UEV":"01025108",
+ "CIVIQUE_DE":" 2276",
+ "CIVIQUE_FI":" 2280",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-52-5101-0-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":166,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000498963773303,
+ "OBJECTID":88957,
+ "Join_Count":1,
+ "TARGET_FID":88957,
+ "feature_id":"ee598ffa-6e9b-4a71-ba9b-2c7cca213f6d",
+ "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":35.53,
+ "elevmin":18.68,
+ "elevmax":24.19,
+ "bldgarea":2418.71,
+ "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_2":88957,
+ "Shape_Le_1":0.000498963773303,
+ "Shape_Ar_1":1.12432444537e-08,
+ "OBJECTID_3":88957,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88956,
+ "g_objectid":"943996",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361206",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004452510100000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000669613",
+ "g_geomet_1":"2.15242e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000498963773303,
+ "Shape_Area":1.12432444537e-08,
+ "Shape_Le_3":0.000498963941467,
+ "Shape_Ar_2":1.12432444537e-08,
+ "building_height":17.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1699,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56104103933434,
+ 45.50847618567772
+ ],
+ [
+ -73.56115391594231,
+ 45.50852771593164
+ ],
+ [
+ -73.56115393842536,
+ 45.508527690750626
+ ],
+ [
+ -73.5611593937129,
+ 45.50852168148071
+ ],
+ [
+ -73.56126850036284,
+ 45.508401483491966
+ ],
+ [
+ -73.56120018786022,
+ 45.508369358809155
+ ],
+ [
+ -73.5611936677754,
+ 45.508376545291625
+ ],
+ [
+ -73.56116966846727,
+ 45.50836574443385
+ ],
+ [
+ -73.56115836848576,
+ 45.508360444729036
+ ],
+ [
+ -73.56116449196958,
+ 45.50835401997234
+ ],
+ [
+ -73.56116209797429,
+ 45.50835301453029
+ ],
+ [
+ -73.5611552046708,
+ 45.50836003373886
+ ],
+ [
+ -73.56114532292017,
+ 45.50837011693764
+ ],
+ [
+ -73.56114530133644,
+ 45.50837010884374
+ ],
+ [
+ -73.56114527255812,
+ 45.50837013852137
+ ],
+ [
+ -73.56104103933434,
+ 45.50847618567772
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1699,
+ "ID_UEV":"01058701",
+ "CIVIQUE_DE":" 1100",
+ "CIVIQUE_FI":" 1102",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-09-2147-4-000-0000",
+ "SUPERFICIE":170,
+ "SUPERFIC_1":442,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000602789567055,
+ "OBJECTID":88974,
+ "Join_Count":1,
+ "TARGET_FID":88974,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":88974,
+ "Shape_Le_1":0.000602789567055,
+ "Shape_Ar_1":1.92734452854e-08,
+ "OBJECTID_3":88974,
+ "Join_Cou_1":5,
+ "TARGET_F_1":88973,
+ "g_objectid":"939469",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1179695",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004009183140000000",
+ "g_sup_tota":"183.2",
+ "g_geometry":"0.000640078",
+ "g_geomet_1":"2.10953e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000602789567055,
+ "Shape_Area":1.92734452854e-08,
+ "Shape_Le_3":0.000602788730122,
+ "Shape_Ar_2":1.92734452854e-08,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1700,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5573429668263,
+ 45.52071864679841
+ ],
+ [
+ -73.55740476733799,
+ 45.5207470464893
+ ],
+ [
+ -73.55745826710718,
+ 45.52068954653564
+ ],
+ [
+ -73.55739656731957,
+ 45.520661146844745
+ ],
+ [
+ -73.5573429668263,
+ 45.52071864679841
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1700,
+ "ID_UEV":"01022340",
+ "CIVIQUE_DE":" 1609",
+ "CIVIQUE_FI":" 1609",
+ "NOM_RUE":"avenue Lartigue (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-1612-4-000-0000",
+ "SUPERFICIE":102,
+ "SUPERFIC_1":93,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00029308336626,
+ "OBJECTID":88975,
+ "Join_Count":1,
+ "TARGET_FID":88975,
+ "feature_id":"725e711f-85f0-43e6-905e-4f06e639ba63",
+ "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":5.03,
+ "heightmax":7.38,
+ "elevmin":26.81,
+ "elevmax":27.21,
+ "bldgarea":44.05,
+ "comment":" ",
+ "OBJECTID_2":88975,
+ "Shape_Le_1":0.00029308336626,
+ "Shape_Ar_1":5.07144499987e-09,
+ "OBJECTID_3":88975,
+ "Join_Cou_1":1,
+ "TARGET_F_1":88974,
+ "g_objectid":"942033",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567253",
+ "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":"66023004233161240000000",
+ "g_sup_tota":"101.7",
+ "g_geometry":"0.000457705",
+ "g_geomet_1":"1.17074e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00029308336626,
+ "Shape_Area":5.07144499987e-09,
+ "Shape_Le_3":0.000293083491239,
+ "Shape_Ar_2":5.07144499987e-09,
+ "building_height":1.1749999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1701,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55257962307299,
+ 45.535710758095306
+ ],
+ [
+ -73.55258696693681,
+ 45.53571294974313
+ ],
+ [
+ -73.55258706676156,
+ 45.53571284991838
+ ],
+ [
+ -73.55260356752247,
+ 45.535689249909254
+ ],
+ [
+ -73.55268415846898,
+ 45.53571696611539
+ ],
+ [
+ -73.55274495084065,
+ 45.53563093516982
+ ],
+ [
+ -73.55271366702397,
+ 45.53561974940221
+ ],
+ [
+ -73.55273506729137,
+ 45.53559024984045
+ ],
+ [
+ -73.5526958667427,
+ 45.53557625009416
+ ],
+ [
+ -73.55269396737454,
+ 45.5355788500342
+ ],
+ [
+ -73.55266146677512,
+ 45.53562085017239
+ ],
+ [
+ -73.55264705603865,
+ 45.53561532923435
+ ],
+ [
+ -73.55257962307299,
+ 45.535710758095306
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1701,
+ "ID_UEV":"01024513",
+ "CIVIQUE_DE":" 2090",
+ "CIVIQUE_FI":" 2090",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-8672-3-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000527069756203,
+ "OBJECTID":88985,
+ "Join_Count":1,
+ "TARGET_FID":88985,
+ "feature_id":"eb231f79-3f89-4e44-bfc9-97de87e22a5f",
+ "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,
+ "heightmax":31.55,
+ "elevmin":18.92,
+ "elevmax":21.51,
+ "bldgarea":1919.77,
+ "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_2":88985,
+ "Shape_Le_1":0.000527069756203,
+ "Shape_Ar_1":1.08117354606e-08,
+ "OBJECTID_3":88985,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88984,
+ "g_objectid":"943665",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360803",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004369936870000000",
+ "g_sup_tota":"193.9",
+ "g_geometry":"0.000683976",
+ "g_geomet_1":"2.23392e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000527069756203,
+ "Shape_Area":1.08117354606e-08,
+ "Shape_Le_3":0.000527069303005,
+ "Shape_Ar_2":1.08117354606e-08,
+ "building_height":15.775
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1702,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55980462620438,
+ 45.53783507997525
+ ],
+ [
+ -73.56002720841079,
+ 45.53791398109565
+ ],
+ [
+ -73.56006797018253,
+ 45.53784614973032
+ ],
+ [
+ -73.5600671697859,
+ 45.53784595008083
+ ],
+ [
+ -73.55985147009112,
+ 45.53777284958763
+ ],
+ [
+ -73.55985137026637,
+ 45.53777284958763
+ ],
+ [
+ -73.55980462620438,
+ 45.53783507997525
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1702,
+ "ID_UEV":"01026114",
+ "CIVIQUE_DE":" 2700",
+ "CIVIQUE_FI":" 2700",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-12-1717-1-000-0000",
+ "SUPERFICIE":205,
+ "SUPERFIC_1":323,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000621794357337,
+ "OBJECTID":88991,
+ "Join_Count":1,
+ "TARGET_FID":88991,
+ "feature_id":"a4acf0c5-b326-497f-ba42-2e7d553662ef",
+ "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":53.77,
+ "elevmin":41.99,
+ "elevmax":43.37,
+ "bldgarea":819.25,
+ "comment":" ",
+ "OBJECTID_2":88991,
+ "Shape_Le_1":0.000621794357337,
+ "Shape_Ar_1":1.76057326952e-08,
+ "OBJECTID_3":88991,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88990,
+ "g_objectid":"944165",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361428",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004412202410000000",
+ "g_sup_tota":"191.1",
+ "g_geometry":"0.000756347",
+ "g_geomet_1":"2.19961e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000621794357337,
+ "Shape_Area":1.76057326952e-08,
+ "Shape_Le_3":0.000621795128724,
+ "Shape_Ar_2":1.76057326952e-08,
+ "building_height":26.635
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1703,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5600115530126,
+ 45.537558514164395
+ ],
+ [
+ -73.56017369897887,
+ 45.537615989836354
+ ],
+ [
+ -73.56021218996244,
+ 45.537551566002264
+ ],
+ [
+ -73.56004904305074,
+ 45.53749373419877
+ ],
+ [
+ -73.56003376986443,
+ 45.53752014998523
+ ],
+ [
+ -73.5600115530126,
+ 45.537558514164395
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1703,
+ "ID_UEV":"01026118",
+ "CIVIQUE_DE":" 2682",
+ "CIVIQUE_FI":" 2686",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-0983-2-000-0000",
+ "SUPERFICIE":246,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000495018178309,
+ "OBJECTID":88994,
+ "Join_Count":1,
+ "TARGET_FID":88994,
+ "feature_id":"2b14c272-2d1b-4b8f-a0e7-3dd28f275e8b",
+ "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.84,
+ "heightmax":53.35,
+ "elevmin":42,
+ "elevmax":43.21,
+ "bldgarea":436.94,
+ "comment":" ",
+ "OBJECTID_2":88994,
+ "Shape_Le_1":0.000495018178309,
+ "Shape_Ar_1":1.26971180301e-08,
+ "OBJECTID_3":88994,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88993,
+ "g_objectid":"944186",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361454",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411129010000000",
+ "g_sup_tota":"259.5",
+ "g_geometry":"0.000951374",
+ "g_geomet_1":"2.98942e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000495018178309,
+ "Shape_Area":1.26971180301e-08,
+ "Shape_Le_3":0.000495017726311,
+ "Shape_Ar_2":1.26971180301e-08,
+ "building_height":26.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1704,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55319460197114,
+ 45.52982161962234
+ ],
+ [
+ -73.55319946730341,
+ 45.529823948866444
+ ],
+ [
+ -73.55328153853402,
+ 45.52986320517307
+ ],
+ [
+ -73.55337678213463,
+ 45.52976458911479
+ ],
+ [
+ -73.55329038516498,
+ 45.52972301705389
+ ],
+ [
+ -73.55319460197114,
+ 45.52982161962234
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1704,
+ "ID_UEV":"01018424",
+ "CIVIQUE_DE":" 1857",
+ "CIVIQUE_FI":" 1861",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-3822-2-000-0000",
+ "SUPERFICIE":201,
+ "SUPERFIC_1":283,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000466815023044,
+ "OBJECTID":88995,
+ "Join_Count":1,
+ "TARGET_FID":88995,
+ "feature_id":"17567ea8-36d2-4e73-b020-d07d6a569ebb",
+ "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.15,
+ "heightmax":29.53,
+ "elevmin":17.11,
+ "elevmax":18.32,
+ "bldgarea":611.15,
+ "comment":" ",
+ "OBJECTID_2":88995,
+ "Shape_Le_1":0.000466815023044,
+ "Shape_Ar_1":1.25175297512e-08,
+ "OBJECTID_3":88995,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88994,
+ "g_objectid":"940831",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424498",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363312680000000",
+ "g_sup_tota":"200.7",
+ "g_geometry":"0.000698185",
+ "g_geomet_1":"2.3113e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000466815023044,
+ "Shape_Area":1.25175297512e-08,
+ "Shape_Le_3":0.000466815357463,
+ "Shape_Ar_2":1.25175297512e-08,
+ "building_height":13.690000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1705,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55275375880078,
+ 45.52966085861203
+ ],
+ [
+ -73.55278586729578,
+ 45.52967734858107
+ ],
+ [
+ -73.55278616677002,
+ 45.52967734858107
+ ],
+ [
+ -73.5528290671296,
+ 45.52964224894093
+ ],
+ [
+ -73.55286070527917,
+ 45.52966133615204
+ ],
+ [
+ -73.55295523841536,
+ 45.529558284637424
+ ],
+ [
+ -73.55287820968347,
+ 45.52952512753291
+ ],
+ [
+ -73.55275375880078,
+ 45.52966085861203
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1705,
+ "ID_UEV":"01018428",
+ "CIVIQUE_DE":" 1825",
+ "CIVIQUE_FI":" 1829",
+ "NOM_RUE":"rue Fullum (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-63-7201-5-000-0000",
+ "SUPERFICIE":195,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000536627215629,
+ "OBJECTID":88996,
+ "Join_Count":1,
+ "TARGET_FID":88996,
+ "feature_id":"10578107-c75a-4300-a5ec-b36b8eee7d17",
+ "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.48,
+ "heightmax":30.56,
+ "elevmin":17.95,
+ "elevmax":18.91,
+ "bldgarea":920.73,
+ "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_2":88996,
+ "Shape_Le_1":0.000536627215629,
+ "Shape_Ar_1":1.2735597794e-08,
+ "OBJECTID_3":88996,
+ "Join_Cou_1":3,
+ "TARGET_F_1":88995,
+ "g_objectid":"940823",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424487",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004363720150000000",
+ "g_sup_tota":"194.6",
+ "g_geometry":"0.000735657",
+ "g_geomet_1":"2.25536e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000536627215629,
+ "Shape_Area":1.2735597794e-08,
+ "Shape_Le_3":0.000536628567513,
+ "Shape_Ar_2":1.2735597794e-08,
+ "building_height":14.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1706,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55723765531539,
+ 45.53635193514398
+ ],
+ [
+ -73.55724066444695,
+ 45.53635300173993
+ ],
+ [
+ -73.55730326895255,
+ 45.53627105011916
+ ],
+ [
+ -73.55737300867925,
+ 45.53629732021545
+ ],
+ [
+ -73.55745064445352,
+ 45.53618915875297
+ ],
+ [
+ -73.55737866901221,
+ 45.536162049589215
+ ],
+ [
+ -73.55730046936301,
+ 45.536264549819414
+ ],
+ [
+ -73.55730039651793,
+ 45.53626452283975
+ ],
+ [
+ -73.55723765531539,
+ 45.53635193514398
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1706,
+ "ID_UEV":"01024136",
+ "CIVIQUE_DE":" 2375",
+ "CIVIQUE_FI":" 2377",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-2140-7-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":164,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000627494906408,
+ "OBJECTID":88999,
+ "Join_Count":1,
+ "TARGET_FID":88999,
+ "feature_id":"413e87b9-bbb3-4689-bf03-c57e4d61d01e",
+ "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.55,
+ "heightmax":9.22,
+ "elevmin":23.62,
+ "elevmax":25.83,
+ "bldgarea":321.65,
+ "comment":" ",
+ "OBJECTID_2":88999,
+ "Shape_Le_1":0.000627494906408,
+ "Shape_Ar_1":1.06208251918e-08,
+ "OBJECTID_3":88999,
+ "Join_Cou_1":4,
+ "TARGET_F_1":88998,
+ "g_objectid":"940978",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424785",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430154330000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000655355",
+ "g_geomet_1":"1.89869e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000627494906408,
+ "Shape_Area":1.06208251918e-08,
+ "Shape_Le_3":0.000627495553102,
+ "Shape_Ar_2":1.06208251918e-08,
+ "building_height":4.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1707,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5569455015555,
+ 45.53607266507173
+ ],
+ [
+ -73.55687146846535,
+ 45.536042549474374
+ ],
+ [
+ -73.55679286771851,
+ 45.53613794955702
+ ],
+ [
+ -73.55683896786591,
+ 45.536156650059645
+ ],
+ [
+ -73.55684616783822,
+ 45.536148350216486
+ ],
+ [
+ -73.55688054532276,
+ 45.536162983984816
+ ],
+ [
+ -73.5569455015555,
+ 45.53607266507173
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1707,
+ "ID_UEV":"01024149",
+ "CIVIQUE_DE":" 2335",
+ "CIVIQUE_FI":" 2335",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-5821-9-000-0000",
+ "SUPERFICIE":199,
+ "SUPERFIC_1":85,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000412881786449,
+ "OBJECTID":89000,
+ "Join_Count":1,
+ "TARGET_FID":89000,
+ "feature_id":"47fb90ef-3470-4ecb-9a38-503a576ad111",
+ "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.72,
+ "heightmax":10.87,
+ "elevmin":22.34,
+ "elevmax":25.25,
+ "bldgarea":459.22,
+ "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_2":89000,
+ "Shape_Le_1":0.000412881786449,
+ "Shape_Ar_1":9.53479663613e-09,
+ "OBJECTID_3":89000,
+ "Join_Cou_1":2,
+ "TARGET_F_1":88999,
+ "g_objectid":"940973",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424778",
+ "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":"66023004430512550000000",
+ "g_sup_tota":"190.4",
+ "g_geometry":"0.000679713",
+ "g_geomet_1":"2.19602e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000412881786449,
+ "Shape_Area":9.53479663613e-09,
+ "Shape_Le_3":0.000412883243016,
+ "Shape_Ar_2":9.53479663613e-09,
+ "building_height":5.074999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1708,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5566546850875,
+ 45.5360732757114
+ ],
+ [
+ -73.55672246788943,
+ 45.536098449534116
+ ],
+ [
+ -73.55672526837827,
+ 45.536094649898466
+ ],
+ [
+ -73.556794767986,
+ 45.536001849755856
+ ],
+ [
+ -73.55679076780154,
+ 45.536000449511434
+ ],
+ [
+ -73.55672421976877,
+ 45.535976400740594
+ ],
+ [
+ -73.5566546850875,
+ 45.5360732757114
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1708,
+ "ID_UEV":"01024151",
+ "CIVIQUE_DE":" 2329",
+ "CIVIQUE_FI":" 2329",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-6915-8-000-0000",
+ "SUPERFICIE":191,
+ "SUPERFIC_1":198,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000387212104821,
+ "OBJECTID":89001,
+ "Join_Count":1,
+ "TARGET_FID":89001,
+ "feature_id":"0d0450ed-53d1-4796-8a46-274cefb95f1e",
+ "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,
+ "heightmax":33.2,
+ "elevmin":20.33,
+ "elevmax":23.69,
+ "bldgarea":773.97,
+ "comment":" ",
+ "OBJECTID_2":89001,
+ "Shape_Le_1":0.000387212104821,
+ "Shape_Ar_1":8.48228145971e-09,
+ "OBJECTID_3":89001,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89000,
+ "g_objectid":"940994",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424827",
+ "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":"66023004430691580000000",
+ "g_sup_tota":"191.2",
+ "g_geometry":"0.00068159",
+ "g_geomet_1":"2.20828e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000387212104821,
+ "Shape_Area":8.48228145971e-09,
+ "Shape_Le_3":0.000387211731329,
+ "Shape_Ar_2":8.48228145971e-09,
+ "building_height":16.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1709,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55058414706258,
+ 45.5371684736964
+ ],
+ [
+ -73.55065141455299,
+ 45.5371910565723
+ ],
+ [
+ -73.55071979900137,
+ 45.53709503685676
+ ],
+ [
+ -73.55068496645988,
+ 45.537082351019976
+ ],
+ [
+ -73.55065361879132,
+ 45.53707092783135
+ ],
+ [
+ -73.55058414706258,
+ 45.5371684736964
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1709,
+ "ID_UEV":"01025322",
+ "CIVIQUE_DE":" 2034",
+ "CIVIQUE_FI":" 2038",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-4334-7-000-0000",
+ "SUPERFICIE":142,
+ "SUPERFIC_1":215,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000379030353916,
+ "OBJECTID":89003,
+ "Join_Count":1,
+ "TARGET_FID":89003,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":89003,
+ "Shape_Le_1":0.000379030353916,
+ "Shape_Ar_1":8.06679060447e-09,
+ "OBJECTID_3":89003,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89002,
+ "g_objectid":"944231",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481433470000000",
+ "g_sup_tota":"142",
+ "g_geometry":"0.000622867",
+ "g_geomet_1":"1.63499e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000379030353916,
+ "Shape_Area":8.06679060447e-09,
+ "Shape_Le_3":0.000379030166392,
+ "Shape_Ar_2":8.06679060447e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1710,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55994451035272,
+ 45.522709432844344
+ ],
+ [
+ -73.55994534672222,
+ 45.52270982045215
+ ],
+ [
+ -73.55999786802903,
+ 45.522656648036175
+ ],
+ [
+ -73.55999533373951,
+ 45.52265540966972
+ ],
+ [
+ -73.55994451035272,
+ 45.522709432844344
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56028454851494,
+ 45.52254965659167
+ ],
+ [
+ -73.56026206906108,
+ 45.522538947464746
+ ],
+ [
+ -73.56026196923634,
+ 45.522538947464746
+ ],
+ [
+ -73.56022726889519,
+ 45.52252124790756
+ ],
+ [
+ -73.560203168863,
+ 45.52250904770468
+ ],
+ [
+ -73.56009486800559,
+ 45.52261434752442
+ ],
+ [
+ -73.56018205008338,
+ 45.52265860765891
+ ],
+ [
+ -73.56028454851494,
+ 45.52254965659167
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5600942438761,
+ 45.52255027442592
+ ],
+ [
+ -73.56010006788567,
+ 45.52255294811036
+ ],
+ [
+ -73.56016416886315,
+ 45.52248394762638
+ ],
+ [
+ -73.56015891322511,
+ 45.52248153564465
+ ],
+ [
+ -73.5600942438761,
+ 45.52255027442592
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1710,
+ "ID_UEV":"01032355",
+ "CIVIQUE_DE":" 1875",
+ "CIVIQUE_FI":" 1875",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1974,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-15-0324-4-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":388,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000842781633344,
+ "OBJECTID":89012,
+ "Join_Count":3,
+ "TARGET_FID":89012,
+ "feature_id":"825b7f46-af7c-482d-83bc-799375f24989",
+ "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.91,
+ "heightmax":33.98,
+ "elevmin":25.23,
+ "elevmax":25.56,
+ "bldgarea":88.15,
+ "comment":" ",
+ "OBJECTID_2":89012,
+ "Shape_Le_1":0.000842781633344,
+ "Shape_Ar_1":1.41581898473e-08,
+ "OBJECTID_3":89012,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89011,
+ "g_objectid":"941925",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566862",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004205923130000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000930451",
+ "g_geomet_1":"4.40253e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000842781633344,
+ "Shape_Area":1.41581898473e-08,
+ "Shape_Le_3":0.000842781960379,
+ "Shape_Ar_2":1.41581898473e-08,
+ "building_height":15.534999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1711,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55464667882302,
+ 45.53559492811374
+ ],
+ [
+ -73.55479116300361,
+ 45.53564611212867
+ ],
+ [
+ -73.55482376792439,
+ 45.53559575009409
+ ],
+ [
+ -73.55482756036547,
+ 45.53558990360146
+ ],
+ [
+ -73.55468604304829,
+ 45.535539770894005
+ ],
+ [
+ -73.55464667882302,
+ 45.53559492811374
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1711,
+ "ID_UEV":"01025821",
+ "CIVIQUE_DE":" 2680",
+ "CIVIQUE_FI":" 2680",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1956,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-3062-3-000-0000",
+ "SUPERFICIE":199,
+ "SUPERFIC_1":231,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000438142966183,
+ "OBJECTID":89015,
+ "Join_Count":1,
+ "TARGET_FID":89015,
+ "feature_id":"9c87aec3-b2d4-4765-b37b-8fec185ae7c4",
+ "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.01,
+ "heightmax":30.62,
+ "elevmin":18.13,
+ "elevmax":19.77,
+ "bldgarea":544.85,
+ "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_2":89015,
+ "Shape_Le_1":0.000438142966183,
+ "Shape_Ar_1":9.88141271261e-09,
+ "OBJECTID_3":89015,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89014,
+ "g_objectid":"941045",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424884",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359275610000000",
+ "g_sup_tota":"197.2",
+ "g_geometry":"0.000832885",
+ "g_geomet_1":"2.2724e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000438142966183,
+ "Shape_Area":9.88141271261e-09,
+ "Shape_Le_3":0.000438144291696,
+ "Shape_Ar_2":9.88141271261e-09,
+ "building_height":14.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1712,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55468604304829,
+ 45.535539770894005
+ ],
+ [
+ -73.55482756036547,
+ 45.53558990360146
+ ],
+ [
+ -73.5548597677859,
+ 45.53554025023266
+ ],
+ [
+ -73.55486399819681,
+ 45.53553371216138
+ ],
+ [
+ -73.55472540727357,
+ 45.535484615472924
+ ],
+ [
+ -73.55468604304829,
+ 45.535539770894005
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55457561799223,
+ 45.535431552774234
+ ],
+ [
+ -73.5545722680176,
+ 45.535435849734974
+ ],
+ [
+ -73.55465486804957,
+ 45.53546764976252
+ ],
+ [
+ -73.5546597603615,
+ 45.53546135990413
+ ],
+ [
+ -73.55457561799223,
+ 45.535431552774234
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1712,
+ "ID_UEV":"01025823",
+ "CIVIQUE_DE":" 2674",
+ "CIVIQUE_FI":" 2674",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1956,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-2756-1-000-0000",
+ "SUPERFICIE":197,
+ "SUPERFIC_1":231,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000623090616583,
+ "OBJECTID":89016,
+ "Join_Count":2,
+ "TARGET_FID":89016,
+ "feature_id":"bae9b56c-afb0-4f12-a7e1-fe5b69805dcd",
+ "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":3,
+ "heightmax":23.25,
+ "elevmin":19.02,
+ "elevmax":19.51,
+ "bldgarea":39.37,
+ "comment":" ",
+ "OBJECTID_2":89016,
+ "Shape_Le_1":0.000623090616583,
+ "Shape_Ar_1":1.02462708845e-08,
+ "OBJECTID_3":89016,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89015,
+ "g_objectid":"941045",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424884",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359275610000000",
+ "g_sup_tota":"197.2",
+ "g_geometry":"0.000832885",
+ "g_geomet_1":"2.2724e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000623090616583,
+ "Shape_Area":1.02462708845e-08,
+ "Shape_Le_3":0.000623091351455,
+ "Shape_Ar_2":1.02462708845e-08,
+ "building_height":10.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1713,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55472540727357,
+ 45.535484615472924
+ ],
+ [
+ -73.55486399819681,
+ 45.53553371216138
+ ],
+ [
+ -73.5549081683991,
+ 45.535465450020794
+ ],
+ [
+ -73.55490636795636,
+ 45.53546485017299
+ ],
+ [
+ -73.55475786830283,
+ 45.535413649970266
+ ],
+ [
+ -73.55471236800322,
+ 45.53547894974403
+ ],
+ [
+ -73.55471206852899,
+ 45.53547944976709
+ ],
+ [
+ -73.55472566807697,
+ 45.53548424944885
+ ],
+ [
+ -73.55472540727357,
+ 45.535484615472924
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55457561799223,
+ 45.535431552774234
+ ],
+ [
+ -73.5546597603615,
+ 45.53546135990413
+ ],
+ [
+ -73.55468776794798,
+ 45.535425350150085
+ ],
+ [
+ -73.55468266789265,
+ 45.5354234498826
+ ],
+ [
+ -73.55460516791601,
+ 45.53539364994728
+ ],
+ [
+ -73.55457561799223,
+ 45.535431552774234
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5547749149522,
+ 45.535368136180836
+ ],
+ [
+ -73.55479356779077,
+ 45.535375050168724
+ ],
+ [
+ -73.55479406781383,
+ 45.53537514999347
+ ],
+ [
+ -73.55479658591555,
+ 45.53537162914766
+ ],
+ [
+ -73.55477722620986,
+ 45.53536477091774
+ ],
+ [
+ -73.5547749149522,
+ 45.535368136180836
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1713,
+ "ID_UEV":"01025826",
+ "CIVIQUE_DE":" 2660",
+ "CIVIQUE_FI":" 2660",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1957,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-2149-9-000-0000",
+ "SUPERFICIE":312,
+ "SUPERFIC_1":242,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000803128868424,
+ "OBJECTID":89017,
+ "Join_Count":3,
+ "TARGET_FID":89017,
+ "feature_id":"0fb434dc-b92a-4f99-953d-a18f035958c6",
+ "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.58,
+ "heightmax":28.35,
+ "elevmin":19.07,
+ "elevmax":19.55,
+ "bldgarea":316.31,
+ "comment":" ",
+ "OBJECTID_2":89017,
+ "Shape_Le_1":0.000803128868424,
+ "Shape_Ar_1":1.65900919725e-08,
+ "OBJECTID_3":89017,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89016,
+ "g_objectid":"941045",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424884",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359275610000000",
+ "g_sup_tota":"197.2",
+ "g_geometry":"0.000832885",
+ "g_geomet_1":"2.2724e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000803128868424,
+ "Shape_Area":1.65900919725e-08,
+ "Shape_Le_3":0.00080312826156,
+ "Shape_Ar_2":1.65900919725e-08,
+ "building_height":12.885000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1714,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55094840126955,
+ 45.535657108139326
+ ],
+ [
+ -73.5510924267959,
+ 45.5357081347729
+ ],
+ [
+ -73.55111176581718,
+ 45.53567785010299
+ ],
+ [
+ -73.55110766580798,
+ 45.535676750232135
+ ],
+ [
+ -73.55112306579869,
+ 45.535647349595806
+ ],
+ [
+ -73.55117689382044,
+ 45.535661311570564
+ ],
+ [
+ -73.55098747951041,
+ 45.535594205958134
+ ],
+ [
+ -73.55098056642184,
+ 45.535605349457605
+ ],
+ [
+ -73.55095326570249,
+ 45.53564924986328
+ ],
+ [
+ -73.55094840126955,
+ 45.535657108139326
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1714,
+ "ID_UEV":"01025544",
+ "CIVIQUE_DE":" 2775",
+ "CIVIQUE_FI":" 2779",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-89-0974-9-000-0000",
+ "SUPERFICIE":197,
+ "SUPERFIC_1":251,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000556777698176,
+ "OBJECTID":89019,
+ "Join_Count":1,
+ "TARGET_FID":89019,
+ "feature_id":"df1bbe19-72ef-447e-81d9-b3f5f58f9b43",
+ "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.7,
+ "heightmax":34.74,
+ "elevmin":20.91,
+ "elevmax":22.15,
+ "bldgarea":1003.16,
+ "comment":" ",
+ "OBJECTID_2":89019,
+ "Shape_Le_1":0.000556777698176,
+ "Shape_Ar_1":1.10007530513e-08,
+ "OBJECTID_3":89019,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89018,
+ "g_objectid":"943677",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360818",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004389128180000000",
+ "g_sup_tota":"195.2",
+ "g_geometry":"0.000771568",
+ "g_geomet_1":"2.24856e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000556777698176,
+ "Shape_Area":1.10007530513e-08,
+ "Shape_Le_3":0.000556776914239,
+ "Shape_Ar_2":1.10007530513e-08,
+ "building_height":16.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1715,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55090936889411,
+ 45.535720027407635
+ ],
+ [
+ -73.55105224508688,
+ 45.53577064664832
+ ],
+ [
+ -73.5510633661033,
+ 45.53575364946165
+ ],
+ [
+ -73.55106616569283,
+ 45.53574934980295
+ ],
+ [
+ -73.55108826653212,
+ 45.535714649461795
+ ],
+ [
+ -73.5510924267959,
+ 45.5357081347729
+ ],
+ [
+ -73.55094840126955,
+ 45.535657108139326
+ ],
+ [
+ -73.55092106637596,
+ 45.53570124956331
+ ],
+ [
+ -73.55090936889411,
+ 45.535720027407635
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1715,
+ "ID_UEV":"01025546",
+ "CIVIQUE_DE":" 2783",
+ "CIVIQUE_FI":" 2783",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1962,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-89-1281-8-000-0000",
+ "SUPERFICIE":195,
+ "SUPERFIC_1":251,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000452732926574,
+ "OBJECTID":89021,
+ "Join_Count":1,
+ "TARGET_FID":89021,
+ "feature_id":"df1bbe19-72ef-447e-81d9-b3f5f58f9b43",
+ "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.7,
+ "heightmax":34.74,
+ "elevmin":20.91,
+ "elevmax":22.15,
+ "bldgarea":1003.16,
+ "comment":" ",
+ "OBJECTID_2":89021,
+ "Shape_Le_1":0.000452732926574,
+ "Shape_Ar_1":1.10152518048e-08,
+ "OBJECTID_3":89021,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89020,
+ "g_objectid":"943677",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360818",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004389128180000000",
+ "g_sup_tota":"195.2",
+ "g_geometry":"0.000771568",
+ "g_geomet_1":"2.24856e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000452732926574,
+ "Shape_Area":1.10152518048e-08,
+ "Shape_Le_3":0.000452731932205,
+ "Shape_Ar_2":1.10152518048e-08,
+ "building_height":16.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1716,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55831825550493,
+ 45.53811826749435
+ ],
+ [
+ -73.55836566956185,
+ 45.53813564959085
+ ],
+ [
+ -73.55840475499728,
+ 45.53814998298562
+ ],
+ [
+ -73.55848175405156,
+ 45.538043661536044
+ ],
+ [
+ -73.5583945288063,
+ 45.53801294788953
+ ],
+ [
+ -73.55831825550493,
+ 45.53811826749435
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1716,
+ "ID_UEV":"01024661",
+ "CIVIQUE_DE":" 2575",
+ "CIVIQUE_FI":" 2575",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-4145-1-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000445918510269,
+ "OBJECTID":89027,
+ "Join_Count":1,
+ "TARGET_FID":89027,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":89027,
+ "Shape_Le_1":0.000445918510269,
+ "Shape_Ar_1":1.15839072047e-08,
+ "OBJECTID_3":89027,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89026,
+ "g_objectid":"944110",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361363",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422414510000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668544",
+ "g_geomet_1":"2.14437e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000445918510269,
+ "Shape_Area":1.15839072047e-08,
+ "Shape_Le_3":0.000445917982824,
+ "Shape_Ar_2":1.15839072047e-08,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1717,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55044241031084,
+ 45.53823869301157
+ ],
+ [
+ -73.55051183347618,
+ 45.53826376071428
+ ],
+ [
+ -73.55057513045975,
+ 45.538175432000884
+ ],
+ [
+ -73.55050530979406,
+ 45.53815091828055
+ ],
+ [
+ -73.55044241031084,
+ 45.53823869301157
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1717,
+ "ID_UEV":"01025617",
+ "CIVIQUE_DE":" 2039",
+ "CIVIQUE_FI":" 2039",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-5758-4-000-0000",
+ "SUPERFICIE":179,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000364461207745,
+ "OBJECTID":89031,
+ "Join_Count":1,
+ "TARGET_FID":89031,
+ "feature_id":"d4915543-1bec-49e8-9979-b4fff30cbc65",
+ "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.63,
+ "heightmax":31.57,
+ "elevmin":20.49,
+ "elevmax":21.83,
+ "bldgarea":540.37,
+ "comment":" ",
+ "OBJECTID_2":89031,
+ "Shape_Le_1":0.000364461207745,
+ "Shape_Ar_1":7.69458723352e-09,
+ "OBJECTID_3":89031,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89030,
+ "g_objectid":"944263",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361936",
+ "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":"66023004482516030000000",
+ "g_sup_tota":"171.2",
+ "g_geometry":"0.000703209",
+ "g_geomet_1":"1.97225e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000364461207745,
+ "Shape_Area":7.69458723352e-09,
+ "Shape_Le_3":0.000364461035583,
+ "Shape_Ar_2":7.69458723352e-09,
+ "building_height":15.47
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1718,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55050530979406,
+ 45.53815091828055
+ ],
+ [
+ -73.55044046597656,
+ 45.53812815104363
+ ],
+ [
+ -73.55043926628096,
+ 45.538130050411795
+ ],
+ [
+ -73.55038136612899,
+ 45.53821665062822
+ ],
+ [
+ -73.55044241031084,
+ 45.53823869301157
+ ],
+ [
+ -73.55050530979406,
+ 45.53815091828055
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1718,
+ "ID_UEV":"01025619",
+ "CIVIQUE_DE":" 2029",
+ "CIVIQUE_FI":" 2029",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-6355-8-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000348031762631,
+ "OBJECTID":89032,
+ "Join_Count":1,
+ "TARGET_FID":89032,
+ "feature_id":"d4915543-1bec-49e8-9979-b4fff30cbc65",
+ "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.63,
+ "heightmax":31.57,
+ "elevmin":20.49,
+ "elevmax":21.83,
+ "bldgarea":540.37,
+ "comment":" ",
+ "OBJECTID_2":89032,
+ "Shape_Le_1":0.000348031762631,
+ "Shape_Ar_1":6.91135629794e-09,
+ "OBJECTID_3":89032,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89031,
+ "g_objectid":"944264",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361937",
+ "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":"66023004482575840000000",
+ "g_sup_tota":"179.3",
+ "g_geometry":"0.000729604",
+ "g_geomet_1":"2.06599e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000348031762631,
+ "Shape_Area":6.91135629794e-09,
+ "Shape_Le_3":0.000348031018156,
+ "Shape_Ar_2":6.91135629794e-09,
+ "building_height":15.47
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1719,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55069688787292,
+ 45.53861537854718
+ ],
+ [
+ -73.55077146685156,
+ 45.53864075112006
+ ],
+ [
+ -73.55077396696684,
+ 45.53863685076035
+ ],
+ [
+ -73.55083186711882,
+ 45.538553750705326
+ ],
+ [
+ -73.55082706743706,
+ 45.538552150811405
+ ],
+ [
+ -73.55075870996833,
+ 45.53852910748262
+ ],
+ [
+ -73.55069688787292,
+ 45.53861537854718
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1719,
+ "ID_UEV":"01025621",
+ "CIVIQUE_DE":" 3079",
+ "CIVIQUE_FI":" 3079",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-3496-3-000-0000",
+ "SUPERFICIE":213,
+ "SUPERFIC_1":195,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000368022130287,
+ "OBJECTID":89034,
+ "Join_Count":1,
+ "TARGET_FID":89034,
+ "feature_id":"fb799dfc-15ad-4735-937b-a4d19bbcca51",
+ "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,
+ "heightmax":32.29,
+ "elevmin":21.17,
+ "elevmax":21.89,
+ "bldgarea":541.06,
+ "comment":" ",
+ "OBJECTID_2":89034,
+ "Shape_Le_1":0.000368022130287,
+ "Shape_Ar_1":7.91817684708e-09,
+ "OBJECTID_3":89034,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89033,
+ "g_objectid":"944267",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361940",
+ "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":"66023004482419430000000",
+ "g_sup_tota":"167.4",
+ "g_geometry":"0.000695883",
+ "g_geomet_1":"1.93102e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000368022130287,
+ "Shape_Area":7.91817684708e-09,
+ "Shape_Le_3":0.000368023113439,
+ "Shape_Ar_2":7.91817684708e-09,
+ "building_height":15.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1720,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55061360705417,
+ 45.53860952216201
+ ],
+ [
+ -73.55061846609118,
+ 45.53861085046068
+ ],
+ [
+ -73.55061846609118,
+ 45.538610750635925
+ ],
+ [
+ -73.55063066629405,
+ 45.53859285052992
+ ],
+ [
+ -73.55069688787292,
+ 45.53861537854718
+ ],
+ [
+ -73.55075870996833,
+ 45.53852910748262
+ ],
+ [
+ -73.55069416652441,
+ 45.53850735108368
+ ],
+ [
+ -73.5506824663446,
+ 45.53852515046562
+ ],
+ [
+ -73.55067565667805,
+ 45.53852293273745
+ ],
+ [
+ -73.55061360705417,
+ 45.53860952216201
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1720,
+ "ID_UEV":"01025622",
+ "CIVIQUE_DE":" 3069",
+ "CIVIQUE_FI":" 3069",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-4194-3-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000405984471204,
+ "OBJECTID":89035,
+ "Join_Count":1,
+ "TARGET_FID":89035,
+ "feature_id":"fb799dfc-15ad-4735-937b-a4d19bbcca51",
+ "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,
+ "heightmax":32.29,
+ "elevmin":21.17,
+ "elevmax":21.89,
+ "bldgarea":541.06,
+ "comment":" ",
+ "OBJECTID_2":89035,
+ "Shape_Le_1":0.000405984471204,
+ "Shape_Ar_1":7.4984496898e-09,
+ "OBJECTID_3":89035,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89034,
+ "g_objectid":"944268",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361941",
+ "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":"66023004482479240000000",
+ "g_sup_tota":"167.1",
+ "g_geometry":"0.000694846",
+ "g_geomet_1":"1.92592e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000405984471204,
+ "Shape_Area":7.4984496898e-09,
+ "Shape_Le_3":0.000405983602519,
+ "Shape_Ar_2":7.4984496898e-09,
+ "building_height":15.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1721,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55671154832115,
+ 45.53378277170784
+ ],
+ [
+ -73.55673500983468,
+ 45.53379263457272
+ ],
+ [
+ -73.55673078571903,
+ 45.533798882162976
+ ],
+ [
+ -73.55685837523568,
+ 45.533852517729805
+ ],
+ [
+ -73.55690335752577,
+ 45.533803646771176
+ ],
+ [
+ -73.55675280651865,
+ 45.53373984526794
+ ],
+ [
+ -73.55671154832115,
+ 45.53378277170784
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1721,
+ "ID_UEV":"01025841",
+ "CIVIQUE_DE":" 2492",
+ "CIVIQUE_FI":" 2494",
+ "NOM_RUE":"rue de Rouen (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-37-6564-1-000-0000",
+ "SUPERFICIE":145,
+ "SUPERFIC_1":161,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000460869142645,
+ "OBJECTID":89045,
+ "Join_Count":1,
+ "TARGET_FID":89045,
+ "feature_id":"abde85ca-ac06-4e6a-b0d5-549fb831074b",
+ "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.87,
+ "heightmax":32.34,
+ "elevmin":18.91,
+ "elevmax":21.32,
+ "bldgarea":1252.42,
+ "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_2":89045,
+ "Shape_Le_1":0.000460869142645,
+ "Shape_Ar_1":1.01216617867e-08,
+ "OBJECTID_3":89045,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89044,
+ "g_objectid":"941305",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425302",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004337656410000000",
+ "g_sup_tota":"145",
+ "g_geometry":"0.000683824",
+ "g_geomet_1":"1.65171e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000460869142645,
+ "Shape_Area":1.01216617867e-08,
+ "Shape_Le_3":0.000460869215848,
+ "Shape_Ar_2":1.01216617867e-08,
+ "building_height":15.235000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1722,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55387945729296,
+ 45.53757384400799
+ ],
+ [
+ -73.5538766684953,
+ 45.53757815086127
+ ],
+ [
+ -73.55382466699663,
+ 45.53756135062613
+ ],
+ [
+ -73.55378769856529,
+ 45.53761809424994
+ ],
+ [
+ -73.55403054969196,
+ 45.53770414587992
+ ],
+ [
+ -73.55406706846229,
+ 45.53764825121612
+ ],
+ [
+ -73.55406266807951,
+ 45.53764685097169
+ ],
+ [
+ -73.55401626845787,
+ 45.53763435129457
+ ],
+ [
+ -73.55402179029524,
+ 45.53762426809579
+ ],
+ [
+ -73.55387945729296,
+ 45.53757384400799
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1722,
+ "ID_UEV":"01025779",
+ "CIVIQUE_DE":" 2845",
+ "CIVIQUE_FI":" 2845",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1951,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-51-8892-3-000-0000",
+ "SUPERFICIE":196,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000667084652444,
+ "OBJECTID":89047,
+ "Join_Count":1,
+ "TARGET_FID":89047,
+ "feature_id":"11039491-bbf1-41b6-90ea-1fa3a632a4d1",
+ "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.57,
+ "heightmax":9.51,
+ "elevmin":18.59,
+ "elevmax":19.5,
+ "bldgarea":800.31,
+ "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_2":89047,
+ "Shape_Le_1":0.000667084652444,
+ "Shape_Ar_1":1.78486997921e-08,
+ "OBJECTID_3":89047,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89046,
+ "g_objectid":"943972",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361179",
+ "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":"66023004451848560000000",
+ "g_sup_tota":"197",
+ "g_geometry":"0.000777546",
+ "g_geomet_1":"2.27044e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000667084652444,
+ "Shape_Area":1.78486997921e-08,
+ "Shape_Le_3":0.000667084488779,
+ "Shape_Ar_2":1.78486997921e-08,
+ "building_height":4.47
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1723,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5587898150198,
+ 45.537915985684485
+ ],
+ [
+ -73.55880506932034,
+ 45.53792085011744
+ ],
+ [
+ -73.55880776908512,
+ 45.53791784997909
+ ],
+ [
+ -73.55880856948174,
+ 45.53791814945333
+ ],
+ [
+ -73.55890656950443,
+ 45.53794834958696
+ ],
+ [
+ -73.5589691695134,
+ 45.5378727498778
+ ],
+ [
+ -73.55887986953219,
+ 45.53783624999324
+ ],
+ [
+ -73.55883796921874,
+ 45.537886950172904
+ ],
+ [
+ -73.55881906906663,
+ 45.53787914945348
+ ],
+ [
+ -73.5588553693017,
+ 45.53783524994712
+ ],
+ [
+ -73.55885706902036,
+ 45.53783334967964
+ ],
+ [
+ -73.55885103906604,
+ 45.53783057077452
+ ],
+ [
+ -73.5587898150198,
+ 45.537915985684485
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1723,
+ "ID_UEV":"01024594",
+ "CIVIQUE_DE":" 2600",
+ "CIVIQUE_FI":" 2600",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-12-9719-9-000-0000",
+ "SUPERFICIE":402,
+ "SUPERFIC_1":71,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000575537320884,
+ "OBJECTID":89048,
+ "Join_Count":1,
+ "TARGET_FID":89048,
+ "feature_id":"7de3239f-60f9-4083-bdc2-09487c2a41b2",
+ "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":47.81,
+ "elevmin":27.08,
+ "elevmax":40.05,
+ "bldgarea":1333.88,
+ "comment":" ",
+ "OBJECTID_2":89048,
+ "Shape_Le_1":0.000575537320884,
+ "Shape_Ar_1":1.06399334792e-08,
+ "OBJECTID_3":89048,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89047,
+ "g_objectid":"944138",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361396",
+ "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":"66023004422081460000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000682377",
+ "g_geomet_1":"2.2088e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000575537320884,
+ "Shape_Area":1.06399334792e-08,
+ "Shape_Le_3":0.000575538059985,
+ "Shape_Ar_2":1.06399334792e-08,
+ "building_height":23.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1724,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5591562572773,
+ 45.53787659358022
+ ],
+ [
+ -73.55910476929151,
+ 45.53785184963345
+ ],
+ [
+ -73.5590648690703,
+ 45.537892949550276
+ ],
+ [
+ -73.55898436895531,
+ 45.53797564940699
+ ],
+ [
+ -73.55898496880312,
+ 45.53797594978055
+ ],
+ [
+ -73.55906278624043,
+ 45.53800696469995
+ ],
+ [
+ -73.5591562572773,
+ 45.53787659358022
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1724,
+ "ID_UEV":"01024596",
+ "CIVIQUE_DE":" 2620",
+ "CIVIQUE_FI":" 2622",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1903,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-12-8724-0-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000474674618851,
+ "OBJECTID":89050,
+ "Join_Count":1,
+ "TARGET_FID":89050,
+ "feature_id":"abf624aa-a869-40e4-8adc-faabc1c5da9a",
+ "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":53.16,
+ "elevmin":39.89,
+ "elevmax":42.46,
+ "bldgarea":676.64,
+ "comment":" ",
+ "OBJECTID_2":89050,
+ "Shape_Le_1":0.000474674618851,
+ "Shape_Ar_1":1.12498275895e-08,
+ "OBJECTID_3":89050,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89049,
+ "g_objectid":"944140",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361398",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004412872400000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000682503",
+ "g_geomet_1":"2.20932e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000474674618851,
+ "Shape_Area":1.12498275895e-08,
+ "Shape_Le_3":0.000474675181128,
+ "Shape_Ar_2":1.12498275895e-08,
+ "building_height":26.325
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1725,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55615461706377,
+ 45.5208868110278
+ ],
+ [
+ -73.55635143279423,
+ 45.520976850251735
+ ],
+ [
+ -73.55640956676993,
+ 45.520918147904496
+ ],
+ [
+ -73.55641156686217,
+ 45.52091604798752
+ ],
+ [
+ -73.55622876706579,
+ 45.52083244790944
+ ],
+ [
+ -73.55622866724104,
+ 45.52083244790944
+ ],
+ [
+ -73.55621296687677,
+ 45.52084974816764
+ ],
+ [
+ -73.55619516749483,
+ 45.52084174779872
+ ],
+ [
+ -73.55615461706377,
+ 45.5208868110278
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55649856188097,
+ 45.520920496933684
+ ],
+ [
+ -73.55644136679749,
+ 45.52089194795533
+ ],
+ [
+ -73.55643686748928,
+ 45.520896448162844
+ ],
+ [
+ -73.55642206734638,
+ 45.520913348222734
+ ],
+ [
+ -73.55642236682061,
+ 45.52091354787223
+ ],
+ [
+ -73.55647866078341,
+ 45.5209423342716
+ ],
+ [
+ -73.55649856188097,
+ 45.520920496933684
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5562283758607,
+ 45.52078837123664
+ ],
+ [
+ -73.55622736682136,
+ 45.52078934790038
+ ],
+ [
+ -73.55638856670083,
+ 45.52087154773404
+ ],
+ [
+ -73.55639551036636,
+ 45.520864831596995
+ ],
+ [
+ -73.5562283758607,
+ 45.52078837123664
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1725,
+ "ID_UEV":"01022275",
+ "CIVIQUE_DE":" 1361",
+ "CIVIQUE_FI":" 1369",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-9932-8-000-0000",
+ "SUPERFICIE":312,
+ "SUPERFIC_1":435,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00116824945502,
+ "OBJECTID":89058,
+ "Join_Count":3,
+ "TARGET_FID":89058,
+ "feature_id":"4d9b7d78-fb48-450c-a6d5-807d5a5f21a4",
+ "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.44,
+ "heightmax":14.23,
+ "elevmin":25.27,
+ "elevmax":27.82,
+ "bldgarea":1882.83,
+ "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_2":89058,
+ "Shape_Le_1":0.00116824945502,
+ "Shape_Ar_1":1.98601426937e-08,
+ "OBJECTID_3":89058,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89057,
+ "g_objectid":"942151",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567477",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004233993280000000",
+ "g_sup_tota":"312.2",
+ "g_geometry":"0.000862124",
+ "g_geomet_1":"3.66118e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00116824945502,
+ "Shape_Area":1.98601426937e-08,
+ "Shape_Le_3":0.00116824976341,
+ "Shape_Ar_2":1.98601426937e-08,
+ "building_height":5.8950000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1726,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56005562878609,
+ 45.53646605281638
+ ],
+ [
+ -73.56015977027901,
+ 45.536503249675526
+ ],
+ [
+ -73.5602507699789,
+ 45.536377250160264
+ ],
+ [
+ -73.56024917008497,
+ 45.536376649413135
+ ],
+ [
+ -73.56021767043099,
+ 45.53636385026177
+ ],
+ [
+ -73.5602225699375,
+ 45.53635794980983
+ ],
+ [
+ -73.56021737005743,
+ 45.536356150266414
+ ],
+ [
+ -73.5601834701129,
+ 45.536344049888285
+ ],
+ [
+ -73.56015145604671,
+ 45.53633259882067
+ ],
+ [
+ -73.56005562878609,
+ 45.53646605281638
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1726,
+ "ID_UEV":"01023862",
+ "CIVIQUE_DE":" 2645",
+ "CIVIQUE_FI":" 2645",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-10-0260-7-000-0000",
+ "SUPERFICIE":366,
+ "SUPERFIC_1":269,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000549181990981,
+ "OBJECTID":89070,
+ "Join_Count":1,
+ "TARGET_FID":89070,
+ "feature_id":"288e0351-22e9-4c1c-bd6c-ffe1b9b52006",
+ "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":48.66,
+ "elevmin":38.46,
+ "elevmax":40.04,
+ "bldgarea":290.37,
+ "comment":" ",
+ "OBJECTID_2":89070,
+ "Shape_Le_1":0.000549181990981,
+ "Shape_Ar_1":1.72148737187e-08,
+ "OBJECTID_3":89070,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89069,
+ "g_objectid":"944196",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361470",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004410125560000000",
+ "g_sup_tota":"371.2",
+ "g_geometry":"0.000917481",
+ "g_geomet_1":"4.27647e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000549181990981,
+ "Shape_Area":1.72148737187e-08,
+ "Shape_Le_3":0.000549181440441,
+ "Shape_Ar_2":1.72148737187e-08,
+ "building_height":24.069999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1727,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55227294796002,
+ 45.5367254226904
+ ],
+ [
+ -73.55235928827238,
+ 45.53675738189795
+ ],
+ [
+ -73.55242216976916,
+ 45.53666834901539
+ ],
+ [
+ -73.55238696670699,
+ 45.536654449993165
+ ],
+ [
+ -73.55234296737589,
+ 45.53664584977644
+ ],
+ [
+ -73.55234666718678,
+ 45.53663784940752
+ ],
+ [
+ -73.55236106713139,
+ 45.536610549587486
+ ],
+ [
+ -73.55235516667945,
+ 45.53660901354544
+ ],
+ [
+ -73.55227294796002,
+ 45.5367254226904
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1727,
+ "ID_UEV":"01025018",
+ "CIVIQUE_DE":" 2115",
+ "CIVIQUE_FI":" 2115",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-1188-3-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000472037842767,
+ "OBJECTID":89071,
+ "Join_Count":1,
+ "TARGET_FID":89071,
+ "feature_id":"cc1e4d13-2710-4040-97b1-cbdbd74c343f",
+ "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.54,
+ "heightmax":27.25,
+ "elevmin":18.99,
+ "elevmax":20.32,
+ "bldgarea":1013.12,
+ "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_2":89071,
+ "Shape_Le_1":0.000472037842767,
+ "Shape_Ar_1":9.85682696916e-09,
+ "OBJECTID_3":89071,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89070,
+ "g_objectid":"943749",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470188470000000",
+ "g_sup_tota":"187",
+ "g_geometry":"0.000669012",
+ "g_geomet_1":"2.15371e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000472037842767,
+ "Shape_Area":9.85682696916e-09,
+ "Shape_Le_3":0.000472037747621,
+ "Shape_Ar_2":9.85682696916e-09,
+ "building_height":13.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1728,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55227551822243,
+ 45.53656757998013
+ ],
+ [
+ -73.55219656674001,
+ 45.53669714980391
+ ],
+ [
+ -73.55227294796002,
+ 45.5367254226904
+ ],
+ [
+ -73.55235516667945,
+ 45.53660901354544
+ ],
+ [
+ -73.55232766720992,
+ 45.53660184954602
+ ],
+ [
+ -73.55233876754194,
+ 45.53658084947692
+ ],
+ [
+ -73.5522774625567,
+ 45.536564827155345
+ ],
+ [
+ -73.55227551822243,
+ 45.53656757998013
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1728,
+ "ID_UEV":"01025020",
+ "CIVIQUE_DE":" 2101",
+ "CIVIQUE_FI":" 2103",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1947,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-1884-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":97,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00049459685268,
+ "OBJECTID":89072,
+ "Join_Count":1,
+ "TARGET_FID":89072,
+ "feature_id":"cc1e4d13-2710-4040-97b1-cbdbd74c343f",
+ "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.54,
+ "heightmax":27.25,
+ "elevmin":18.99,
+ "elevmax":20.32,
+ "bldgarea":1013.12,
+ "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_2":89072,
+ "Shape_Le_1":0.00049459685268,
+ "Shape_Ar_1":1.29570040466e-08,
+ "OBJECTID_3":89072,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89071,
+ "g_objectid":"943749",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360901",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470188470000000",
+ "g_sup_tota":"187",
+ "g_geometry":"0.000669012",
+ "g_geomet_1":"2.15371e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00049459685268,
+ "Shape_Area":1.29570040466e-08,
+ "Shape_Le_3":0.00049459664343,
+ "Shape_Ar_2":1.29570040466e-08,
+ "building_height":13.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1729,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55437819521939,
+ 45.53781941648318
+ ],
+ [
+ -73.5543944684518,
+ 45.53782535110936
+ ],
+ [
+ -73.5544648439992,
+ 45.537850933224284
+ ],
+ [
+ -73.55454485488299,
+ 45.53773915918514
+ ],
+ [
+ -73.55449556843757,
+ 45.537726251215815
+ ],
+ [
+ -73.55451346854359,
+ 45.537692650745534
+ ],
+ [
+ -73.55448386825776,
+ 45.53768485092542
+ ],
+ [
+ -73.55447606753833,
+ 45.53768269075387
+ ],
+ [
+ -73.55445867105267,
+ 45.537706994032845
+ ],
+ [
+ -73.55445536784279,
+ 45.537712951142076
+ ],
+ [
+ -73.55445456474821,
+ 45.537712729009534
+ ],
+ [
+ -73.55437819521939,
+ 45.53781941648318
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1729,
+ "ID_UEV":"01025110",
+ "CIVIQUE_DE":" 2282",
+ "CIVIQUE_FI":" 2286",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-52-4504-6-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000526123893476,
+ "OBJECTID":89073,
+ "Join_Count":1,
+ "TARGET_FID":89073,
+ "feature_id":"ee598ffa-6e9b-4a71-ba9b-2c7cca213f6d",
+ "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":35.53,
+ "elevmin":18.68,
+ "elevmax":24.19,
+ "bldgarea":2418.71,
+ "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_2":89073,
+ "Shape_Le_1":0.000526123893476,
+ "Shape_Ar_1":1.33354512965e-08,
+ "OBJECTID_3":89073,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89072,
+ "g_objectid":"943998",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361208",
+ "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":"66023004452380820000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000669615",
+ "g_geomet_1":"2.15245e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000526123893476,
+ "Shape_Area":1.33354512965e-08,
+ "Shape_Le_3":0.00052612396219,
+ "Shape_Ar_2":1.33354512965e-08,
+ "building_height":17.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1730,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55835572575798,
+ 45.53362035414632
+ ],
+ [
+ -73.55843782216961,
+ 45.53365739272479
+ ],
+ [
+ -73.55853114032172,
+ 45.53355699870682
+ ],
+ [
+ -73.55844866799347,
+ 45.533520364823275
+ ],
+ [
+ -73.55835572575798,
+ 45.53362035414632
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1730,
+ "ID_UEV":"01023231",
+ "CIVIQUE_DE":" 2316",
+ "CIVIQUE_FI":" 2320",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1912,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-3238-6-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":263,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000453887207495,
+ "OBJECTID":89108,
+ "Join_Count":1,
+ "TARGET_FID":89108,
+ "feature_id":"4bacb033-2d1d-46d5-a267-28cce712eae4",
+ "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.47,
+ "heightmax":42.06,
+ "elevmin":21.6,
+ "elevmax":31.04,
+ "bldgarea":2833.95,
+ "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_2":89108,
+ "Shape_Le_1":0.000453887207495,
+ "Shape_Ar_1":1.167474063e-08,
+ "OBJECTID_3":89108,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89107,
+ "g_objectid":"941356",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425362",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327323860000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000807633",
+ "g_geomet_1":"2.67951e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000453887207495,
+ "Shape_Area":1.167474063e-08,
+ "Shape_Le_3":0.000453888175734,
+ "Shape_Ar_2":1.167474063e-08,
+ "building_height":19.795
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1731,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55358550219101,
+ 45.53668303674305
+ ],
+ [
+ -73.55358006668857,
+ 45.53668094941658
+ ],
+ [
+ -73.55356466669785,
+ 45.53667564971176
+ ],
+ [
+ -73.55361736696976,
+ 45.53659874958292
+ ],
+ [
+ -73.55314906749732,
+ 45.53642944950978
+ ],
+ [
+ -73.55314656738203,
+ 45.53643284984644
+ ],
+ [
+ -73.55301151978766,
+ 45.536619135415066
+ ],
+ [
+ -73.55349090790092,
+ 45.5367891531472
+ ],
+ [
+ -73.55351296737139,
+ 45.53676165008038
+ ],
+ [
+ -73.5535254994241,
+ 45.53676659545231
+ ],
+ [
+ -73.55358550219101,
+ 45.53668303674305
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55308429292762,
+ 45.53646795218454
+ ],
+ [
+ -73.55306907100267,
+ 45.53648914920517
+ ],
+ [
+ -73.55308456722085,
+ 45.536468050210644
+ ],
+ [
+ -73.55308429292762,
+ 45.53646795218454
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1731,
+ "ID_UEV":"01024814",
+ "CIVIQUE_DE":" 2158",
+ "CIVIQUE_FI":" 2160",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1917,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-3677-4-000-0000",
+ "SUPERFICIE":1119,
+ "SUPERFIC_1":2028,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00156041380996,
+ "OBJECTID":89109,
+ "Join_Count":2,
+ "TARGET_FID":89109,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":89109,
+ "Shape_Le_1":0.00156041380996,
+ "Shape_Ar_1":1.14297112656e-07,
+ "OBJECTID_3":89109,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89108,
+ "g_objectid":"943722",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360870",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004460606670000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000668839",
+ "g_geomet_1":"2.1481e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00156041380996,
+ "Shape_Area":1.14297112656e-07,
+ "Shape_Le_3":0.00156041494616,
+ "Shape_Ar_2":1.14297112656e-07,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1732,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56212926037891,
+ 45.53109631419384
+ ],
+ [
+ -73.56218616048476,
+ 45.53112278753691
+ ],
+ [
+ -73.56225918993151,
+ 45.531044133730084
+ ],
+ [
+ -73.56225137032632,
+ 45.53104024865884
+ ],
+ [
+ -73.56229187039534,
+ 45.530999648765075
+ ],
+ [
+ -73.5622419013645,
+ 45.530975000146434
+ ],
+ [
+ -73.56212926037891,
+ 45.53109631419384
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1732,
+ "ID_UEV":"01022554",
+ "CIVIQUE_DE":" 2428",
+ "CIVIQUE_FI":" 2432",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-3857-5-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000457428702805,
+ "OBJECTID":89110,
+ "Join_Count":1,
+ "TARGET_FID":89110,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":89110,
+ "Shape_Le_1":0.000457428702805,
+ "Shape_Ar_1":9.4235476235e-09,
+ "OBJECTID_3":89110,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89109,
+ "g_objectid":"940342",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423674",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394385750000000",
+ "g_sup_tota":"151.2",
+ "g_geometry":"0.00070845",
+ "g_geomet_1":"1.74059e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000457428702805,
+ "Shape_Area":9.4235476235e-09,
+ "Shape_Le_3":0.000457427539201,
+ "Shape_Ar_2":9.4235476235e-09,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1733,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56008692249532,
+ 45.537428223084326
+ ],
+ [
+ -73.56025111082195,
+ 45.537486424509176
+ ],
+ [
+ -73.56028557014479,
+ 45.537428750087045
+ ],
+ [
+ -73.56028277055526,
+ 45.53742794969042
+ ],
+ [
+ -73.56012737040366,
+ 45.537380450197915
+ ],
+ [
+ -73.56011326993331,
+ 45.53737614963989
+ ],
+ [
+ -73.56010477044065,
+ 45.5373901502855
+ ],
+ [
+ -73.5601083704268,
+ 45.537391149432295
+ ],
+ [
+ -73.56008692249532,
+ 45.537428223084326
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1733,
+ "ID_UEV":"01026122",
+ "CIVIQUE_DE":" 2670",
+ "CIVIQUE_FI":" 2674",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-0268-8-000-0000",
+ "SUPERFICIE":234,
+ "SUPERFIC_1":200,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000484480012703,
+ "OBJECTID":89114,
+ "Join_Count":1,
+ "TARGET_FID":89114,
+ "feature_id":"2b14c272-2d1b-4b8f-a0e7-3dd28f275e8b",
+ "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.84,
+ "heightmax":53.35,
+ "elevmin":42,
+ "elevmax":43.21,
+ "bldgarea":436.94,
+ "comment":" ",
+ "OBJECTID_2":89114,
+ "Shape_Le_1":0.000484480012703,
+ "Shape_Ar_1":1.08720968461e-08,
+ "OBJECTID_3":89114,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89113,
+ "g_objectid":"944188",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361456",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411026880000000",
+ "g_sup_tota":"234.4",
+ "g_geometry":"0.000874656",
+ "g_geomet_1":"2.68827e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000484480012703,
+ "Shape_Area":1.08720968461e-08,
+ "Shape_Le_3":0.000484479756061,
+ "Shape_Ar_2":1.08720968461e-08,
+ "building_height":26.255
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1734,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5603105074458,
+ 45.53692677460126
+ ],
+ [
+ -73.5602997704399,
+ 45.53695264989517
+ ],
+ [
+ -73.56029966971583,
+ 45.53695264989517
+ ],
+ [
+ -73.56026967013102,
+ 45.5370003499365
+ ],
+ [
+ -73.56045037001041,
+ 45.53705665019454
+ ],
+ [
+ -73.56045697013491,
+ 45.537058650286774
+ ],
+ [
+ -73.56050268447315,
+ 45.536987357430895
+ ],
+ [
+ -73.5603105074458,
+ 45.53692677460126
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1734,
+ "ID_UEV":"01026128",
+ "CIVIQUE_DE":" 2594",
+ "CIVIQUE_FI":" 2598",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-01-8621-1-000-0000",
+ "SUPERFICIE":374,
+ "SUPERFIC_1":242,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000566817498054,
+ "OBJECTID":89117,
+ "Join_Count":1,
+ "TARGET_FID":89117,
+ "feature_id":"edeb1d96-3d24-4caa-a28c-15bb47bb7b26",
+ "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.39,
+ "heightmax":53.09,
+ "elevmin":41.71,
+ "elevmax":43.13,
+ "bldgarea":667.98,
+ "comment":" ",
+ "OBJECTID_2":89117,
+ "Shape_Le_1":0.000566817498054,
+ "Shape_Ar_1":1.61899179759e-08,
+ "OBJECTID_3":89117,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89116,
+ "g_objectid":"944199",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361474",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004401862110000000",
+ "g_sup_tota":"374",
+ "g_geometry":"0.00103177",
+ "g_geomet_1":"4.30818e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000566817498054,
+ "Shape_Area":1.61899179759e-08,
+ "Shape_Le_3":0.00056681929525,
+ "Shape_Ar_2":1.61899179759e-08,
+ "building_height":25.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1735,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55773222488412,
+ 45.53863117963553
+ ],
+ [
+ -73.55773826922758,
+ 45.53863445046981
+ ],
+ [
+ -73.55774906918604,
+ 45.538639350875634
+ ],
+ [
+ -73.55781564689643,
+ 45.538667235255
+ ],
+ [
+ -73.55789940255723,
+ 45.53854956705917
+ ],
+ [
+ -73.55782846943016,
+ 45.5385270507331
+ ],
+ [
+ -73.55781039395636,
+ 45.53852135892387
+ ],
+ [
+ -73.55773222488412,
+ 45.53863117963553
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1735,
+ "ID_UEV":"01024933",
+ "CIVIQUE_DE":" 2563",
+ "CIVIQUE_FI":" 2567",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-23-8702-3-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":209,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000463516407858,
+ "OBJECTID":89118,
+ "Join_Count":1,
+ "TARGET_FID":89118,
+ "feature_id":"2a540e9d-5f42-4b5a-9b81-dc3f2618e82a",
+ "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":42.58,
+ "elevmin":26.8,
+ "elevmax":34.1,
+ "bldgarea":1269.01,
+ "comment":" ",
+ "OBJECTID_2":89118,
+ "Shape_Le_1":0.000463516407858,
+ "Shape_Ar_1":1.24495465754e-08,
+ "OBJECTID_3":89118,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89117,
+ "g_objectid":"944068",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361312",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004423870230000000",
+ "g_sup_tota":"187.6",
+ "g_geometry":"0.00067106",
+ "g_geomet_1":"2.16062e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000463516407858,
+ "Shape_Area":1.24495465754e-08,
+ "Shape_Le_3":0.000463517604441,
+ "Shape_Ar_2":1.24495465754e-08,
+ "building_height":21.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1736,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55987889131963,
+ 45.53516339022857
+ ],
+ [
+ -73.55987893898369,
+ 45.535163412711626
+ ],
+ [
+ -73.55987514744194,
+ 45.5351678256849
+ ],
+ [
+ -73.56002751328096,
+ 45.53523255348985
+ ],
+ [
+ -73.5601056211993,
+ 45.53513716689703
+ ],
+ [
+ -73.5599582160207,
+ 45.535070494757825
+ ],
+ [
+ -73.55995720428339,
+ 45.53507167017174
+ ],
+ [
+ -73.55995717730373,
+ 45.53507165398394
+ ],
+ [
+ -73.55995665299898,
+ 45.53507142645546
+ ],
+ [
+ -73.55992813459758,
+ 45.53510449092981
+ ],
+ [
+ -73.55987781662978,
+ 45.53516289200416
+ ],
+ [
+ -73.55987834902842,
+ 45.53516313931772
+ ],
+ [
+ -73.55987890480945,
+ 45.5351633749401
+ ],
+ [
+ -73.55987889131963,
+ 45.53516339022857
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1736,
+ "ID_UEV":"01023429",
+ "CIVIQUE_DE":" 2550",
+ "CIVIQUE_FI":" 2550",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-1112-2-000-0000",
+ "SUPERFICIE":402,
+ "SUPERFIC_1":469,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000580655921853,
+ "OBJECTID":89119,
+ "Join_Count":1,
+ "TARGET_FID":89119,
+ "feature_id":"fa0c93d1-98e4-4366-8e95-0841211f87ae",
+ "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.49,
+ "heightmax":51.84,
+ "elevmin":30.22,
+ "elevmax":42.34,
+ "bldgarea":1501.36,
+ "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_2":89119,
+ "Shape_Le_1":0.000580655921853,
+ "Shape_Ar_1":1.98458703903e-08,
+ "OBJECTID_3":89119,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89118,
+ "g_objectid":"941445",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425473",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319210630000000",
+ "g_sup_tota":"263.6",
+ "g_geometry":"0.00080887",
+ "g_geomet_1":"3.05633e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000580655921853,
+ "Shape_Area":1.98458703903e-08,
+ "Shape_Le_3":0.000580656027018,
+ "Shape_Ar_2":1.98458703903e-08,
+ "building_height":25.175
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1737,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56002751328096,
+ 45.53523255348985
+ ],
+ [
+ -73.5601804636793,
+ 45.53529753130632
+ ],
+ [
+ -73.56025565059964,
+ 45.53520502793998
+ ],
+ [
+ -73.5601056211993,
+ 45.53513716689703
+ ],
+ [
+ -73.56002751328096,
+ 45.53523255348985
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1737,
+ "ID_UEV":"01023432",
+ "CIVIQUE_DE":" 2560",
+ "CIVIQUE_FI":" 2562",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-0019-0-000-0000",
+ "SUPERFICIE":398,
+ "SUPERFIC_1":472,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000573323063831,
+ "OBJECTID":89120,
+ "Join_Count":1,
+ "TARGET_FID":89120,
+ "feature_id":"fa0c93d1-98e4-4366-8e95-0841211f87ae",
+ "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.49,
+ "heightmax":51.84,
+ "elevmin":30.22,
+ "elevmax":42.34,
+ "bldgarea":1501.36,
+ "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_2":89120,
+ "Shape_Le_1":0.000573323063831,
+ "Shape_Ar_1":1.9321737882e-08,
+ "OBJECTID_3":89120,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89119,
+ "g_objectid":"941448",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425475",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319111220000000",
+ "g_sup_tota":"800.5",
+ "g_geometry":"0.00124689",
+ "g_geomet_1":"9.22125e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000573323063831,
+ "Shape_Area":1.9321737882e-08,
+ "Shape_Le_3":0.000573322158486,
+ "Shape_Ar_2":1.9321737882e-08,
+ "building_height":25.175
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1738,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55193822299245,
+ 45.5380669359906
+ ],
+ [
+ -73.55194056752502,
+ 45.53806785060112
+ ],
+ [
+ -73.55202436635327,
+ 45.538100561641905
+ ],
+ [
+ -73.55211172289954,
+ 45.537978782645
+ ],
+ [
+ -73.55202320442919,
+ 45.537947917912376
+ ],
+ [
+ -73.55193822299245,
+ 45.5380669359906
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1738,
+ "ID_UEV":"01025410",
+ "CIVIQUE_DE":" 2171",
+ "CIVIQUE_FI":" 2181",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-3736-3-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":321,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000482333413737,
+ "OBJECTID":89139,
+ "Join_Count":1,
+ "TARGET_FID":89139,
+ "feature_id":"790eafe7-0226-4b40-905a-d279325ae83c",
+ "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.67,
+ "heightmax":13.66,
+ "elevmin":19.18,
+ "elevmax":20.54,
+ "bldgarea":1826.79,
+ "comment":" ",
+ "OBJECTID_2":89139,
+ "Shape_Le_1":0.000482333413737,
+ "Shape_Ar_1":1.32930846417e-08,
+ "OBJECTID_3":89139,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89138,
+ "g_objectid":"943863",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361040",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472373630000000",
+ "g_sup_tota":"187.9",
+ "g_geometry":"0.000668993",
+ "g_geomet_1":"2.16426e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000482333413737,
+ "Shape_Area":1.32930846417e-08,
+ "Shape_Le_3":0.000482333085475,
+ "Shape_Ar_2":1.32930846417e-08,
+ "building_height":6.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1739,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55185216416788,
+ 45.538033368795226
+ ],
+ [
+ -73.55193822299245,
+ 45.5380669359906
+ ],
+ [
+ -73.55202320442919,
+ 45.537947917912376
+ ],
+ [
+ -73.55193511043885,
+ 45.53791720066857
+ ],
+ [
+ -73.55185216416788,
+ 45.538033368795226
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1739,
+ "ID_UEV":"01025413",
+ "CIVIQUE_DE":" 2159",
+ "CIVIQUE_FI":" 2169",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-4432-8-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":321,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000474653677412,
+ "OBJECTID":89140,
+ "Join_Count":1,
+ "TARGET_FID":89140,
+ "feature_id":"790eafe7-0226-4b40-905a-d279325ae83c",
+ "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.67,
+ "heightmax":13.66,
+ "elevmin":19.18,
+ "elevmax":20.54,
+ "bldgarea":1826.79,
+ "comment":" ",
+ "OBJECTID_2":89140,
+ "Shape_Le_1":0.000474653677412,
+ "Shape_Ar_1":1.29383416841e-08,
+ "OBJECTID_3":89140,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89139,
+ "g_objectid":"943863",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361040",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472373630000000",
+ "g_sup_tota":"187.9",
+ "g_geometry":"0.000668993",
+ "g_geomet_1":"2.16426e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000474653677412,
+ "Shape_Area":1.29383416841e-08,
+ "Shape_Le_3":0.000474654234027,
+ "Shape_Ar_2":1.29383416841e-08,
+ "building_height":6.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1740,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56011414137637,
+ 45.529192250672125
+ ],
+ [
+ -73.5601428693198,
+ 45.529205349297726
+ ],
+ [
+ -73.56019278079404,
+ 45.529227977139726
+ ],
+ [
+ -73.56029036622927,
+ 45.52912524758241
+ ],
+ [
+ -73.5602665692686,
+ 45.529114549247346
+ ],
+ [
+ -73.56032406922226,
+ 45.52905134849124
+ ],
+ [
+ -73.56027090310154,
+ 45.52902740943769
+ ],
+ [
+ -73.56011414137637,
+ 45.529192250672125
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1740,
+ "ID_UEV":"01035235",
+ "CIVIQUE_DE":" 2180",
+ "CIVIQUE_FI":" 2184",
+ "NOM_RUE":"avenue De Lorimier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-02-9548-5-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":346,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00062538561417,
+ "OBJECTID":89147,
+ "Join_Count":1,
+ "TARGET_FID":89147,
+ "feature_id":"bf7bffe9-01f4-4ce2-932b-92a9e3470026",
+ "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.89,
+ "heightmax":39.58,
+ "elevmin":26.07,
+ "elevmax":28.18,
+ "bldgarea":1382.27,
+ "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_2":89147,
+ "Shape_Le_1":0.00062538561417,
+ "Shape_Ar_1":1.63653844301e-08,
+ "OBJECTID_3":89147,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89146,
+ "g_objectid":"943007",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885683",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004302954850000000",
+ "g_sup_tota":"187.3",
+ "g_geometry":"0.000701658",
+ "g_geomet_1":"2.16048e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00062538561417,
+ "Shape_Area":1.63653844301e-08,
+ "Shape_Le_3":0.000625386314149,
+ "Shape_Ar_2":1.63653844301e-08,
+ "building_height":18.345
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1741,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5601804636793,
+ 45.53529753130632
+ ],
+ [
+ -73.56028093503896,
+ 45.535340213130624
+ ],
+ [
+ -73.56043969235976,
+ 45.535149120685666
+ ],
+ [
+ -73.56037456975244,
+ 45.5351215501697
+ ],
+ [
+ -73.56032716918536,
+ 45.535176950206385
+ ],
+ [
+ -73.56030536871964,
+ 45.53516764941778
+ ],
+ [
+ -73.56029626937918,
+ 45.53516354940857
+ ],
+ [
+ -73.56025746902881,
+ 45.53520584992033
+ ],
+ [
+ -73.56025565059964,
+ 45.53520502793998
+ ],
+ [
+ -73.5601804636793,
+ 45.53529753130632
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1741,
+ "ID_UEV":"01023434",
+ "CIVIQUE_DE":" 2570",
+ "CIVIQUE_FI":" 2578",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1932,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-9025-9-000-0000",
+ "SUPERFICIE":269,
+ "SUPERFIC_1":474,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00071349004942,
+ "OBJECTID":89148,
+ "Join_Count":1,
+ "TARGET_FID":89148,
+ "feature_id":"fa0c93d1-98e4-4366-8e95-0841211f87ae",
+ "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.49,
+ "heightmax":51.84,
+ "elevmin":30.22,
+ "elevmax":42.34,
+ "bldgarea":1501.36,
+ "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_2":89148,
+ "Shape_Le_1":0.00071349004942,
+ "Shape_Ar_1":2.32953137517e-08,
+ "OBJECTID_3":89148,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89147,
+ "g_objectid":"941448",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425475",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319111220000000",
+ "g_sup_tota":"800.5",
+ "g_geometry":"0.00124689",
+ "g_geomet_1":"9.22125e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00071349004942,
+ "Shape_Area":2.32953137517e-08,
+ "Shape_Le_3":0.000713491033479,
+ "Shape_Ar_2":2.32953137517e-08,
+ "building_height":25.175
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1742,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56028093503896,
+ 45.535340213130624
+ ],
+ [
+ -73.56038108623999,
+ 45.53538275915731
+ ],
+ [
+ -73.56048863616347,
+ 45.53525330444674
+ ],
+ [
+ -73.56045816983053,
+ 45.5352421501554
+ ],
+ [
+ -73.56050646971964,
+ 45.53517745022944
+ ],
+ [
+ -73.5605063698949,
+ 45.53517734950537
+ ],
+ [
+ -73.56043969235976,
+ 45.535149120685666
+ ],
+ [
+ -73.56028093503896,
+ 45.535340213130624
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1742,
+ "ID_UEV":"01023437",
+ "CIVIQUE_DE":" 2580",
+ "CIVIQUE_FI":" 2588",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1933,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-8230-6-000-0000",
+ "SUPERFICIE":265,
+ "SUPERFIC_1":474,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000711282843562,
+ "OBJECTID":89149,
+ "Join_Count":1,
+ "TARGET_FID":89149,
+ "feature_id":"fa0c93d1-98e4-4366-8e95-0841211f87ae",
+ "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.49,
+ "heightmax":51.84,
+ "elevmin":30.22,
+ "elevmax":42.34,
+ "bldgarea":1501.36,
+ "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_2":89149,
+ "Shape_Le_1":0.000711282843562,
+ "Shape_Ar_1":2.3249044376e-08,
+ "OBJECTID_3":89149,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89148,
+ "g_objectid":"941451",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425481",
+ "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":"66023004309743450000000",
+ "g_sup_tota":"232.4",
+ "g_geometry":"0.000776616",
+ "g_geomet_1":"2.67672e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000711282843562,
+ "Shape_Area":2.3249044376e-08,
+ "Shape_Le_3":0.000711283918469,
+ "Shape_Ar_2":2.3249044376e-08,
+ "building_height":25.175
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1743,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55246697129553,
+ 45.53641455763602
+ ],
+ [
+ -73.5525551480235,
+ 45.53644394118523
+ ],
+ [
+ -73.5526367129358,
+ 45.53633035950878
+ ],
+ [
+ -73.55254765936883,
+ 45.53630219813823
+ ],
+ [
+ -73.55246697129553,
+ 45.53641455763602
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1743,
+ "ID_UEV":"01024802",
+ "CIVIQUE_DE":" 2114",
+ "CIVIQUE_FI":" 2118",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-60-9449-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":199,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00046450887667,
+ "OBJECTID":89153,
+ "Join_Count":1,
+ "TARGET_FID":89153,
+ "feature_id":"3388ec8c-d877-4e21-b6f0-59000bdb1880",
+ "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,
+ "heightmax":32.81,
+ "elevmin":18.37,
+ "elevmax":21.56,
+ "bldgarea":2326.81,
+ "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_2":89153,
+ "Shape_Le_1":0.00046450887667,
+ "Shape_Ar_1":1.23451495674e-08,
+ "OBJECTID_3":89153,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89152,
+ "g_objectid":"943716",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360864",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470014540000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.00066884",
+ "g_geomet_1":"2.14812e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00046450887667,
+ "Shape_Area":1.23451495674e-08,
+ "Shape_Le_3":0.00046450832262,
+ "Shape_Ar_2":1.23451495674e-08,
+ "building_height":16.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1744,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56086377936177,
+ 45.508395268277305
+ ],
+ [
+ -73.56104103933434,
+ 45.50847618567772
+ ],
+ [
+ -73.56114527255812,
+ 45.50837013852137
+ ],
+ [
+ -73.56107292299885,
+ 45.50834392688102
+ ],
+ [
+ -73.56106732921572,
+ 45.508350102525505
+ ],
+ [
+ -73.56095510641488,
+ 45.508296896834615
+ ],
+ [
+ -73.56086377936177,
+ 45.508395268277305
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1744,
+ "ID_UEV":"01058700",
+ "CIVIQUE_DE":" 1090",
+ "CIVIQUE_FI":" 1096",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-09-3342-0-000-0000",
+ "SUPERFICIE":221,
+ "SUPERFIC_1":644,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000687261748842,
+ "OBJECTID":89154,
+ "Join_Count":1,
+ "TARGET_FID":89154,
+ "feature_id":"0520eaf1-de09-4fed-ba54-cd4540a0a632",
+ "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.69,
+ "heightmax":19.3,
+ "elevmin":18.23,
+ "elevmax":23.32,
+ "bldgarea":3355.98,
+ "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_2":89154,
+ "Shape_Le_1":0.000687261748842,
+ "Shape_Ar_1":2.56614654804e-08,
+ "OBJECTID_3":89154,
+ "Join_Cou_1":7,
+ "TARGET_F_1":89153,
+ "g_objectid":"938012",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1180611",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004009433530000000",
+ "g_sup_tota":"101.9",
+ "g_geometry":"0.000454238",
+ "g_geomet_1":"1.17045e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000687261748842,
+ "Shape_Area":2.56614654804e-08,
+ "Shape_Le_3":0.000687261785802,
+ "Shape_Ar_2":2.56614654804e-08,
+ "building_height":9.305
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1745,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55019691068073,
+ 45.523330349965974
+ ],
+ [
+ -73.55035431092456,
+ 45.523403693276116
+ ],
+ [
+ -73.55045940390022,
+ 45.52328483887451
+ ],
+ [
+ -73.55030092177196,
+ 45.5232114317125
+ ],
+ [
+ -73.55021920307561,
+ 45.52329948073674
+ ],
+ [
+ -73.55022556487977,
+ 45.52330274797374
+ ],
+ [
+ -73.55019691068073,
+ 45.523330349965974
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1745,
+ "ID_UEV":"01022207",
+ "CIVIQUE_DE":" 1235",
+ "CIVIQUE_FI":" 1243",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-86-6900-6-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":746,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000674024527532,
+ "OBJECTID":89156,
+ "Join_Count":1,
+ "TARGET_FID":89156,
+ "feature_id":"b994214a-cbe3-498f-804b-ea02120ce6ae",
+ "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.57,
+ "heightmax":29.42,
+ "elevmin":16.07,
+ "elevmax":18.07,
+ "bldgarea":785.52,
+ "comment":" ",
+ "OBJECTID_2":89156,
+ "Shape_Le_1":0.000674024527532,
+ "Shape_Ar_1":2.65937662079e-08,
+ "OBJECTID_3":89156,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89155,
+ "g_objectid":"942327",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729163",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004286690060000000",
+ "g_sup_tota":"242.2",
+ "g_geometry":"0.000683884",
+ "g_geomet_1":"2.78939e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000674024527532,
+ "Shape_Area":2.65937662079e-08,
+ "Shape_Le_3":0.000674025231939,
+ "Shape_Ar_2":2.65937662079e-08,
+ "building_height":13.425
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1746,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55223473037036,
+ 45.508947560831565
+ ],
+ [
+ -73.55245999975104,
+ 45.50903924671416
+ ],
+ [
+ -73.55255612378792,
+ 45.50891685797691
+ ],
+ [
+ -73.55255466508757,
+ 45.508916346262666
+ ],
+ [
+ -73.55231467830161,
+ 45.508832172417115
+ ],
+ [
+ -73.55223473037036,
+ 45.508947560831565
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1746,
+ "ID_UEV":"01091464",
+ "CIVIQUE_DE":" 411",
+ "CIVIQUE_FI":" 423",
+ "NOM_RUE":"rue Saint-Claude (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-70-0502-2-000-0000",
+ "SUPERFICIE":329,
+ "SUPERFIC_1":1145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000795082807864,
+ "OBJECTID":89162,
+ "Join_Count":1,
+ "TARGET_FID":89162,
+ "feature_id":"1c173422-5f2f-4899-b1b2-f97602aad6e6",
+ "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":42.48,
+ "elevmin":18.93,
+ "elevmax":27.71,
+ "bldgarea":1495.46,
+ "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_2":89162,
+ "Shape_Le_1":0.000795082807864,
+ "Shape_Ar_1":3.55071137354e-08,
+ "OBJECTID_3":89162,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89161,
+ "g_objectid":"939599",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181810",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004170050220000000",
+ "g_sup_tota":"329.2",
+ "g_geometry":"0.000815549",
+ "g_geomet_1":"3.79154e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000795082807864,
+ "Shape_Area":3.55071137354e-08,
+ "Shape_Le_3":0.000795082008071,
+ "Shape_Ar_2":3.55071137354e-08,
+ "building_height":20.99
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1747,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55248438576763,
+ 45.53785109420293
+ ],
+ [
+ -73.55254856948274,
+ 45.53787371754832
+ ],
+ [
+ -73.55262927913977,
+ 45.53776038678272
+ ],
+ [
+ -73.55256580139246,
+ 45.537736774183074
+ ],
+ [
+ -73.55248438576763,
+ 45.53785109420293
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1747,
+ "ID_UEV":"01025369",
+ "CIVIQUE_DE":" 2204",
+ "CIVIQUE_FI":" 2208",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-62-9409-2-000-0000",
+ "SUPERFICIE":137,
+ "SUPERFIC_1":203,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00041526205133,
+ "OBJECTID":89166,
+ "Join_Count":1,
+ "TARGET_FID":89166,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":89166,
+ "Shape_Le_1":0.00041526205133,
+ "Shape_Ar_1":9.13958198675e-09,
+ "OBJECTID_3":89166,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89165,
+ "g_objectid":"943844",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361005",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004462940920000000",
+ "g_sup_tota":"136.8",
+ "g_geometry":"0.000617692",
+ "g_geomet_1":"1.57507e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00041526205133,
+ "Shape_Area":9.13958198675e-09,
+ "Shape_Le_3":0.000415262120406,
+ "Shape_Ar_2":9.13958198675e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1748,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55590756790178,
+ 45.5389849504454
+ ],
+ [
+ -73.55593816823372,
+ 45.538999250565254
+ ],
+ [
+ -73.55594306774023,
+ 45.53900095118325
+ ],
+ [
+ -73.55596236809066,
+ 45.53897155054692
+ ],
+ [
+ -73.55602536829795,
+ 45.53899205059295
+ ],
+ [
+ -73.55602556794744,
+ 45.538992150417705
+ ],
+ [
+ -73.55603826817338,
+ 45.538971651270984
+ ],
+ [
+ -73.55603816834864,
+ 45.53897155054692
+ ],
+ [
+ -73.55597736788306,
+ 45.53895215127106
+ ],
+ [
+ -73.55600896826112,
+ 45.53890335045955
+ ],
+ [
+ -73.55598236811365,
+ 45.53889485096689
+ ],
+ [
+ -73.55606106778589,
+ 45.53877285073677
+ ],
+ [
+ -73.55609656852366,
+ 45.538784250543024
+ ],
+ [
+ -73.55609666834842,
+ 45.53878415071828
+ ],
+ [
+ -73.5561843684357,
+ 45.538662050663405
+ ],
+ [
+ -73.55617966767936,
+ 45.538660450769484
+ ],
+ [
+ -73.55598156771703,
+ 45.53859095116176
+ ],
+ [
+ -73.55581036827571,
+ 45.538831950584346
+ ],
+ [
+ -73.55581236836795,
+ 45.53883265115622
+ ],
+ [
+ -73.55586416841848,
+ 45.53885665046434
+ ],
+ [
+ -73.55582966772683,
+ 45.53889325107298
+ ],
+ [
+ -73.55588376824315,
+ 45.53891845097603
+ ],
+ [
+ -73.55594386813685,
+ 45.53894655119268
+ ],
+ [
+ -73.55590756790178,
+ 45.5389849504454
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1748,
+ "ID_UEV":"01025882",
+ "CIVIQUE_DE":" 2860",
+ "CIVIQUE_FI":" 2860",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1948,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services de l'automobile",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-43-3027-8-000-0000",
+ "SUPERFICIE":1304,
+ "SUPERFIC_1":367,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00144658183293,
+ "OBJECTID":89171,
+ "Join_Count":1,
+ "TARGET_FID":89171,
+ "feature_id":"f8838e9d-661f-4b15-b4b8-1cf4af990df4",
+ "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.58,
+ "heightmax":34.04,
+ "elevmin":23.71,
+ "elevmax":25.42,
+ "bldgarea":596.8,
+ "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_2":89171,
+ "Shape_Le_1":0.00144658183293,
+ "Shape_Ar_1":6.87607549928e-08,
+ "OBJECTID_3":89171,
+ "Join_Cou_1":1,
+ "TARGET_F_1":89170,
+ "g_objectid":"2322250",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"3361265",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6419",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004443302780000000",
+ "g_sup_tota":"1304.1",
+ "g_geometry":"0.0016489",
+ "g_geomet_1":"1.50235e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00144658183293,
+ "Shape_Area":6.87607549928e-08,
+ "Shape_Le_3":0.00144658456173,
+ "Shape_Ar_2":6.87607549928e-08,
+ "building_height":16.73
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1749,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55799924708943,
+ 45.5376488501646
+ ],
+ [
+ -73.55803926871913,
+ 45.537661849864776
+ ],
+ [
+ -73.55808784919672,
+ 45.5376776212755
+ ],
+ [
+ -73.55816660912356,
+ 45.53756664673365
+ ],
+ [
+ -73.55807988839797,
+ 45.53753522622001
+ ],
+ [
+ -73.55799924708943,
+ 45.5376488501646
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1749,
+ "ID_UEV":"01024577",
+ "CIVIQUE_DE":" 2540",
+ "CIVIQUE_FI":" 2544",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1946,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-6286-3-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":185,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000460808160894,
+ "OBJECTID":89172,
+ "Join_Count":1,
+ "TARGET_FID":89172,
+ "feature_id":"7de3239f-60f9-4083-bdc2-09487c2a41b2",
+ "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":47.81,
+ "elevmin":27.08,
+ "elevmax":40.05,
+ "bldgarea":1333.88,
+ "comment":" ",
+ "OBJECTID_2":89172,
+ "Shape_Le_1":0.000460808160894,
+ "Shape_Ar_1":1.22431415577e-08,
+ "OBJECTID_3":89172,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89171,
+ "g_objectid":"944129",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361387",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421698350000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681423",
+ "g_geomet_1":"2.20754e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000460808160894,
+ "Shape_Area":1.22431415577e-08,
+ "Shape_Le_3":0.000460808406359,
+ "Shape_Ar_2":1.22431415577e-08,
+ "building_height":23.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1750,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5603105074458,
+ 45.53692677460126
+ ],
+ [
+ -73.56050268447315,
+ 45.536987357430895
+ ],
+ [
+ -73.56054607046663,
+ 45.53691969783608
+ ],
+ [
+ -73.56035367490402,
+ 45.53685922022713
+ ],
+ [
+ -73.56033487008004,
+ 45.53689284947572
+ ],
+ [
+ -73.5603256700155,
+ 45.53689035025975
+ ],
+ [
+ -73.56032416994633,
+ 45.53689384952183
+ ],
+ [
+ -73.5603105074458,
+ 45.53692677460126
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1750,
+ "ID_UEV":"01026130",
+ "CIVIQUE_DE":" 2586",
+ "CIVIQUE_FI":" 2590",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-01-8313-5-000-0000",
+ "SUPERFICIE":264,
+ "SUPERFIC_1":234,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000571071581385,
+ "OBJECTID":89200,
+ "Join_Count":1,
+ "TARGET_FID":89200,
+ "feature_id":"edeb1d96-3d24-4caa-a28c-15bb47bb7b26",
+ "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.39,
+ "heightmax":53.09,
+ "elevmin":41.71,
+ "elevmax":43.13,
+ "bldgarea":667.98,
+ "comment":" ",
+ "OBJECTID_2":89200,
+ "Shape_Le_1":0.000571071581385,
+ "Shape_Ar_1":1.57161624085e-08,
+ "OBJECTID_3":89200,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89199,
+ "g_objectid":"944200",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361475",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004401790590000000",
+ "g_sup_tota":"254.9",
+ "g_geometry":"0.000919027",
+ "g_geomet_1":"2.93641e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000571071581385,
+ "Shape_Area":1.57161624085e-08,
+ "Shape_Le_3":0.000571069976998,
+ "Shape_Ar_2":1.57161624085e-08,
+ "building_height":25.85
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1751,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56196526990313,
+ 45.53240394913324
+ ],
+ [
+ -73.56199217042418,
+ 45.532415749137805
+ ],
+ [
+ -73.56198066989384,
+ 45.532428649013234
+ ],
+ [
+ -73.56198367003219,
+ 45.53243004925766
+ ],
+ [
+ -73.56217397017443,
+ 45.53251704877308
+ ],
+ [
+ -73.56223387041862,
+ 45.53246744846427
+ ],
+ [
+ -73.56221116973154,
+ 45.532453948741036
+ ],
+ [
+ -73.5622281705155,
+ 45.53243984917
+ ],
+ [
+ -73.56222796996668,
+ 45.53243974844593
+ ],
+ [
+ -73.5621262701331,
+ 45.532381548819714
+ ],
+ [
+ -73.56212617030836,
+ 45.532381548819714
+ ],
+ [
+ -73.56209647019779,
+ 45.5323690491426
+ ],
+ [
+ -73.56206907055301,
+ 45.53235704858922
+ ],
+ [
+ -73.5620550699074,
+ 45.5323727489535
+ ],
+ [
+ -73.56201057055323,
+ 45.532353149128824
+ ],
+ [
+ -73.56196526990313,
+ 45.53240394913324
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56188103850097,
+ 45.532429240767144
+ ],
+ [
+ -73.56188635709155,
+ 45.532431715701414
+ ],
+ [
+ -73.56195727043352,
+ 45.53235264910577
+ ],
+ [
+ -73.56195362817924,
+ 45.532351034822696
+ ],
+ [
+ -73.56188103850097,
+ 45.532429240767144
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1751,
+ "ID_UEV":"01026196",
+ "CIVIQUE_DE":" 2200",
+ "CIVIQUE_FI":" 2200",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":13,
+ "ANNEE_CONS":1945,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-96-4916-3-000-0000",
+ "SUPERFICIE":533,
+ "SUPERFIC_1":533,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000925599563458,
+ "OBJECTID":89202,
+ "Join_Count":2,
+ "TARGET_FID":89202,
+ "feature_id":"5483bc68-1604-4734-b176-7d77f9df3a95",
+ "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.07,
+ "heightmax":13.16,
+ "elevmin":42.37,
+ "elevmax":43.48,
+ "bldgarea":197.92,
+ "comment":" ",
+ "OBJECTID_2":89202,
+ "Shape_Le_1":0.000925599563458,
+ "Shape_Ar_1":2.33071017762e-08,
+ "OBJECTID_3":89202,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89201,
+ "g_objectid":"940411",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423798",
+ "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":"66023994396670820000000",
+ "g_sup_tota":"198.7",
+ "g_geometry":"0.000708266",
+ "g_geomet_1":"2.33363e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000925599563458,
+ "Shape_Area":2.33071017762e-08,
+ "Shape_Le_3":0.000925601897674,
+ "Shape_Ar_2":2.33071017762e-08,
+ "building_height":6.045
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1752,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54824611298957,
+ 45.52235515121955
+ ],
+ [
+ -73.54827306387264,
+ 45.52236674797733
+ ],
+ [
+ -73.54825066445844,
+ 45.52239254772819
+ ],
+ [
+ -73.54825086410794,
+ 45.522392647552934
+ ],
+ [
+ -73.54828821834845,
+ 45.522405967411764
+ ],
+ [
+ -73.54837303970587,
+ 45.52231313489356
+ ],
+ [
+ -73.54831119872469,
+ 45.52228391951757
+ ],
+ [
+ -73.54824611298957,
+ 45.52235515121955
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1752,
+ "ID_UEV":"01022215",
+ "CIVIQUE_DE":" 1091",
+ "CIVIQUE_FI":" 1091",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1880,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0142-04-2693-2-000-0000",
+ "SUPERFICIE":87,
+ "SUPERFIC_1":129,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00039402076805,
+ "OBJECTID":89210,
+ "Join_Count":1,
+ "TARGET_FID":89210,
+ "feature_id":"c968f777-9b05-4fc3-a08f-b68a197ed310",
+ "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":10.51,
+ "elevmin":17.32,
+ "elevmax":18.63,
+ "bldgarea":338.42,
+ "comment":" ",
+ "OBJECTID_2":89210,
+ "Shape_Le_1":0.00039402076805,
+ "Shape_Ar_1":7.45745605876e-09,
+ "OBJECTID_3":89210,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89209,
+ "g_objectid":"939675",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182617",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014205190170000000",
+ "g_sup_tota":"324.3",
+ "g_geometry":"0.000809784",
+ "g_geomet_1":"3.73502e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00039402076805,
+ "Shape_Area":7.45745605876e-09,
+ "Shape_Le_3":0.000394019474072,
+ "Shape_Ar_2":7.45745605876e-09,
+ "building_height":5.0
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1753,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56048624216818,
+ 45.535398553051074
+ ],
+ [
+ -73.56057452231819,
+ 45.53543371114715
+ ],
+ [
+ -73.5606422061947,
+ 45.53535321822673
+ ],
+ [
+ -73.56057122180628,
+ 45.535297490836825
+ ],
+ [
+ -73.56048624216818,
+ 45.535398553051074
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56057984450607,
+ 45.53528723766618
+ ],
+ [
+ -73.56057135130867,
+ 45.53529733795208
+ ],
+ [
+ -73.56058417024511,
+ 45.535289449998416
+ ],
+ [
+ -73.56058076990846,
+ 45.53528764955568
+ ],
+ [
+ -73.56057984450607,
+ 45.53528723766618
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1753,
+ "ID_UEV":"01023441",
+ "CIVIQUE_DE":" 2600",
+ "CIVIQUE_FI":" 2600",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-6838-8-000-0000",
+ "SUPERFICIE":230,
+ "SUPERFIC_1":83,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000455586942527,
+ "OBJECTID":89211,
+ "Join_Count":1,
+ "TARGET_FID":89211,
+ "feature_id":"fa0c93d1-98e4-4366-8e95-0841211f87ae",
+ "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.49,
+ "heightmax":51.84,
+ "elevmin":30.22,
+ "elevmax":42.34,
+ "bldgarea":1501.36,
+ "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_2":89211,
+ "Shape_Le_1":0.000455586942527,
+ "Shape_Ar_1":1.07288833472e-08,
+ "OBJECTID_3":89211,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89210,
+ "g_objectid":"941429",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425450",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004309594450000000",
+ "g_sup_tota":"352",
+ "g_geometry":"0.000867302",
+ "g_geomet_1":"4.07103e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000455586942527,
+ "Shape_Area":1.07288833472e-08,
+ "Shape_Le_3":0.000455587635536,
+ "Shape_Ar_2":1.07288833472e-08,
+ "building_height":25.175
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1754,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55534750430573,
+ 45.53707648564159
+ ],
+ [
+ -73.55542996854007,
+ 45.537111349659355
+ ],
+ [
+ -73.55544065608326,
+ 45.537098880559185
+ ],
+ [
+ -73.55551665419208,
+ 45.536992270427234
+ ],
+ [
+ -73.55548956841069,
+ 45.5369828500288
+ ],
+ [
+ -73.55542921310955,
+ 45.5369618661475
+ ],
+ [
+ -73.55534750430573,
+ 45.53707648564159
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1754,
+ "ID_UEV":"01024706",
+ "CIVIQUE_DE":" 2311",
+ "CIVIQUE_FI":" 2313",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-7228-2-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":186,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000470218006393,
+ "OBJECTID":89213,
+ "Join_Count":1,
+ "TARGET_FID":89213,
+ "feature_id":"04d9439a-309d-4438-be93-19b8d7240a10",
+ "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":32.44,
+ "elevmin":18.46,
+ "elevmax":20.88,
+ "bldgarea":1211.67,
+ "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_2":89213,
+ "Shape_Le_1":0.000470218006393,
+ "Shape_Ar_1":1.27704306878e-08,
+ "OBJECTID_3":89213,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89212,
+ "g_objectid":"943927",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361129",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441722820000000",
+ "g_sup_tota":"186.1",
+ "g_geometry":"0.000667444",
+ "g_geomet_1":"2.14411e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000470218006393,
+ "Shape_Area":1.27704306878e-08,
+ "Shape_Le_3":0.000470217494047,
+ "Shape_Ar_2":1.27704306878e-08,
+ "building_height":15.964999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1755,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55272320883087,
+ 45.53685893963865
+ ],
+ [
+ -73.55275686685776,
+ 45.536871649757124
+ ],
+ [
+ -73.55273166695471,
+ 45.536904649480284
+ ],
+ [
+ -73.55273176677946,
+ 45.536904649480284
+ ],
+ [
+ -73.55278740333785,
+ 45.53692225460866
+ ],
+ [
+ -73.55287629142956,
+ 45.536796400783565
+ ],
+ [
+ -73.55285526707875,
+ 45.536789149549904
+ ],
+ [
+ -73.55279416713894,
+ 45.53676814948081
+ ],
+ [
+ -73.55274906703765,
+ 45.536833549978645
+ ],
+ [
+ -73.55274267195858,
+ 45.53683138261251
+ ],
+ [
+ -73.55272320883087,
+ 45.53685893963865
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1755,
+ "ID_UEV":"01025008",
+ "CIVIQUE_DE":" 2149",
+ "CIVIQUE_FI":" 2153",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-61-7705-7-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":315,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00049681287682,
+ "OBJECTID":89214,
+ "Join_Count":1,
+ "TARGET_FID":89214,
+ "feature_id":"cc1e4d13-2710-4040-97b1-cbdbd74c343f",
+ "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.54,
+ "heightmax":27.25,
+ "elevmin":18.99,
+ "elevmax":20.32,
+ "bldgarea":1013.12,
+ "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_2":89214,
+ "Shape_Le_1":0.00049681287682,
+ "Shape_Ar_1":1.19038110088e-08,
+ "OBJECTID_3":89214,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89213,
+ "g_objectid":"943754",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360906",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004461840120000000",
+ "g_sup_tota":"187",
+ "g_geometry":"0.000669062",
+ "g_geomet_1":"2.15393e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00049681287682,
+ "Shape_Area":1.19038110088e-08,
+ "Shape_Le_3":0.000496814098988,
+ "Shape_Ar_2":1.19038110088e-08,
+ "building_height":13.355
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1756,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5570312887848,
+ 45.5391511568507
+ ],
+ [
+ -73.55700570217326,
+ 45.53918673313152
+ ],
+ [
+ -73.55703936919338,
+ 45.53915545111347
+ ],
+ [
+ -73.5570312887848,
+ 45.5391511568507
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55706548370695,
+ 45.53910361329142
+ ],
+ [
+ -73.55711416940524,
+ 45.539129251164304
+ ],
+ [
+ -73.55711426922998,
+ 45.539129251164304
+ ],
+ [
+ -73.55714524278058,
+ 45.539144706912985
+ ],
+ [
+ -73.55722471407114,
+ 45.539034213508444
+ ],
+ [
+ -73.55713807428455,
+ 45.539002687774115
+ ],
+ [
+ -73.55706548370695,
+ 45.53910361329142
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1756,
+ "ID_UEV":"01025190",
+ "CIVIQUE_DE":" 2545",
+ "CIVIQUE_FI":" 2545",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-33-3956-9-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":81,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000541288357376,
+ "OBJECTID":89216,
+ "Join_Count":1,
+ "TARGET_FID":89216,
+ "feature_id":"6a9be1e9-5533-404a-a6a5-09f26e4c4f77",
+ "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.53,
+ "heightmax":42.46,
+ "elevmin":26.71,
+ "elevmax":32.31,
+ "bldgarea":1209.42,
+ "comment":" ",
+ "OBJECTID_2":89216,
+ "Shape_Le_1":0.000541288357376,
+ "Shape_Ar_1":1.17755928582e-08,
+ "OBJECTID_3":89216,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89215,
+ "g_objectid":"944041",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361276",
+ "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":"66023004433465310000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667183",
+ "g_geomet_1":"2.14508e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000541288357376,
+ "Shape_Area":1.17755928582e-08,
+ "Shape_Le_3":0.000541289702494,
+ "Shape_Ar_2":1.17755928582e-08,
+ "building_height":20.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1757,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55724675825313,
+ 45.52139381911975
+ ],
+ [
+ -73.557349497703,
+ 45.521440828481744
+ ],
+ [
+ -73.55743650081571,
+ 45.5213486632605
+ ],
+ [
+ -73.5573472907667,
+ 45.52130784393215
+ ],
+ [
+ -73.5572968666789,
+ 45.521361348197956
+ ],
+ [
+ -73.55727976696951,
+ 45.521353347829034
+ ],
+ [
+ -73.55727956732002,
+ 45.5213536482026
+ ],
+ [
+ -73.55724675825313,
+ 45.52139381911975
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55708677245843,
+ 45.52132061340588
+ ],
+ [
+ -73.55712961346273,
+ 45.52134021682784
+ ],
+ [
+ -73.55717656706676,
+ 45.52128404787081
+ ],
+ [
+ -73.55713236718684,
+ 45.521265747566495
+ ],
+ [
+ -73.55708677245843,
+ 45.52132061340588
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55716888056124,
+ 45.52122620887274
+ ],
+ [
+ -73.5571686674219,
+ 45.5212264480924
+ ],
+ [
+ -73.55716586693306,
+ 45.521229548055494
+ ],
+ [
+ -73.55723216675294,
+ 45.521257947746385
+ ],
+ [
+ -73.557232267477,
+ 45.521257947746385
+ ],
+ [
+ -73.55723403284618,
+ 45.521256020499244
+ ],
+ [
+ -73.55716888056124,
+ 45.52122620887274
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1757,
+ "ID_UEV":"01022265",
+ "CIVIQUE_DE":" 1364",
+ "CIVIQUE_FI":" 1364",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-33-2680-0-000-0000",
+ "SUPERFICIE":312,
+ "SUPERFIC_1":228,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000872947086643,
+ "OBJECTID":89219,
+ "Join_Count":3,
+ "TARGET_FID":89219,
+ "feature_id":"82c5cf97-94e1-4257-af78-941f21b29019",
+ "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.51,
+ "heightmax":3.34,
+ "elevmin":26.88,
+ "elevmax":27.82,
+ "bldgarea":29.8,
+ "comment":" ",
+ "OBJECTID_2":89219,
+ "Shape_Le_1":0.000872947086643,
+ "Shape_Ar_1":1.61588921629e-08,
+ "OBJECTID_3":89219,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89218,
+ "g_objectid":"942058",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567295",
+ "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":"66023004233268000000000",
+ "g_sup_tota":"312.2",
+ "g_geometry":"0.000864736",
+ "g_geomet_1":"3.66924e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000872947086643,
+ "Shape_Area":1.61588921629e-08,
+ "Shape_Le_3":0.000872945800245,
+ "Shape_Ar_2":1.61588921629e-08,
+ "building_height":0.41500000000000004
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1758,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55251248148768,
+ 45.53534816043955
+ ],
+ [
+ -73.55251616690941,
+ 45.53534954989211
+ ],
+ [
+ -73.55250186678957,
+ 45.535368350219485
+ ],
+ [
+ -73.55254636704305,
+ 45.5353851495553
+ ],
+ [
+ -73.55255156692311,
+ 45.53538714964753
+ ],
+ [
+ -73.55256916755488,
+ 45.53536564955538
+ ],
+ [
+ -73.55260018876955,
+ 45.5353781699169
+ ],
+ [
+ -73.55265952603814,
+ 45.5352941975195
+ ],
+ [
+ -73.5525726803068,
+ 45.535262963165515
+ ],
+ [
+ -73.55251248148768,
+ 45.53534816043955
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1758,
+ "ID_UEV":"01024477",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2075",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-9335-6-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000441367898468,
+ "OBJECTID":89222,
+ "Join_Count":1,
+ "TARGET_FID":89222,
+ "feature_id":"8032f29a-ce7f-449c-86e6-bdf0dbe2cce4",
+ "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":32.01,
+ "elevmin":19.03,
+ "elevmax":21.28,
+ "bldgarea":1563.41,
+ "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_2":89222,
+ "Shape_Le_1":0.000441367898468,
+ "Shape_Ar_1":1.04483044634e-08,
+ "OBJECTID_3":89222,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89221,
+ "g_objectid":"943658",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360777",
+ "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":"66023004369933560000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681121",
+ "g_geomet_1":"2.20731e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000441367898468,
+ "Shape_Area":1.04483044634e-08,
+ "Shape_Le_3":0.000441366963239,
+ "Shape_Ar_2":1.04483044634e-08,
+ "building_height":14.989999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1759,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55865824510377,
+ 45.53749383492284
+ ],
+ [
+ -73.55866466896114,
+ 45.53749514973167
+ ],
+ [
+ -73.55875309030472,
+ 45.537513637094975
+ ],
+ [
+ -73.55881087444415,
+ 45.53743306863151
+ ],
+ [
+ -73.55872936888711,
+ 45.537404050207044
+ ],
+ [
+ -73.55872926906237,
+ 45.537404050207044
+ ],
+ [
+ -73.55868376876276,
+ 45.537459550068476
+ ],
+ [
+ -73.55868223451935,
+ 45.537458928636944
+ ],
+ [
+ -73.55866143050245,
+ 45.53748822944853
+ ],
+ [
+ -73.55866211848382,
+ 45.537488474963446
+ ],
+ [
+ -73.55865824510377,
+ 45.53749383492284
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1759,
+ "ID_UEV":"01024403",
+ "CIVIQUE_DE":" 2565",
+ "CIVIQUE_FI":" 2565",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1997,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-1477-3-000-0000",
+ "SUPERFICIE":191,
+ "SUPERFIC_1":163,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000399355793483,
+ "OBJECTID":89223,
+ "Join_Count":1,
+ "TARGET_FID":89223,
+ "feature_id":"1d4a8f32-da17-4ad3-9db5-3bb00f68c862",
+ "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.55,
+ "heightmax":46.93,
+ "elevmin":32.54,
+ "elevmax":38.16,
+ "bldgarea":400.4,
+ "comment":" ",
+ "OBJECTID_2":89223,
+ "Shape_Le_1":0.000399355793483,
+ "Shape_Ar_1":9.20229284192e-09,
+ "OBJECTID_3":89223,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89222,
+ "g_objectid":"944151",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361411",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421257120000000",
+ "g_sup_tota":"383.5",
+ "g_geometry":"0.000867363",
+ "g_geomet_1":"4.41935e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000399355793483,
+ "Shape_Area":9.20229284192e-09,
+ "Shape_Le_3":0.000399356384951,
+ "Shape_Ar_2":9.20229284192e-09,
+ "building_height":23.19
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1760,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55845126883284,
+ 45.53749634942728
+ ],
+ [
+ -73.55844876871755,
+ 45.537499849588684
+ ],
+ [
+ -73.55847876920168,
+ 45.53750914947796
+ ],
+ [
+ -73.55848216953834,
+ 45.53751044989764
+ ],
+ [
+ -73.55851436886488,
+ 45.53746474994855
+ ],
+ [
+ -73.55848716886959,
+ 45.53745545005927
+ ],
+ [
+ -73.55848156879121,
+ 45.53745344996704
+ ],
+ [
+ -73.55845126883284,
+ 45.53749634942728
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55868223451935,
+ 45.537458928636944
+ ],
+ [
+ -73.55865856885971,
+ 45.53744934995783
+ ],
+ [
+ -73.55870896956513,
+ 45.53738765017022
+ ],
+ [
+ -73.5586686691456,
+ 45.53737134995813
+ ],
+ [
+ -73.55863036881831,
+ 45.537355749418595
+ ],
+ [
+ -73.5585373690262,
+ 45.53746875013301
+ ],
+ [
+ -73.55853806869875,
+ 45.5374689497825
+ ],
+ [
+ -73.55859406948257,
+ 45.5374790500684
+ ],
+ [
+ -73.55863136886443,
+ 45.53748584984239
+ ],
+ [
+ -73.55863046954238,
+ 45.537488149408865
+ ],
+ [
+ -73.55865824510377,
+ 45.53749383492284
+ ],
+ [
+ -73.55866211848382,
+ 45.537488474963446
+ ],
+ [
+ -73.55866143050245,
+ 45.53748822944853
+ ],
+ [
+ -73.55868223451935,
+ 45.537458928636944
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1760,
+ "ID_UEV":"01024405",
+ "CIVIQUE_DE":" 2555",
+ "CIVIQUE_FI":" 2555",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-2571-2-000-0000",
+ "SUPERFICIE":384,
+ "SUPERFIC_1":100,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000688488851418,
+ "OBJECTID":89224,
+ "Join_Count":2,
+ "TARGET_FID":89224,
+ "feature_id":"3fa5ba3c-b9f2-43bb-8baf-85e875c0b259",
+ "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.51,
+ "heightmax":4.08,
+ "elevmin":31.17,
+ "elevmax":32.81,
+ "bldgarea":16.25,
+ "comment":" ",
+ "OBJECTID_2":89224,
+ "Shape_Le_1":0.000688488851418,
+ "Shape_Ar_1":1.41484961248e-08,
+ "OBJECTID_3":89224,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89223,
+ "g_objectid":"944151",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361411",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421257120000000",
+ "g_sup_tota":"383.5",
+ "g_geometry":"0.000867363",
+ "g_geomet_1":"4.41935e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000688488851418,
+ "Shape_Area":1.41484961248e-08,
+ "Shape_Le_3":0.000688490267481,
+ "Shape_Ar_2":1.41484961248e-08,
+ "building_height":0.7850000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1761,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5526849588656,
+ 45.53541238192618
+ ],
+ [
+ -73.55269206710706,
+ 45.53541524986419
+ ],
+ [
+ -73.55268406673814,
+ 45.53542514960127
+ ],
+ [
+ -73.55272706692244,
+ 45.53544235003472
+ ],
+ [
+ -73.5527306669086,
+ 45.535443449905586
+ ],
+ [
+ -73.55273956749889,
+ 45.535427749541306
+ ],
+ [
+ -73.55277586413666,
+ 45.53543784353195
+ ],
+ [
+ -73.55283322379609,
+ 45.53535666982475
+ ],
+ [
+ -73.55274638346067,
+ 45.53532543726941
+ ],
+ [
+ -73.5526849588656,
+ 45.53541238192618
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1761,
+ "ID_UEV":"01024473",
+ "CIVIQUE_DE":" 2095",
+ "CIVIQUE_FI":" 2095",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-7942-1-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00042432681328,
+ "OBJECTID":89227,
+ "Join_Count":1,
+ "TARGET_FID":89227,
+ "feature_id":"8032f29a-ce7f-449c-86e6-bdf0dbe2cce4",
+ "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":32.01,
+ "elevmin":19.03,
+ "elevmax":21.28,
+ "bldgarea":1563.41,
+ "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_2":89227,
+ "Shape_Le_1":0.00042432681328,
+ "Shape_Ar_1":9.92090423626e-09,
+ "OBJECTID_3":89227,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89226,
+ "g_objectid":"943629",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360780",
+ "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":"66023004369724590000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681132",
+ "g_geomet_1":"2.20741e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00042432681328,
+ "Shape_Area":9.92090423626e-09,
+ "Shape_Le_3":0.000424326430566,
+ "Shape_Ar_2":9.92090423626e-09,
+ "building_height":14.989999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1762,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5610654235523,
+ 45.53538678812007
+ ],
+ [
+ -73.56123179093625,
+ 45.53545743886001
+ ],
+ [
+ -73.56127206977204,
+ 45.53539284955066
+ ],
+ [
+ -73.56127927334164,
+ 45.535381251893554
+ ],
+ [
+ -73.56105520185793,
+ 45.535286348236674
+ ],
+ [
+ -73.5610521702433,
+ 45.53528964964791
+ ],
+ [
+ -73.56112287044596,
+ 45.535321650224276
+ ],
+ [
+ -73.56110886980035,
+ 45.53533694949092
+ ],
+ [
+ -73.56101367026652,
+ 45.535293749657114
+ ],
+ [
+ -73.56100947043257,
+ 45.53529844951413
+ ],
+ [
+ -73.56097596978702,
+ 45.535335349597
+ ],
+ [
+ -73.56097977032199,
+ 45.53533694949092
+ ],
+ [
+ -73.5610739698097,
+ 45.53537674988739
+ ],
+ [
+ -73.5610654235523,
+ 45.53538678812007
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1762,
+ "ID_UEV":"01026153",
+ "CIVIQUE_DE":" 2472",
+ "CIVIQUE_FI":" 2480",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-2540-4-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":469,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000896941126272,
+ "OBJECTID":89230,
+ "Join_Count":1,
+ "TARGET_FID":89230,
+ "feature_id":"af1a6e62-5562-4d4e-9b43-29d0fdb64fa2",
+ "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.49,
+ "heightmax":54.86,
+ "elevmin":40.82,
+ "elevmax":43.16,
+ "bldgarea":929.22,
+ "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_2":89230,
+ "Shape_Le_1":0.000896941126272,
+ "Shape_Ar_1":2.12182150265e-08,
+ "OBJECTID_3":89230,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89229,
+ "g_objectid":"941454",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425504",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004309223100000000",
+ "g_sup_tota":"320",
+ "g_geometry":"0.00100707",
+ "g_geomet_1":"3.67172e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000896941126272,
+ "Shape_Area":2.12182150265e-08,
+ "Shape_Le_3":0.000896940191741,
+ "Shape_Ar_2":2.12182150265e-08,
+ "building_height":26.185
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1763,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56057452231819,
+ 45.53543371114715
+ ],
+ [
+ -73.56066627025402,
+ 45.535470249702556
+ ],
+ [
+ -73.56073517001393,
+ 45.53539875000261
+ ],
+ [
+ -73.56069397027235,
+ 45.53537915017793
+ ],
+ [
+ -73.56070307051213,
+ 45.53536964973984
+ ],
+ [
+ -73.56066257044311,
+ 45.53535035028873
+ ],
+ [
+ -73.56066217024481,
+ 45.53535014973991
+ ],
+ [
+ -73.56064887017106,
+ 45.53535844958308
+ ],
+ [
+ -73.5606422061947,
+ 45.53535321822673
+ ],
+ [
+ -73.56057452231819,
+ 45.53543371114715
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1763,
+ "ID_UEV":"01023443",
+ "CIVIQUE_DE":" 2610",
+ "CIVIQUE_FI":" 2610",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1953,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-5944-5-000-0000",
+ "SUPERFICIE":352,
+ "SUPERFIC_1":79,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000431459164434,
+ "OBJECTID":89232,
+ "Join_Count":1,
+ "TARGET_FID":89232,
+ "feature_id":"fa0c93d1-98e4-4366-8e95-0841211f87ae",
+ "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.49,
+ "heightmax":51.84,
+ "elevmin":30.22,
+ "elevmax":42.34,
+ "bldgarea":1501.36,
+ "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_2":89232,
+ "Shape_Le_1":0.000431459164434,
+ "Shape_Ar_1":1.03528379224e-08,
+ "OBJECTID_3":89232,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89231,
+ "g_objectid":"941429",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425450",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004309594450000000",
+ "g_sup_tota":"352",
+ "g_geometry":"0.000867302",
+ "g_geomet_1":"4.07103e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000431459164434,
+ "Shape_Area":1.03528379224e-08,
+ "Shape_Le_3":0.000431458403461,
+ "Shape_Ar_2":1.03528379224e-08,
+ "building_height":25.175
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1764,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55654056291849,
+ 45.52211284058542
+ ],
+ [
+ -73.55666393911135,
+ 45.522169933146195
+ ],
+ [
+ -73.55676254347844,
+ 45.52206451461595
+ ],
+ [
+ -73.55663596479978,
+ 45.52200594087177
+ ],
+ [
+ -73.55660156753017,
+ 45.52205264806155
+ ],
+ [
+ -73.55657276674164,
+ 45.5220918477109
+ ],
+ [
+ -73.55655966721672,
+ 45.522087048029135
+ ],
+ [
+ -73.55654056291849,
+ 45.52211284058542
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55643424416688,
+ 45.52199620750926
+ ],
+ [
+ -73.55643656711572,
+ 45.52199734784962
+ ],
+ [
+ -73.55644006727712,
+ 45.521993847688215
+ ],
+ [
+ -73.55648236688957,
+ 45.521951548075776
+ ],
+ [
+ -73.55647802856001,
+ 45.521949400494734
+ ],
+ [
+ -73.55643817870083,
+ 45.52199200048073
+ ],
+ [
+ -73.55643424416688,
+ 45.52199620750926
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55651213714725,
+ 45.52194863966828
+ ],
+ [
+ -73.55650846701398,
+ 45.521952548121895
+ ],
+ [
+ -73.5565561670553,
+ 45.52197464806186
+ ],
+ [
+ -73.55655986057096,
+ 45.521970722521125
+ ],
+ [
+ -73.55651213714725,
+ 45.52194863966828
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1764,
+ "ID_UEV":"01022258",
+ "CIVIQUE_DE":" 1470",
+ "CIVIQUE_FI":" 1480",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-7961-7-000-0000",
+ "SUPERFICIE":359,
+ "SUPERFIC_1":391,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000824661628609,
+ "OBJECTID":89233,
+ "Join_Count":3,
+ "TARGET_FID":89233,
+ "feature_id":"68ed7e9b-494a-4e90-95ef-b8a31ab1542e",
+ "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.66,
+ "heightmax":4.94,
+ "elevmin":26.82,
+ "elevmax":27.5,
+ "bldgarea":32.29,
+ "comment":" ",
+ "OBJECTID_2":89233,
+ "Shape_Le_1":0.000824661628609,
+ "Shape_Ar_1":1.88699563146e-08,
+ "OBJECTID_3":89233,
+ "Join_Cou_1":6,
+ "TARGET_F_1":89232,
+ "g_objectid":"942164",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567517",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004234867290000000",
+ "g_sup_tota":"351.2",
+ "g_geometry":"0.000888707",
+ "g_geomet_1":"4.08875e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000824661628609,
+ "Shape_Area":1.88699563146e-08,
+ "Shape_Le_3":0.000824663579491,
+ "Shape_Ar_2":1.88699563146e-08,
+ "building_height":0.14000000000000012
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1765,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55045208431808,
+ 45.53712413711953
+ ],
+ [
+ -73.55051829150779,
+ 45.53714636476322
+ ],
+ [
+ -73.55058882983248,
+ 45.53704732062764
+ ],
+ [
+ -73.55052369553397,
+ 45.53702358661952
+ ],
+ [
+ -73.55045208431808,
+ 45.53712413711953
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1765,
+ "ID_UEV":"01025318",
+ "CIVIQUE_DE":" 2022",
+ "CIVIQUE_FI":" 2026",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-5329-6-000-0000",
+ "SUPERFICIE":140,
+ "SUPERFIC_1":215,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000384202701087,
+ "OBJECTID":89250,
+ "Join_Count":1,
+ "TARGET_FID":89250,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":89250,
+ "Shape_Le_1":0.000384202701087,
+ "Shape_Ar_1":8.18714336065e-09,
+ "OBJECTID_3":89250,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89249,
+ "g_objectid":"944229",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361682",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481532960000000",
+ "g_sup_tota":"139.7",
+ "g_geometry":"0.000620646",
+ "g_geomet_1":"1.60926e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000384202701087,
+ "Shape_Area":8.18714336065e-09,
+ "Shape_Le_3":0.000384202362438,
+ "Shape_Ar_2":8.18714336065e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1766,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55051829150779,
+ 45.53714636476322
+ ],
+ [
+ -73.55058414706258,
+ 45.5371684736964
+ ],
+ [
+ -73.55065361879132,
+ 45.53707092783135
+ ],
+ [
+ -73.55058882983248,
+ 45.53704732062764
+ ],
+ [
+ -73.55051829150779,
+ 45.53714636476322
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1766,
+ "ID_UEV":"01025320",
+ "CIVIQUE_DE":" 2028",
+ "CIVIQUE_FI":" 2032",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-4832-0-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":215,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000379775780525,
+ "OBJECTID":89251,
+ "Join_Count":1,
+ "TARGET_FID":89251,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":89251,
+ "Shape_Le_1":0.000379775780525,
+ "Shape_Ar_1":8.02106085539e-09,
+ "OBJECTID_3":89251,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89250,
+ "g_objectid":"944231",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361684",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481433470000000",
+ "g_sup_tota":"142",
+ "g_geometry":"0.000622867",
+ "g_geomet_1":"1.63499e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000379775780525,
+ "Shape_Area":8.02106085539e-09,
+ "Shape_Le_3":0.000379774819613,
+ "Shape_Ar_2":8.02106085539e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1767,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55663596479978,
+ 45.52200594087177
+ ],
+ [
+ -73.55676254347844,
+ 45.52206451461595
+ ],
+ [
+ -73.55681150706724,
+ 45.52201216597897
+ ],
+ [
+ -73.55679976731726,
+ 45.522006747563644
+ ],
+ [
+ -73.55680649334684,
+ 45.52199951251778
+ ],
+ [
+ -73.55667818886917,
+ 45.521940524186135
+ ],
+ [
+ -73.55667076676431,
+ 45.521948348287935
+ ],
+ [
+ -73.55670326736374,
+ 45.52196354772984
+ ],
+ [
+ -73.55667726706407,
+ 45.521991048098684
+ ],
+ [
+ -73.5566547669258,
+ 45.521980547614476
+ ],
+ [
+ -73.55665326685663,
+ 45.52198244788196
+ ],
+ [
+ -73.55663596479978,
+ 45.52200594087177
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55651213714725,
+ 45.52194863966828
+ ],
+ [
+ -73.55655986057096,
+ 45.521970722521125
+ ],
+ [
+ -73.55660716670923,
+ 45.52192044772078
+ ],
+ [
+ -73.55655946756723,
+ 45.521898247956074
+ ],
+ [
+ -73.55651213714725,
+ 45.52194863966828
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1767,
+ "ID_UEV":"01022259",
+ "CIVIQUE_DE":" 1464",
+ "CIVIQUE_FI":" 1466",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-7352-9-000-0000",
+ "SUPERFICIE":202,
+ "SUPERFIC_1":150,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000759475250833,
+ "OBJECTID":89261,
+ "Join_Count":2,
+ "TARGET_FID":89261,
+ "feature_id":"68ed7e9b-494a-4e90-95ef-b8a31ab1542e",
+ "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.66,
+ "heightmax":4.94,
+ "elevmin":26.82,
+ "elevmax":27.5,
+ "bldgarea":32.29,
+ "comment":" ",
+ "OBJECTID_2":89261,
+ "Shape_Le_1":0.000759475250833,
+ "Shape_Ar_1":1.3561063088e-08,
+ "OBJECTID_3":89261,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89260,
+ "g_objectid":"942135",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567513",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004234694510000000",
+ "g_sup_tota":"178",
+ "g_geometry":"0.000745203",
+ "g_geomet_1":"2.05e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000759475250833,
+ "Shape_Area":1.3561063088e-08,
+ "Shape_Le_3":0.000759475690928,
+ "Shape_Ar_2":1.3561063088e-08,
+ "building_height":0.14000000000000012
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1768,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55667818886917,
+ 45.521940524186135
+ ],
+ [
+ -73.55680649334684,
+ 45.52199951251778
+ ],
+ [
+ -73.55683016710037,
+ 45.52197404821405
+ ],
+ [
+ -73.5568502669481,
+ 45.52195124770221
+ ],
+ [
+ -73.55686305350896,
+ 45.52195705912128
+ ],
+ [
+ -73.55686794312292,
+ 45.5219518304629
+ ],
+ [
+ -73.55676331329812,
+ 45.52190372572666
+ ],
+ [
+ -73.55675876722518,
+ 45.52190864771622
+ ],
+ [
+ -73.55670856706855,
+ 45.521885748278955
+ ],
+ [
+ -73.55671323005338,
+ 45.52188069948499
+ ],
+ [
+ -73.55670360730748,
+ 45.52187627571984
+ ],
+ [
+ -73.55663184230752,
+ 45.52184328049329
+ ],
+ [
+ -73.5566300670458,
+ 45.52184514748586
+ ],
+ [
+ -73.55669216703173,
+ 45.52187424774863
+ ],
+ [
+ -73.55666086702723,
+ 45.52190714764704
+ ],
+ [
+ -73.55669476697176,
+ 45.52192304766081
+ ],
+ [
+ -73.55667818886917,
+ 45.521940524186135
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1768,
+ "ID_UEV":"01022260",
+ "CIVIQUE_DE":" 1458",
+ "CIVIQUE_FI":" 1460",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-6945-1-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":158,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000679165912334,
+ "OBJECTID":89262,
+ "Join_Count":1,
+ "TARGET_FID":89262,
+ "feature_id":"1bf1e579-40d2-4859-9b37-a8a0503021f0",
+ "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.56,
+ "heightmax":12.05,
+ "elevmin":26.45,
+ "elevmax":27.23,
+ "bldgarea":713.89,
+ "comment":" ",
+ "OBJECTID_2":89262,
+ "Shape_Le_1":0.000679165912334,
+ "Shape_Ar_1":1.13496035155e-08,
+ "OBJECTID_3":89262,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89261,
+ "g_objectid":"942158",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567510",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004234594030000000",
+ "g_sup_tota":"191.7",
+ "g_geometry":"0.000619999",
+ "g_geomet_1":"2.21822e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000679165912334,
+ "Shape_Area":1.13496035155e-08,
+ "Shape_Le_3":0.000679167204399,
+ "Shape_Ar_2":1.13496035155e-08,
+ "building_height":4.745
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1769,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55691506669882,
+ 45.52155094776832
+ ],
+ [
+ -73.55686076743231,
+ 45.5216092481186
+ ],
+ [
+ -73.55686576676356,
+ 45.52161144786032
+ ],
+ [
+ -73.55706526697034,
+ 45.52170464820125
+ ],
+ [
+ -73.55706826710869,
+ 45.52170124786459
+ ],
+ [
+ -73.55712446754198,
+ 45.521640147924785
+ ],
+ [
+ -73.55691886723378,
+ 45.52154684775911
+ ],
+ [
+ -73.55691506669882,
+ 45.52155094776832
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55701433116829,
+ 45.52155139742934
+ ],
+ [
+ -73.55701346691981,
+ 45.52155234801275
+ ],
+ [
+ -73.55701026713197,
+ 45.521555647625334
+ ],
+ [
+ -73.55717039771753,
+ 45.52163055845381
+ ],
+ [
+ -73.55717550676607,
+ 45.52162514723305
+ ],
+ [
+ -73.55701433116829,
+ 45.52155139742934
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55681096387673,
+ 45.52159330403805
+ ],
+ [
+ -73.55681479768661,
+ 45.52159508199773
+ ],
+ [
+ -73.55690424875392,
+ 45.521501028200184
+ ],
+ [
+ -73.55689922334233,
+ 45.52149872773439
+ ],
+ [
+ -73.55681096387673,
+ 45.52159330403805
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1769,
+ "ID_UEV":"01022262",
+ "CIVIQUE_DE":" 1386",
+ "CIVIQUE_FI":" 1392",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-4611-1-000-0000",
+ "SUPERFICIE":326,
+ "SUPERFIC_1":479,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00126051973332,
+ "OBJECTID":89263,
+ "Join_Count":3,
+ "TARGET_FID":89263,
+ "feature_id":"4d9b7d78-fb48-450c-a6d5-807d5a5f21a4",
+ "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.44,
+ "heightmax":14.23,
+ "elevmin":25.27,
+ "elevmax":27.82,
+ "bldgarea":1882.83,
+ "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_2":89263,
+ "Shape_Le_1":0.00126051973332,
+ "Shape_Ar_1":2.02419929866e-08,
+ "OBJECTID_3":89263,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89262,
+ "g_objectid":"942144",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567457",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004234461110000000",
+ "g_sup_tota":"325.8",
+ "g_geometry":"0.000866976",
+ "g_geomet_1":"3.74756e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00126051973332,
+ "Shape_Area":2.02419929866e-08,
+ "Shape_Le_3":0.00126051948693,
+ "Shape_Ar_2":2.02419929866e-08,
+ "building_height":5.8950000000000005
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1770,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54994966906382,
+ 45.529745189838934
+ ],
+ [
+ -73.55004073891082,
+ 45.529785689008634
+ ],
+ [
+ -73.55004226595965,
+ 45.529783648446916
+ ],
+ [
+ -73.55008986617622,
+ 45.52971984874232
+ ],
+ [
+ -73.55000626609815,
+ 45.52968914858563
+ ],
+ [
+ -73.54999966597364,
+ 45.5296863489961
+ ],
+ [
+ -73.54994966906382,
+ 45.529745189838934
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1770,
+ "ID_UEV":"01019281",
+ "CIVIQUE_DE":" 2401",
+ "CIVIQUE_FI":" 2403",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-83-9114-6-000-0000",
+ "SUPERFICIE":100,
+ "SUPERFIC_1":220,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000355259292673,
+ "OBJECTID":89267,
+ "Join_Count":1,
+ "TARGET_FID":89267,
+ "feature_id":"b2635238-5f35-4d49-9826-d4efc81df553",
+ "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.54,
+ "heightmax":33.47,
+ "elevmin":20.4,
+ "elevmax":21.89,
+ "bldgarea":611.34,
+ "comment":" ",
+ "OBJECTID_2":89267,
+ "Shape_Le_1":0.000355259292673,
+ "Shape_Ar_1":7.4684297379e-09,
+ "OBJECTID_3":89267,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89266,
+ "g_objectid":"940772",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424405",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004383911460000000",
+ "g_sup_tota":"99.8",
+ "g_geometry":"0.000450222",
+ "g_geomet_1":"1.1502e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000355259292673,
+ "Shape_Area":7.4684297379e-09,
+ "Shape_Le_3":0.000355259497058,
+ "Shape_Ar_2":7.4684297379e-09,
+ "building_height":15.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1771,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56018205008338,
+ 45.52265860765891
+ ],
+ [
+ -73.56018606915362,
+ 45.522660648220636
+ ],
+ [
+ -73.56018626880311,
+ 45.52266074804538
+ ],
+ [
+ -73.56020736869695,
+ 45.52263884775491
+ ],
+ [
+ -73.56030406919928,
+ 45.52268494790232
+ ],
+ [
+ -73.56038726907904,
+ 45.52259864805946
+ ],
+ [
+ -73.5603044693976,
+ 45.52255914803655
+ ],
+ [
+ -73.56028454851494,
+ 45.52254965659167
+ ],
+ [
+ -73.56018205008338,
+ 45.52265860765891
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1771,
+ "ID_UEV":"01032353",
+ "CIVIQUE_DE":" 1885",
+ "CIVIQUE_FI":" 1889",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-05-9231-3-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":312,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00052553503113,
+ "OBJECTID":89274,
+ "Join_Count":1,
+ "TARGET_FID":89274,
+ "feature_id":"636dfc55-9755-4360-80fa-0f8229342b91",
+ "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.72,
+ "heightmax":36.75,
+ "elevmin":25.18,
+ "elevmax":25.57,
+ "bldgarea":229.79,
+ "comment":" ",
+ "OBJECTID_2":89274,
+ "Shape_Le_1":0.00052553503113,
+ "Shape_Ar_1":1.29976729474e-08,
+ "OBJECTID_3":89274,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89273,
+ "g_objectid":"941925",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566862",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004205923130000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000930451",
+ "g_geomet_1":"4.40253e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00052553503113,
+ "Shape_Area":1.29976729474e-08,
+ "Shape_Le_3":0.000525535564349,
+ "Shape_Ar_2":1.29976729474e-08,
+ "building_height":17.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1772,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55192855078384,
+ 45.536591129627226
+ ],
+ [
+ -73.55201807019962,
+ 45.536618587727936
+ ],
+ [
+ -73.5520920430352,
+ 45.53651385088381
+ ],
+ [
+ -73.55208966702635,
+ 45.536512949763114
+ ],
+ [
+ -73.55200612990082,
+ 45.536481289130485
+ ],
+ [
+ -73.55192855078384,
+ 45.536591129627226
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55191043573986,
+ 45.53661677649333
+ ],
+ [
+ -73.55191146726224,
+ 45.53661724953673
+ ],
+ [
+ -73.55191206711005,
+ 45.53661654986418
+ ],
+ [
+ -73.55192278702884,
+ 45.53659929097479
+ ],
+ [
+ -73.55191043573986,
+ 45.53661677649333
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1772,
+ "ID_UEV":"01025026",
+ "CIVIQUE_DE":" 2081",
+ "CIVIQUE_FI":" 2087",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-3974-4-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":245,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000491994618629,
+ "OBJECTID":89291,
+ "Join_Count":1,
+ "TARGET_FID":89291,
+ "feature_id":"e26f92a7-bfa1-4fe3-98f2-794461095422",
+ "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":33.08,
+ "elevmin":18.89,
+ "elevmax":21.55,
+ "bldgarea":1497.24,
+ "comment":" ",
+ "OBJECTID_2":89291,
+ "Shape_Le_1":0.000491994618629,
+ "Shape_Ar_1":1.16983805838e-08,
+ "OBJECTID_3":89291,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89290,
+ "g_objectid":"943747",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360899",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470327720000000",
+ "g_sup_tota":"173.3",
+ "g_geometry":"0.000655451",
+ "g_geomet_1":"1.99584e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000491994618629,
+ "Shape_Area":1.16983805838e-08,
+ "Shape_Le_3":0.000491994299943,
+ "Shape_Ar_2":1.16983805838e-08,
+ "building_height":16.279999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1773,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55063749394704,
+ 45.53686415300855
+ ],
+ [
+ -73.55067676644147,
+ 45.53687715091008
+ ],
+ [
+ -73.55069246590642,
+ 45.536853650725696
+ ],
+ [
+ -73.55072469850788,
+ 45.53686426272584
+ ],
+ [
+ -73.55077911198828,
+ 45.53678788600243
+ ],
+ [
+ -73.55070854488528,
+ 45.536764423589574
+ ],
+ [
+ -73.55063749394704,
+ 45.53686415300855
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1773,
+ "ID_UEV":"01025308",
+ "CIVIQUE_DE":" 2021",
+ "CIVIQUE_FI":" 2025",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-4003-8-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":202,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000394156751756,
+ "OBJECTID":89294,
+ "Join_Count":1,
+ "TARGET_FID":89294,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":89294,
+ "Shape_Le_1":0.000394156751756,
+ "Shape_Ar_1":7.7880188129e-09,
+ "OBJECTID_3":89294,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89293,
+ "g_objectid":"943802",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360960",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481400380000000",
+ "g_sup_tota":"150.7",
+ "g_geometry":"0.000636348",
+ "g_geomet_1":"1.73624e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000394156751756,
+ "Shape_Area":7.7880188129e-09,
+ "Shape_Le_3":0.000394157624224,
+ "Shape_Ar_2":7.7880188129e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1774,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55070854488528,
+ 45.536764423589574
+ ],
+ [
+ -73.55064606628477,
+ 45.53674365014963
+ ],
+ [
+ -73.55059256651558,
+ 45.53681235026005
+ ],
+ [
+ -73.55059086589759,
+ 45.53681474965127
+ ],
+ [
+ -73.55062406616956,
+ 45.53682475011242
+ ],
+ [
+ -73.5506062658883,
+ 45.536853851274515
+ ],
+ [
+ -73.55060636571305,
+ 45.536853851274515
+ ],
+ [
+ -73.55063749394704,
+ 45.53686415300855
+ ],
+ [
+ -73.55070854488528,
+ 45.536764423589574
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1774,
+ "ID_UEV":"01025310",
+ "CIVIQUE_DE":" 2015",
+ "CIVIQUE_FI":" 2019",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-4600-1-000-0000",
+ "SUPERFICIE":151,
+ "SUPERFIC_1":202,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00037998298174,
+ "OBJECTID":89296,
+ "Join_Count":1,
+ "TARGET_FID":89296,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":89296,
+ "Shape_Le_1":0.00037998298174,
+ "Shape_Ar_1":6.839049946e-09,
+ "OBJECTID_3":89296,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89295,
+ "g_objectid":"943802",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360960",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481400380000000",
+ "g_sup_tota":"150.7",
+ "g_geometry":"0.000636348",
+ "g_geomet_1":"1.73624e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00037998298174,
+ "Shape_Area":6.839049946e-09,
+ "Shape_Le_3":0.000379983178956,
+ "Shape_Ar_2":6.839049946e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1775,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55052369553397,
+ 45.53702358661952
+ ],
+ [
+ -73.55046376651146,
+ 45.53700175108024
+ ],
+ [
+ -73.55046096602261,
+ 45.53700555071589
+ ],
+ [
+ -73.55039046636877,
+ 45.537103450913825
+ ],
+ [
+ -73.55045208431808,
+ 45.53712413711953
+ ],
+ [
+ -73.55052369553397,
+ 45.53702358661952
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1775,
+ "ID_UEV":"01025316",
+ "CIVIQUE_DE":" 2016",
+ "CIVIQUE_FI":" 2020",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-5926-9-000-0000",
+ "SUPERFICIE":148,
+ "SUPERFIC_1":215,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000377587731433,
+ "OBJECTID":89297,
+ "Join_Count":1,
+ "TARGET_FID":89297,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":89297,
+ "Shape_Le_1":0.000377587731433,
+ "Shape_Ar_1":7.68930657493e-09,
+ "OBJECTID_3":89297,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89296,
+ "g_objectid":"944229",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361682",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481532960000000",
+ "g_sup_tota":"139.7",
+ "g_geometry":"0.000620646",
+ "g_geomet_1":"1.60926e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000377587731433,
+ "Shape_Area":7.68930657493e-09,
+ "Shape_Le_3":0.000377588099759,
+ "Shape_Ar_2":7.68930657493e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1776,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56207129097913,
+ 45.53106934352568
+ ],
+ [
+ -73.56212926037891,
+ 45.53109631419384
+ ],
+ [
+ -73.5622419013645,
+ 45.530975000146434
+ ],
+ [
+ -73.56220997003594,
+ 45.530959248520794
+ ],
+ [
+ -73.5622075697454,
+ 45.53096164881134
+ ],
+ [
+ -73.56216357041428,
+ 45.53100134848374
+ ],
+ [
+ -73.56214426556724,
+ 45.53099075177207
+ ],
+ [
+ -73.56207129097913,
+ 45.53106934352568
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1776,
+ "ID_UEV":"01022552",
+ "CIVIQUE_DE":" 2422",
+ "CIVIQUE_FI":" 2426",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-4354-2-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000457011324536,
+ "OBJECTID":89302,
+ "Join_Count":1,
+ "TARGET_FID":89302,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":89302,
+ "Shape_Le_1":0.000457011324536,
+ "Shape_Ar_1":8.66019077685e-09,
+ "OBJECTID_3":89302,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89301,
+ "g_objectid":"940343",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423675",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394475190000000",
+ "g_sup_tota":"153.8",
+ "g_geometry":"0.000710803",
+ "g_geomet_1":"1.77326e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000457011324536,
+ "Shape_Area":8.66019077685e-09,
+ "Shape_Le_3":0.000457012206674,
+ "Shape_Ar_2":8.66019077685e-09,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1777,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55514189230632,
+ 45.535564754060445
+ ],
+ [
+ -73.55534360934195,
+ 45.535636200700395
+ ],
+ [
+ -73.55536396819443,
+ 45.53559875023243
+ ],
+ [
+ -73.55533076792244,
+ 45.53559005019096
+ ],
+ [
+ -73.5553374678717,
+ 45.53557744978977
+ ],
+ [
+ -73.55547746803256,
+ 45.53561465024621
+ ],
+ [
+ -73.55547752918646,
+ 45.53561453693163
+ ],
+ [
+ -73.55517880677836,
+ 45.535508726296975
+ ],
+ [
+ -73.55514189230632,
+ 45.535564754060445
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1777,
+ "ID_UEV":"01025739",
+ "CIVIQUE_DE":" 2665",
+ "CIVIQUE_FI":" 2669",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-49-8065-2-000-0000",
+ "SUPERFICIE":185,
+ "SUPERFIC_1":290,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000834205417109,
+ "OBJECTID":89303,
+ "Join_Count":1,
+ "TARGET_FID":89303,
+ "feature_id":"49824a55-9106-46ec-b8f2-9718fb863db7",
+ "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.44,
+ "heightmax":31.58,
+ "elevmin":19.15,
+ "elevmax":20.07,
+ "bldgarea":909.25,
+ "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_2":89303,
+ "Shape_Le_1":0.000834205417109,
+ "Shape_Ar_1":1.37737967344e-08,
+ "OBJECTID_3":89303,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89302,
+ "g_objectid":"940946",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424742",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004349806520000000",
+ "g_sup_tota":"185.2",
+ "g_geometry":"0.000790375",
+ "g_geomet_1":"2.13399e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000834205417109,
+ "Shape_Area":1.37737967344e-08,
+ "Shape_Le_3":0.000834205793935,
+ "Shape_Ar_2":1.37737967344e-08,
+ "building_height":14.569999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1778,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56434191726751,
+ 45.5236258258215
+ ],
+ [
+ -73.56434657035977,
+ 45.52362774767271
+ ],
+ [
+ -73.56429806992183,
+ 45.52368584747418
+ ],
+ [
+ -73.56433146984331,
+ 45.52369964757097
+ ],
+ [
+ -73.5643895705441,
+ 45.523723448128926
+ ],
+ [
+ -73.56448935482172,
+ 45.52362524126217
+ ],
+ [
+ -73.56451481103154,
+ 45.52359831286214
+ ],
+ [
+ -73.5644771699073,
+ 45.52357934795884
+ ],
+ [
+ -73.56442097037333,
+ 45.52355124774218
+ ],
+ [
+ -73.56443277037789,
+ 45.523539547562365
+ ],
+ [
+ -73.56443227035484,
+ 45.52353934791287
+ ],
+ [
+ -73.56442596880527,
+ 45.523537228210806
+ ],
+ [
+ -73.56434191726751,
+ 45.5236258258215
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1778,
+ "ID_UEV":"01032234",
+ "CIVIQUE_DE":" 2261",
+ "CIVIQUE_FI":" 2269",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-76-7141-9-000-0000",
+ "SUPERFICIE":324,
+ "SUPERFIC_1":439,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00060761326765,
+ "OBJECTID":89326,
+ "Join_Count":1,
+ "TARGET_FID":89326,
+ "feature_id":"ac0a2e67-15e8-4df5-9892-2bb4cfed82e5",
+ "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.11,
+ "heightmax":13.91,
+ "elevmin":30.24,
+ "elevmax":34.76,
+ "bldgarea":877.9,
+ "comment":" ",
+ "OBJECTID_2":89326,
+ "Shape_Le_1":0.00060761326765,
+ "Shape_Ar_1":1.83651160127e-08,
+ "OBJECTID_3":89326,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89325,
+ "g_objectid":"942935",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885067",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994276714190000000",
+ "g_sup_tota":"323.8",
+ "g_geometry":"0.000933028",
+ "g_geomet_1":"3.78267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00060761326765,
+ "Shape_Area":1.83651160127e-08,
+ "Shape_Le_3":0.000607613669344,
+ "Shape_Ar_2":1.83651160127e-08,
+ "building_height":5.9
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1779,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56433747012,
+ 45.52379244771359
+ ],
+ [
+ -73.56434257017531,
+ 45.52379464745531
+ ],
+ [
+ -73.56448226996264,
+ 45.523856947990055
+ ],
+ [
+ -73.56444569993096,
+ 45.52389757216552
+ ],
+ [
+ -73.56451645139497,
+ 45.523931107884614
+ ],
+ [
+ -73.56455127044661,
+ 45.52388844764404
+ ],
+ [
+ -73.56455137027136,
+ 45.52388824799454
+ ],
+ [
+ -73.56453156989788,
+ 45.52388074764868
+ ],
+ [
+ -73.56457381734964,
+ 45.523825252283864
+ ],
+ [
+ -73.5645778337219,
+ 45.52381248281013
+ ],
+ [
+ -73.56453697032677,
+ 45.5237971475706
+ ],
+ [
+ -73.56454956982863,
+ 45.52378064770902
+ ],
+ [
+ -73.56457757022054,
+ 45.52379104746916
+ ],
+ [
+ -73.56457767004528,
+ 45.52379084781967
+ ],
+ [
+ -73.56460958248809,
+ 45.52371156898402
+ ],
+ [
+ -73.56462736838019,
+ 45.52365503040562
+ ],
+ [
+ -73.56460386999444,
+ 45.52365094748353
+ ],
+ [
+ -73.56461357008205,
+ 45.523622848166205
+ ],
+ [
+ -73.56461416992984,
+ 45.523619647479045
+ ],
+ [
+ -73.5645936698838,
+ 45.523618447783434
+ ],
+ [
+ -73.56454856978252,
+ 45.52361594766815
+ ],
+ [
+ -73.56454787010996,
+ 45.52361554746984
+ ],
+ [
+ -73.56442896984292,
+ 45.52372864800899
+ ],
+ [
+ -73.56442877019343,
+ 45.52372884765849
+ ],
+ [
+ -73.56444757052081,
+ 45.52373754769996
+ ],
+ [
+ -73.56443277037789,
+ 45.52375344771374
+ ],
+ [
+ -73.56439556992146,
+ 45.5237364478291
+ ],
+ [
+ -73.5643903700414,
+ 45.52373404753856
+ ],
+ [
+ -73.56433747012,
+ 45.52379244771359
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56451481103154,
+ 45.52359831286214
+ ],
+ [
+ -73.56448935482172,
+ 45.52362524126217
+ ],
+ [
+ -73.56451607008242,
+ 45.52359894778351
+ ],
+ [
+ -73.56451481103154,
+ 45.52359831286214
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1779,
+ "ID_UEV":"01032236",
+ "CIVIQUE_DE":" 2275",
+ "CIVIQUE_FI":" 2277",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-76-6049-5-000-0000",
+ "SUPERFICIE":536,
+ "SUPERFIC_1":942,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00122183569651,
+ "OBJECTID":89327,
+ "Join_Count":2,
+ "TARGET_FID":89327,
+ "feature_id":"ac0a2e67-15e8-4df5-9892-2bb4cfed82e5",
+ "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.11,
+ "heightmax":13.91,
+ "elevmin":30.24,
+ "elevmax":34.76,
+ "bldgarea":877.9,
+ "comment":" ",
+ "OBJECTID_2":89327,
+ "Shape_Le_1":0.00122183569651,
+ "Shape_Ar_1":4.19162593161e-08,
+ "OBJECTID_3":89327,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89326,
+ "g_objectid":"942935",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885067",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994276714190000000",
+ "g_sup_tota":"323.8",
+ "g_geometry":"0.000933028",
+ "g_geomet_1":"3.78267e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00122183569651,
+ "Shape_Area":4.19162593161e-08,
+ "Shape_Le_3":0.00122183824164,
+ "Shape_Ar_2":4.19162593161e-08,
+ "building_height":5.9
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1780,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55846457610114,
+ 45.537078541491795
+ ],
+ [
+ -73.55846896928935,
+ 45.53708014947961
+ ],
+ [
+ -73.55857726924742,
+ 45.53711985005133
+ ],
+ [
+ -73.55858116870782,
+ 45.537114150148206
+ ],
+ [
+ -73.55865526924713,
+ 45.537006450037936
+ ],
+ [
+ -73.5586499695423,
+ 45.5370046495952
+ ],
+ [
+ -73.558575869003,
+ 45.53697684975211
+ ],
+ [
+ -73.55855766942275,
+ 45.53696974960456
+ ],
+ [
+ -73.55854614371141,
+ 45.536964902258724
+ ],
+ [
+ -73.55846457610114,
+ 45.537078541491795
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55872420767788,
+ 45.537004198135534
+ ],
+ [
+ -73.55875516953729,
+ 45.53695345029179
+ ],
+ [
+ -73.5587203693714,
+ 45.53694314945708
+ ],
+ [
+ -73.55871426926996,
+ 45.5369410495401
+ ],
+ [
+ -73.55867386902568,
+ 45.537000649410736
+ ],
+ [
+ -73.55867106943614,
+ 45.53700454977045
+ ],
+ [
+ -73.55871076910856,
+ 45.537017349821134
+ ],
+ [
+ -73.55871382140758,
+ 45.537018366954364
+ ],
+ [
+ -73.55872420767788,
+ 45.537004198135534
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1780,
+ "ID_UEV":"01024325",
+ "CIVIQUE_DE":" 2530",
+ "CIVIQUE_FI":" 2536",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1959,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-21-2223-0-000-0000",
+ "SUPERFICIE":356,
+ "SUPERFIC_1":240,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000755815710908,
+ "OBJECTID":89329,
+ "Join_Count":2,
+ "TARGET_FID":89329,
+ "feature_id":"801ebb9a-38e4-4785-bee3-0926dd17043d",
+ "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":40.54,
+ "elevmin":27.42,
+ "elevmax":32.14,
+ "bldgarea":528.44,
+ "comment":" ",
+ "OBJECTID_2":89329,
+ "Shape_Le_1":0.000755815710908,
+ "Shape_Ar_1":1.91233050695e-08,
+ "OBJECTID_3":89329,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89328,
+ "g_objectid":"940985",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424797",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004421311990000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000657944",
+ "g_geomet_1":"1.93452e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000755815710908,
+ "Shape_Area":1.91233050695e-08,
+ "Shape_Le_3":0.000755815893691,
+ "Shape_Ar_2":1.91233050695e-08,
+ "building_height":20.02
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1781,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55878601088753,
+ 45.53719759464357
+ ],
+ [
+ -73.55886896884968,
+ 45.53722824983416
+ ],
+ [
+ -73.55895876345801,
+ 45.53726137456308
+ ],
+ [
+ -73.55896485186827,
+ 45.53725351988433
+ ],
+ [
+ -73.55896281940043,
+ 45.537252797728726
+ ],
+ [
+ -73.55902516400197,
+ 45.53717046479541
+ ],
+ [
+ -73.55902836019251,
+ 45.53717159884051
+ ],
+ [
+ -73.5590289348593,
+ 45.53717085689982
+ ],
+ [
+ -73.5588581473075,
+ 45.53710454628808
+ ],
+ [
+ -73.55878601088753,
+ 45.53719759464357
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55888125718612,
+ 45.53707473466157
+ ],
+ [
+ -73.55888276894648,
+ 45.5370752499731
+ ],
+ [
+ -73.55889667696192,
+ 45.53705484345655
+ ],
+ [
+ -73.55888125718612,
+ 45.53707473466157
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1781,
+ "ID_UEV":"01024329",
+ "CIVIQUE_DE":" 2560",
+ "CIVIQUE_FI":" 2560",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-9637-5-000-0000",
+ "SUPERFICIE":379,
+ "SUPERFIC_1":479,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000656255683074,
+ "OBJECTID":89330,
+ "Join_Count":2,
+ "TARGET_FID":89330,
+ "feature_id":"56c4cc2e-bc9f-43c8-95f9-83f486405885",
+ "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.15,
+ "heightmax":36.08,
+ "elevmin":32.48,
+ "elevmax":35.03,
+ "bldgarea":12.9,
+ "comment":" ",
+ "OBJECTID_2":89330,
+ "Shape_Le_1":0.000656255683074,
+ "Shape_Ar_1":2.01421070768e-08,
+ "OBJECTID_3":89330,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89329,
+ "g_objectid":"944169",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361433",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411963750000000",
+ "g_sup_tota":"378.5",
+ "g_geometry":"0.00087592",
+ "g_geomet_1":"4.37081e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000656255683074,
+ "Shape_Area":2.01421070768e-08,
+ "Shape_Le_3":0.000656254299283,
+ "Shape_Ar_2":2.01421070768e-08,
+ "building_height":16.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1782,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55895876345801,
+ 45.53726137456308
+ ],
+ [
+ -73.55904515593105,
+ 45.53729324563707
+ ],
+ [
+ -73.55904542482834,
+ 45.53729289400215
+ ],
+ [
+ -73.55904896905652,
+ 45.53728794952954
+ ],
+ [
+ -73.5590554171956,
+ 45.53727984483926
+ ],
+ [
+ -73.55911241442823,
+ 45.537203173138224
+ ],
+ [
+ -73.55907836879354,
+ 45.537190050230926
+ ],
+ [
+ -73.5590289348593,
+ 45.53717085689982
+ ],
+ [
+ -73.55902836019251,
+ 45.53717159884051
+ ],
+ [
+ -73.55902516400197,
+ 45.53717046479541
+ ],
+ [
+ -73.55896281940043,
+ 45.537252797728726
+ ],
+ [
+ -73.55896485186827,
+ 45.53725351988433
+ ],
+ [
+ -73.55895876345801,
+ 45.53726137456308
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1782,
+ "ID_UEV":"01024331",
+ "CIVIQUE_DE":" 2570",
+ "CIVIQUE_FI":" 2570",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-8642-6-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":244,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00041372026317,
+ "OBJECTID":89331,
+ "Join_Count":1,
+ "TARGET_FID":89331,
+ "feature_id":"4c24f731-07f0-4167-89e2-f32a9ef7ca98",
+ "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.56,
+ "heightmax":47.77,
+ "elevmin":32.45,
+ "elevmax":37.46,
+ "bldgarea":372.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_2":89331,
+ "Shape_Le_1":0.00041372026317,
+ "Shape_Ar_1":1.01552943237e-08,
+ "OBJECTID_3":89331,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89330,
+ "g_objectid":"944170",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361434",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411784720000000",
+ "g_sup_tota":"302.8",
+ "g_geometry":"0.000791401",
+ "g_geomet_1":"3.50356e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00041372026317,
+ "Shape_Area":1.01552943237e-08,
+ "Shape_Le_3":0.000413718904812,
+ "Shape_Ar_2":1.01552943237e-08,
+ "building_height":23.605
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1783,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55938600168447,
+ 45.53716925071065
+ ],
+ [
+ -73.55933176896781,
+ 45.53715134970532
+ ],
+ [
+ -73.55923786895433,
+ 45.53729204953875
+ ],
+ [
+ -73.55926896930933,
+ 45.5373022496494
+ ],
+ [
+ -73.55926896930933,
+ 45.537302349474146
+ ],
+ [
+ -73.55927736897723,
+ 45.53729084984314
+ ],
+ [
+ -73.55929479514053,
+ 45.53729706325916
+ ],
+ [
+ -73.55938600168447,
+ 45.53716925071065
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1783,
+ "ID_UEV":"01024337",
+ "CIVIQUE_DE":" 2592",
+ "CIVIQUE_FI":" 2594",
+ "NOM_RUE":"rue Bercy (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-7051-1-000-0000",
+ "SUPERFICIE":132,
+ "SUPERFIC_1":117,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000448856284752,
+ "OBJECTID":89332,
+ "Join_Count":1,
+ "TARGET_FID":89332,
+ "feature_id":"bdd385de-cfd6-4997-8271-99939e6ed9c5",
+ "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":52.36,
+ "elevmin":39.54,
+ "elevmax":41.33,
+ "bldgarea":190.62,
+ "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_2":89332,
+ "Shape_Le_1":0.000448856284752,
+ "Shape_Ar_1":8.60963444876e-09,
+ "OBJECTID_3":89332,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89331,
+ "g_objectid":"944171",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361435",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411705110000000",
+ "g_sup_tota":"131.8",
+ "g_geometry":"0.000622246",
+ "g_geomet_1":"1.51383e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000448856284752,
+ "Shape_Area":8.60963444876e-09,
+ "Shape_Le_3":0.000448856064088,
+ "Shape_Ar_2":8.60963444876e-09,
+ "building_height":25.925
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1784,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5514220364197,
+ 45.53820103300157
+ ],
+ [
+ -73.55144986683973,
+ 45.53821055052678
+ ],
+ [
+ -73.55148801967822,
+ 45.53822358619984
+ ],
+ [
+ -73.55156149249073,
+ 45.538121167807944
+ ],
+ [
+ -73.55154586677018,
+ 45.53811585101601
+ ],
+ [
+ -73.55149550023899,
+ 45.53809862540154
+ ],
+ [
+ -73.5514220364197,
+ 45.53820103300157
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1784,
+ "ID_UEV":"01025448",
+ "CIVIQUE_DE":" 2140",
+ "CIVIQUE_FI":" 2144",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-7748-4-000-0000",
+ "SUPERFICIE":140,
+ "SUPERFIC_1":199,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000391545958394,
+ "OBJECTID":89353,
+ "Join_Count":1,
+ "TARGET_FID":89353,
+ "feature_id":"06345140-bcff-47c8-bdc3-498ba633275e",
+ "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":11.19,
+ "elevmin":19.49,
+ "elevmax":20.54,
+ "bldgarea":912.26,
+ "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_2":89353,
+ "Shape_Le_1":0.000391545958394,
+ "Shape_Ar_1":8.41402772012e-09,
+ "OBJECTID_3":89353,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89352,
+ "g_objectid":"943872",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361056",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472774840000000",
+ "g_sup_tota":"139.7",
+ "g_geometry":"0.00062127",
+ "g_geomet_1":"1.60977e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000391545958394,
+ "Shape_Area":8.41402772012e-09,
+ "Shape_Le_3":0.000391546865436,
+ "Shape_Ar_2":8.41402772012e-09,
+ "building_height":5.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1785,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55875146882707,
+ 45.5347068502912
+ ],
+ [
+ -73.55896846894153,
+ 45.53472454984839
+ ],
+ [
+ -73.55896866949035,
+ 45.53472454984839
+ ],
+ [
+ -73.55907226869209,
+ 45.534594050125605
+ ],
+ [
+ -73.55911126869194,
+ 45.53454485001511
+ ],
+ [
+ -73.55892196949515,
+ 45.5344707494758
+ ],
+ [
+ -73.55892226896938,
+ 45.53447035017681
+ ],
+ [
+ -73.5587814693112,
+ 45.534408049642074
+ ],
+ [
+ -73.55860916909973,
+ 45.53460044970129
+ ],
+ [
+ -73.55871066928381,
+ 45.534645350153085
+ ],
+ [
+ -73.55871076910856,
+ 45.53464524942901
+ ],
+ [
+ -73.55876546947269,
+ 45.5346181501578
+ ],
+ [
+ -73.55876626896998,
+ 45.5346181501578
+ ],
+ [
+ -73.55875146882707,
+ 45.5347068502912
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55841407197369,
+ 45.53455062815926
+ ],
+ [
+ -73.55846726957068,
+ 45.53457245020871
+ ],
+ [
+ -73.55845786895733,
+ 45.53458364946614
+ ],
+ [
+ -73.5585007693169,
+ 45.53460134992265
+ ],
+ [
+ -73.55850606902172,
+ 45.53460364948913
+ ],
+ [
+ -73.55851486888794,
+ 45.534593849576794
+ ],
+ [
+ -73.55855796889699,
+ 45.53461305010248
+ ],
+ [
+ -73.55856096903534,
+ 45.534609749590565
+ ],
+ [
+ -73.55875686925596,
+ 45.534390350084884
+ ],
+ [
+ -73.55862026943173,
+ 45.53433014946712
+ ],
+ [
+ -73.5585474693121,
+ 45.53441154980347
+ ],
+ [
+ -73.55854482710393,
+ 45.534410384282104
+ ],
+ [
+ -73.55841407197369,
+ 45.53455062815926
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1785,
+ "ID_UEV":"01023418",
+ "CIVIQUE_DE":" 2376",
+ "CIVIQUE_FI":" 2388",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1931,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-0652-9-000-0000",
+ "SUPERFICIE":1846,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0022626176774,
+ "OBJECTID":89367,
+ "Join_Count":2,
+ "TARGET_FID":89367,
+ "feature_id":"2b5271da-9059-46a0-9f26-abb91e871ca1",
+ "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.61,
+ "heightmax":42.18,
+ "elevmin":24.03,
+ "elevmax":27.55,
+ "bldgarea":1216.54,
+ "comment":" ",
+ "OBJECTID_2":89367,
+ "Shape_Le_1":0.0022626176774,
+ "Shape_Ar_1":1.33788563357e-07,
+ "OBJECTID_3":89367,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89366,
+ "g_objectid":"941383",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425391",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328333660000000",
+ "g_sup_tota":"260",
+ "g_geometry":"0.000887118",
+ "g_geomet_1":"3.01343e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0022626176774,
+ "Shape_Area":1.33788563357e-07,
+ "Shape_Le_3":0.00226261792709,
+ "Shape_Ar_2":1.33788563357e-07,
+ "building_height":19.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1786,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55085887196121,
+ 45.538389334850216
+ ],
+ [
+ -73.55093076736287,
+ 45.53841535043837
+ ],
+ [
+ -73.55093426752427,
+ 45.53841045093186
+ ],
+ [
+ -73.55099866707667,
+ 45.538324250913746
+ ],
+ [
+ -73.55099356702135,
+ 45.53832245047101
+ ],
+ [
+ -73.5509242742577,
+ 45.538298068951015
+ ],
+ [
+ -73.55085887196121,
+ 45.538389334850216
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1786,
+ "ID_UEV":"01025606",
+ "CIVIQUE_DE":" 2099",
+ "CIVIQUE_FI":" 2099",
+ "NOM_RUE":"rue Lesp\u00c3\u00a9rance (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-2273-7-000-0000",
+ "SUPERFICIE":209,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000381225424915,
+ "OBJECTID":89369,
+ "Join_Count":1,
+ "TARGET_FID":89369,
+ "feature_id":"d4915543-1bec-49e8-9979-b4fff30cbc65",
+ "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.63,
+ "heightmax":31.57,
+ "elevmin":20.49,
+ "elevmax":21.83,
+ "bldgarea":540.37,
+ "comment":" ",
+ "OBJECTID_2":89369,
+ "Shape_Le_1":0.000381225424915,
+ "Shape_Ar_1":8.40227340217e-09,
+ "OBJECTID_3":89369,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89368,
+ "g_objectid":"944259",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361932",
+ "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":"66023004482287000000000",
+ "g_sup_tota":"154.6",
+ "g_geometry":"0.000649685",
+ "g_geomet_1":"1.78351e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000381225424915,
+ "Shape_Area":8.40227340217e-09,
+ "Shape_Le_3":0.000381225009319,
+ "Shape_Ar_2":8.40227340217e-09,
+ "building_height":15.47
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1787,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5583897803859,
+ 45.52457591459708
+ ],
+ [
+ -73.55848016854678,
+ 45.52462054795022
+ ],
+ [
+ -73.55856976800224,
+ 45.52453064812121
+ ],
+ [
+ -73.55847568003045,
+ 45.52448434562635
+ ],
+ [
+ -73.5583897803859,
+ 45.52457591459708
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1787,
+ "ID_UEV":"01032641",
+ "CIVIQUE_DE":" 1879",
+ "CIVIQUE_FI":" 1883",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-27-3344-4-000-0000",
+ "SUPERFICIE":392,
+ "SUPERFIC_1":286,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000458150453626,
+ "OBJECTID":89374,
+ "Join_Count":1,
+ "TARGET_FID":89374,
+ "feature_id":"b3d2a8cd-12df-4563-8469-bfa4b8880e15",
+ "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.55,
+ "heightmax":35.8,
+ "elevmin":24.1,
+ "elevmax":24.52,
+ "bldgarea":206.18,
+ "comment":" ",
+ "OBJECTID_2":89374,
+ "Shape_Le_1":0.000458150453626,
+ "Shape_Ar_1":1.23589419338e-08,
+ "OBJECTID_3":89374,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89373,
+ "g_objectid":"942103",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567350",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004227433770000000",
+ "g_sup_tota":"392.1",
+ "g_geometry":"0.000950031",
+ "g_geomet_1":"4.51854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000458150453626,
+ "Shape_Area":1.23589419338e-08,
+ "Shape_Le_3":0.00045815017734,
+ "Shape_Ar_2":1.23589419338e-08,
+ "building_height":16.625
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1788,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56038087130202,
+ 45.53618198306236
+ ],
+ [
+ -73.56038586973395,
+ 45.53618414952917
+ ],
+ [
+ -73.5603915705364,
+ 45.53618664964446
+ ],
+ [
+ -73.56042764324299,
+ 45.53620243454501
+ ],
+ [
+ -73.56046401902111,
+ 45.536217864213356
+ ],
+ [
+ -73.56051592249368,
+ 45.536156982808805
+ ],
+ [
+ -73.5605662701391,
+ 45.53609414987541
+ ],
+ [
+ -73.5605656702913,
+ 45.53609395022592
+ ],
+ [
+ -73.56047922655691,
+ 45.53606662342622
+ ],
+ [
+ -73.56038087130202,
+ 45.53618198306236
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1788,
+ "ID_UEV":"01023760",
+ "CIVIQUE_DE":" 2654",
+ "CIVIQUE_FI":" 2662",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-00-7523-2-000-0000",
+ "SUPERFICIE":191,
+ "SUPERFIC_1":255,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000493968944528,
+ "OBJECTID":89381,
+ "Join_Count":1,
+ "TARGET_FID":89381,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":89381,
+ "Shape_Le_1":0.000493968944528,
+ "Shape_Ar_1":1.34612931396e-08,
+ "OBJECTID_3":89381,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89380,
+ "g_objectid":"944214",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361490",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004400811980000000",
+ "g_sup_tota":"192.8",
+ "g_geometry":"0.000688295",
+ "g_geomet_1":"2.20028e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000493968944528,
+ "Shape_Area":1.34612931396e-08,
+ "Shape_Le_3":0.000493969463312,
+ "Shape_Ar_2":1.34612931396e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1789,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.562471805851,
+ 45.523119646005156
+ ],
+ [
+ -73.56282116908353,
+ 45.52330134772931
+ ],
+ [
+ -73.5628518647436,
+ 45.5232721926079
+ ],
+ [
+ -73.5628635919031,
+ 45.52325949418061
+ ],
+ [
+ -73.56298910308648,
+ 45.52312357963979
+ ],
+ [
+ -73.56297926899991,
+ 45.52311934743023
+ ],
+ [
+ -73.56305836976979,
+ 45.523028048256116
+ ],
+ [
+ -73.56306104705152,
+ 45.52302495998421
+ ],
+ [
+ -73.56304896376051,
+ 45.5230200847594
+ ],
+ [
+ -73.56314095451329,
+ 45.52292265490689
+ ],
+ [
+ -73.56314418397875,
+ 45.522917363295974
+ ],
+ [
+ -73.5629812025423,
+ 45.52284111067901
+ ],
+ [
+ -73.5626551695223,
+ 45.52274284805429
+ ],
+ [
+ -73.5626096692227,
+ 45.522817347892584
+ ],
+ [
+ -73.56254346922756,
+ 45.52292704809509
+ ],
+ [
+ -73.56249774409746,
+ 45.52300300843239
+ ],
+ [
+ -73.56250573817113,
+ 45.523082091215834
+ ],
+ [
+ -73.562471805851,
+ 45.523119646005156
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1789,
+ "ID_UEV":"01032241",
+ "CIVIQUE_DE":" 2093",
+ "CIVIQUE_FI":" 2093",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2001,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Centre r\u00c3\u00a9cr\u00c3\u00a9atif en g\u00c3\u00a9n\u00c3\u00a9ral (activit\u00c3\u00a9s r\u00c3\u00a9cr\u00c3\u00a9atives diversifi\u00c3\u00a9es pour tous groupes d'\u00c3\u00a2ge)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-85-9866-0-000-0000",
+ "SUPERFICIE":2399,
+ "SUPERFIC_1":604,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00188186827254,
+ "OBJECTID":89426,
+ "Join_Count":1,
+ "TARGET_FID":89426,
+ "feature_id":"b6b0088c-ae5a-4228-a79f-7df823ae9979",
+ "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.5,
+ "heightmax":15.67,
+ "elevmin":27.41,
+ "elevmax":29.04,
+ "bldgarea":1945.4,
+ "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_2":89426,
+ "Shape_Le_1":0.00188186827254,
+ "Shape_Ar_1":2.15528316488e-07,
+ "OBJECTID_3":89426,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89425,
+ "g_objectid":"945581",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"3937329",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994286900040000000",
+ "g_sup_tota":"37.1",
+ "g_geometry":"0.000306242",
+ "g_geomet_1":"4.53031e-009",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00188186827254,
+ "Shape_Area":2.15528316488e-07,
+ "Shape_Le_3":0.00188186852375,
+ "Shape_Ar_2":2.15528316488e-07,
+ "building_height":6.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1790,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55166809273014,
+ 45.536841655568246
+ ],
+ [
+ -73.55173303817102,
+ 45.53686534820755
+ ],
+ [
+ -73.55182056738713,
+ 45.53674330750793
+ ],
+ [
+ -73.55175582069641,
+ 45.536719338776756
+ ],
+ [
+ -73.55166809273014,
+ 45.536841655568246
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1790,
+ "ID_UEV":"01025068",
+ "CIVIQUE_DE":" 2090",
+ "CIVIQUE_FI":" 2094",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-5897-5-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":254,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000438879853638,
+ "OBJECTID":89431,
+ "Join_Count":1,
+ "TARGET_FID":89431,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":89431,
+ "Shape_Le_1":0.000438879853638,
+ "Shape_Ar_1":1.00109568855e-08,
+ "OBJECTID_3":89431,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89430,
+ "g_objectid":"943770",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360924",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470589750000000",
+ "g_sup_tota":"139.4",
+ "g_geometry":"0.000620798",
+ "g_geomet_1":"1.60525e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000438879853638,
+ "Shape_Area":1.00109568855e-08,
+ "Shape_Le_3":0.000438881546849,
+ "Shape_Ar_2":1.00109568855e-08,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1791,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55193004905436,
+ 45.53689531002084
+ ],
+ [
+ -73.55201731386978,
+ 45.536925965211424
+ ],
+ [
+ -73.55207955414996,
+ 45.536839182432615
+ ],
+ [
+ -73.55199322552878,
+ 45.53680722502371
+ ],
+ [
+ -73.55193004905436,
+ 45.53689531002084
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1791,
+ "ID_UEV":"01025074",
+ "CIVIQUE_DE":" 2110",
+ "CIVIQUE_FI":" 2110",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-3807-4-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000399739240552,
+ "OBJECTID":89458,
+ "Join_Count":1,
+ "TARGET_FID":89458,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":89458,
+ "Shape_Le_1":0.000399739240552,
+ "Shape_Ar_1":9.55213350384e-09,
+ "OBJECTID_3":89458,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89457,
+ "g_objectid":"943774",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360928",
+ "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":"66023004471311030000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667008",
+ "g_geomet_1":"2.14038e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000399739240552,
+ "Shape_Area":9.55213350384e-09,
+ "Shape_Le_3":0.000399739639503,
+ "Shape_Ar_2":9.55213350384e-09,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1792,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55023298788393,
+ 45.53853093310637
+ ],
+ [
+ -73.55030280944894,
+ 45.538555446826706
+ ],
+ [
+ -73.5503677252122,
+ 45.53846485991565
+ ],
+ [
+ -73.55029812398108,
+ 45.53844003862718
+ ],
+ [
+ -73.55023298788393,
+ 45.53853093310637
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1792,
+ "ID_UEV":"01025631",
+ "CIVIQUE_DE":" 3019",
+ "CIVIQUE_FI":" 3019",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-7085-0-000-0000",
+ "SUPERFICIE":183,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000371162391115,
+ "OBJECTID":89460,
+ "Join_Count":1,
+ "TARGET_FID":89460,
+ "feature_id":"fb799dfc-15ad-4735-937b-a4d19bbcca51",
+ "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,
+ "heightmax":32.29,
+ "elevmin":21.17,
+ "elevmax":21.89,
+ "bldgarea":541.06,
+ "comment":" ",
+ "OBJECTID_2":89460,
+ "Shape_Le_1":0.000371162391115,
+ "Shape_Ar_1":7.92963985101e-09,
+ "OBJECTID_3":89460,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89459,
+ "g_objectid":"944271",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361944",
+ "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":"66023004482648610000000",
+ "g_sup_tota":"183.4",
+ "g_geometry":"0.000747628",
+ "g_geomet_1":"2.11331e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000371162391115,
+ "Shape_Area":7.92963985101e-09,
+ "Shape_Le_3":0.000371163382104,
+ "Shape_Ar_2":7.92963985101e-09,
+ "building_height":15.645
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1793,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55201731386978,
+ 45.536925965211424
+ ],
+ [
+ -73.55207306734003,
+ 45.53694554974762
+ ],
+ [
+ -73.55210456879266,
+ 45.53695663029455
+ ],
+ [
+ -73.55216588277112,
+ 45.53687114074085
+ ],
+ [
+ -73.55207955414996,
+ 45.536839182432615
+ ],
+ [
+ -73.55201731386978,
+ 45.536925965211424
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1793,
+ "ID_UEV":"01025076",
+ "CIVIQUE_DE":" 2118",
+ "CIVIQUE_FI":" 2118",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-3110-3-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000396538398864,
+ "OBJECTID":89461,
+ "Join_Count":1,
+ "TARGET_FID":89461,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":89461,
+ "Shape_Le_1":0.000396538398864,
+ "Shape_Ar_1":9.40981456773e-09,
+ "OBJECTID_3":89461,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89460,
+ "g_objectid":"943774",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360928",
+ "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":"66023004471311030000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667008",
+ "g_geomet_1":"2.14038e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000396538398864,
+ "Shape_Area":9.40981456773e-09,
+ "Shape_Le_3":0.000396539339194,
+ "Shape_Ar_2":9.40981456773e-09,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1794,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56029685213986,
+ 45.536145557821534
+ ],
+ [
+ -73.56038087130202,
+ 45.53618198306236
+ ],
+ [
+ -73.56047922655691,
+ 45.53606662342622
+ ],
+ [
+ -73.5604030701674,
+ 45.536042549474374
+ ],
+ [
+ -73.56043277027797,
+ 45.53599605002798
+ ],
+ [
+ -73.56042694986569,
+ 45.535994210015076
+ ],
+ [
+ -73.56029685213986,
+ 45.536145557821534
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1794,
+ "ID_UEV":"01023758",
+ "CIVIQUE_DE":" 2648",
+ "CIVIQUE_FI":" 2652",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-00-8119-8-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":252,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000583899924613,
+ "OBJECTID":89463,
+ "Join_Count":1,
+ "TARGET_FID":89463,
+ "feature_id":"71944609-def3-4ef0-b7fc-72c1bd650eec",
+ "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,
+ "heightmax":52.62,
+ "elevmin":29.36,
+ "elevmax":42.79,
+ "bldgarea":2448.39,
+ "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_2":89463,
+ "Shape_Le_1":0.000583899924613,
+ "Shape_Ar_1":1.33383615787e-08,
+ "OBJECTID_3":89463,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89462,
+ "g_objectid":"944213",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361489",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004400881510000000",
+ "g_sup_tota":"190.5",
+ "g_geometry":"0.000687648",
+ "g_geomet_1":"2.18774e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000583899924613,
+ "Shape_Area":1.33383615787e-08,
+ "Shape_Le_3":0.000583900839984,
+ "Shape_Ar_2":1.33383615787e-08,
+ "building_height":26.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1795,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56183856442006,
+ 45.53096106605065
+ ],
+ [
+ -73.5618971732378,
+ 45.53098833349509
+ ],
+ [
+ -73.56203752683224,
+ 45.53083717274762
+ ],
+ [
+ -73.56200597052097,
+ 45.53082194902402
+ ],
+ [
+ -73.56200586979689,
+ 45.53082194902402
+ ],
+ [
+ -73.56194076967263,
+ 45.530894749143656
+ ],
+ [
+ -73.5619119688841,
+ 45.53088200844822
+ ],
+ [
+ -73.56183856442006,
+ 45.53096106605065
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1795,
+ "ID_UEV":"01022544",
+ "CIVIQUE_DE":" 2398",
+ "CIVIQUE_FI":" 2402",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-6143-7-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000543088755694,
+ "OBJECTID":89465,
+ "Join_Count":1,
+ "TARGET_FID":89465,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":89465,
+ "Shape_Le_1":0.000543088755694,
+ "Shape_Ar_1":9.86396199935e-09,
+ "OBJECTID_3":89465,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89464,
+ "g_objectid":"940345",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423677",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394564520000000",
+ "g_sup_tota":"152.7",
+ "g_geometry":"0.000709863",
+ "g_geomet_1":"1.76018e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000543088755694,
+ "Shape_Area":9.86396199935e-09,
+ "Shape_Le_3":0.000543088215479,
+ "Shape_Ar_2":9.86396199935e-09,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1796,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55931106567499,
+ 45.53521599966894
+ ],
+ [
+ -73.55932226942903,
+ 45.535220449514426
+ ],
+ [
+ -73.55929786902328,
+ 45.535251049846366
+ ],
+ [
+ -73.55936156890313,
+ 45.53527614992468
+ ],
+ [
+ -73.55929336881576,
+ 45.53536144972142
+ ],
+ [
+ -73.55929276896796,
+ 45.535362349942794
+ ],
+ [
+ -73.55937476915211,
+ 45.53538544992887
+ ],
+ [
+ -73.5593996686816,
+ 45.535392349527605
+ ],
+ [
+ -73.55941974424765,
+ 45.53535672378407
+ ],
+ [
+ -73.5594641653608,
+ 45.53524177154082
+ ],
+ [
+ -73.55939586904597,
+ 45.53522284980497
+ ],
+ [
+ -73.55938986876927,
+ 45.535221050261555
+ ],
+ [
+ -73.55938706917975,
+ 45.535223849851086
+ ],
+ [
+ -73.55932897207624,
+ 45.535195518508665
+ ],
+ [
+ -73.55931106567499,
+ 45.53521599966894
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1796,
+ "ID_UEV":"01023565",
+ "CIVIQUE_DE":" 2515",
+ "CIVIQUE_FI":" 2515",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1988,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-6333-9-000-0000",
+ "SUPERFICIE":286,
+ "SUPERFIC_1":494,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000678045632942,
+ "OBJECTID":89475,
+ "Join_Count":1,
+ "TARGET_FID":89475,
+ "feature_id":"4fd724d3-05a1-460c-8aa3-670b6e1e9f71",
+ "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.37,
+ "heightmax":43.67,
+ "elevmin":29.55,
+ "elevmax":32.07,
+ "bldgarea":185.91,
+ "comment":" ",
+ "OBJECTID_2":89475,
+ "Shape_Le_1":0.000678045632942,
+ "Shape_Ar_1":1.89927882953e-08,
+ "OBJECTID_3":89475,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89474,
+ "g_objectid":"941131",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425052",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319783030000000",
+ "g_sup_tota":"298.9",
+ "g_geometry":"0.00104376",
+ "g_geomet_1":"3.4259e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000678045632942,
+ "Shape_Area":1.89927882953e-08,
+ "Shape_Le_3":0.000678047050986,
+ "Shape_Ar_2":1.89927882953e-08,
+ "building_height":20.650000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1797,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55863519278176,
+ 45.53501600753302
+ ],
+ [
+ -73.55863816953774,
+ 45.53501704984727
+ ],
+ [
+ -73.55864636955616,
+ 45.53500555021626
+ ],
+ [
+ -73.5587216302209,
+ 45.53503212967934
+ ],
+ [
+ -73.55872184875616,
+ 45.5350318751712
+ ],
+ [
+ -73.55879501939647,
+ 45.53494673815174
+ ],
+ [
+ -73.55872467802331,
+ 45.53491188582517
+ ],
+ [
+ -73.55863519278176,
+ 45.53501600753302
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1797,
+ "ID_UEV":"01023567",
+ "CIVIQUE_DE":" 2419",
+ "CIVIQUE_FI":" 2419",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-1601-3-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":134,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000425482671188,
+ "OBJECTID":89476,
+ "Join_Count":1,
+ "TARGET_FID":89476,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":89476,
+ "Shape_Le_1":0.000425482671188,
+ "Shape_Ar_1":8.98280000671e-09,
+ "OBJECTID_3":89476,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89475,
+ "g_objectid":"941158",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425084",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329040270000000",
+ "g_sup_tota":"178.7",
+ "g_geometry":"0.00059784",
+ "g_geomet_1":"2.05888e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000425482671188,
+ "Shape_Area":8.98280000671e-09,
+ "Shape_Le_3":0.000425482875349,
+ "Shape_Ar_2":8.98280000671e-09,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1798,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55833620147637,
+ 45.53489525915918
+ ],
+ [
+ -73.5583595694604,
+ 45.53490574975085
+ ],
+ [
+ -73.55829367523476,
+ 45.53497819463827
+ ],
+ [
+ -73.55834609581751,
+ 45.535000442067044
+ ],
+ [
+ -73.55850174598064,
+ 45.534819333895435
+ ],
+ [
+ -73.55843026876374,
+ 45.53479115004183
+ ],
+ [
+ -73.55842683874945,
+ 45.53478979746148
+ ],
+ [
+ -73.55833620147637,
+ 45.53489525915918
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1798,
+ "ID_UEV":"01023573",
+ "CIVIQUE_DE":" 2397",
+ "CIVIQUE_FI":" 2399",
+ "NOM_RUE":"rue D'Iberville (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-3987-6-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00063887298531,
+ "OBJECTID":89477,
+ "Join_Count":1,
+ "TARGET_FID":89477,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":89477,
+ "Shape_Le_1":0.00063887298531,
+ "Shape_Ar_1":1.58250790942e-08,
+ "OBJECTID_3":89477,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89476,
+ "g_objectid":"941163",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425090",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328458400000000",
+ "g_sup_tota":"166.9",
+ "g_geometry":"0.000658031",
+ "g_geomet_1":"1.92142e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00063887298531,
+ "Shape_Area":1.58250790942e-08,
+ "Shape_Le_3":0.00063887332168,
+ "Shape_Ar_2":1.58250790942e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1799,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55819761504974,
+ 45.53493742926924
+ ],
+ [
+ -73.55820278345354,
+ 45.53493962181639
+ ],
+ [
+ -73.5582290688383,
+ 45.534906849621706
+ ],
+ [
+ -73.55822520804875,
+ 45.534905322572875
+ ],
+ [
+ -73.55819761504974,
+ 45.53493742926924
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55826235274722,
+ 45.53486210295398
+ ],
+ [
+ -73.55833620147637,
+ 45.53489525915918
+ ],
+ [
+ -73.55842683874945,
+ 45.53478979746148
+ ],
+ [
+ -73.55837496945112,
+ 45.534769349576116
+ ],
+ [
+ -73.55835043774435,
+ 45.53475961081768
+ ],
+ [
+ -73.55826235274722,
+ 45.53486210295398
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1799,
+ "ID_UEV":"01023576",
+ "CIVIQUE_DE":" 2391",
+ "CIVIQUE_FI":" 2393",
+ "NOM_RUE":"rue D'Iberville (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-4584-0-000-0000",
+ "SUPERFICIE":167,
+ "SUPERFIC_1":151,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000531410928559,
+ "OBJECTID":89478,
+ "Join_Count":2,
+ "TARGET_FID":89478,
+ "feature_id":"2c79bdbb-49a1-4dad-b004-de914e262b0f",
+ "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.75,
+ "heightmax":32.51,
+ "elevmin":26.04,
+ "elevmax":27.04,
+ "bldgarea":15.73,
+ "comment":" ",
+ "OBJECTID_2":89478,
+ "Shape_Le_1":0.000531410928559,
+ "Shape_Ar_1":1.08361726367e-08,
+ "OBJECTID_3":89478,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89477,
+ "g_objectid":"941163",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425090",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328458400000000",
+ "g_sup_tota":"166.9",
+ "g_geometry":"0.000658031",
+ "g_geomet_1":"1.92142e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000531410928559,
+ "Shape_Area":1.08361726367e-08,
+ "Shape_Le_3":0.000531412019089,
+ "Shape_Ar_2":1.08361726367e-08,
+ "building_height":13.879999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1800,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55822520804875,
+ 45.534905322572875
+ ],
+ [
+ -73.5581936688246,
+ 45.53489284987542
+ ],
+ [
+ -73.55816799497883,
+ 45.53492485854568
+ ],
+ [
+ -73.55819761504974,
+ 45.53493742926924
+ ],
+ [
+ -73.55822520804875,
+ 45.534905322572875
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55818948967506,
+ 45.53482939011456
+ ],
+ [
+ -73.55826235274722,
+ 45.53486210295398
+ ],
+ [
+ -73.55835043774435,
+ 45.53475961081768
+ ],
+ [
+ -73.55832156950667,
+ 45.53474814985753
+ ],
+ [
+ -73.55827519056943,
+ 45.534729674185414
+ ],
+ [
+ -73.55818948967506,
+ 45.53482939011456
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1800,
+ "ID_UEV":"01023578",
+ "CIVIQUE_DE":" 2385",
+ "CIVIQUE_FI":" 2387",
+ "NOM_RUE":"rue D'Iberville (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-5180-6-000-0000",
+ "SUPERFICIE":165,
+ "SUPERFIC_1":151,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000576939870592,
+ "OBJECTID":89479,
+ "Join_Count":2,
+ "TARGET_FID":89479,
+ "feature_id":"2c79bdbb-49a1-4dad-b004-de914e262b0f",
+ "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.75,
+ "heightmax":32.51,
+ "elevmin":26.04,
+ "elevmax":27.04,
+ "bldgarea":15.73,
+ "comment":" ",
+ "OBJECTID_2":89479,
+ "Shape_Le_1":0.000576939870592,
+ "Shape_Ar_1":1.15220915651e-08,
+ "OBJECTID_3":89479,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89478,
+ "g_objectid":"941163",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425090",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328458400000000",
+ "g_sup_tota":"166.9",
+ "g_geometry":"0.000658031",
+ "g_geomet_1":"1.92142e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000576939870592,
+ "Shape_Area":1.15220915651e-08,
+ "Shape_Le_3":0.000576940217331,
+ "Shape_Ar_2":1.15220915651e-08,
+ "building_height":13.879999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1801,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55811597099711,
+ 45.5347963822975
+ ],
+ [
+ -73.55818948967506,
+ 45.53482939011456
+ ],
+ [
+ -73.55827519056943,
+ 45.534729674185414
+ ],
+ [
+ -73.55822316928568,
+ 45.53470895020818
+ ],
+ [
+ -73.55819928868807,
+ 45.5346994380789
+ ],
+ [
+ -73.55811597099711,
+ 45.5347963822975
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1801,
+ "ID_UEV":"01023580",
+ "CIVIQUE_DE":" 2379",
+ "CIVIQUE_FI":" 2383",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-28-5777-9-000-0000",
+ "SUPERFICIE":166,
+ "SUPERFIC_1":221,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000421601750454,
+ "OBJECTID":89480,
+ "Join_Count":1,
+ "TARGET_FID":89480,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":89480,
+ "Shape_Le_1":0.000421601750454,
+ "Shape_Ar_1":1.00186105804e-08,
+ "OBJECTID_3":89480,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89479,
+ "g_objectid":"941165",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425092",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004328577790000000",
+ "g_sup_tota":"166.1",
+ "g_geometry":"0.000657339",
+ "g_geomet_1":"1.913e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000421601750454,
+ "Shape_Area":1.00186105804e-08,
+ "Shape_Le_3":0.0004216027336,
+ "Shape_Ar_2":1.00186105804e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1802,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55676595370764,
+ 45.5374890280465
+ ],
+ [
+ -73.5569706178216,
+ 45.53756154757765
+ ],
+ [
+ -73.55700856831263,
+ 45.53750258082974
+ ],
+ [
+ -73.556881269277,
+ 45.5374617498102
+ ],
+ [
+ -73.5568056677692,
+ 45.53743754995326
+ ],
+ [
+ -73.55680183575795,
+ 45.53743632058003
+ ],
+ [
+ -73.55678626939266,
+ 45.53745763721049
+ ],
+ [
+ -73.55676595370764,
+ 45.5374890280465
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1802,
+ "ID_UEV":"01025907",
+ "CIVIQUE_DE":" 2750",
+ "CIVIQUE_FI":" 2752",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-31-5777-1-000-0000",
+ "SUPERFICIE":139,
+ "SUPERFIC_1":184,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000568133242344,
+ "OBJECTID":89484,
+ "Join_Count":1,
+ "TARGET_FID":89484,
+ "feature_id":"b8745b4a-f98c-4834-a9bb-88a651a5c214",
+ "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.57,
+ "heightmax":37.82,
+ "elevmin":24,
+ "elevmax":25.79,
+ "bldgarea":848.63,
+ "comment":" ",
+ "OBJECTID_2":89484,
+ "Shape_Le_1":0.000568133242344,
+ "Shape_Ar_1":1.40780067048e-08,
+ "OBJECTID_3":89484,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89483,
+ "g_objectid":"943961",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361167",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431618490000000",
+ "g_sup_tota":"139.2",
+ "g_geometry":"0.00059307",
+ "g_geomet_1":"1.60318e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000568133242344,
+ "Shape_Area":1.40780067048e-08,
+ "Shape_Le_3":0.000568134220876,
+ "Shape_Ar_2":1.40780067048e-08,
+ "building_height":18.625
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1803,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56179774149442,
+ 45.522515698191214
+ ],
+ [
+ -73.56180101142938,
+ 45.522517246823774
+ ],
+ [
+ -73.56180180822871,
+ 45.52251600665868
+ ],
+ [
+ -73.56180529849757,
+ 45.522517615545816
+ ],
+ [
+ -73.56180826895829,
+ 45.52251324753864
+ ],
+ [
+ -73.56181076907357,
+ 45.52250944790299
+ ],
+ [
+ -73.56182439200393,
+ 45.52248770859117
+ ],
+ [
+ -73.56179774149442,
+ 45.522515698191214
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56185210371346,
+ 45.522458603831794
+ ],
+ [
+ -73.56195756900844,
+ 45.522491247423424
+ ],
+ [
+ -73.56202014473574,
+ 45.52239147303835
+ ],
+ [
+ -73.56199010288279,
+ 45.52237741663477
+ ],
+ [
+ -73.56197266952492,
+ 45.52237204768215
+ ],
+ [
+ -73.56194318075504,
+ 45.522362950140334
+ ],
+ [
+ -73.56186588222653,
+ 45.52244413374007
+ ],
+ [
+ -73.56185210371346,
+ 45.522458603831794
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1803,
+ "ID_UEV":"01032214",
+ "CIVIQUE_DE":" 2007",
+ "CIVIQUE_FI":" 2007",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-95-6206-1-000-0000",
+ "SUPERFICIE":219,
+ "SUPERFIC_1":159,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000525592995935,
+ "OBJECTID":89493,
+ "Join_Count":1,
+ "TARGET_FID":89493,
+ "feature_id":"ebe94d82-3efd-4a6c-a255-28b22365bae9",
+ "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.14,
+ "heightmax":12.79,
+ "elevmin":26.56,
+ "elevmax":27.84,
+ "bldgarea":2155.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_2":89493,
+ "Shape_Le_1":0.000525592995935,
+ "Shape_Ar_1":1.15101388188e-08,
+ "OBJECTID_3":89493,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89492,
+ "g_objectid":"941627",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565589",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994295730500000000",
+ "g_sup_tota":"98.1",
+ "g_geometry":"0.000429377",
+ "g_geomet_1":"1.10698e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000525592995935,
+ "Shape_Area":1.15101388188e-08,
+ "Shape_Le_3":0.000525592103706,
+ "Shape_Ar_2":1.15101388188e-08,
+ "building_height":5.324999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1804,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56195471456027,
+ 45.531015104513756
+ ],
+ [
+ -73.56201332337801,
+ 45.53104237375684
+ ],
+ [
+ -73.56213364637253,
+ 45.530912785047285
+ ],
+ [
+ -73.56213306990709,
+ 45.53091244870084
+ ],
+ [
+ -73.56210527006401,
+ 45.53089334889923
+ ],
+ [
+ -73.56210447056671,
+ 45.53089404857178
+ ],
+ [
+ -73.56205837041931,
+ 45.53094104894055
+ ],
+ [
+ -73.56203425240068,
+ 45.53092944318955
+ ],
+ [
+ -73.56195471456027,
+ 45.531015104513756
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1804,
+ "ID_UEV":"01022548",
+ "CIVIQUE_DE":" 2410",
+ "CIVIQUE_FI":" 2414",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-5248-5-000-0000",
+ "SUPERFICIE":156,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000486431222878,
+ "OBJECTID":89494,
+ "Join_Count":1,
+ "TARGET_FID":89494,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":89494,
+ "Shape_Le_1":0.000486431222878,
+ "Shape_Ar_1":9.38947140061e-09,
+ "OBJECTID_3":89494,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89493,
+ "g_objectid":"940343",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423675",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394475190000000",
+ "g_sup_tota":"153.8",
+ "g_geometry":"0.000710803",
+ "g_geomet_1":"1.77326e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000486431222878,
+ "Shape_Area":9.38947140061e-09,
+ "Shape_Le_3":0.000486430356155,
+ "Shape_Ar_2":9.38947140061e-09,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1805,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55675204209491,
+ 45.52345632969615
+ ],
+ [
+ -73.55685964327976,
+ 45.52350612695649
+ ],
+ [
+ -73.55700206801288,
+ 45.5233579474616
+ ],
+ [
+ -73.55689876738604,
+ 45.523308848075175
+ ],
+ [
+ -73.55682856720645,
+ 45.52338174801955
+ ],
+ [
+ -73.55682394918774,
+ 45.52337954827782
+ ],
+ [
+ -73.55675204209491,
+ 45.52345632969615
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55700476597902,
+ 45.52319890955233
+ ],
+ [
+ -73.5570021669383,
+ 45.523201747812706
+ ],
+ [
+ -73.55700606729802,
+ 45.52320344753137
+ ],
+ [
+ -73.55712728242,
+ 45.523257099286
+ ],
+ [
+ -73.55712825728509,
+ 45.523256057871066
+ ],
+ [
+ -73.55700476597902,
+ 45.52319890955233
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1805,
+ "ID_UEV":"01032563",
+ "CIVIQUE_DE":" 1710",
+ "CIVIQUE_FI":" 1710",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":12,
+ "ANNEE_CONS":1993,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-36-5105-8-000-0000",
+ "SUPERFICIE":428,
+ "SUPERFIC_1":606,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000928145217517,
+ "OBJECTID":89505,
+ "Join_Count":2,
+ "TARGET_FID":89505,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":89505,
+ "Shape_Le_1":0.000928145217517,
+ "Shape_Ar_1":2.31627870551e-08,
+ "OBJECTID_3":89505,
+ "Join_Cou_1":6,
+ "TARGET_F_1":89504,
+ "g_objectid":"942089",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567330",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235228380000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100224",
+ "g_geomet_1":"4.91112e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000928145217517,
+ "Shape_Area":2.31627870551e-08,
+ "Shape_Le_3":0.000928146171165,
+ "Shape_Ar_2":2.31627870551e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1806,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55719173233443,
+ 45.53698514779663
+ ],
+ [
+ -73.55731837936156,
+ 45.53702996281283
+ ],
+ [
+ -73.55733846931675,
+ 45.537007249535236
+ ],
+ [
+ -73.5573634695703,
+ 45.53697904949384
+ ],
+ [
+ -73.55733266868955,
+ 45.5369655497706
+ ],
+ [
+ -73.55733655915672,
+ 45.53696117996478
+ ],
+ [
+ -73.5571879623764,
+ 45.53690858761152
+ ],
+ [
+ -73.55718576892994,
+ 45.53691214982615
+ ],
+ [
+ -73.55723336914652,
+ 45.53692995010741
+ ],
+ [
+ -73.5571940687731,
+ 45.53698204963218
+ ],
+ [
+ -73.55719173233443,
+ 45.53698514779663
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1806,
+ "ID_UEV":"01025917",
+ "CIVIQUE_DE":" 2712",
+ "CIVIQUE_FI":" 2714",
+ "NOM_RUE":"rue Hochelaga (MTE+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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-31-2919-2-000-0000",
+ "SUPERFICIE":126,
+ "SUPERFIC_1":140,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000523603052328,
+ "OBJECTID":89506,
+ "Join_Count":1,
+ "TARGET_FID":89506,
+ "feature_id":"cf99814e-aecf-4b21-8eaf-b12337912fd0",
+ "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":35.31,
+ "elevmin":24.49,
+ "elevmax":26.35,
+ "bldgarea":757.55,
+ "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_2":89506,
+ "Shape_Le_1":0.000523603052328,
+ "Shape_Ar_1":9.75219801275e-09,
+ "OBJECTID_3":89506,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89505,
+ "g_objectid":"943909",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361108",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004431251170000000",
+ "g_sup_tota":"148.2",
+ "g_geometry":"0.000580922",
+ "g_geomet_1":"1.70733e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000523603052328,
+ "Shape_Area":9.75219801275e-09,
+ "Shape_Le_3":0.000523604589678,
+ "Shape_Ar_2":9.75219801275e-09,
+ "building_height":17.400000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1807,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56110665207218,
+ 45.535597199801224
+ ],
+ [
+ -73.56109196974046,
+ 45.535613949674335
+ ],
+ [
+ -73.56092907014232,
+ 45.5355434500205
+ ],
+ [
+ -73.56090547013318,
+ 45.53557034964222
+ ],
+ [
+ -73.56089567022084,
+ 45.53556614980826
+ ],
+ [
+ -73.56088217049762,
+ 45.53558164962373
+ ],
+ [
+ -73.56087896981046,
+ 45.53558545015869
+ ],
+ [
+ -73.56089476999948,
+ 45.53559205028319
+ ],
+ [
+ -73.56086962495507,
+ 45.53562185111783
+ ],
+ [
+ -73.56113758245532,
+ 45.53573587885802
+ ],
+ [
+ -73.56119096980926,
+ 45.53564884966497
+ ],
+ [
+ -73.56119864372427,
+ 45.535636348189215
+ ],
+ [
+ -73.56110665207218,
+ 45.535597199801224
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56078797011058,
+ 45.53554504991442
+ ],
+ [
+ -73.560771470249,
+ 45.53556054972988
+ ],
+ [
+ -73.56077667012907,
+ 45.535563049845166
+ ],
+ [
+ -73.56081657035028,
+ 45.53558304986815
+ ],
+ [
+ -73.56082017033644,
+ 45.535579449882
+ ],
+ [
+ -73.56083526995359,
+ 45.53556454991434
+ ],
+ [
+ -73.5607907697001,
+ 45.53554224942557
+ ],
+ [
+ -73.56078797011058,
+ 45.53554504991442
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56081786987065,
+ 45.53549474993306
+ ],
+ [
+ -73.56080096981076,
+ 45.53550874967935
+ ],
+ [
+ -73.56080616969082,
+ 45.53551114996989
+ ],
+ [
+ -73.56086027020714,
+ 45.535537849942116
+ ],
+ [
+ -73.5608638701933,
+ 45.53553404940715
+ ],
+ [
+ -73.56087646969516,
+ 45.53551925016356
+ ],
+ [
+ -73.56081786987065,
+ 45.53549465010831
+ ],
+ [
+ -73.56081786987065,
+ 45.53549474993306
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1807,
+ "ID_UEV":"01026147",
+ "CIVIQUE_DE":" 2498",
+ "CIVIQUE_FI":" 2498",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1945,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-3568-4-000-0000",
+ "SUPERFICIE":495,
+ "SUPERFIC_1":708,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00116522238973,
+ "OBJECTID":89509,
+ "Join_Count":3,
+ "TARGET_FID":89509,
+ "feature_id":"0fa1e36f-a77d-436b-a686-1c0d6fd1e62f",
+ "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.87,
+ "heightmax":45.29,
+ "elevmin":41.97,
+ "elevmax":42.58,
+ "bldgarea":10.81,
+ "comment":" ",
+ "OBJECTID_2":89509,
+ "Shape_Le_1":0.00116522238973,
+ "Shape_Ar_1":3.22677031839e-08,
+ "OBJECTID_3":89509,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89508,
+ "g_objectid":"941453",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425502",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004309315760000000",
+ "g_sup_tota":"434.3",
+ "g_geometry":"0.00115616",
+ "g_geomet_1":"5.01649e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00116522238973,
+ "Shape_Area":3.22677031839e-08,
+ "Shape_Le_3":0.00116522138493,
+ "Shape_Ar_2":3.22677031839e-08,
+ "building_height":21.71
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1808,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55429415537282,
+ 45.52434128777051
+ ],
+ [
+ -73.55437559797731,
+ 45.52437901343102
+ ],
+ [
+ -73.55448844220969,
+ 45.52425947014872
+ ],
+ [
+ -73.55440730897197,
+ 45.52422075523396
+ ],
+ [
+ -73.55429415537282,
+ 45.52434128777051
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1808,
+ "ID_UEV":"01022115",
+ "CIVIQUE_DE":" 1622",
+ "CIVIQUE_FI":" 1626",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-57-4908-2-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":326,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000509368533727,
+ "OBJECTID":89579,
+ "Join_Count":1,
+ "TARGET_FID":89579,
+ "feature_id":"9141044b-3efe-4ab9-a812-ee5377173041",
+ "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.51,
+ "heightmax":36.99,
+ "elevmin":18.54,
+ "elevmax":24.57,
+ "bldgarea":2092.08,
+ "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_2":89579,
+ "Shape_Le_1":0.000509368533727,
+ "Shape_Ar_1":1.40765678677e-08,
+ "OBJECTID_3":89579,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89578,
+ "g_objectid":"942408",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729315",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257431270000000",
+ "g_sup_tota":"148.7",
+ "g_geometry":"0.000581838",
+ "g_geomet_1":"1.71399e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000509368533727,
+ "Shape_Area":1.40765678677e-08,
+ "Shape_Le_3":0.00050936723539,
+ "Shape_Ar_2":1.40765678677e-08,
+ "building_height":17.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1809,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55437559797731,
+ 45.52437901343102
+ ],
+ [
+ -73.55445759726214,
+ 45.52441699719696
+ ],
+ [
+ -73.55456879123857,
+ 45.52429780914687
+ ],
+ [
+ -73.55448844220969,
+ 45.52425947014872
+ ],
+ [
+ -73.55437559797731,
+ 45.52437901343102
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1809,
+ "ID_UEV":"01022116",
+ "CIVIQUE_DE":" 1628",
+ "CIVIQUE_FI":" 1632",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-57-4312-7-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":330,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000506790251605,
+ "OBJECTID":89580,
+ "Join_Count":1,
+ "TARGET_FID":89580,
+ "feature_id":"9141044b-3efe-4ab9-a812-ee5377173041",
+ "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.51,
+ "heightmax":36.99,
+ "elevmin":18.54,
+ "elevmax":24.57,
+ "bldgarea":2092.08,
+ "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_2":89580,
+ "Shape_Le_1":0.000506790251605,
+ "Shape_Ar_1":1.39641727403e-08,
+ "OBJECTID_3":89580,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89579,
+ "g_objectid":"942409",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729316",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257361620000000",
+ "g_sup_tota":"149.1",
+ "g_geometry":"0.000580901",
+ "g_geomet_1":"1.71328e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000506790251605,
+ "Shape_Area":1.39641727403e-08,
+ "Shape_Le_3":0.00050679051537,
+ "Shape_Ar_2":1.39641727403e-08,
+ "building_height":17.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1810,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55523519786793,
+ 45.53845313365549
+ ],
+ [
+ -73.55524216851312,
+ 45.53845605105621
+ ],
+ [
+ -73.55519246837956,
+ 45.53851455105598
+ ],
+ [
+ -73.55527548749559,
+ 45.53854938989272
+ ],
+ [
+ -73.55538280809196,
+ 45.53839952776629
+ ],
+ [
+ -73.55536336834662,
+ 45.5383926506506
+ ],
+ [
+ -73.5553755685495,
+ 45.538375650765964
+ ],
+ [
+ -73.55534536841587,
+ 45.538364950632264
+ ],
+ [
+ -73.55534486839281,
+ 45.53836485080751
+ ],
+ [
+ -73.55533556850352,
+ 45.53837655098733
+ ],
+ [
+ -73.55530004708135,
+ 45.53836258091867
+ ],
+ [
+ -73.55523519786793,
+ 45.53845313365549
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1810,
+ "ID_UEV":"01025215",
+ "CIVIQUE_DE":" 2359",
+ "CIVIQUE_FI":" 2361",
+ "NOM_RUE":"rue Wurtele (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-8284-2-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":144,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000597265789819,
+ "OBJECTID":89593,
+ "Join_Count":1,
+ "TARGET_FID":89593,
+ "feature_id":"2b113e00-c2ae-47d2-a946-63dfcb1dfc06",
+ "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":36.44,
+ "elevmin":19.05,
+ "elevmax":24.19,
+ "bldgarea":2686.32,
+ "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_2":89593,
+ "Shape_Le_1":0.000597265789819,
+ "Shape_Ar_1":1.6729220722e-08,
+ "OBJECTID_3":89593,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89592,
+ "g_objectid":"944031",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361248",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442898050000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668434",
+ "g_geomet_1":"2.14713e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000597265789819,
+ "Shape_Area":1.6729220722e-08,
+ "Shape_Le_3":0.000597266919614,
+ "Shape_Ar_2":1.6729220722e-08,
+ "building_height":17.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1811,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5551393004602,
+ 45.53843453387693
+ ],
+ [
+ -73.55516716775243,
+ 45.5384389504475
+ ],
+ [
+ -73.55520566772923,
+ 45.53844515127301
+ ],
+ [
+ -73.55522376838405,
+ 45.53844835106085
+ ],
+ [
+ -73.55523519786793,
+ 45.53845313365549
+ ],
+ [
+ -73.55530004708135,
+ 45.53836258091867
+ ],
+ [
+ -73.55525826817637,
+ 45.53834615120421
+ ],
+ [
+ -73.55521482102901,
+ 45.53832907757516
+ ],
+ [
+ -73.5551393004602,
+ 45.53843453387693
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1811,
+ "ID_UEV":"01025217",
+ "CIVIQUE_DE":" 2353",
+ "CIVIQUE_FI":" 2355",
+ "NOM_RUE":"rue Wurtele (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-8980-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":149,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000430645342631,
+ "OBJECTID":89595,
+ "Join_Count":1,
+ "TARGET_FID":89595,
+ "feature_id":"2b113e00-c2ae-47d2-a946-63dfcb1dfc06",
+ "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":36.44,
+ "elevmin":19.05,
+ "elevmax":24.19,
+ "bldgarea":2686.32,
+ "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_2":89595,
+ "Shape_Le_1":0.000430645342631,
+ "Shape_Ar_1":1.05696691625e-08,
+ "OBJECTID_3":89595,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89594,
+ "g_objectid":"944031",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361248",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442898050000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668434",
+ "g_geomet_1":"2.14713e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000430645342631,
+ "Shape_Area":1.05696691625e-08,
+ "Shape_Le_3":0.000430644738952,
+ "Shape_Ar_2":1.05696691625e-08,
+ "building_height":17.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1812,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55787607054606,
+ 45.52127303567235
+ ],
+ [
+ -73.55801237269469,
+ 45.52132688078122
+ ],
+ [
+ -73.55810158544166,
+ 45.52122951657922
+ ],
+ [
+ -73.55809406800867,
+ 45.52122604789409
+ ],
+ [
+ -73.55812506853893,
+ 45.52119274779737
+ ],
+ [
+ -73.55812836815151,
+ 45.52118924763597
+ ],
+ [
+ -73.55803436831329,
+ 45.521146348175726
+ ],
+ [
+ -73.55803426848854,
+ 45.521146348175726
+ ],
+ [
+ -73.55800146841489,
+ 45.5211811474423
+ ],
+ [
+ -73.55797976777392,
+ 45.52117104805572
+ ],
+ [
+ -73.55805406796271,
+ 45.52109224676008
+ ],
+ [
+ -73.55817541888231,
+ 45.52114893552525
+ ],
+ [
+ -73.55818079772747,
+ 45.52114306565026
+ ],
+ [
+ -73.55817747203456,
+ 45.5211415296082
+ ],
+ [
+ -73.55805036275588,
+ 45.52108282096571
+ ],
+ [
+ -73.55798433722923,
+ 45.52115487914465
+ ],
+ [
+ -73.55787607054606,
+ 45.52127303567235
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1812,
+ "ID_UEV":"01032260",
+ "CIVIQUE_DE":" 1656",
+ "CIVIQUE_FI":" 1664",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-23-6667-4-000-0000",
+ "SUPERFICIE":310,
+ "SUPERFIC_1":526,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00116425097185,
+ "OBJECTID":89611,
+ "Join_Count":1,
+ "TARGET_FID":89611,
+ "feature_id":"66c18ebc-3469-4d47-beb3-7e66b0221223",
+ "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.54,
+ "heightmax":14.84,
+ "elevmin":26.13,
+ "elevmax":27.19,
+ "bldgarea":1365.56,
+ "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_2":89611,
+ "Shape_Le_1":0.00116425097185,
+ "Shape_Ar_1":2.55905373756e-08,
+ "OBJECTID_3":89611,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89610,
+ "g_objectid":"942043",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567268",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004223545300000000",
+ "g_sup_tota":"394.5",
+ "g_geometry":"0.000984785",
+ "g_geomet_1":"4.47454e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00116425097185,
+ "Shape_Area":2.55905373756e-08,
+ "Shape_Le_3":0.00116424977853,
+ "Shape_Ar_2":2.55905373756e-08,
+ "building_height":6.15
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1813,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55400907298218,
+ 45.53738947759261
+ ],
+ [
+ -73.55413283318555,
+ 45.53743329076405
+ ],
+ [
+ -73.55414796787626,
+ 45.53741314954751
+ ],
+ [
+ -73.55417186825896,
+ 45.5374220501378
+ ],
+ [
+ -73.5541754682451,
+ 45.53741714973197
+ ],
+ [
+ -73.55419446822198,
+ 45.53739025011025
+ ],
+ [
+ -73.5541709680376,
+ 45.537382050091836
+ ],
+ [
+ -73.55417773543599,
+ 45.537372426446616
+ ],
+ [
+ -73.55405116575055,
+ 45.53732762851754
+ ],
+ [
+ -73.55400907298218,
+ 45.53738947759261
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1813,
+ "ID_UEV":"01025771",
+ "CIVIQUE_DE":" 2815",
+ "CIVIQUE_FI":" 2815",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-51-7465-9-000-0000",
+ "SUPERFICIE":201,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000466727891811,
+ "OBJECTID":89623,
+ "Join_Count":1,
+ "TARGET_FID":89623,
+ "feature_id":"11039491-bbf1-41b6-90ea-1fa3a632a4d1",
+ "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.57,
+ "heightmax":9.51,
+ "elevmin":18.59,
+ "elevmax":19.5,
+ "bldgarea":800.31,
+ "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_2":89623,
+ "Shape_Le_1":0.000466727891811,
+ "Shape_Ar_1":1.05628495102e-08,
+ "OBJECTID_3":89623,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89622,
+ "g_objectid":"943968",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361175",
+ "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":"66023004451715800000000",
+ "g_sup_tota":"202.5",
+ "g_geometry":"0.000794817",
+ "g_geomet_1":"2.33276e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000466727891811,
+ "Shape_Area":1.05628495102e-08,
+ "Shape_Le_3":0.000466730180623,
+ "Shape_Ar_2":1.05628495102e-08,
+ "building_height":4.47
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1814,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55837158080566,
+ 45.523590752261704
+ ],
+ [
+ -73.55837396850569,
+ 45.523591847635956
+ ],
+ [
+ -73.55845136775827,
+ 45.523508547931435
+ ],
+ [
+ -73.5584493748606,
+ 45.52350763422024
+ ],
+ [
+ -73.55837158080566,
+ 45.523590752261704
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1814,
+ "ID_UEV":"01032540",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-3739-7-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00023237202793,
+ "OBJECTID":89638,
+ "Join_Count":1,
+ "TARGET_FID":89638,
+ "feature_id":"0f8a05a8-b724-4498-95ec-5873fedeff47",
+ "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.57,
+ "heightmax":35.24,
+ "elevmin":24.3,
+ "elevmax":24.89,
+ "bldgarea":704.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_2":89638,
+ "Shape_Le_1":0.00023237202793,
+ "Shape_Ar_1":2.60212695463e-10,
+ "OBJECTID_3":89638,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89637,
+ "g_objectid":"942080",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567319",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226481960000000",
+ "g_sup_tota":"397.2",
+ "g_geometry":"0.00097389",
+ "g_geomet_1":"4.66457e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00023237202793,
+ "Shape_Area":2.60212695463e-10,
+ "Shape_Le_3":0.000232371532293,
+ "Shape_Ar_2":2.60212695463e-10,
+ "building_height":16.335
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1815,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55755651084614,
+ 45.523200265729976
+ ],
+ [
+ -73.55757586785386,
+ 45.523187447692855
+ ],
+ [
+ -73.55764646823177,
+ 45.5232402477895
+ ],
+ [
+ -73.55764526853616,
+ 45.52324104818612
+ ],
+ [
+ -73.5576959678165,
+ 45.52327074829669
+ ],
+ [
+ -73.55771796793172,
+ 45.5232474477618
+ ],
+ [
+ -73.55774256798696,
+ 45.52325884756806
+ ],
+ [
+ -73.557794168388,
+ 45.52320424792799
+ ],
+ [
+ -73.5576262038081,
+ 45.52312584593134
+ ],
+ [
+ -73.55755651084614,
+ 45.523200265729976
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1815,
+ "ID_UEV":"01032542",
+ "CIVIQUE_DE":" 1737",
+ "CIVIQUE_FI":" 1741",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-9489-5-000-0000",
+ "SUPERFICIE":221,
+ "SUPERFIC_1":234,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000593179429846,
+ "OBJECTID":89639,
+ "Join_Count":1,
+ "TARGET_FID":89639,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":89639,
+ "Shape_Le_1":0.000593179429846,
+ "Shape_Ar_1":1.63250672363e-08,
+ "OBJECTID_3":89639,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89638,
+ "g_objectid":"942086",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567325",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225948950000000",
+ "g_sup_tota":"221.3",
+ "g_geometry":"0.000661628",
+ "g_geomet_1":"2.54904e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000593179429846,
+ "Shape_Area":1.63250672363e-08,
+ "Shape_Le_3":0.000593180020695,
+ "Shape_Ar_2":1.63250672363e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1816,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55726100441366,
+ 45.523316287267136
+ ],
+ [
+ -73.55726136773977,
+ 45.52331644824579
+ ],
+ [
+ -73.55732256840365,
+ 45.52325244799238
+ ],
+ [
+ -73.55732133543313,
+ 45.52325186523169
+ ],
+ [
+ -73.55726100441366,
+ 45.523316287267136
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55742040654837,
+ 45.523146075281446
+ ],
+ [
+ -73.55743106801123,
+ 45.52315414759613
+ ],
+ [
+ -73.55740956791907,
+ 45.52316824806649
+ ],
+ [
+ -73.55743126856004,
+ 45.52318454827858
+ ],
+ [
+ -73.55750126819082,
+ 45.52323684745284
+ ],
+ [
+ -73.55755651084614,
+ 45.523200265729976
+ ],
+ [
+ -73.5576262038081,
+ 45.52312584593134
+ ],
+ [
+ -73.55749618612194,
+ 45.52306515608238
+ ],
+ [
+ -73.55742040654837,
+ 45.523146075281446
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1816,
+ "ID_UEV":"01032544",
+ "CIVIQUE_DE":" 1729",
+ "CIVIQUE_FI":" 1735",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1981,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-35-1190-6-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":313,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000754742629566,
+ "OBJECTID":89640,
+ "Join_Count":1,
+ "TARGET_FID":89640,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":89640,
+ "Shape_Le_1":0.000754742629566,
+ "Shape_Ar_1":1.98025202197e-08,
+ "OBJECTID_3":89640,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89639,
+ "g_objectid":"942086",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567325",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225948950000000",
+ "g_sup_tota":"221.3",
+ "g_geometry":"0.000661628",
+ "g_geomet_1":"2.54904e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000754742629566,
+ "Shape_Area":1.98025202197e-08,
+ "Shape_Le_3":0.000754740791935,
+ "Shape_Ar_2":1.98025202197e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1817,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55700476597902,
+ 45.52319890955233
+ ],
+ [
+ -73.55712825728509,
+ 45.523256057871066
+ ],
+ [
+ -73.55736457123982,
+ 45.52300372069545
+ ],
+ [
+ -73.55723330439533,
+ 45.522942435495295
+ ],
+ [
+ -73.55712545229963,
+ 45.523057602676516
+ ],
+ [
+ -73.55713186806311,
+ 45.523060647780966
+ ],
+ [
+ -73.55715486822443,
+ 45.52303684812234
+ ],
+ [
+ -73.55725056778132,
+ 45.52308234752262
+ ],
+ [
+ -73.55725076833014,
+ 45.52308244824668
+ ],
+ [
+ -73.55726486790118,
+ 45.52306784775327
+ ],
+ [
+ -73.5572907683761,
+ 45.5230799481314
+ ],
+ [
+ -73.5572341677445,
+ 45.52313924762847
+ ],
+ [
+ -73.55720266809051,
+ 45.52312444748556
+ ],
+ [
+ -73.55720266809051,
+ 45.52312454820963
+ ],
+ [
+ -73.55714146832595,
+ 45.52319114750375
+ ],
+ [
+ -73.55704986787894,
+ 45.523149648287934
+ ],
+ [
+ -73.55700476597902,
+ 45.52319890955233
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1817,
+ "ID_UEV":"01032548",
+ "CIVIQUE_DE":" 1707",
+ "CIVIQUE_FI":" 1711",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-35-3276-1-000-0000",
+ "SUPERFICIE":420,
+ "SUPERFIC_1":281,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00135439277665,
+ "OBJECTID":89642,
+ "Join_Count":1,
+ "TARGET_FID":89642,
+ "feature_id":"a44c899f-75cc-4725-9999-c1ff5447dd70",
+ "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.49,
+ "heightmax":40.52,
+ "elevmin":24.77,
+ "elevmax":27.45,
+ "bldgarea":2857.58,
+ "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_2":89642,
+ "Shape_Le_1":0.00135439277665,
+ "Shape_Ar_1":2.9027297123e-08,
+ "OBJECTID_3":89642,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89641,
+ "g_objectid":"942089",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567330",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235228380000000",
+ "g_sup_tota":"419.9",
+ "g_geometry":"0.00100224",
+ "g_geomet_1":"4.91112e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00135439277665,
+ "Shape_Area":2.9027297123e-08,
+ "Shape_Le_3":0.00135439326746,
+ "Shape_Ar_2":2.9027297123e-08,
+ "building_height":19.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1818,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55151066190936,
+ 45.53790017920021
+ ],
+ [
+ -73.55159645273595,
+ 45.53793365376541
+ ],
+ [
+ -73.55167432683056,
+ 45.537826268417845
+ ],
+ [
+ -73.55162666725873,
+ 45.53780965074508
+ ],
+ [
+ -73.55160256722654,
+ 45.537836151067815
+ ],
+ [
+ -73.55156782101997,
+ 45.53782014583336
+ ],
+ [
+ -73.55151066190936,
+ 45.53790017920021
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1818,
+ "ID_UEV":"01025420",
+ "CIVIQUE_DE":" 2123",
+ "CIVIQUE_FI":" 2127",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-7118-0-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":240,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000447637524733,
+ "OBJECTID":89670,
+ "Join_Count":1,
+ "TARGET_FID":89670,
+ "feature_id":"790eafe7-0226-4b40-905a-d279325ae83c",
+ "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.67,
+ "heightmax":13.66,
+ "elevmin":19.18,
+ "elevmax":20.54,
+ "bldgarea":1826.79,
+ "comment":" ",
+ "OBJECTID_2":89670,
+ "Shape_Le_1":0.000447637524733,
+ "Shape_Ar_1":1.04325414823e-08,
+ "OBJECTID_3":89670,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89669,
+ "g_objectid":"943859",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361036",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472642270000000",
+ "g_sup_tota":"184",
+ "g_geometry":"0.000665474",
+ "g_geomet_1":"2.11929e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000447637524733,
+ "Shape_Area":1.04325414823e-08,
+ "Shape_Le_3":0.000447637938939,
+ "Shape_Ar_2":1.04325414823e-08,
+ "building_height":6.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1819,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55142571104957,
+ 45.537867113826536
+ ],
+ [
+ -73.55144036730096,
+ 45.53787275077712
+ ],
+ [
+ -73.55151066190936,
+ 45.53790017920021
+ ],
+ [
+ -73.55156782101997,
+ 45.53782014583336
+ ],
+ [
+ -73.55155306674249,
+ 45.53781335055598
+ ],
+ [
+ -73.55156716721284,
+ 45.537786450934256
+ ],
+ [
+ -73.55155856699612,
+ 45.537783850994224
+ ],
+ [
+ -73.55150626692253,
+ 45.537765950888215
+ ],
+ [
+ -73.5515285674113,
+ 45.53773415086067
+ ],
+ [
+ -73.55152342688649,
+ 45.53773236750505
+ ],
+ [
+ -73.55142571104957,
+ 45.537867113826536
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1819,
+ "ID_UEV":"01025422",
+ "CIVIQUE_DE":" 2117",
+ "CIVIQUE_FI":" 2121",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-7815-1-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":240,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000511113579373,
+ "OBJECTID":89671,
+ "Join_Count":1,
+ "TARGET_FID":89671,
+ "feature_id":"790eafe7-0226-4b40-905a-d279325ae83c",
+ "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.67,
+ "heightmax":13.66,
+ "elevmin":19.18,
+ "elevmax":20.54,
+ "bldgarea":1826.79,
+ "comment":" ",
+ "OBJECTID_2":89671,
+ "Shape_Le_1":0.000511113579373,
+ "Shape_Ar_1":1.09881839804e-08,
+ "OBJECTID_3":89671,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89670,
+ "g_objectid":"943855",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361032",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472851150000000",
+ "g_sup_tota":"223",
+ "g_geometry":"0.000704806",
+ "g_geomet_1":"2.56884e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000511113579373,
+ "Shape_Area":1.09881839804e-08,
+ "Shape_Le_3":0.000511115573622,
+ "Shape_Ar_2":1.09881839804e-08,
+ "building_height":6.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1820,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5597902640313,
+ 45.53798356613896
+ ],
+ [
+ -73.55995115814127,
+ 45.538040600243804
+ ],
+ [
+ -73.55996916976322,
+ 45.53801055029695
+ ],
+ [
+ -73.55997867020132,
+ 45.53799475010793
+ ],
+ [
+ -73.55998916618891,
+ 45.53797728347515
+ ],
+ [
+ -73.55982923705149,
+ 45.53792059201201
+ ],
+ [
+ -73.55979077034962,
+ 45.537982749554544
+ ],
+ [
+ -73.5597902640313,
+ 45.53798356613896
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1820,
+ "ID_UEV":"01026110",
+ "CIVIQUE_DE":" 2716",
+ "CIVIQUE_FI":" 2720",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1944,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-12-2431-8-000-0000",
+ "SUPERFICIE":198,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000488289817416,
+ "OBJECTID":89687,
+ "Join_Count":1,
+ "TARGET_FID":89687,
+ "feature_id":"a4acf0c5-b326-497f-ba42-2e7d553662ef",
+ "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":53.77,
+ "elevmin":41.99,
+ "elevmax":43.37,
+ "bldgarea":819.25,
+ "comment":" ",
+ "OBJECTID_2":89687,
+ "Shape_Le_1":0.000488289817416,
+ "Shape_Ar_1":1.2317036828e-08,
+ "OBJECTID_3":89687,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89686,
+ "g_objectid":"944164",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361427",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004412243180000000",
+ "g_sup_tota":"197.6",
+ "g_geometry":"0.000777154",
+ "g_geomet_1":"2.27492e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000488289817416,
+ "Shape_Area":1.2317036828e-08,
+ "Shape_Le_3":0.000488290708586,
+ "Shape_Ar_2":1.2317036828e-08,
+ "building_height":26.635
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1821,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5583133676896,
+ 45.521445747773335
+ ],
+ [
+ -73.55843666833941,
+ 45.52150504816973
+ ],
+ [
+ -73.55845686801189,
+ 45.52148174763484
+ ],
+ [
+ -73.55839546769852,
+ 45.52145564751042
+ ],
+ [
+ -73.55843516827025,
+ 45.52140954826234
+ ],
+ [
+ -73.55843826823333,
+ 45.52140664794874
+ ],
+ [
+ -73.55840296804439,
+ 45.52139144760751
+ ],
+ [
+ -73.5583829680214,
+ 45.52141544781496
+ ],
+ [
+ -73.55835326791083,
+ 45.521402247565966
+ ],
+ [
+ -73.5583133676896,
+ 45.521445747773335
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55826482228557,
+ 45.52145516457448
+ ],
+ [
+ -73.55827116790192,
+ 45.52145834817453
+ ],
+ [
+ -73.55836836842731,
+ 45.52136154784745
+ ],
+ [
+ -73.55835616192917,
+ 45.521355480121606
+ ],
+ [
+ -73.55826482228557,
+ 45.52145516457448
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1821,
+ "ID_UEV":"01032268",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-23-2785-8-000-0000",
+ "SUPERFICIE":936,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000753773169714,
+ "OBJECTID":89693,
+ "Join_Count":2,
+ "TARGET_FID":89693,
+ "feature_id":"c1cb7111-c984-40a3-aa7b-f7bd8c0089ac",
+ "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":3.04,
+ "heightmax":9.46,
+ "elevmin":26.11,
+ "elevmax":27.15,
+ "bldgarea":94.82,
+ "comment":" ",
+ "OBJECTID_2":89693,
+ "Shape_Le_1":0.000753773169714,
+ "Shape_Ar_1":8.37608331765e-09,
+ "OBJECTID_3":89693,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89692,
+ "g_objectid":"944768",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004223437560000000",
+ "g_sup_tota":"461",
+ "g_geometry":"0.00106556",
+ "g_geomet_1":"5.29691e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000753773169714,
+ "Shape_Area":8.37608331765e-09,
+ "Shape_Le_3":0.000753775640713,
+ "Shape_Ar_2":8.37608331765e-09,
+ "building_height":3.2100000000000004
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1822,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55432766141429,
+ 45.53361637914288
+ ],
+ [
+ -73.55440116030715,
+ 45.53364755324228
+ ],
+ [
+ -73.55449118154463,
+ 45.53354260415815
+ ],
+ [
+ -73.5544244671373,
+ 45.53351645007441
+ ],
+ [
+ -73.55448476668049,
+ 45.533440450166935
+ ],
+ [
+ -73.55448776681882,
+ 45.53343664963197
+ ],
+ [
+ -73.55448329808758,
+ 45.533434929228896
+ ],
+ [
+ -73.55432766141429,
+ 45.53361637914288
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1822,
+ "ID_UEV":"01023656",
+ "CIVIQUE_DE":" 2104",
+ "CIVIQUE_FI":" 2106",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-57-4737-3-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000635463087834,
+ "OBJECTID":89709,
+ "Join_Count":1,
+ "TARGET_FID":89709,
+ "feature_id":"db37c634-34a1-438d-8735-152699425ca7",
+ "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.34,
+ "heightmax":33.18,
+ "elevmin":18.67,
+ "elevmax":19.62,
+ "bldgarea":3005.49,
+ "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_2":89709,
+ "Shape_Le_1":0.000635463087834,
+ "Shape_Ar_1":1.10989965246e-08,
+ "OBJECTID_3":89709,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89708,
+ "g_objectid":"941194",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425130",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004357473730000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.00065393",
+ "g_geomet_1":"1.88022e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000635463087834,
+ "Shape_Area":1.10989965246e-08,
+ "Shape_Le_3":0.000635463062201,
+ "Shape_Ar_2":1.10989965246e-08,
+ "building_height":15.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1823,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55738810200116,
+ 45.53367951784577
+ ],
+ [
+ -73.55759333988257,
+ 45.53377185753549
+ ],
+ [
+ -73.55761076784451,
+ 45.533753249663036
+ ],
+ [
+ -73.55760686838411,
+ 45.53375135029488
+ ],
+ [
+ -73.55754996827825,
+ 45.53372654969081
+ ],
+ [
+ -73.55758103895563,
+ 45.53369144465474
+ ],
+ [
+ -73.5574392257615,
+ 45.53362763146032
+ ],
+ [
+ -73.55738810200116,
+ 45.53367951784577
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1823,
+ "ID_UEV":"01025711",
+ "CIVIQUE_DE":" 2465",
+ "CIVIQUE_FI":" 2467",
+ "NOM_RUE":"rue de Rouen (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-37-0954-0-000-0000",
+ "SUPERFICIE":242,
+ "SUPERFIC_1":206,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000592187246337,
+ "OBJECTID":89717,
+ "Join_Count":1,
+ "TARGET_FID":89717,
+ "feature_id":"5772c71f-f6b8-4ae7-80c6-3e30c9248552",
+ "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.49,
+ "heightmax":33.51,
+ "elevmin":19.82,
+ "elevmax":23.81,
+ "bldgarea":754.06,
+ "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_2":89717,
+ "Shape_Le_1":0.000592187246337,
+ "Shape_Ar_1":1.23330795822e-08,
+ "OBJECTID_3":89717,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89716,
+ "g_objectid":"941301",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425298",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004337095400000000",
+ "g_sup_tota":"242.4",
+ "g_geometry":"0.000960524",
+ "g_geomet_1":"2.79103e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000592187246337,
+ "Shape_Area":1.23330795822e-08,
+ "Shape_Le_3":0.000592186644698,
+ "Shape_Ar_2":1.23330795822e-08,
+ "building_height":15.509999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1824,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55837946246406,
+ 45.53874050661938
+ ],
+ [
+ -73.55828026904103,
+ 45.538706951115195
+ ],
+ [
+ -73.5582774694515,
+ 45.538711150949155
+ ],
+ [
+ -73.55820266923963,
+ 45.53881955073198
+ ],
+ [
+ -73.55820256941489,
+ 45.538819650556725
+ ],
+ [
+ -73.55824036881981,
+ 45.53883745083798
+ ],
+ [
+ -73.55822336893517,
+ 45.53885535094398
+ ],
+ [
+ -73.55824236891205,
+ 45.53886425063495
+ ],
+ [
+ -73.55824706876905,
+ 45.538865951252944
+ ],
+ [
+ -73.55826276913334,
+ 45.538844850459775
+ ],
+ [
+ -73.55829641097243,
+ 45.53885719095689
+ ],
+ [
+ -73.55837946246406,
+ 45.53874050661938
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1824,
+ "ID_UEV":"01024926",
+ "CIVIQUE_DE":" 2595",
+ "CIVIQUE_FI":" 2595",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-23-5021-1-000-0000",
+ "SUPERFICIE":270,
+ "SUPERFIC_1":229,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000539410017029,
+ "OBJECTID":89734,
+ "Join_Count":1,
+ "TARGET_FID":89734,
+ "feature_id":"abf0269c-02da-4abb-9c35-4825568117c6",
+ "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":52.71,
+ "elevmin":33.68,
+ "elevmax":42.14,
+ "bldgarea":1138.79,
+ "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_2":89734,
+ "Shape_Le_1":0.000539410017029,
+ "Shape_Ar_1":1.46332485818e-08,
+ "OBJECTID_3":89734,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89733,
+ "g_objectid":"944073",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361317",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004423412510000000",
+ "g_sup_tota":"219.1",
+ "g_geometry":"0.000701807",
+ "g_geomet_1":"2.52357e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000539410017029,
+ "Shape_Area":1.46332485818e-08,
+ "Shape_Le_3":0.000539410523461,
+ "Shape_Ar_2":1.46332485818e-08,
+ "building_height":26.095
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1825,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55475835843335,
+ 45.52238260122636
+ ],
+ [
+ -73.55492005024198,
+ 45.52245939793316
+ ],
+ [
+ -73.55499706728267,
+ 45.52238614815251
+ ],
+ [
+ -73.55499656725962,
+ 45.52238584777895
+ ],
+ [
+ -73.554934867472,
+ 45.52235664769143
+ ],
+ [
+ -73.55495676686314,
+ 45.52233374825418
+ ],
+ [
+ -73.5550743667105,
+ 45.52238934794035
+ ],
+ [
+ -73.55507916729158,
+ 45.522391547682076
+ ],
+ [
+ -73.55508556686726,
+ 45.5223847524047
+ ],
+ [
+ -73.5549560716872,
+ 45.52232411471642
+ ],
+ [
+ -73.55495096713527,
+ 45.5223295475209
+ ],
+ [
+ -73.5548568674723,
+ 45.522285747839284
+ ],
+ [
+ -73.55485156686817,
+ 45.52228334754874
+ ],
+ [
+ -73.55475835843335,
+ 45.52238260122636
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1825,
+ "ID_UEV":"01022287",
+ "CIVIQUE_DE":" 1585",
+ "CIVIQUE_FI":" 1595",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1988,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-54-0897-8-000-0000",
+ "SUPERFICIE":341,
+ "SUPERFIC_1":526,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000926732104665,
+ "OBJECTID":89735,
+ "Join_Count":1,
+ "TARGET_FID":89735,
+ "feature_id":"f46401ea-0a46-40f9-9049-7cea3595b403",
+ "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":36.07,
+ "elevmin":22.99,
+ "elevmax":26.04,
+ "bldgarea":1109.8,
+ "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_2":89735,
+ "Shape_Le_1":0.000926732104665,
+ "Shape_Ar_1":2.29102462928e-08,
+ "OBJECTID_3":89735,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89734,
+ "g_objectid":"942224",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567659",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004255190710000000",
+ "g_sup_tota":"267.2",
+ "g_geometry":"0.000735972",
+ "g_geomet_1":"3.04612e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000926732104665,
+ "Shape_Area":2.29102462928e-08,
+ "Shape_Le_3":0.000926730892681,
+ "Shape_Ar_2":2.29102462928e-08,
+ "building_height":17.53
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1826,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5593529686864,
+ 45.53864884951509
+ ],
+ [
+ -73.55935886913835,
+ 45.53865074978257
+ ],
+ [
+ -73.55958097020745,
+ 45.538726250566306
+ ],
+ [
+ -73.55958376979699,
+ 45.538722251281165
+ ],
+ [
+ -73.55962836987521,
+ 45.53865894980099
+ ],
+ [
+ -73.55962337054396,
+ 45.53865725008232
+ ],
+ [
+ -73.55945316935014,
+ 45.53859474989808
+ ],
+ [
+ -73.55941706876456,
+ 45.53864404983333
+ ],
+ [
+ -73.55936986874629,
+ 45.53862624955207
+ ],
+ [
+ -73.5593529686864,
+ 45.53864884951509
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1826,
+ "ID_UEV":"01026096",
+ "CIVIQUE_DE":" 2770",
+ "CIVIQUE_FI":" 2774",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1945,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-13-5306-7-000-0000",
+ "SUPERFICIE":353,
+ "SUPERFIC_1":240,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000649462726401,
+ "OBJECTID":89744,
+ "Join_Count":1,
+ "TARGET_FID":89744,
+ "feature_id":"8d2a43d2-df62-4881-b73a-c08d060be37b",
+ "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":55.41,
+ "elevmin":42.2,
+ "elevmax":43.34,
+ "bldgarea":144.31,
+ "comment":" ",
+ "OBJECTID_2":89744,
+ "Shape_Le_1":0.000649462726401,
+ "Shape_Ar_1":1.66288136529e-08,
+ "OBJECTID_3":89744,
+ "Join_Cou_1":1,
+ "TARGET_F_1":89743,
+ "g_objectid":"944120",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361375",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004413530670000000",
+ "g_sup_tota":"353.4",
+ "g_geometry":"0.000916384",
+ "g_geomet_1":"4.07126e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000649462726401,
+ "Shape_Area":1.66288136529e-08,
+ "Shape_Le_3":0.000649462788955,
+ "Shape_Ar_2":1.66288136529e-08,
+ "building_height":27.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1827,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55667753236408,
+ 45.5364522329345
+ ],
+ [
+ -73.55673503591503,
+ 45.53647591298329
+ ],
+ [
+ -73.55682895031765,
+ 45.53650920588544
+ ],
+ [
+ -73.55693776648658,
+ 45.53635760357084
+ ],
+ [
+ -73.55680776768618,
+ 45.53631155018819
+ ],
+ [
+ -73.55680766786142,
+ 45.536311449464115
+ ],
+ [
+ -73.5567801683919,
+ 45.53634634945476
+ ],
+ [
+ -73.55675935897908,
+ 45.53633823217397
+ ],
+ [
+ -73.55667753236408,
+ 45.5364522329345
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1827,
+ "ID_UEV":"01024299",
+ "CIVIQUE_DE":" 2324",
+ "CIVIQUE_FI":" 2334",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-6253-4-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":660,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000693594583558,
+ "OBJECTID":89749,
+ "Join_Count":1,
+ "TARGET_FID":89749,
+ "feature_id":"465326c4-255b-495a-8fdc-43800d1855ad",
+ "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.56,
+ "heightmax":36.73,
+ "elevmin":21.99,
+ "elevmax":25.2,
+ "bldgarea":1025.98,
+ "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_2":89749,
+ "Shape_Le_1":0.000693594583558,
+ "Shape_Ar_1":2.80720211145e-08,
+ "OBJECTID_3":89749,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89748,
+ "g_objectid":"940957",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424754",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430625340000000",
+ "g_sup_tota":"335.2",
+ "g_geometry":"0.000819677",
+ "g_geomet_1":"3.8621e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000693594583558,
+ "Shape_Area":2.80720211145e-08,
+ "Shape_Le_3":0.000693595194034,
+ "Shape_Ar_2":2.80720211145e-08,
+ "building_height":18.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1828,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54640077609679,
+ 45.52241445701188
+ ],
+ [
+ -73.54641116416573,
+ 45.522417747631245
+ ],
+ [
+ -73.54648400925147,
+ 45.52230400407682
+ ],
+ [
+ -73.5464963587418,
+ 45.522282390670085
+ ],
+ [
+ -73.5464415369692,
+ 45.52225781129925
+ ],
+ [
+ -73.54637836409208,
+ 45.52223784814847
+ ],
+ [
+ -73.5463155644336,
+ 45.52221794795023
+ ],
+ [
+ -73.54630513139854,
+ 45.52223422747791
+ ],
+ [
+ -73.54626269508915,
+ 45.52235399649004
+ ],
+ [
+ -73.54640077609679,
+ 45.52241445701188
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1828,
+ "ID_UEV":"01022597",
+ "CIVIQUE_DE":" 2000",
+ "CIVIQUE_FI":" 2000",
+ "NOM_RUE":"avenue Viger Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres services d'aqueduc et d'irrigation",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0142-14-7689-4-000-0000",
+ "SUPERFICIE":254,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000660208295682,
+ "OBJECTID":89762,
+ "Join_Count":1,
+ "TARGET_FID":89762,
+ "feature_id":"f3d4e579-f596-4bd4-a1dd-d6e9a245da4e",
+ "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":24.48,
+ "elevmin":17.13,
+ "elevmax":18.76,
+ "bldgarea":273.7,
+ "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_2":89762,
+ "Shape_Le_1":0.000660208295682,
+ "Shape_Ar_1":2.76705839257e-08,
+ "OBJECTID_3":89762,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89761,
+ "g_objectid":"945651",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1182644",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4839",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014214768940000000",
+ "g_sup_tota":"254",
+ "g_geometry":"0.000686969",
+ "g_geomet_1":"2.92571e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000660208295682,
+ "Shape_Area":2.76705839257e-08,
+ "Shape_Le_3":0.000660207167736,
+ "Shape_Ar_2":2.76705839257e-08,
+ "building_height":11.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1829,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55288626940765,
+ 45.53471989315884
+ ],
+ [
+ -73.55289476710166,
+ 45.53472304977922
+ ],
+ [
+ -73.55289166713857,
+ 45.53472724961318
+ ],
+ [
+ -73.55292036720303,
+ 45.53473704952551
+ ],
+ [
+ -73.55292066667727,
+ 45.534736949700765
+ ],
+ [
+ -73.55293896698159,
+ 45.53471255019433
+ ],
+ [
+ -73.55297744267668,
+ 45.53472681254266
+ ],
+ [
+ -73.55303700027919,
+ 45.53464378083611
+ ],
+ [
+ -73.55296098238527,
+ 45.53461573008217
+ ],
+ [
+ -73.55288626940765,
+ 45.53471989315884
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1829,
+ "ID_UEV":"01024217",
+ "CIVIQUE_DE":" 2063",
+ "CIVIQUE_FI":" 2067",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-68-6466-4-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000427861961952,
+ "OBJECTID":89774,
+ "Join_Count":1,
+ "TARGET_FID":89774,
+ "feature_id":"d9727e86-848d-486e-944e-5830c8daa0ba",
+ "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.51,
+ "heightmax":32.74,
+ "elevmin":19.01,
+ "elevmax":20.93,
+ "bldgarea":774.45,
+ "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_2":89774,
+ "Shape_Le_1":0.000427861961952,
+ "Shape_Ar_1":9.11757443621e-09,
+ "OBJECTID_3":89774,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89773,
+ "g_objectid":"941031",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424869",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004368586900000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000656901",
+ "g_geomet_1":"1.93055e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000427861961952,
+ "Shape_Area":9.11757443621e-09,
+ "Shape_Le_3":0.000427860118492,
+ "Shape_Ar_2":9.11757443621e-09,
+ "building_height":15.115000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1830,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56167928369383,
+ 45.53088696011541
+ ],
+ [
+ -73.56178102219826,
+ 45.53093429413266
+ ],
+ [
+ -73.56186736071197,
+ 45.530841307830386
+ ],
+ [
+ -73.56176438114312,
+ 45.530795312004344
+ ],
+ [
+ -73.56167928369383,
+ 45.53088696011541
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1830,
+ "ID_UEV":"01022540",
+ "CIVIQUE_DE":" 2384",
+ "CIVIQUE_FI":" 2384",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1984,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-7235-0-000-0000",
+ "SUPERFICIE":270,
+ "SUPERFIC_1":328,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000476947853853,
+ "OBJECTID":89805,
+ "Join_Count":1,
+ "TARGET_FID":89805,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":89805,
+ "Shape_Le_1":0.000476947853853,
+ "Shape_Ar_1":1.34495062699e-08,
+ "OBJECTID_3":89805,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89804,
+ "g_objectid":"940349",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423681",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394803040000000",
+ "g_sup_tota":"270",
+ "g_geometry":"0.000807298",
+ "g_geomet_1":"3.11215e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000476947853853,
+ "Shape_Area":1.34495062699e-08,
+ "Shape_Le_3":0.000476948131575,
+ "Shape_Ar_2":1.34495062699e-08,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1831,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56178102219826,
+ 45.53093429413266
+ ],
+ [
+ -73.56183856442006,
+ 45.53096106605065
+ ],
+ [
+ -73.5619119688841,
+ 45.53088200844822
+ ],
+ [
+ -73.56190347029077,
+ 45.530878249282075
+ ],
+ [
+ -73.56194307013843,
+ 45.53083394867809
+ ],
+ [
+ -73.56190077052598,
+ 45.53081494870122
+ ],
+ [
+ -73.5618741703785,
+ 45.53084434843822
+ ],
+ [
+ -73.56186736071197,
+ 45.530841307830386
+ ],
+ [
+ -73.56178102219826,
+ 45.53093429413266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1831,
+ "ID_UEV":"01022542",
+ "CIVIQUE_DE":" 2392",
+ "CIVIQUE_FI":" 2396",
+ "NOM_RUE":"avenue des \u00c3\u2030rables (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1938,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-6539-6-000-0000",
+ "SUPERFICIE":153,
+ "SUPERFIC_1":239,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000460423833026,
+ "OBJECTID":89807,
+ "Join_Count":1,
+ "TARGET_FID":89807,
+ "feature_id":"86af979e-cfef-4f2c-b855-0e79faf6c4ef",
+ "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":45.19,
+ "elevmin":28.81,
+ "elevmax":39.51,
+ "bldgarea":2557.03,
+ "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_2":89807,
+ "Shape_Le_1":0.000460423833026,
+ "Shape_Ar_1":9.26464088151e-09,
+ "OBJECTID_3":89807,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89806,
+ "g_objectid":"940377",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423716",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394723500000000",
+ "g_sup_tota":"270",
+ "g_geometry":"0.000807298",
+ "g_geomet_1":"3.11215e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000460423833026,
+ "Shape_Area":9.26464088151e-09,
+ "Shape_Le_3":0.000460423596073,
+ "Shape_Ar_2":9.26464088151e-09,
+ "building_height":22.084999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1832,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55699241199207,
+ 45.53874854386051
+ ],
+ [
+ -73.55707977033698,
+ 45.53877907044804
+ ],
+ [
+ -73.55718129390344,
+ 45.538637965020364
+ ],
+ [
+ -73.55717706888846,
+ 45.53864205064042
+ ],
+ [
+ -73.5571356694974,
+ 45.53862085092183
+ ],
+ [
+ -73.55710796947905,
+ 45.5386476507188
+ ],
+ [
+ -73.5570765120932,
+ 45.53863165267892
+ ],
+ [
+ -73.55699241199207,
+ 45.53874854386051
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55709469998226,
+ 45.53860637363553
+ ],
+ [
+ -73.55708893802591,
+ 45.53861438299767
+ ],
+ [
+ -73.55709526925313,
+ 45.53860825052064
+ ],
+ [
+ -73.55709616947449,
+ 45.53860685117554
+ ],
+ [
+ -73.55709469998226,
+ 45.53860637363553
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1832,
+ "ID_UEV":"01025148",
+ "CIVIQUE_DE":" 2530",
+ "CIVIQUE_FI":" 2530",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1965,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-33-4008-8-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":349,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000558485461196,
+ "OBJECTID":89808,
+ "Join_Count":1,
+ "TARGET_FID":89808,
+ "feature_id":"371d10c2-7fba-4ec3-86e3-d0638969ac6c",
+ "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.54,
+ "heightmax":41.69,
+ "elevmin":26.82,
+ "elevmax":31.02,
+ "bldgarea":962.18,
+ "comment":" ",
+ "OBJECTID_2":89808,
+ "Shape_Le_1":0.000558485461196,
+ "Shape_Ar_1":1.40915314553e-08,
+ "OBJECTID_3":89808,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89807,
+ "g_objectid":"944055",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361294",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004433400880000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667206",
+ "g_geomet_1":"2.14038e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000558485461196,
+ "Shape_Area":1.40915314553e-08,
+ "Shape_Le_3":0.000558485417227,
+ "Shape_Ar_2":1.40915314553e-08,
+ "building_height":20.575
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1833,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56362276270218,
+ 45.52473275276462
+ ],
+ [
+ -73.56367766991038,
+ 45.52475384816186
+ ],
+ [
+ -73.5636706704869,
+ 45.52476294750232
+ ],
+ [
+ -73.56369085397158,
+ 45.52477067177937
+ ],
+ [
+ -73.56378317747351,
+ 45.524670637490225
+ ],
+ [
+ -73.56371847035297,
+ 45.52464064779795
+ ],
+ [
+ -73.56377077042656,
+ 45.52458484756296
+ ],
+ [
+ -73.56376271429967,
+ 45.524581113577824
+ ],
+ [
+ -73.56362276270218,
+ 45.52473275276462
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1833,
+ "ID_UEV":"01032439",
+ "CIVIQUE_DE":" 2230",
+ "CIVIQUE_FI":" 2234",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-87-1950-6-000-0000",
+ "SUPERFICIE":190,
+ "SUPERFIC_1":210,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000591065748977,
+ "OBJECTID":89815,
+ "Join_Count":1,
+ "TARGET_FID":89815,
+ "feature_id":"12993f7d-9f44-4a1d-b0d4-f5c6e3a6cdb8",
+ "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.21,
+ "heightmax":13.03,
+ "elevmin":30.24,
+ "elevmax":38.39,
+ "bldgarea":1313.19,
+ "comment":" ",
+ "OBJECTID_2":89815,
+ "Shape_Le_1":0.000591065748977,
+ "Shape_Ar_1":1.0500972762e-08,
+ "OBJECTID_3":89815,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89814,
+ "g_objectid":"942949",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885087",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994287135410000000",
+ "g_sup_tota":"192.3",
+ "g_geometry":"0.000737461",
+ "g_geomet_1":"2.21399e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000591065748977,
+ "Shape_Area":1.0500972762e-08,
+ "Shape_Le_3":0.000591066235305,
+ "Shape_Ar_2":1.0500972762e-08,
+ "building_height":5.41
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1834,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55088800909618,
+ 45.53700673512302
+ ],
+ [
+ -73.5509388657579,
+ 45.53701475078042
+ ],
+ [
+ -73.5509388657579,
+ 45.53701485060517
+ ],
+ [
+ -73.5509781661313,
+ 45.5369641504255
+ ],
+ [
+ -73.55100033801703,
+ 45.536972621139846
+ ],
+ [
+ -73.55106437694128,
+ 45.5368827321027
+ ],
+ [
+ -73.55099321088981,
+ 45.53685907004034
+ ],
+ [
+ -73.55088800909618,
+ 45.53700673512302
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1834,
+ "ID_UEV":"01025299",
+ "CIVIQUE_DE":" 2045",
+ "CIVIQUE_FI":" 2049",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-1814-1-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":220,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000506139514507,
+ "OBJECTID":89820,
+ "Join_Count":1,
+ "TARGET_FID":89820,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":89820,
+ "Shape_Le_1":0.000506139514507,
+ "Shape_Ar_1":1.10475264609e-08,
+ "OBJECTID_3":89820,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89819,
+ "g_objectid":"943806",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360964",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481181410000000",
+ "g_sup_tota":"151.9",
+ "g_geometry":"0.000637366",
+ "g_geomet_1":"1.75015e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000506139514507,
+ "Shape_Area":1.10475264609e-08,
+ "Shape_Le_3":0.000506139473185,
+ "Shape_Ar_2":1.10475264609e-08,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1835,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55070896307004,
+ 45.53637130384289
+ ],
+ [
+ -73.55079250379286,
+ 45.53640093470567
+ ],
+ [
+ -73.55083659305618,
+ 45.53633980508823
+ ],
+ [
+ -73.55054614890749,
+ 45.53623678774785
+ ],
+ [
+ -73.55054136631286,
+ 45.53624344992557
+ ],
+ [
+ -73.55060066580992,
+ 45.53626444999467
+ ],
+ [
+ -73.5505834662758,
+ 45.53628834947804
+ ],
+ [
+ -73.5506097660497,
+ 45.536297949740884
+ ],
+ [
+ -73.55073066640897,
+ 45.53634174942249
+ ],
+ [
+ -73.55070896307004,
+ 45.53637130384289
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1835,
+ "ID_UEV":"01025560",
+ "CIVIQUE_DE":" 2823",
+ "CIVIQUE_FI":" 2827",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-80-4346-3-000-0000",
+ "SUPERFICIE":194,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000765992298453,
+ "OBJECTID":89845,
+ "Join_Count":1,
+ "TARGET_FID":89845,
+ "feature_id":"9cf52ec4-8f02-446a-ba21-b805414f3e6d",
+ "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":34.16,
+ "elevmin":20.86,
+ "elevmax":22.29,
+ "bldgarea":923.51,
+ "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_2":89845,
+ "Shape_Le_1":0.000765992298453,
+ "Shape_Ar_1":1.2650733777e-08,
+ "OBJECTID_3":89845,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89844,
+ "g_objectid":"943733",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360883",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004480465320000000",
+ "g_sup_tota":"192.4",
+ "g_geometry":"0.000762739",
+ "g_geomet_1":"2.21658e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000765992298453,
+ "Shape_Area":1.2650733777e-08,
+ "Shape_Le_3":0.000765991500962,
+ "Shape_Ar_2":1.2650733777e-08,
+ "building_height":16.819999999999997
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1836,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55091487094639,
+ 45.5372794752179
+ ],
+ [
+ -73.55100292086995,
+ 45.537309025141695
+ ],
+ [
+ -73.5510859489792,
+ 45.537192444226214
+ ],
+ [
+ -73.55107756729774,
+ 45.53718955110719
+ ],
+ [
+ -73.55100646689678,
+ 45.537164851227196
+ ],
+ [
+ -73.55100636707203,
+ 45.537164851227196
+ ],
+ [
+ -73.55097916617743,
+ 45.53719455043845
+ ],
+ [
+ -73.55097628295094,
+ 45.53719324822013
+ ],
+ [
+ -73.55091487094639,
+ 45.5372794752179
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1836,
+ "ID_UEV":"01025328",
+ "CIVIQUE_DE":" 2064",
+ "CIVIQUE_FI":" 2066",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-1647-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":96,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000469535270418,
+ "OBJECTID":89849,
+ "Join_Count":1,
+ "TARGET_FID":89849,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":89849,
+ "Shape_Le_1":0.000469535270418,
+ "Shape_Ar_1":1.25477877251e-08,
+ "OBJECTID_3":89849,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89848,
+ "g_objectid":"943830",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360990",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481105100000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000666488",
+ "g_geomet_1":"2.14003e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000469535270418,
+ "Shape_Area":1.25477877251e-08,
+ "Shape_Le_3":0.00046953430263,
+ "Shape_Ar_2":1.25477877251e-08,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1837,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55840475499728,
+ 45.53814998298562
+ ],
+ [
+ -73.55849141456898,
+ 45.538181758731476
+ ],
+ [
+ -73.55856939028698,
+ 45.53807452087273
+ ],
+ [
+ -73.55848175405156,
+ 45.538043661536044
+ ],
+ [
+ -73.55840475499728,
+ 45.53814998298562
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1837,
+ "ID_UEV":"01024659",
+ "CIVIQUE_DE":" 2585",
+ "CIVIQUE_FI":" 2585",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1954,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-22-3449-8-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":300,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000449076582156,
+ "OBJECTID":89852,
+ "Join_Count":1,
+ "TARGET_FID":89852,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":89852,
+ "Shape_Le_1":0.000449076582156,
+ "Shape_Ar_1":1.17322812545e-08,
+ "OBJECTID_3":89852,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89851,
+ "g_objectid":"944110",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361363",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422414510000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668544",
+ "g_geomet_1":"2.14437e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000449076582156,
+ "Shape_Area":1.17322812545e-08,
+ "Shape_Le_3":0.000449077481219,
+ "Shape_Ar_2":1.17322812545e-08,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1838,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55698628131367,
+ 45.535298193207346
+ ],
+ [
+ -73.55706211394724,
+ 45.53532752099859
+ ],
+ [
+ -73.55712767272576,
+ 45.53525208766401
+ ],
+ [
+ -73.55705309554577,
+ 45.535221159978846
+ ],
+ [
+ -73.55698628131367,
+ 45.535298193207346
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1838,
+ "ID_UEV":"01024040",
+ "CIVIQUE_DE":" 2320",
+ "CIVIQUE_FI":" 2322",
+ "NOM_RUE":"rue du Havre (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-39-4227-3-000-0000",
+ "SUPERFICIE":104,
+ "SUPERFIC_1":134,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000363955519473,
+ "OBJECTID":89853,
+ "Join_Count":1,
+ "TARGET_FID":89853,
+ "feature_id":"71e441d9-7886-4c8a-bce1-adc516f28173",
+ "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":3.87,
+ "heightmax":30.78,
+ "elevmin":21.54,
+ "elevmax":23.33,
+ "bldgarea":280.47,
+ "comment":" ",
+ "OBJECTID_2":89853,
+ "Shape_Le_1":0.000363955519473,
+ "Shape_Ar_1":7.72720775364e-09,
+ "OBJECTID_3":89853,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89852,
+ "g_objectid":"941113",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425024",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004339363170000000",
+ "g_sup_tota":"101",
+ "g_geometry":"0.000468971",
+ "g_geomet_1":"1.17631e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000363955519473,
+ "Shape_Area":7.72720775364e-09,
+ "Shape_Le_3":0.000363954656321,
+ "Shape_Ar_2":7.72720775364e-09,
+ "building_height":13.455
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1839,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5571448030121,
+ 45.52026615291092
+ ],
+ [
+ -73.55714876722368,
+ 45.52026804688315
+ ],
+ [
+ -73.55714906669792,
+ 45.520268246532645
+ ],
+ [
+ -73.55716696680392,
+ 45.520249746578834
+ ],
+ [
+ -73.55727046348295,
+ 45.52029944761171
+ ],
+ [
+ -73.55734887896944,
+ 45.520216744157715
+ ],
+ [
+ -73.55723973544728,
+ 45.520165118575655
+ ],
+ [
+ -73.5571448030121,
+ 45.52026615291092
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1839,
+ "ID_UEV":"01021903",
+ "CIVIQUE_DE":" 1569",
+ "CIVIQUE_FI":" 1577",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-32-2861-8-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":302,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000518650146351,
+ "OBJECTID":89872,
+ "Join_Count":1,
+ "TARGET_FID":89872,
+ "feature_id":"0264c9fe-20ec-4849-a69c-40f7d4f525fd",
+ "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.41,
+ "heightmax":20.48,
+ "elevmin":25.55,
+ "elevmax":27.32,
+ "bldgarea":959.69,
+ "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_2":89872,
+ "Shape_Le_1":0.000518650146351,
+ "Shape_Ar_1":1.3124089205e-08,
+ "OBJECTID_3":89872,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89871,
+ "g_objectid":"942034",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567254",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004232196740000000",
+ "g_sup_tota":"252.7",
+ "g_geometry":"0.000702878",
+ "g_geomet_1":"2.86744e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000518650146351,
+ "Shape_Area":1.3124089205e-08,
+ "Shape_Le_3":0.000518649969926,
+ "Shape_Ar_2":1.3124089205e-08,
+ "building_height":9.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1840,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55372263711186,
+ 45.52407654714523
+ ],
+ [
+ -73.55388552142152,
+ 45.52415199846625
+ ],
+ [
+ -73.55393157750214,
+ 45.52410287120084
+ ],
+ [
+ -73.55392156714845,
+ 45.52409804813671
+ ],
+ [
+ -73.55400226691293,
+ 45.524013747486755
+ ],
+ [
+ -73.55392196734677,
+ 45.523975948081834
+ ],
+ [
+ -73.55387976755907,
+ 45.5240202477865
+ ],
+ [
+ -73.5538458658159,
+ 45.52400404829849
+ ],
+ [
+ -73.55388626606018,
+ 45.52396204816029
+ ],
+ [
+ -73.55385416655838,
+ 45.523946947643815
+ ],
+ [
+ -73.55385366653533,
+ 45.52394664816957
+ ],
+ [
+ -73.55384166598195,
+ 45.5239566477314
+ ],
+ [
+ -73.5538373933029,
+ 45.52395413772357
+ ],
+ [
+ -73.55372263711186,
+ 45.52407654714523
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1840,
+ "ID_UEV":"01022110",
+ "CIVIQUE_DE":" 1578",
+ "CIVIQUE_FI":" 1592",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1932,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-56-9080-7-000-0000",
+ "SUPERFICIE":296,
+ "SUPERFIC_1":595,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000844868998513,
+ "OBJECTID":89875,
+ "Join_Count":1,
+ "TARGET_FID":89875,
+ "feature_id":"9141044b-3efe-4ab9-a812-ee5377173041",
+ "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.51,
+ "heightmax":36.99,
+ "elevmin":18.54,
+ "elevmax":24.57,
+ "bldgarea":2092.08,
+ "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_2":89875,
+ "Shape_Le_1":0.000844868998513,
+ "Shape_Ar_1":2.78824395247e-08,
+ "OBJECTID_3":89875,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89874,
+ "g_objectid":"942412",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729320",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004256788930000000",
+ "g_sup_tota":"297.5",
+ "g_geometry":"0.000760838",
+ "g_geomet_1":"3.42151e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000844868998513,
+ "Shape_Area":2.78824395247e-08,
+ "Shape_Le_3":0.000844868707707,
+ "Shape_Ar_2":2.78824395247e-08,
+ "building_height":17.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1841,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55755422746746,
+ 45.53857473818392
+ ],
+ [
+ -73.55755666912682,
+ 45.538576051194106
+ ],
+ [
+ -73.5575836694726,
+ 45.53855105094054
+ ],
+ [
+ -73.55765341729322,
+ 45.538588639904106
+ ],
+ [
+ -73.55772242407245,
+ 45.538491691188895
+ ],
+ [
+ -73.55767916938001,
+ 45.53847895049346
+ ],
+ [
+ -73.55763224455428,
+ 45.538465131510904
+ ],
+ [
+ -73.55755422746746,
+ 45.53857473818392
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1841,
+ "ID_UEV":"01024938",
+ "CIVIQUE_DE":" 2551",
+ "CIVIQUE_FI":" 2555",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-32-0095-1-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":135,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000466348055244,
+ "OBJECTID":89885,
+ "Join_Count":1,
+ "TARGET_FID":89885,
+ "feature_id":"2a540e9d-5f42-4b5a-9b81-dc3f2618e82a",
+ "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":42.58,
+ "elevmin":26.8,
+ "elevmax":34.1,
+ "bldgarea":1269.01,
+ "comment":" ",
+ "OBJECTID_2":89885,
+ "Shape_Le_1":0.000466348055244,
+ "Shape_Ar_1":9.9348988257e-09,
+ "OBJECTID_3":89885,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89884,
+ "g_objectid":"944067",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361311",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422939990000000",
+ "g_sup_tota":"188.7",
+ "g_geometry":"0.000671141",
+ "g_geomet_1":"2.16097e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000466348055244,
+ "Shape_Area":9.9348988257e-09,
+ "Shape_Le_3":0.000466347978845,
+ "Shape_Ar_2":9.9348988257e-09,
+ "building_height":21.04
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1842,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5541294984994,
+ 45.52426501446914
+ ],
+ [
+ -73.55421082419203,
+ 45.52430268706965
+ ],
+ [
+ -73.55432448590814,
+ 45.524181234526644
+ ],
+ [
+ -73.5542439021562,
+ 45.52414278221392
+ ],
+ [
+ -73.5541294984994,
+ 45.52426501446914
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1842,
+ "ID_UEV":"01022113",
+ "CIVIQUE_DE":" 1610",
+ "CIVIQUE_FI":" 1614",
+ "NOM_RUE":"rue Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-57-6300-0-000-0000",
+ "SUPERFICIE":149,
+ "SUPERFIC_1":333,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000512677039427,
+ "OBJECTID":89900,
+ "Join_Count":1,
+ "TARGET_FID":89900,
+ "feature_id":"9141044b-3efe-4ab9-a812-ee5377173041",
+ "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.51,
+ "heightmax":36.99,
+ "elevmin":18.54,
+ "elevmax":24.57,
+ "bldgarea":2092.08,
+ "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_2":89900,
+ "Shape_Le_1":0.000512677039427,
+ "Shape_Ar_1":1.42041406509e-08,
+ "OBJECTID_3":89900,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89899,
+ "g_objectid":"942411",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729318",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004257550300000000",
+ "g_sup_tota":"153.1",
+ "g_geometry":"0.000586595",
+ "g_geomet_1":"1.7585e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000512677039427,
+ "Shape_Area":1.42041406509e-08,
+ "Shape_Le_3":0.000512675917254,
+ "Shape_Ar_2":1.42041406509e-08,
+ "building_height":17.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1843,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55221077692765,
+ 45.534857430975954
+ ],
+ [
+ -73.55228728495209,
+ 45.534884800043784
+ ],
+ [
+ -73.5523594807273,
+ 45.53478414971903
+ ],
+ [
+ -73.55234406724675,
+ 45.53477885001421
+ ],
+ [
+ -73.55236356724667,
+ 45.53475074979756
+ ],
+ [
+ -73.55230616711776,
+ 45.534731149972885
+ ],
+ [
+ -73.55234226680402,
+ 45.53467925009761
+ ],
+ [
+ -73.55233931343041,
+ 45.53467823566234
+ ],
+ [
+ -73.55221077692765,
+ 45.534857430975954
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1843,
+ "ID_UEV":"01024233",
+ "CIVIQUE_DE":" 2028",
+ "CIVIQUE_FI":" 2030",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1934,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-78-1475-9-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":192,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000603149673974,
+ "OBJECTID":89901,
+ "Join_Count":1,
+ "TARGET_FID":89901,
+ "feature_id":"ce45069a-ed71-4ef4-9d44-2f14da49b628",
+ "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.48,
+ "heightmax":31.86,
+ "elevmin":19.57,
+ "elevmax":21.65,
+ "bldgarea":903.81,
+ "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_2":89901,
+ "Shape_Le_1":0.000603149673974,
+ "Shape_Ar_1":1.19885571985e-08,
+ "OBJECTID_3":89901,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89900,
+ "g_objectid":"941005",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424839",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004378147590000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000657289",
+ "g_geomet_1":"1.93211e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000603149673974,
+ "Shape_Area":1.19885571985e-08,
+ "Shape_Le_3":0.000603149324031,
+ "Shape_Ar_2":1.19885571985e-08,
+ "building_height":14.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1844,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55228728495209,
+ 45.534884800043784
+ ],
+ [
+ -73.55236379387583,
+ 45.534912169111614
+ ],
+ [
+ -73.55244151868298,
+ 45.53480380889896
+ ],
+ [
+ -73.55242556740785,
+ 45.53479534987579
+ ],
+ [
+ -73.55238546753714,
+ 45.5347741501572
+ ],
+ [
+ -73.5523832668961,
+ 45.53477324993583
+ ],
+ [
+ -73.55237256676239,
+ 45.53478864992655
+ ],
+ [
+ -73.5523594807273,
+ 45.53478414971903
+ ],
+ [
+ -73.55228728495209,
+ 45.534884800043784
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1844,
+ "ID_UEV":"01024235",
+ "CIVIQUE_DE":" 2034",
+ "CIVIQUE_FI":" 2036",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1928,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-78-0878-5-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":169,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000436858279092,
+ "OBJECTID":89902,
+ "Join_Count":1,
+ "TARGET_FID":89902,
+ "feature_id":"ce45069a-ed71-4ef4-9d44-2f14da49b628",
+ "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.48,
+ "heightmax":31.86,
+ "elevmin":19.57,
+ "elevmax":21.65,
+ "bldgarea":903.81,
+ "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_2":89902,
+ "Shape_Le_1":0.000436858279092,
+ "Shape_Ar_1":1.06110859499e-08,
+ "OBJECTID_3":89902,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89901,
+ "g_objectid":"941005",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424839",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004378147590000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000657289",
+ "g_geomet_1":"1.93211e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000436858279092,
+ "Shape_Area":1.06110859499e-08,
+ "Shape_Le_3":0.000436858394437,
+ "Shape_Ar_2":1.06110859499e-08,
+ "building_height":14.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1845,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55243705894496,
+ 45.53494405547408
+ ],
+ [
+ -73.55259510939862,
+ 45.534994092853395
+ ],
+ [
+ -73.55267862943704,
+ 45.53487765493013
+ ],
+ [
+ -73.55253246712151,
+ 45.534826149857224
+ ],
+ [
+ -73.5525318672737,
+ 45.53482584948366
+ ],
+ [
+ -73.55251446719075,
+ 45.53484214969575
+ ],
+ [
+ -73.55251133485207,
+ 45.53484050663437
+ ],
+ [
+ -73.55243705894496,
+ 45.53494405547408
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1845,
+ "ID_UEV":"01024239",
+ "CIVIQUE_DE":" 2048",
+ "CIVIQUE_FI":" 2060",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"B",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-68-9385-3-000-0000",
+ "SUPERFICIE":338,
+ "SUPERFIC_1":357,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000619530948931,
+ "OBJECTID":89903,
+ "Join_Count":1,
+ "TARGET_FID":89903,
+ "feature_id":"ce45069a-ed71-4ef4-9d44-2f14da49b628",
+ "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.48,
+ "heightmax":31.86,
+ "elevmin":19.57,
+ "elevmax":21.65,
+ "bldgarea":903.81,
+ "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_2":89903,
+ "Shape_Le_1":0.000619530948931,
+ "Shape_Ar_1":2.28933064449e-08,
+ "OBJECTID_3":89903,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89902,
+ "g_objectid":"941009",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424843",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004368819160000000",
+ "g_sup_tota":"329.1",
+ "g_geometry":"0.000814671",
+ "g_geomet_1":"3.79904e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000619530948931,
+ "Shape_Area":2.28933064449e-08,
+ "Shape_Le_3":0.000619532158506,
+ "Shape_Ar_2":2.28933064449e-08,
+ "building_height":14.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1846,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55259510939862,
+ 45.534994092853395
+ ],
+ [
+ -73.55263066679369,
+ 45.53500534966745
+ ],
+ [
+ -73.55262626731023,
+ 45.535012149441435
+ ],
+ [
+ -73.55274439685827,
+ 45.535049156543636
+ ],
+ [
+ -73.55282932073841,
+ 45.534930759896945
+ ],
+ [
+ -73.55282816690823,
+ 45.534930349806096
+ ],
+ [
+ -73.55267862943704,
+ 45.53487765493013
+ ],
+ [
+ -73.55259510939862,
+ 45.534994092853395
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1846,
+ "ID_UEV":"01024241",
+ "CIVIQUE_DE":" 2062",
+ "CIVIQUE_FI":" 2078",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-68-8191-6-000-0000",
+ "SUPERFICIE":329,
+ "SUPERFIC_1":530,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000617963022428,
+ "OBJECTID":89904,
+ "Join_Count":1,
+ "TARGET_FID":89904,
+ "feature_id":"ce45069a-ed71-4ef4-9d44-2f14da49b628",
+ "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.48,
+ "heightmax":31.86,
+ "elevmin":19.57,
+ "elevmax":21.65,
+ "bldgarea":903.81,
+ "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_2":89904,
+ "Shape_Le_1":0.000617963022428,
+ "Shape_Ar_1":2.25111479075e-08,
+ "OBJECTID_3":89904,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89903,
+ "g_objectid":"941009",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424843",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004368819160000000",
+ "g_sup_tota":"329.1",
+ "g_geometry":"0.000814671",
+ "g_geomet_1":"3.79904e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000617963022428,
+ "Shape_Area":2.25111479075e-08,
+ "Shape_Le_3":0.000617960452166,
+ "Shape_Ar_2":2.25111479075e-08,
+ "building_height":14.69
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1847,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5528895510338,
+ 45.53504784083548
+ ],
+ [
+ -73.55294026740127,
+ 45.535065249911646
+ ],
+ [
+ -73.55297926740111,
+ 45.535078749634884
+ ],
+ [
+ -73.55304566704574,
+ 45.53498314990274
+ ],
+ [
+ -73.5530420670596,
+ 45.53498184948306
+ ],
+ [
+ -73.55301266732259,
+ 45.53497175009648
+ ],
+ [
+ -73.55300546735029,
+ 45.53498224968137
+ ],
+ [
+ -73.55295024537936,
+ 45.53496322272484
+ ],
+ [
+ -73.5528895510338,
+ 45.53504784083548
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1847,
+ "ID_UEV":"01024246",
+ "CIVIQUE_DE":" 2092",
+ "CIVIQUE_FI":" 2092",
+ "NOM_RUE":"rue Bercy (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-6101-5-000-0000",
+ "SUPERFICIE":251,
+ "SUPERFIC_1":73,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000421476327572,
+ "OBJECTID":89905,
+ "Join_Count":1,
+ "TARGET_FID":89905,
+ "feature_id":"e65414c3-277f-471d-bffa-b8d512dc9dce",
+ "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":26.23,
+ "elevmin":19.7,
+ "elevmax":21.22,
+ "bldgarea":159.14,
+ "comment":" ",
+ "OBJECTID_2":89905,
+ "Shape_Le_1":0.000421476327572,
+ "Shape_Ar_1":9.8113073656e-09,
+ "OBJECTID_3":89905,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89904,
+ "g_objectid":"941011",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424845",
+ "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":"66023004368709760000000",
+ "g_sup_tota":"251.4",
+ "g_geometry":"0.00073947",
+ "g_geomet_1":"2.90324e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000421476327572,
+ "Shape_Area":9.8113073656e-09,
+ "Shape_Le_3":0.000421475759724,
+ "Shape_Ar_2":9.8113073656e-09,
+ "building_height":11.855
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1848,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5561720243413,
+ 45.535893994962194
+ ],
+ [
+ -73.55624061293578,
+ 45.535919459265926
+ ],
+ [
+ -73.55630760253567,
+ 45.5358261321206
+ ],
+ [
+ -73.55625356856918,
+ 45.53580665010711
+ ],
+ [
+ -73.55623859305847,
+ 45.535801254174835
+ ],
+ [
+ -73.5561720243413,
+ 45.535893994962194
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1848,
+ "ID_UEV":"01024167",
+ "CIVIQUE_DE":" 2301",
+ "CIVIQUE_FI":" 2301",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-49-0896-8-000-0000",
+ "SUPERFICIE":152,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00037555903968,
+ "OBJECTID":89911,
+ "Join_Count":1,
+ "TARGET_FID":89911,
+ "feature_id":"0d0450ed-53d1-4796-8a46-274cefb95f1e",
+ "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,
+ "heightmax":33.2,
+ "elevmin":20.33,
+ "elevmax":23.69,
+ "bldgarea":773.97,
+ "comment":" ",
+ "OBJECTID_2":89911,
+ "Shape_Le_1":0.00037555903968,
+ "Shape_Ar_1":8.08162811716e-09,
+ "OBJECTID_3":89911,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89910,
+ "g_objectid":"941002",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424835",
+ "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":"66023004349139350000000",
+ "g_sup_tota":"152.3",
+ "g_geometry":"0.000641234",
+ "g_geomet_1":"1.7441e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00037555903968,
+ "Shape_Area":8.08162811716e-09,
+ "Shape_Le_3":0.000375559326057,
+ "Shape_Ar_2":8.08162811716e-09,
+ "building_height":16.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1849,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55557335015183,
+ 45.538134540726766
+ ],
+ [
+ -73.55557736832273,
+ 45.538135650490176
+ ],
+ [
+ -73.55552436767726,
+ 45.53823015125077
+ ],
+ [
+ -73.555581968355,
+ 45.53824605126455
+ ],
+ [
+ -73.55558556834116,
+ 45.53824715113541
+ ],
+ [
+ -73.55559006854867,
+ 45.53824165088178
+ ],
+ [
+ -73.55560235418714,
+ 45.538246589059135
+ ],
+ [
+ -73.55568858568152,
+ 45.5381261221731
+ ],
+ [
+ -73.55566476803646,
+ 45.538119150628596
+ ],
+ [
+ -73.5556821681194,
+ 45.53808965106684
+ ],
+ [
+ -73.55562706845629,
+ 45.538073651228316
+ ],
+ [
+ -73.55564806852539,
+ 45.538038050665804
+ ],
+ [
+ -73.55564339654735,
+ 45.53803668369629
+ ],
+ [
+ -73.55557335015183,
+ 45.538134540726766
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1849,
+ "ID_UEV":"01025136",
+ "CIVIQUE_DE":" 2366",
+ "CIVIQUE_FI":" 2370",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-5649-9-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000627517484299,
+ "OBJECTID":89913,
+ "Join_Count":1,
+ "TARGET_FID":89913,
+ "feature_id":"ee598ffa-6e9b-4a71-ba9b-2c7cca213f6d",
+ "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":35.53,
+ "elevmin":18.68,
+ "elevmax":24.19,
+ "bldgarea":2418.71,
+ "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_2":89913,
+ "Shape_Le_1":0.000627517484299,
+ "Shape_Ar_1":1.5018442235e-08,
+ "OBJECTID_3":89913,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89912,
+ "g_objectid":"944010",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361220",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442564990000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000669617",
+ "g_geomet_1":"2.15248e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000627517484299,
+ "Shape_Area":1.5018442235e-08,
+ "Shape_Le_3":0.000627518695985,
+ "Shape_Ar_2":1.5018442235e-08,
+ "building_height":17.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1850,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55568716205472,
+ 45.538280679659934
+ ],
+ [
+ -73.55575226847425,
+ 45.53830685083079
+ ],
+ [
+ -73.55576066814217,
+ 45.5382965508954
+ ],
+ [
+ -73.55577970049463,
+ 45.538303966704994
+ ],
+ [
+ -73.5558417249375,
+ 45.538217316126534
+ ],
+ [
+ -73.55579676782841,
+ 45.53820325072973
+ ],
+ [
+ -73.55583046812345,
+ 45.538150151158845
+ ],
+ [
+ -73.55579616798062,
+ 45.53813935120039
+ ],
+ [
+ -73.55578696791608,
+ 45.53815385096974
+ ],
+ [
+ -73.55577960246852,
+ 45.538151537014116
+ ],
+ [
+ -73.55568716205472,
+ 45.538280679659934
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1850,
+ "ID_UEV":"01025140",
+ "CIVIQUE_DE":" 2380",
+ "CIVIQUE_FI":" 2382",
+ "NOM_RUE":"rue Wurtele (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-4356-2-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":143,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000540116222322,
+ "OBJECTID":89915,
+ "Join_Count":1,
+ "TARGET_FID":89915,
+ "feature_id":"ee598ffa-6e9b-4a71-ba9b-2c7cca213f6d",
+ "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":35.53,
+ "elevmin":18.68,
+ "elevmax":24.19,
+ "bldgarea":2418.71,
+ "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_2":89915,
+ "Shape_Le_1":0.000540116222322,
+ "Shape_Ar_1":1.26266095127e-08,
+ "OBJECTID_3":89915,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89914,
+ "g_objectid":"944012",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361222",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442435620000000",
+ "g_sup_tota":"186.9",
+ "g_geometry":"0.000669613",
+ "g_geomet_1":"2.15246e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000540116222322,
+ "Shape_Area":1.26266095127e-08,
+ "Shape_Le_3":0.000540115402024,
+ "Shape_Ar_2":1.26266095127e-08,
+ "building_height":17.51
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1851,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56213474804203,
+ 45.53185709657804
+ ],
+ [
+ -73.56213406995322,
+ 45.531857949135336
+ ],
+ [
+ -73.56205456988434,
+ 45.531826748955595
+ ],
+ [
+ -73.56201273072479,
+ 45.53187923878614
+ ],
+ [
+ -73.56229651269575,
+ 45.53201202008895
+ ],
+ [
+ -73.56236287007223,
+ 45.53203814899168
+ ],
+ [
+ -73.5624123705563,
+ 45.53199374856294
+ ],
+ [
+ -73.56238597005832,
+ 45.53197944844309
+ ],
+ [
+ -73.56238969145295,
+ 45.53197607778406
+ ],
+ [
+ -73.56213474804203,
+ 45.53185709657804
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1851,
+ "ID_UEV":"01026199",
+ "CIVIQUE_DE":" 2190",
+ "CIVIQUE_FI":" 2190",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1964,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-95-3960-4-000-0000",
+ "SUPERFICIE":275,
+ "SUPERFIC_1":682,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000921122917804,
+ "OBJECTID":89917,
+ "Join_Count":1,
+ "TARGET_FID":89917,
+ "feature_id":"837da3f2-1bc4-49ab-aa6a-c9875db4f7b6",
+ "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":20.74,
+ "elevmin":38.17,
+ "elevmax":43.69,
+ "bldgarea":1935.12,
+ "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_2":89917,
+ "Shape_Le_1":0.000921122917804,
+ "Shape_Ar_1":2.73415537435e-08,
+ "OBJECTID_3":89917,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89916,
+ "g_objectid":"940402",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423757",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1539",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994395396040000000",
+ "g_sup_tota":"275.1",
+ "g_geometry":"0.00105146",
+ "g_geomet_1":"3.24743e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000921122917804,
+ "Shape_Area":2.73415537435e-08,
+ "Shape_Le_3":0.000921125587394,
+ "Shape_Ar_2":2.73415537435e-08,
+ "building_height":9.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1852,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56238160924572,
+ 45.530869506972465
+ ],
+ [
+ -73.56237647051954,
+ 45.530874848945416
+ ],
+ [
+ -73.56245450649213,
+ 45.53091197206016
+ ],
+ [
+ -73.56245997706813,
+ 45.53090625417059
+ ],
+ [
+ -73.56238160924572,
+ 45.530869506972465
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1852,
+ "ID_UEV":"01026206",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9943-94-2841-0-000-0000",
+ "SUPERFICIE":27,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000188298053926,
+ "OBJECTID":89918,
+ "Join_Count":1,
+ "TARGET_FID":89918,
+ "feature_id":"50c52a10-f620-440d-b667-4bb48dff890a",
+ "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,
+ "heightmax":59.02,
+ "elevmin":38.91,
+ "elevmax":42.22,
+ "bldgarea":1243.62,
+ "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_2":89918,
+ "Shape_Le_1":0.000188298053926,
+ "Shape_Ar_1":6.28397235969e-10,
+ "OBJECTID_3":89918,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89917,
+ "g_objectid":"945085",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1423718",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"68",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994394145430000000",
+ "g_sup_tota":"2117.3",
+ "g_geometry":"0.0022568",
+ "g_geomet_1":"2.47038e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000188298053926,
+ "Shape_Area":6.28397235969e-10,
+ "Shape_Le_3":0.000188297419538,
+ "Shape_Ar_2":6.28397235969e-10,
+ "building_height":29.01
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1853,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55497262730675,
+ 45.537290274277034
+ ],
+ [
+ -73.55505916816792,
+ 45.537318850235046
+ ],
+ [
+ -73.55505996856455,
+ 45.53731754981537
+ ],
+ [
+ -73.55514036795546,
+ 45.537187649940385
+ ],
+ [
+ -73.55514036795546,
+ 45.53718755011564
+ ],
+ [
+ -73.5550746931644,
+ 45.537144920452015
+ ],
+ [
+ -73.55497262730675,
+ 45.537290274277034
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1853,
+ "ID_UEV":"01024830",
+ "CIVIQUE_DE":" 2296",
+ "CIVIQUE_FI":" 2296",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1960,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-9947-5-000-0000",
+ "SUPERFICIE":185,
+ "SUPERFIC_1":372,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00050143780243,
+ "OBJECTID":89934,
+ "Join_Count":1,
+ "TARGET_FID":89934,
+ "feature_id":"0c4becde-3c34-4e4c-914c-fc1754195cd2",
+ "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.53,
+ "heightmax":12.02,
+ "elevmin":17.58,
+ "elevmax":19.41,
+ "bldgarea":648.94,
+ "comment":" ",
+ "OBJECTID_2":89934,
+ "Shape_Le_1":0.00050143780243,
+ "Shape_Ar_1":1.37938771477e-08,
+ "OBJECTID_3":89934,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89933,
+ "g_objectid":"943945",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361149",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441994750000000",
+ "g_sup_tota":"185.2",
+ "g_geometry":"0.000666959",
+ "g_geomet_1":"2.1329e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00050143780243,
+ "Shape_Area":1.37938771477e-08,
+ "Shape_Le_3":0.000501438400022,
+ "Shape_Ar_2":1.37938771477e-08,
+ "building_height":5.745
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1854,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5558408274141,
+ 45.53761184576037
+ ],
+ [
+ -73.55587246826164,
+ 45.5376241502846
+ ],
+ [
+ -73.55586856790194,
+ 45.53762914961586
+ ],
+ [
+ -73.55587506820169,
+ 45.537631249532836
+ ],
+ [
+ -73.5559249670854,
+ 45.53764696068898
+ ],
+ [
+ -73.55600957080689,
+ 45.53752609000734
+ ],
+ [
+ -73.55598386818282,
+ 45.537516749648574
+ ],
+ [
+ -73.55600706799363,
+ 45.53748504944577
+ ],
+ [
+ -73.55597666821052,
+ 45.537474049837826
+ ],
+ [
+ -73.55598926771238,
+ 45.53745684940437
+ ],
+ [
+ -73.55599826812741,
+ 45.53744394952894
+ ],
+ [
+ -73.55596605531105,
+ 45.53743293553185
+ ],
+ [
+ -73.5558408274141,
+ 45.53761184576037
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1854,
+ "ID_UEV":"01024850",
+ "CIVIQUE_DE":" 2358",
+ "CIVIQUE_FI":" 2364",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-3182-5-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":215,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000635409396176,
+ "OBJECTID":89936,
+ "Join_Count":1,
+ "TARGET_FID":89936,
+ "feature_id":"bade550f-2044-44ba-83c5-2138bf58e40c",
+ "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":35.41,
+ "elevmin":17.57,
+ "elevmax":24.37,
+ "bldgarea":1657.25,
+ "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_2":89936,
+ "Shape_Le_1":0.000635409396176,
+ "Shape_Ar_1":1.67367956979e-08,
+ "OBJECTID_3":89936,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89935,
+ "g_objectid":"943954",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361159",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441318250000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000667235",
+ "g_geomet_1":"2.14835e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000635409396176,
+ "Shape_Area":1.67367956979e-08,
+ "Shape_Le_3":0.000635408541124,
+ "Shape_Ar_2":1.67367956979e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1855,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55367420682103,
+ 45.53401613318829
+ ],
+ [
+ -73.5537418313423,
+ 45.53404239788865
+ ],
+ [
+ -73.55380971217032,
+ 45.533963507560124
+ ],
+ [
+ -73.55378526679847,
+ 45.53395444958847
+ ],
+ [
+ -73.55382066681217,
+ 45.533907649768516
+ ],
+ [
+ -73.55382256707965,
+ 45.53390514965323
+ ],
+ [
+ -73.55378976700598,
+ 45.53389244942729
+ ],
+ [
+ -73.55377156742574,
+ 45.53391574996218
+ ],
+ [
+ -73.55376256611139,
+ 45.53391228847163
+ ],
+ [
+ -73.55367420682103,
+ 45.53401613318829
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1855,
+ "ID_UEV":"01023999",
+ "CIVIQUE_DE":" 2088",
+ "CIVIQUE_FI":" 2090",
+ "NOM_RUE":"rue du Havre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-67-0083-5-000-0000",
+ "SUPERFICIE":121,
+ "SUPERFIC_1":150,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000475240079467,
+ "OBJECTID":89944,
+ "Join_Count":1,
+ "TARGET_FID":89944,
+ "feature_id":"84df95cc-1170-460e-9375-5f9c60048045",
+ "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.54,
+ "heightmax":28.03,
+ "elevmin":18.9,
+ "elevmax":19.93,
+ "bldgarea":348.41,
+ "comment":" ",
+ "OBJECTID_2":89944,
+ "Shape_Le_1":0.000475240079467,
+ "Shape_Ar_1":9.56452183997e-09,
+ "OBJECTID_3":89944,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89943,
+ "g_objectid":"941085",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424980",
+ "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":"66023004367058000000000",
+ "g_sup_tota":"122.8",
+ "g_geometry":"0.000554629",
+ "g_geomet_1":"1.41598e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000475240079467,
+ "Shape_Area":9.56452183997e-09,
+ "Shape_Le_3":0.000475242567825,
+ "Shape_Ar_2":9.56452183997e-09,
+ "building_height":12.745000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1856,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55312229468,
+ 45.5358676430276
+ ],
+ [
+ -73.5532099219222,
+ 45.53589777841004
+ ],
+ [
+ -73.55326942916267,
+ 45.53581356499432
+ ],
+ [
+ -73.55326546674974,
+ 45.5358105495675
+ ],
+ [
+ -73.55323356689743,
+ 45.535785050190206
+ ],
+ [
+ -73.553233867271,
+ 45.535784249793586
+ ],
+ [
+ -73.55320446753399,
+ 45.53577564957686
+ ],
+ [
+ -73.55319816688375,
+ 45.53578705028244
+ ],
+ [
+ -73.55318239907031,
+ 45.53578258424916
+ ],
+ [
+ -73.55312229468,
+ 45.5358676430276
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1856,
+ "ID_UEV":"01024525",
+ "CIVIQUE_DE":" 2138",
+ "CIVIQUE_FI":" 2138",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-69-4592-7-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":78,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000406650370871,
+ "OBJECTID":89945,
+ "Join_Count":1,
+ "TARGET_FID":89945,
+ "feature_id":"eb231f79-3f89-4e44-bfc9-97de87e22a5f",
+ "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,
+ "heightmax":31.55,
+ "elevmin":18.92,
+ "elevmax":21.51,
+ "bldgarea":1919.77,
+ "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_2":89945,
+ "Shape_Le_1":0.000406650370871,
+ "Shape_Ar_1":1.00153424219e-08,
+ "OBJECTID_3":89945,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89944,
+ "g_objectid":"943671",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360809",
+ "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":"66023004369528990000000",
+ "g_sup_tota":"191.6",
+ "g_geometry":"0.000681152",
+ "g_geomet_1":"2.20745e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000406650370871,
+ "Shape_Area":1.00153424219e-08,
+ "Shape_Le_3":0.000406651260526,
+ "Shape_Ar_2":1.00153424219e-08,
+ "building_height":15.775
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1857,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55877952947355,
+ 45.535056360113224
+ ],
+ [
+ -73.55888083000815,
+ 45.53509936029754
+ ],
+ [
+ -73.55895802691326,
+ 45.53501442652486
+ ],
+ [
+ -73.55885576950001,
+ 45.534973449815155
+ ],
+ [
+ -73.55882006911274,
+ 45.5349591496953
+ ],
+ [
+ -73.55879501939647,
+ 45.53494673815174
+ ],
+ [
+ -73.55872184875616,
+ 45.5350318751712
+ ],
+ [
+ -73.5587265009491,
+ 45.535033850082414
+ ],
+ [
+ -73.55877746912674,
+ 45.53505185001316
+ ],
+ [
+ -73.55877926956948,
+ 45.53505244986097
+ ],
+ [
+ -73.5587768593864,
+ 45.535055226068124
+ ],
+ [
+ -73.55877952947355,
+ 45.535056360113224
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1857,
+ "ID_UEV":"01025932",
+ "CIVIQUE_DE":" 2502",
+ "CIVIQUE_FI":" 2502",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-29-0402-7-000-0000",
+ "SUPERFICIE":179,
+ "SUPERFIC_1":396,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00058124041749,
+ "OBJECTID":89951,
+ "Join_Count":1,
+ "TARGET_FID":89951,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":89951,
+ "Shape_Le_1":0.00058124041749,
+ "Shape_Ar_1":1.85133693235e-08,
+ "OBJECTID_3":89951,
+ "Join_Cou_1":5,
+ "TARGET_F_1":89950,
+ "g_objectid":"941158",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425084",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004329040270000000",
+ "g_sup_tota":"178.7",
+ "g_geometry":"0.00059784",
+ "g_geomet_1":"2.05888e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00058124041749,
+ "Shape_Area":1.85133693235e-08,
+ "Shape_Le_3":0.000581241329363,
+ "Shape_Ar_2":1.85133693235e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1858,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.560020976109,
+ 45.53430674371155
+ ],
+ [
+ -73.55996806899303,
+ 45.53435745018647
+ ],
+ [
+ -73.5599719873392,
+ 45.534359461070565
+ ],
+ [
+ -73.560020976109,
+ 45.53430674371155
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5601542340525,
+ 45.53416334591198
+ ],
+ [
+ -73.56005936906648,
+ 45.53411985020122
+ ],
+ [
+ -73.56005336878978,
+ 45.53411704971237
+ ],
+ [
+ -73.5600435463944,
+ 45.53412729209115
+ ],
+ [
+ -73.55999741027411,
+ 45.53417807950506
+ ],
+ [
+ -73.56009419531271,
+ 45.53422795320777
+ ],
+ [
+ -73.5601542340525,
+ 45.53416334591198
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1858,
+ "ID_UEV":"01025934",
+ "CIVIQUE_DE":" 2361",
+ "CIVIQUE_FI":" 2363",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-18-1315-3-000-0000",
+ "SUPERFICIE":284,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000540515642326,
+ "OBJECTID":89952,
+ "Join_Count":2,
+ "TARGET_FID":89952,
+ "feature_id":"29c4e604-8e30-495b-ab15-8f74b8b4825d",
+ "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.81,
+ "heightmax":51.24,
+ "elevmin":31.26,
+ "elevmax":39.48,
+ "bldgarea":1953.11,
+ "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_2":89952,
+ "Shape_Le_1":0.000540515642326,
+ "Shape_Ar_1":9.16028202537e-09,
+ "OBJECTID_3":89952,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89951,
+ "g_objectid":"941408",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425416",
+ "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":"66023004318131530000000",
+ "g_sup_tota":"283.9",
+ "g_geometry":"0.000846859",
+ "g_geomet_1":"3.27499e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000540515642326,
+ "Shape_Area":9.16028202537e-09,
+ "Shape_Le_3":0.00054051663782,
+ "Shape_Ar_2":9.16028202537e-09,
+ "building_height":24.715
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1859,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55883783072315,
+ 45.53861911163299
+ ],
+ [
+ -73.55893436934751,
+ 45.53865145125377
+ ],
+ [
+ -73.55902676929182,
+ 45.53851524982921
+ ],
+ [
+ -73.55902296875685,
+ 45.538513949409534
+ ],
+ [
+ -73.5589346094665,
+ 45.53848409911218
+ ],
+ [
+ -73.55883783072315,
+ 45.53861911163299
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1859,
+ "ID_UEV":"01024899",
+ "CIVIQUE_DE":" 2620",
+ "CIVIQUE_FI":" 2620",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-13-9500-1-000-0000",
+ "SUPERFICIE":372,
+ "SUPERFIC_1":128,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000529794599731,
+ "OBJECTID":89953,
+ "Join_Count":1,
+ "TARGET_FID":89953,
+ "feature_id":"854ff233-c513-43a8-ab8b-43c22e6fac50",
+ "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":48.02,
+ "elevmin":26.87,
+ "elevmax":42.24,
+ "bldgarea":1868.16,
+ "comment":" ",
+ "OBJECTID_2":89953,
+ "Shape_Le_1":0.000529794599731,
+ "Shape_Ar_1":1.57978297515e-08,
+ "OBJECTID_3":89953,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89952,
+ "g_objectid":"944100",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361350",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004422069590000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667852",
+ "g_geomet_1":"2.14435e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000529794599731,
+ "Shape_Area":1.57978297515e-08,
+ "Shape_Le_3":0.000529795497409,
+ "Shape_Ar_2":1.57978297515e-08,
+ "building_height":23.755000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1860,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55441696409346,
+ 45.5227414046424
+ ],
+ [
+ -73.55456495113343,
+ 45.52281008946435
+ ],
+ [
+ -73.55465986738082,
+ 45.52271134750098
+ ],
+ [
+ -73.55451586703548,
+ 45.522642947764126
+ ],
+ [
+ -73.55451156737678,
+ 45.522640947671896
+ ],
+ [
+ -73.55441696409346,
+ 45.5227414046424
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1860,
+ "ID_UEV":"01022289",
+ "CIVIQUE_DE":" 1635",
+ "CIVIQUE_FI":" 1635",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1986,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-55-3536-6-000-0000",
+ "SUPERFICIE":362,
+ "SUPERFIC_1":552,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000602265332587,
+ "OBJECTID":89955,
+ "Join_Count":1,
+ "TARGET_FID":89955,
+ "feature_id":"fb741e09-1a88-49b5-8d59-e38085980aa7",
+ "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.55,
+ "heightmax":35.78,
+ "elevmin":22.03,
+ "elevmax":25.16,
+ "bldgarea":447.94,
+ "comment":" ",
+ "OBJECTID_2":89955,
+ "Shape_Le_1":0.000602265332587,
+ "Shape_Ar_1":2.13478910546e-08,
+ "OBJECTID_3":89955,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89954,
+ "g_objectid":"942255",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567717",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004255353660000000",
+ "g_sup_tota":"362.3",
+ "g_geometry":"0.000863812",
+ "g_geomet_1":"4.17362e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000602265332587,
+ "Shape_Area":2.13478910546e-08,
+ "Shape_Le_3":0.000602265540235,
+ "Shape_Ar_2":2.13478910546e-08,
+ "building_height":16.615000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1861,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56129593867847,
+ 45.53457575072061
+ ],
+ [
+ -73.56155494882367,
+ 45.53461624629303
+ ],
+ [
+ -73.56156136998308,
+ 45.53459804941075
+ ],
+ [
+ -73.56157957046265,
+ 45.53454644990903
+ ],
+ [
+ -73.56158301306745,
+ 45.53453677050585
+ ],
+ [
+ -73.56124895269885,
+ 45.534484543277344
+ ],
+ [
+ -73.5612473968717,
+ 45.53448945897165
+ ],
+ [
+ -73.56125127025176,
+ 45.53449004982623
+ ],
+ [
+ -73.56132226992865,
+ 45.53450275005217
+ ],
+ [
+ -73.56129593867847,
+ 45.53457575072061
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1861,
+ "ID_UEV":"01026166",
+ "CIVIQUE_DE":" 2356",
+ "CIVIQUE_FI":" 2364",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-0250-4-000-0000",
+ "SUPERFICIE":279,
+ "SUPERFIC_1":467,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000843364706957,
+ "OBJECTID":89957,
+ "Join_Count":1,
+ "TARGET_FID":89957,
+ "feature_id":"e573e2d0-c046-4493-80b5-200ab3c4b9f1",
+ "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":55.78,
+ "elevmin":38.93,
+ "elevmax":42.5,
+ "bldgarea":1445.04,
+ "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_2":89957,
+ "Shape_Le_1":0.000843364706957,
+ "Shape_Ar_1":2.2142147027e-08,
+ "OBJECTID_3":89957,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89956,
+ "g_objectid":"941395",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425403",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308045910000000",
+ "g_sup_tota":"278.7",
+ "g_geometry":"0.000939541",
+ "g_geomet_1":"3.21046e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000843364706957,
+ "Shape_Area":2.2142147027e-08,
+ "Shape_Le_3":0.00084336551092,
+ "Shape_Ar_2":2.2142147027e-08,
+ "building_height":27.385
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1862,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55744616672905,
+ 45.536523084223255
+ ],
+ [
+ -73.55762438268096,
+ 45.53658333160576
+ ],
+ [
+ -73.55767026878972,
+ 45.53651644992452
+ ],
+ [
+ -73.55773466924144,
+ 45.53642285028461
+ ],
+ [
+ -73.55774497906937,
+ 45.536426372929064
+ ],
+ [
+ -73.5577492427552,
+ 45.536420142425925
+ ],
+ [
+ -73.5575578472387,
+ 45.53635464300267
+ ],
+ [
+ -73.55755306914067,
+ 45.53636144997123
+ ],
+ [
+ -73.5575377689747,
+ 45.53638454995731
+ ],
+ [
+ -73.55751166885028,
+ 45.53642404998022
+ ],
+ [
+ -73.55746186889198,
+ 45.53649935021514
+ ],
+ [
+ -73.55744616672905,
+ 45.536523084223255
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1862,
+ "ID_UEV":"01025921",
+ "CIVIQUE_DE":" 2670",
+ "CIVIQUE_FI":" 2680",
+ "NOM_RUE":"rue Hochelaga (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":16,
+ "ANNEE_CONS":1947,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-30-0362-9-000-0000",
+ "SUPERFICIE":443,
+ "SUPERFIC_1":904,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000805690809816,
+ "OBJECTID":89969,
+ "Join_Count":1,
+ "TARGET_FID":89969,
+ "feature_id":"d74191a5-d807-4976-8814-8f3c23a7c7cb",
+ "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":39.02,
+ "elevmin":25.17,
+ "elevmax":27.03,
+ "bldgarea":629.72,
+ "comment":" ",
+ "OBJECTID_2":89969,
+ "Shape_Le_1":0.000805690809816,
+ "Shape_Ar_1":3.71156559026e-08,
+ "OBJECTID_3":89969,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89968,
+ "g_objectid":"940965",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424763",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"16",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004430036290000000",
+ "g_sup_tota":"442.9",
+ "g_geometry":"0.000931542",
+ "g_geomet_1":"5.11741e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000805690809816,
+ "Shape_Area":3.71156559026e-08,
+ "Shape_Le_3":0.000805690108205,
+ "Shape_Ar_2":3.71156559026e-08,
+ "building_height":19.25
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1863,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55834874342162,
+ 45.534007236195286
+ ],
+ [
+ -73.55842936674372,
+ 45.53404585758056
+ ],
+ [
+ -73.55853005214203,
+ 45.533937538736716
+ ],
+ [
+ -73.55844791975754,
+ 45.53390054062774
+ ],
+ [
+ -73.55834874342162,
+ 45.534007236195286
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1863,
+ "ID_UEV":"01023364",
+ "CIVIQUE_DE":" 2323",
+ "CIVIQUE_FI":" 2331",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-3789-8-000-0000",
+ "SUPERFICIE":232,
+ "SUPERFIC_1":310,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000473035194242,
+ "OBJECTID":89974,
+ "Join_Count":1,
+ "TARGET_FID":89974,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":89974,
+ "Shape_Le_1":0.000473035194242,
+ "Shape_Ar_1":1.25270957627e-08,
+ "OBJECTID_3":89974,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89973,
+ "g_objectid":"941376",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425383",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327448450000000",
+ "g_sup_tota":"232.3",
+ "g_geometry":"0.000807743",
+ "g_geomet_1":"2.6801e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000473035194242,
+ "Shape_Area":1.25270957627e-08,
+ "Shape_Le_3":0.000473034832979,
+ "Shape_Ar_2":1.25270957627e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1864,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55982476921957,
+ 45.53720285028161
+ ],
+ [
+ -73.55978068805015,
+ 45.53725483109587
+ ],
+ [
+ -73.5599488252999,
+ 45.53731444625499
+ ],
+ [
+ -73.55998552213599,
+ 45.537265957508225
+ ],
+ [
+ -73.55982746898435,
+ 45.53719964959445
+ ],
+ [
+ -73.55982476921957,
+ 45.53720285028161
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55986686918251,
+ 45.53714855011579
+ ],
+ [
+ -73.5599074699756,
+ 45.53716385028176
+ ],
+ [
+ -73.5600171701781,
+ 45.53720484947452
+ ],
+ [
+ -73.56002838832131,
+ 45.53720931910509
+ ],
+ [
+ -73.56008907727094,
+ 45.53712913105485
+ ],
+ [
+ -73.5599284700447,
+ 45.53706814982555
+ ],
+ [
+ -73.55986686918251,
+ 45.53714855011579
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1864,
+ "ID_UEV":"01024101",
+ "CIVIQUE_DE":" 2677",
+ "CIVIQUE_FI":" 2681",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-1943-5-000-0000",
+ "SUPERFICIE":381,
+ "SUPERFIC_1":499,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00102916297585,
+ "OBJECTID":89977,
+ "Join_Count":2,
+ "TARGET_FID":89977,
+ "feature_id":"f1b5b6fa-9464-4607-841a-680db3bf442d",
+ "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.53,
+ "heightmax":50.14,
+ "elevmin":41.98,
+ "elevmax":42.62,
+ "bldgarea":106.83,
+ "comment":" ",
+ "OBJECTID_2":89977,
+ "Shape_Le_1":0.00102916297585,
+ "Shape_Ar_1":2.77229605944e-08,
+ "OBJECTID_3":89977,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89976,
+ "g_objectid":"944184",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361451",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411194350000000",
+ "g_sup_tota":"380.9",
+ "g_geometry":"0.000865572",
+ "g_geomet_1":"4.36772e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00102916297585,
+ "Shape_Area":2.77229605944e-08,
+ "Shape_Le_3":0.00102916479634,
+ "Shape_Ar_2":2.77229605944e-08,
+ "building_height":24.805
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1865,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.559672262187,
+ 45.53717161322966
+ ],
+ [
+ -73.55977226949649,
+ 45.53720805016168
+ ],
+ [
+ -73.55986066925632,
+ 45.53708814984853
+ ],
+ [
+ -73.55985606922405,
+ 45.53708645012986
+ ],
+ [
+ -73.5597594199831,
+ 45.53705122998058
+ ],
+ [
+ -73.559672262187,
+ 45.53717161322966
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1865,
+ "ID_UEV":"01024104",
+ "CIVIQUE_DE":" 2671",
+ "CIVIQUE_FI":" 2675",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-3137-2-000-0000",
+ "SUPERFICIE":289,
+ "SUPERFIC_1":251,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000511795704173,
+ "OBJECTID":89978,
+ "Join_Count":1,
+ "TARGET_FID":89978,
+ "feature_id":"53f19bcd-1eb8-4c36-9b6e-7e9a65d16e32",
+ "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.48,
+ "heightmax":51.57,
+ "elevmin":41.33,
+ "elevmax":42.1,
+ "bldgarea":255.38,
+ "comment":" ",
+ "OBJECTID_2":89978,
+ "Shape_Le_1":0.000511795704173,
+ "Shape_Ar_1":1.53103465683e-08,
+ "OBJECTID_3":89978,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89977,
+ "g_objectid":"944183",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361450",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411313720000000",
+ "g_sup_tota":"288.6",
+ "g_geometry":"0.000776341",
+ "g_geomet_1":"3.32589e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000511795704173,
+ "Shape_Area":1.53103465683e-08,
+ "Shape_Le_3":0.00051179637364,
+ "Shape_Ar_2":1.53103465683e-08,
+ "building_height":23.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1866,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5597594199831,
+ 45.53705122998058
+ ],
+ [
+ -73.55966726915099,
+ 45.5370176501947
+ ],
+ [
+ -73.55957876956641,
+ 45.537137549608524
+ ],
+ [
+ -73.559672262187,
+ 45.53717161322966
+ ],
+ [
+ -73.5597594199831,
+ 45.53705122998058
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1866,
+ "ID_UEV":"01024106",
+ "CIVIQUE_DE":" 2665",
+ "CIVIQUE_FI":" 2669",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-4132-2-000-0000",
+ "SUPERFICIE":286,
+ "SUPERFIC_1":251,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000495230223401,
+ "OBJECTID":89979,
+ "Join_Count":1,
+ "TARGET_FID":89979,
+ "feature_id":"53f19bcd-1eb8-4c36-9b6e-7e9a65d16e32",
+ "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.48,
+ "heightmax":51.57,
+ "elevmin":41.33,
+ "elevmax":42.1,
+ "bldgarea":255.38,
+ "comment":" ",
+ "OBJECTID_2":89979,
+ "Shape_Le_1":0.000495230223401,
+ "Shape_Ar_1":1.41222828341e-08,
+ "OBJECTID_3":89979,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89978,
+ "g_objectid":"944183",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361450",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411313720000000",
+ "g_sup_tota":"288.6",
+ "g_geometry":"0.000776341",
+ "g_geomet_1":"3.32589e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000495230223401,
+ "Shape_Area":1.41222828341e-08,
+ "Shape_Le_3":0.000495229212316,
+ "Shape_Ar_2":1.41222828341e-08,
+ "building_height":23.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1867,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55940666900442,
+ 45.53709105016213
+ ],
+ [
+ -73.55950976908242,
+ 45.53712924976536
+ ],
+ [
+ -73.55960376892064,
+ 45.53700394992265
+ ],
+ [
+ -73.55959906906364,
+ 45.53700214947991
+ ],
+ [
+ -73.55950106904095,
+ 45.536965649595345
+ ],
+ [
+ -73.55940666900442,
+ 45.53709105016213
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5594075125685,
+ 45.53700812817287
+ ],
+ [
+ -73.55941076901362,
+ 45.53700884942916
+ ],
+ [
+ -73.55941255236924,
+ 45.5370065057959
+ ],
+ [
+ -73.55940947668785,
+ 45.53700541491826
+ ],
+ [
+ -73.5594075125685,
+ 45.53700812817287
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55947116568359,
+ 45.53692034444863
+ ],
+ [
+ -73.55941701480523,
+ 45.53700063861887
+ ],
+ [
+ -73.55947656881045,
+ 45.536922349936795
+ ],
+ [
+ -73.55947376922092,
+ 45.53692125006593
+ ],
+ [
+ -73.55947116568359,
+ 45.53692034444863
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1867,
+ "ID_UEV":"01024108",
+ "CIVIQUE_DE":" 2655",
+ "CIVIQUE_FI":" 2655",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-5325-1-000-0000",
+ "SUPERFICIE":379,
+ "SUPERFIC_1":274,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000747030417642,
+ "OBJECTID":89980,
+ "Join_Count":2,
+ "TARGET_FID":89980,
+ "feature_id":"fe3b1df7-58d8-4726-9a58-4f0cfaa0987e",
+ "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":7.78,
+ "heightmax":50.98,
+ "elevmin":39.84,
+ "elevmax":41.34,
+ "bldgarea":143.23,
+ "comment":" ",
+ "OBJECTID_2":89980,
+ "Shape_Le_1":0.000747030417642,
+ "Shape_Ar_1":1.67851592847e-08,
+ "OBJECTID_3":89980,
+ "Join_Cou_1":2,
+ "TARGET_F_1":89979,
+ "g_objectid":"944181",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361448",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004411532510000000",
+ "g_sup_tota":"379.4",
+ "g_geometry":"0.000868735",
+ "g_geomet_1":"4.37734e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000747030417642,
+ "Shape_Area":1.67851592847e-08,
+ "Shape_Le_3":0.000747030226699,
+ "Shape_Ar_2":1.67851592847e-08,
+ "building_height":21.599999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1868,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55384085929006,
+ 45.53683647996987
+ ],
+ [
+ -73.55397503724002,
+ 45.53688407748848
+ ],
+ [
+ -73.55399186715279,
+ 45.536867750296736
+ ],
+ [
+ -73.55401486731412,
+ 45.53684534998321
+ ],
+ [
+ -73.55399806707898,
+ 45.53683684959123
+ ],
+ [
+ -73.55402666731868,
+ 45.53680864954983
+ ],
+ [
+ -73.55406666826397,
+ 45.53676904970218
+ ],
+ [
+ -73.55407110192166,
+ 45.536771267430346
+ ],
+ [
+ -73.55407471629697,
+ 45.536765889484506
+ ],
+ [
+ -73.55389111700329,
+ 45.53670076148125
+ ],
+ [
+ -73.55388846670122,
+ 45.536704349776215
+ ],
+ [
+ -73.55389276725924,
+ 45.536705949670136
+ ],
+ [
+ -73.55392726705158,
+ 45.53671834952251
+ ],
+ [
+ -73.55384085929006,
+ 45.53683647996987
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1868,
+ "ID_UEV":"01025809",
+ "CIVIQUE_DE":" 2780",
+ "CIVIQUE_FI":" 2780",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1976,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-50-9297-6-000-0000",
+ "SUPERFICIE":400,
+ "SUPERFIC_1":522,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000711518498304,
+ "OBJECTID":89993,
+ "Join_Count":1,
+ "TARGET_FID":89993,
+ "feature_id":"46f475c5-5b08-483c-ae47-9c1573686c7a",
+ "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.35,
+ "elevmin":18.56,
+ "elevmax":19.35,
+ "bldgarea":1009.32,
+ "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_2":89993,
+ "Shape_Le_1":0.000711518498304,
+ "Shape_Ar_1":2.0947037655e-08,
+ "OBJECTID_3":89993,
+ "Join_Cou_1":4,
+ "TARGET_F_1":89992,
+ "g_objectid":"943726",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360875",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004450878770000000",
+ "g_sup_tota":"197.8",
+ "g_geometry":"0.000779905",
+ "g_geomet_1":"2.27879e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000711518498304,
+ "Shape_Area":2.0947037655e-08,
+ "Shape_Le_3":0.00071151933164,
+ "Shape_Ar_2":2.0947037655e-08,
+ "building_height":5.92
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1869,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55141847240643,
+ 45.53769590719066
+ ],
+ [
+ -73.55132176740749,
+ 45.537662250962406
+ ],
+ [
+ -73.55119016691452,
+ 45.53782225114627
+ ],
+ [
+ -73.55119006708976,
+ 45.537822450795765
+ ],
+ [
+ -73.55122036704815,
+ 45.537836750915616
+ ],
+ [
+ -73.55120220344078,
+ 45.53785586510639
+ ],
+ [
+ -73.55128197510491,
+ 45.53788412810032
+ ],
+ [
+ -73.55141847240643,
+ 45.53769590719066
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1869,
+ "ID_UEV":"01025426",
+ "CIVIQUE_DE":" 2105",
+ "CIVIQUE_FI":" 2111",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1956,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-72-9606-2-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":362,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000686794605489,
+ "OBJECTID":89995,
+ "Join_Count":1,
+ "TARGET_FID":89995,
+ "feature_id":"790eafe7-0226-4b40-905a-d279325ae83c",
+ "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.67,
+ "heightmax":13.66,
+ "elevmin":19.18,
+ "elevmax":20.54,
+ "bldgarea":1826.79,
+ "comment":" ",
+ "OBJECTID_2":89995,
+ "Shape_Le_1":0.000686794605489,
+ "Shape_Ar_1":2.35681498877e-08,
+ "OBJECTID_3":89995,
+ "Join_Cou_1":3,
+ "TARGET_F_1":89994,
+ "g_objectid":"943856",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361033",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004472960620000000",
+ "g_sup_tota":"334.5",
+ "g_geometry":"0.000815713",
+ "g_geomet_1":"3.85326e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000686794605489,
+ "Shape_Area":2.35681498877e-08,
+ "Shape_Le_3":0.000686794409237,
+ "Shape_Ar_2":2.35681498877e-08,
+ "building_height":6.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1870,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55265858085068,
+ 45.53757653298091
+ ],
+ [
+ -73.55272129327491,
+ 45.53760065279818
+ ],
+ [
+ -73.55279378492708,
+ 45.53749885943511
+ ],
+ [
+ -73.55273004098045,
+ 45.5374761902243
+ ],
+ [
+ -73.55265858085068,
+ 45.53757653298091
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1870,
+ "ID_UEV":"01025254",
+ "CIVIQUE_DE":" 2195",
+ "CIVIQUE_FI":" 2199",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-61-8383-2-000-0000",
+ "SUPERFICIE":138,
+ "SUPERFIC_1":198,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000383001224661,
+ "OBJECTID":90005,
+ "Join_Count":1,
+ "TARGET_FID":90005,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":90005,
+ "Shape_Le_1":0.000383001224661,
+ "Shape_Ar_1":8.07420602054e-09,
+ "OBJECTID_3":90005,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90004,
+ "g_objectid":"943823",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360982",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004461838320000000",
+ "g_sup_tota":"137.5",
+ "g_geometry":"0.000622094",
+ "g_geomet_1":"1.58371e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000383001224661,
+ "Shape_Area":8.07420602054e-09,
+ "Shape_Le_3":0.000383001211398,
+ "Shape_Ar_2":8.07420602054e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1871,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55258901379379,
+ 45.53754977545207
+ ],
+ [
+ -73.55265858085068,
+ 45.53757653298091
+ ],
+ [
+ -73.55273004098045,
+ 45.5374761902243
+ ],
+ [
+ -73.55265932908661,
+ 45.53745104068327
+ ],
+ [
+ -73.55258901379379,
+ 45.53754977545207
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1871,
+ "ID_UEV":"01025257",
+ "CIVIQUE_DE":" 2189",
+ "CIVIQUE_FI":" 2193",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-61-8880-7-000-0000",
+ "SUPERFICIE":153,
+ "SUPERFIC_1":207,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000393988020515,
+ "OBJECTID":90007,
+ "Join_Count":1,
+ "TARGET_FID":90007,
+ "feature_id":"f6093ae1-0cb0-4e93-bc55-6aa1db1092a5",
+ "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":33.49,
+ "elevmin":18.73,
+ "elevmax":21.62,
+ "bldgarea":2773.75,
+ "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_2":90007,
+ "Shape_Le_1":0.000393988020515,
+ "Shape_Ar_1":8.82135897698e-09,
+ "OBJECTID_3":90007,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90006,
+ "g_objectid":"943823",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360982",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004461838320000000",
+ "g_sup_tota":"137.5",
+ "g_geometry":"0.000622094",
+ "g_geomet_1":"1.58371e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000393988020515,
+ "Shape_Area":8.82135897698e-09,
+ "Shape_Le_3":0.000393988203305,
+ "Shape_Ar_2":8.82135897698e-09,
+ "building_height":16.495
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1872,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55297744267668,
+ 45.53472681254266
+ ],
+ [
+ -73.55305338772551,
+ 45.53475496671864
+ ],
+ [
+ -73.55311301997173,
+ 45.534671830690726
+ ],
+ [
+ -73.55310276680109,
+ 45.53466804994085
+ ],
+ [
+ -73.55303700027919,
+ 45.53464378083611
+ ],
+ [
+ -73.55297744267668,
+ 45.53472681254266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1872,
+ "ID_UEV":"01024215",
+ "CIVIQUE_DE":" 2069",
+ "CIVIQUE_FI":" 2071",
+ "NOM_RUE":"avenue Gascon (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-68-5869-0-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":132,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000366519574199,
+ "OBJECTID":90008,
+ "Join_Count":1,
+ "TARGET_FID":90008,
+ "feature_id":"d9727e86-848d-486e-944e-5830c8daa0ba",
+ "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.51,
+ "heightmax":32.74,
+ "elevmin":19.01,
+ "elevmax":20.93,
+ "bldgarea":774.45,
+ "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_2":90008,
+ "Shape_Le_1":0.000366519574199,
+ "Shape_Ar_1":7.98757215106e-09,
+ "OBJECTID_3":90008,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90007,
+ "g_objectid":"941031",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424869",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004368586900000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.000656901",
+ "g_geomet_1":"1.93055e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000366519574199,
+ "Shape_Area":7.98757215106e-09,
+ "Shape_Le_3":0.000366519621414,
+ "Shape_Ar_2":7.98757215106e-09,
+ "building_height":15.115000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1873,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5559249670854,
+ 45.53764696068898
+ ],
+ [
+ -73.55593636779099,
+ 45.53765054988327
+ ],
+ [
+ -73.55599386774465,
+ 45.53756024985594
+ ],
+ [
+ -73.55607620427526,
+ 45.53758622587392
+ ],
+ [
+ -73.55612690535425,
+ 45.5375137971743
+ ],
+ [
+ -73.55612646828374,
+ 45.53751314966242
+ ],
+ [
+ -73.55612762840917,
+ 45.537512763853265
+ ],
+ [
+ -73.55614033582968,
+ 45.53749460923912
+ ],
+ [
+ -73.55612056783178,
+ 45.53748155018369
+ ],
+ [
+ -73.55610646826075,
+ 45.537492049768574
+ ],
+ [
+ -73.5560855680164,
+ 45.537478349496524
+ ],
+ [
+ -73.55606346807643,
+ 45.53746405027599
+ ],
+ [
+ -73.55606286822864,
+ 45.53746474994855
+ ],
+ [
+ -73.55601606840868,
+ 45.53752844982839
+ ],
+ [
+ -73.55600957080689,
+ 45.53752609000734
+ ],
+ [
+ -73.5559249670854,
+ 45.53764696068898
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1873,
+ "ID_UEV":"01024853",
+ "CIVIQUE_DE":" 2366",
+ "CIVIQUE_FI":" 2366",
+ "NOM_RUE":"rue Montgomery (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-41-2485-3-000-0000",
+ "SUPERFICIE":187,
+ "SUPERFIC_1":58,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000644919030509,
+ "OBJECTID":90021,
+ "Join_Count":1,
+ "TARGET_FID":90021,
+ "feature_id":"bade550f-2044-44ba-83c5-2138bf58e40c",
+ "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":35.41,
+ "elevmin":17.57,
+ "elevmax":24.37,
+ "bldgarea":1657.25,
+ "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_2":90021,
+ "Shape_Le_1":0.000644919030509,
+ "Shape_Ar_1":1.04286765829e-08,
+ "OBJECTID_3":90021,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90020,
+ "g_objectid":"943954",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361159",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004441318250000000",
+ "g_sup_tota":"186.5",
+ "g_geometry":"0.000667235",
+ "g_geomet_1":"2.14835e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000644919030509,
+ "Shape_Area":1.04286765829e-08,
+ "Shape_Le_3":0.000644917840291,
+ "Shape_Ar_2":1.04286765829e-08,
+ "building_height":17.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1874,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55742504525148,
+ 45.53890696483485
+ ],
+ [
+ -73.55745946950076,
+ 45.53891735110516
+ ],
+ [
+ -73.55751485604762,
+ 45.53893408389116
+ ],
+ [
+ -73.5575887353537,
+ 45.53883140109858
+ ],
+ [
+ -73.5575082145543,
+ 45.538791370475664
+ ],
+ [
+ -73.55742504525148,
+ 45.53890696483485
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55752560114742,
+ 45.53876720479296
+ ],
+ [
+ -73.55751140624824,
+ 45.538786933220685
+ ],
+ [
+ -73.55752746903931,
+ 45.538770950469285
+ ],
+ [
+ -73.55752936930679,
+ 45.538768750727556
+ ],
+ [
+ -73.55752560114742,
+ 45.53876720479296
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1874,
+ "ID_UEV":"01025157",
+ "CIVIQUE_DE":" 2566",
+ "CIVIQUE_FI":" 2568",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1951,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-33-0625-3-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":197,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000506584813205,
+ "OBJECTID":90022,
+ "Join_Count":1,
+ "TARGET_FID":90022,
+ "feature_id":"371d10c2-7fba-4ec3-86e3-d0638969ac6c",
+ "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.54,
+ "heightmax":41.69,
+ "elevmin":26.82,
+ "elevmax":31.02,
+ "bldgarea":962.18,
+ "comment":" ",
+ "OBJECTID_2":90022,
+ "Shape_Le_1":0.000506584813205,
+ "Shape_Ar_1":1.19815365131e-08,
+ "OBJECTID_3":90022,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90021,
+ "g_objectid":"944060",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361299",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004433002800000000",
+ "g_sup_tota":"186.2",
+ "g_geometry":"0.00066816",
+ "g_geomet_1":"2.14462e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000506584813205,
+ "Shape_Area":1.19815365131e-08,
+ "Shape_Le_3":0.000506585982895,
+ "Shape_Ar_2":1.19815365131e-08,
+ "building_height":20.575
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1875,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56426417807121,
+ 45.52422396581367
+ ],
+ [
+ -73.56429847012015,
+ 45.52423284751819
+ ],
+ [
+ -73.56428886985731,
+ 45.52425114782251
+ ],
+ [
+ -73.56428907040612,
+ 45.52425124764726
+ ],
+ [
+ -73.56431227021694,
+ 45.52425735404395
+ ],
+ [
+ -73.56446021498877,
+ 45.5241003854747
+ ],
+ [
+ -73.56441597014275,
+ 45.52408614740807
+ ],
+ [
+ -73.56438057012906,
+ 45.524140347749146
+ ],
+ [
+ -73.56435175045476,
+ 45.52413105415512
+ ],
+ [
+ -73.56426417807121,
+ 45.52422396581367
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1875,
+ "ID_UEV":"01032323",
+ "CIVIQUE_DE":" 2292",
+ "CIVIQUE_FI":" 2298",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-76-6992-6-000-0000",
+ "SUPERFICIE":169,
+ "SUPERFIC_1":273,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000565177575675,
+ "OBJECTID":90049,
+ "Join_Count":1,
+ "TARGET_FID":90049,
+ "feature_id":"e9f013c3-7290-4338-bfd0-cbe14240a7ad",
+ "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.17,
+ "heightmax":13.5,
+ "elevmin":30.89,
+ "elevmax":39.62,
+ "bldgarea":781.22,
+ "comment":" ",
+ "OBJECTID_2":90049,
+ "Shape_Le_1":0.000565177575675,
+ "Shape_Ar_1":1.0330910833e-08,
+ "OBJECTID_3":90049,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90048,
+ "g_objectid":"942939",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885071",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994276699260000000",
+ "g_sup_tota":"168.6",
+ "g_geometry":"0.000792887",
+ "g_geomet_1":"1.94014e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000565177575675,
+ "Shape_Area":1.0330910833e-08,
+ "Shape_Le_3":0.000565178276033,
+ "Shape_Ar_2":1.0330910833e-08,
+ "building_height":5.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1876,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56431227021694,
+ 45.52425735404395
+ ],
+ [
+ -73.56442357031337,
+ 45.52428664766096
+ ],
+ [
+ -73.56442376996286,
+ 45.52428624746265
+ ],
+ [
+ -73.5644368703871,
+ 45.52422424820079
+ ],
+ [
+ -73.5644434705116,
+ 45.524192547997984
+ ],
+ [
+ -73.5644477701703,
+ 45.52419304802105
+ ],
+ [
+ -73.56445006973678,
+ 45.52418954785964
+ ],
+ [
+ -73.56446772792515,
+ 45.524162457581646
+ ],
+ [
+ -73.56448477007793,
+ 45.524108287817526
+ ],
+ [
+ -73.56446021498877,
+ 45.5241003854747
+ ],
+ [
+ -73.56431227021694,
+ 45.52425735404395
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1876,
+ "ID_UEV":"01032325",
+ "CIVIQUE_DE":" 2294",
+ "CIVIQUE_FI":" 2302",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1925,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-77-6803-3-000-0000",
+ "SUPERFICIE":146,
+ "SUPERFIC_1":299,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000550423339489,
+ "OBJECTID":90051,
+ "Join_Count":1,
+ "TARGET_FID":90051,
+ "feature_id":"e9f013c3-7290-4338-bfd0-cbe14240a7ad",
+ "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.17,
+ "heightmax":13.5,
+ "elevmin":30.89,
+ "elevmax":39.62,
+ "bldgarea":781.22,
+ "comment":" ",
+ "OBJECTID_2":90051,
+ "Shape_Le_1":0.000550423339489,
+ "Shape_Ar_1":1.27091637564e-08,
+ "OBJECTID_3":90051,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90050,
+ "g_objectid":"942939",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885071",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994276699260000000",
+ "g_sup_tota":"168.6",
+ "g_geometry":"0.000792887",
+ "g_geomet_1":"1.94014e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000550423339489,
+ "Shape_Area":1.27091637564e-08,
+ "Shape_Le_3":0.000550423110073,
+ "Shape_Ar_2":1.27091637564e-08,
+ "building_height":5.665
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1877,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55146357700433,
+ 45.537483275083375
+ ],
+ [
+ -73.55153483568596,
+ 45.53750944175763
+ ],
+ [
+ -73.55160924469273,
+ 45.53740496301892
+ ],
+ [
+ -73.55154356720371,
+ 45.53737995107418
+ ],
+ [
+ -73.55153852830229,
+ 45.53737803282026
+ ],
+ [
+ -73.55146357700433,
+ 45.537483275083375
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1877,
+ "ID_UEV":"01025342",
+ "CIVIQUE_DE":" 2112",
+ "CIVIQUE_FI":" 2116",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-7469-9-000-0000",
+ "SUPERFICIE":153,
+ "SUPERFIC_1":231,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000409053615177,
+ "OBJECTID":90058,
+ "Join_Count":1,
+ "TARGET_FID":90058,
+ "feature_id":"36dfff6b-f97c-4c50-b28a-adb9e0927e3c",
+ "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.53,
+ "heightmax":34.1,
+ "elevmin":18.9,
+ "elevmax":21.63,
+ "bldgarea":2810.44,
+ "comment":" ",
+ "OBJECTID_2":90058,
+ "Shape_Le_1":0.000409053615177,
+ "Shape_Ar_1":9.4265116864e-09,
+ "OBJECTID_3":90058,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90057,
+ "g_objectid":"944235",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361688",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004471806620000000",
+ "g_sup_tota":"153.1",
+ "g_geometry":"0.000633957",
+ "g_geomet_1":"1.76337e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000409053615177,
+ "Shape_Area":9.4265116864e-09,
+ "Shape_Le_3":0.000409052883239,
+ "Shape_Ar_2":9.4265116864e-09,
+ "building_height":16.785
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1878,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55793313252988,
+ 45.53383696485434
+ ],
+ [
+ -73.55793766871028,
+ 45.53383904948284
+ ],
+ [
+ -73.55791126911163,
+ 45.53386745007306
+ ],
+ [
+ -73.55795586918985,
+ 45.533887950119095
+ ],
+ [
+ -73.5579588693282,
+ 45.53388464960719
+ ],
+ [
+ -73.55798486872855,
+ 45.53385414999932
+ ],
+ [
+ -73.55803039151121,
+ 45.53387335682026
+ ],
+ [
+ -73.55813581453806,
+ 45.53375994421635
+ ],
+ [
+ -73.55804278506832,
+ 45.533718035809
+ ],
+ [
+ -73.55793313252988,
+ 45.53383696485434
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1878,
+ "ID_UEV":"01023374",
+ "CIVIQUE_DE":" 2283",
+ "CIVIQUE_FI":" 2291",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-6868-7-000-0000",
+ "SUPERFICIE":260,
+ "SUPERFIC_1":396,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000605441282155,
+ "OBJECTID":90060,
+ "Join_Count":1,
+ "TARGET_FID":90060,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":90060,
+ "Shape_Le_1":0.000605441282155,
+ "Shape_Ar_1":1.7095729486e-08,
+ "OBJECTID_3":90060,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90059,
+ "g_objectid":"941379",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425386",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327686870000000",
+ "g_sup_tota":"260.1",
+ "g_geometry":"0.000829528",
+ "g_geomet_1":"3.01824e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000605441282155,
+ "Shape_Area":1.7095729486e-08,
+ "Shape_Le_3":0.000605441111911,
+ "Shape_Ar_2":1.7095729486e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1879,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55796299721639,
+ 45.533682092604785
+ ],
+ [
+ -73.55788786875199,
+ 45.53364825021687
+ ],
+ [
+ -73.55788646940688,
+ 45.53364985011079
+ ],
+ [
+ -73.55779226901984,
+ 45.5337615495062
+ ],
+ [
+ -73.55783226906581,
+ 45.53377934978746
+ ],
+ [
+ -73.557800568863,
+ 45.53381455015166
+ ],
+ [
+ -73.55777106930125,
+ 45.533801349902674
+ ],
+ [
+ -73.55777096947651,
+ 45.53380144972742
+ ],
+ [
+ -73.55772858892509,
+ 45.53385237383828
+ ],
+ [
+ -73.55778494943772,
+ 45.53387831658134
+ ],
+ [
+ -73.55782767712745,
+ 45.53383234683563
+ ],
+ [
+ -73.55782659973963,
+ 45.53383185220851
+ ],
+ [
+ -73.55796299721639,
+ 45.533682092604785
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1879,
+ "ID_UEV":"01023378",
+ "CIVIQUE_DE":" 2265",
+ "CIVIQUE_FI":" 2271",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-8159-9-000-0000",
+ "SUPERFICIE":209,
+ "SUPERFIC_1":372,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000749060560979,
+ "OBJECTID":90061,
+ "Join_Count":1,
+ "TARGET_FID":90061,
+ "feature_id":"3c9b97fb-3300-4672-bf09-8e73499427ef",
+ "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.43,
+ "heightmax":41.51,
+ "elevmin":23.04,
+ "elevmax":30.32,
+ "bldgarea":2536.98,
+ "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_2":90061,
+ "Shape_Le_1":0.000749060560979,
+ "Shape_Ar_1":1.69069799805e-08,
+ "OBJECTID_3":90061,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90060,
+ "g_objectid":"941380",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425387",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004327756410000000",
+ "g_sup_tota":"221.7",
+ "g_geometry":"0.000799758",
+ "g_geomet_1":"2.57407e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000749060560979,
+ "Shape_Area":1.69069799805e-08,
+ "Shape_Le_3":0.000749061388619,
+ "Shape_Ar_2":1.69069799805e-08,
+ "building_height":19.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1880,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55770331977423,
+ 45.53359345362528
+ ],
+ [
+ -73.55779885385587,
+ 45.53363645470891
+ ],
+ [
+ -73.55784674275482,
+ 45.53357903749288
+ ],
+ [
+ -73.55779910656535,
+ 45.53355716598072
+ ],
+ [
+ -73.55775976931974,
+ 45.53354074975609
+ ],
+ [
+ -73.55771216820385,
+ 45.53359714983889
+ ],
+ [
+ -73.55770331977423,
+ 45.53359345362528
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1880,
+ "ID_UEV":"01023380",
+ "CIVIQUE_DE":" 2257",
+ "CIVIQUE_FI":" 2259",
+ "NOM_RUE":"rue Chapleau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-27-8742-2-000-0000",
+ "SUPERFICIE":75,
+ "SUPERFIC_1":185,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000357966962733,
+ "OBJECTID":90062,
+ "Join_Count":1,
+ "TARGET_FID":90062,
+ "feature_id":"5772c71f-f6b8-4ae7-80c6-3e30c9248552",
+ "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.49,
+ "heightmax":33.51,
+ "elevmin":19.82,
+ "elevmax":23.81,
+ "bldgarea":754.06,
+ "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_2":90062,
+ "Shape_Le_1":0.000357966962733,
+ "Shape_Ar_1":6.8465784768e-09,
+ "OBJECTID_3":90062,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90061,
+ "g_objectid":"941297",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425283",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004337024200000000",
+ "g_sup_tota":"281.6",
+ "g_geometry":"0.000976888",
+ "g_geomet_1":"3.24238e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000357966962733,
+ "Shape_Area":6.8465784768e-09,
+ "Shape_Le_3":0.000357967162404,
+ "Shape_Ar_2":6.8465784768e-09,
+ "building_height":15.509999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1881,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55490121933765,
+ 45.53448183362002
+ ],
+ [
+ -73.55497571917594,
+ 45.53451244204586
+ ],
+ [
+ -73.55509410143348,
+ 45.53436882211374
+ ],
+ [
+ -73.55506896808026,
+ 45.534358349508516
+ ],
+ [
+ -73.55505846849537,
+ 45.53435345000201
+ ],
+ [
+ -73.55501476773918,
+ 45.534399550149416
+ ],
+ [
+ -73.55498176531806,
+ 45.53438416005124
+ ],
+ [
+ -73.55490121933765,
+ 45.53448183362002
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1881,
+ "ID_UEV":"01024011",
+ "CIVIQUE_DE":" 2174",
+ "CIVIQUE_FI":" 2178",
+ "NOM_RUE":"rue du Havre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-58-0435-6-000-0000",
+ "SUPERFICIE":135,
+ "SUPERFIC_1":244,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000532014965907,
+ "OBJECTID":90091,
+ "Join_Count":1,
+ "TARGET_FID":90091,
+ "feature_id":"50d504e9-3979-4c2f-8d4c-80a4fb3c06d2",
+ "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.51,
+ "heightmax":30.79,
+ "elevmin":18.41,
+ "elevmax":19.61,
+ "bldgarea":466.6,
+ "comment":" ",
+ "OBJECTID_2":90091,
+ "Shape_Le_1":0.000532014965907,
+ "Shape_Ar_1":1.20631045553e-08,
+ "OBJECTID_3":90091,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90090,
+ "g_objectid":"941090",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424988",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004358043560000000",
+ "g_sup_tota":"134.6",
+ "g_geometry":"0.000566588",
+ "g_geomet_1":"1.55904e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000532014965907,
+ "Shape_Area":1.20631045553e-08,
+ "Shape_Le_3":0.00053201486237,
+ "Shape_Ar_2":1.20631045553e-08,
+ "building_height":14.14
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1882,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55497571917594,
+ 45.53451244204586
+ ],
+ [
+ -73.55497646831121,
+ 45.534512749613995
+ ],
+ [
+ -73.55497886770243,
+ 45.534509850199726
+ ],
+ [
+ -73.55509656827385,
+ 45.53436985003884
+ ],
+ [
+ -73.55509410143348,
+ 45.53436882211374
+ ],
+ [
+ -73.55497571917594,
+ 45.53451244204586
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55510578272754,
+ 45.53436466095064
+ ],
+ [
+ -73.55510236800173,
+ 45.53436844979442
+ ],
+ [
+ -73.55510256855054,
+ 45.53436854961917
+ ],
+ [
+ -73.55524423695381,
+ 45.53442806585285
+ ],
+ [
+ -73.55524702755012,
+ 45.5344246781067
+ ],
+ [
+ -73.55510578272754,
+ 45.53436466095064
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1882,
+ "ID_UEV":"01024013",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue du Havre (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-48-9540-5-000-0000",
+ "SUPERFICIE":264,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000693112624216,
+ "OBJECTID":90092,
+ "Join_Count":2,
+ "TARGET_FID":90092,
+ "feature_id":"50d504e9-3979-4c2f-8d4c-80a4fb3c06d2",
+ "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.51,
+ "heightmax":30.79,
+ "elevmin":18.41,
+ "elevmax":19.61,
+ "bldgarea":466.6,
+ "comment":" ",
+ "OBJECTID_2":90092,
+ "Shape_Le_1":0.000693112624216,
+ "Shape_Ar_1":1.00203811536e-09,
+ "OBJECTID_3":90092,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90091,
+ "g_objectid":"941090",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424988",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004358043560000000",
+ "g_sup_tota":"134.6",
+ "g_geometry":"0.000566588",
+ "g_geomet_1":"1.55904e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000693112624216,
+ "Shape_Area":1.00203811536e-09,
+ "Shape_Le_3":0.000693112826826,
+ "Shape_Ar_2":1.00203811536e-09,
+ "building_height":14.14
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1883,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55610012804033,
+ 45.53575135978772
+ ],
+ [
+ -73.55604126831173,
+ 45.53573015017658
+ ],
+ [
+ -73.55603886802119,
+ 45.53573344978917
+ ],
+ [
+ -73.55597796773087,
+ 45.53582195027308
+ ],
+ [
+ -73.55603441547774,
+ 45.53584290717472
+ ],
+ [
+ -73.55610012804033,
+ 45.53575135978772
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1883,
+ "ID_UEV":"01024174",
+ "CIVIQUE_DE":" 2289",
+ "CIVIQUE_FI":" 2289",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1985,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-49-2587-1-000-0000",
+ "SUPERFICIE":193,
+ "SUPERFIC_1":198,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000346976501386,
+ "OBJECTID":90104,
+ "Join_Count":1,
+ "TARGET_FID":90104,
+ "feature_id":"0d0450ed-53d1-4796-8a46-274cefb95f1e",
+ "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,
+ "heightmax":33.2,
+ "elevmin":20.33,
+ "elevmax":23.69,
+ "bldgarea":773.97,
+ "comment":" ",
+ "OBJECTID_2":90104,
+ "Shape_Le_1":0.000346976501386,
+ "Shape_Ar_1":6.65103592361e-09,
+ "OBJECTID_3":90104,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90103,
+ "g_objectid":"941004",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424838",
+ "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":"66023004349258710000000",
+ "g_sup_tota":"192.6",
+ "g_geometry":"0.000681334",
+ "g_geomet_1":"2.22575e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000346976501386,
+ "Shape_Area":6.65103592361e-09,
+ "Shape_Le_3":0.000346977260287,
+ "Shape_Ar_2":6.65103592361e-09,
+ "building_height":16.6
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1884,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55560187035188,
+ 45.53567622862535
+ ],
+ [
+ -73.5556771786807,
+ 45.53570371460504
+ ],
+ [
+ -73.5557514707756,
+ 45.535602050744345
+ ],
+ [
+ -73.55567588455627,
+ 45.535574312055154
+ ],
+ [
+ -73.55560187035188,
+ 45.53567622862535
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1884,
+ "ID_UEV":"01024184",
+ "CIVIQUE_DE":" 2267",
+ "CIVIQUE_FI":" 2275",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1933,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-49-5373-3-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":246,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000412557284744,
+ "OBJECTID":90106,
+ "Join_Count":1,
+ "TARGET_FID":90106,
+ "feature_id":"a090f874-62eb-484b-b888-08c6b77e18be",
+ "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":3.03,
+ "heightmax":31.93,
+ "elevmin":19.39,
+ "elevmax":20.95,
+ "bldgarea":423.57,
+ "comment":" ",
+ "OBJECTID_2":90106,
+ "Shape_Le_1":0.000412557284744,
+ "Shape_Ar_1":9.72743935631e-09,
+ "OBJECTID_3":90106,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90105,
+ "g_objectid":"940969",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424769",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004349537330000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.00065627",
+ "g_geomet_1":"1.91051e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000412557284744,
+ "Shape_Area":9.72743935631e-09,
+ "Shape_Le_3":0.000412555523224,
+ "Shape_Ar_2":9.72743935631e-09,
+ "building_height":14.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1885,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55567588455627,
+ 45.535574312055154
+ ],
+ [
+ -73.55560486779225,
+ 45.53554824970226
+ ],
+ [
+ -73.55560136853018,
+ 45.53555305028334
+ ],
+ [
+ -73.55553416848893,
+ 45.53565074993246
+ ],
+ [
+ -73.555550868,
+ 45.53565625018609
+ ],
+ [
+ -73.55554986795389,
+ 45.535657250232205
+ ],
+ [
+ -73.55560187035188,
+ 45.53567622862535
+ ],
+ [
+ -73.55567588455627,
+ 45.535574312055154
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1885,
+ "ID_UEV":"01024186",
+ "CIVIQUE_DE":" 2265",
+ "CIVIQUE_FI":" 2271",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1933,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-49-5970-6-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":246,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000400478016585,
+ "OBJECTID":90107,
+ "Join_Count":1,
+ "TARGET_FID":90107,
+ "feature_id":"a090f874-62eb-484b-b888-08c6b77e18be",
+ "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":3.03,
+ "heightmax":31.93,
+ "elevmin":19.39,
+ "elevmax":20.95,
+ "bldgarea":423.57,
+ "comment":" ",
+ "OBJECTID_2":90107,
+ "Shape_Le_1":0.000400478016585,
+ "Shape_Ar_1":8.97237177431e-09,
+ "OBJECTID_3":90107,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90106,
+ "g_objectid":"940969",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424769",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004349537330000000",
+ "g_sup_tota":"167.6",
+ "g_geometry":"0.00065627",
+ "g_geomet_1":"1.91051e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000400478016585,
+ "Shape_Area":8.97237177431e-09,
+ "Shape_Le_3":0.000400478242725,
+ "Shape_Ar_2":8.97237177431e-09,
+ "building_height":14.45
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1886,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5552158687392,
+ 45.535452475501636
+ ],
+ [
+ -73.55542260848844,
+ 45.5355257378728
+ ],
+ [
+ -73.55545406767293,
+ 45.535479549591834
+ ],
+ [
+ -73.55545646796347,
+ 45.53547584978094
+ ],
+ [
+ -73.5552456677752,
+ 45.535407249495265
+ ],
+ [
+ -73.5552158687392,
+ 45.535452475501636
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1886,
+ "ID_UEV":"01024188",
+ "CIVIQUE_DE":" 2253",
+ "CIVIQUE_FI":" 2253",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1958,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-49-7452-3-000-0000",
+ "SUPERFICIE":188,
+ "SUPERFIC_1":313,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000555472620422,
+ "OBJECTID":90108,
+ "Join_Count":1,
+ "TARGET_FID":90108,
+ "feature_id":"49824a55-9106-46ec-b8f2-9718fb863db7",
+ "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.44,
+ "heightmax":31.58,
+ "elevmin":19.15,
+ "elevmax":20.07,
+ "bldgarea":909.25,
+ "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_2":90108,
+ "Shape_Le_1":0.000555472620422,
+ "Shape_Ar_1":1.21889247757e-08,
+ "OBJECTID_3":90108,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90107,
+ "g_objectid":"940945",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424741",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004349775910000000",
+ "g_sup_tota":"186.7",
+ "g_geometry":"0.000796397",
+ "g_geomet_1":"2.15995e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000555472620422,
+ "Shape_Area":1.21889247757e-08,
+ "Shape_Le_3":0.000555473515761,
+ "Shape_Ar_2":1.21889247757e-08,
+ "building_height":14.569999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1887,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55445149895935,
+ 45.53535242052808
+ ],
+ [
+ -73.55446016842387,
+ 45.53535524979524
+ ],
+ [
+ -73.55450726771808,
+ 45.535284049569526
+ ],
+ [
+ -73.55450246803632,
+ 45.53528254950035
+ ],
+ [
+ -73.55450177645766,
+ 45.5352823228712
+ ],
+ [
+ -73.55445149895935,
+ 45.53535242052808
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55453566830829,
+ 45.535251450044676
+ ],
+ [
+ -73.55460572729433,
+ 45.53527728666774
+ ],
+ [
+ -73.55466226227543,
+ 45.535199481820925
+ ],
+ [
+ -73.55459336791145,
+ 45.53517404989278
+ ],
+ [
+ -73.55453566830829,
+ 45.535251450044676
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1887,
+ "ID_UEV":"01024190",
+ "CIVIQUE_DE":" 2187",
+ "CIVIQUE_FI":" 2189",
+ "NOM_RUE":"avenue Gascon (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-3830-3-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":127,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000527335184691,
+ "OBJECTID":90109,
+ "Join_Count":2,
+ "TARGET_FID":90109,
+ "feature_id":"c0d8fac2-5d86-485b-a18b-de7e3cc7c39a",
+ "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":3.64,
+ "heightmax":27.6,
+ "elevmin":19.22,
+ "elevmax":19.92,
+ "bldgarea":62.08,
+ "comment":" ",
+ "OBJECTID_2":90109,
+ "Shape_Le_1":0.000527335184691,
+ "Shape_Ar_1":7.46684548863e-09,
+ "OBJECTID_3":90109,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90108,
+ "g_objectid":"941041",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424879",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359482520000000",
+ "g_sup_tota":"335.2",
+ "g_geometry":"0.00081956",
+ "g_geomet_1":"3.86115e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000527335184691,
+ "Shape_Area":7.46684548863e-09,
+ "Shape_Le_3":0.000527334643337,
+ "Shape_Ar_2":7.46684548863e-09,
+ "building_height":11.98
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1888,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55450177645766,
+ 45.5352823228712
+ ],
+ [
+ -73.55444516773215,
+ 45.5352637500723
+ ],
+ [
+ -73.55439796771388,
+ 45.535334950298015
+ ],
+ [
+ -73.55445149895935,
+ 45.53535242052808
+ ],
+ [
+ -73.55450177645766,
+ 45.5352823228712
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55429212020702,
+ 45.53530655060712
+ ],
+ [
+ -73.5543019138241,
+ 45.53531002109089
+ ],
+ [
+ -73.55436466671785,
+ 45.53523824979569
+ ],
+ [
+ -73.55439226781075,
+ 45.53520664941763
+ ],
+ [
+ -73.55445856852995,
+ 45.53523524965734
+ ],
+ [
+ -73.55446056772287,
+ 45.535235950229215
+ ],
+ [
+ -73.55448046792111,
+ 45.53520484987422
+ ],
+ [
+ -73.55449246847448,
+ 45.53520864950986
+ ],
+ [
+ -73.5545294683821,
+ 45.5351505497084
+ ],
+ [
+ -73.55452256788405,
+ 45.535148349966676
+ ],
+ [
+ -73.55443536781982,
+ 45.53511984955171
+ ],
+ [
+ -73.55439256728499,
+ 45.53518425000343
+ ],
+ [
+ -73.554382262853,
+ 45.53518087304915
+ ],
+ [
+ -73.55435814483437,
+ 45.53521449870045
+ ],
+ [
+ -73.55436236715137,
+ 45.53521605003098
+ ],
+ [
+ -73.55435246741429,
+ 45.53522935010472
+ ],
+ [
+ -73.55434852748441,
+ 45.53522790849148
+ ],
+ [
+ -73.55429212020702,
+ 45.53530655060712
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1888,
+ "ID_UEV":"01024192",
+ "CIVIQUE_DE":" 2175",
+ "CIVIQUE_FI":" 2177",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1943,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-4825-2-000-0000",
+ "SUPERFICIE":335,
+ "SUPERFIC_1":147,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00097855823041,
+ "OBJECTID":90110,
+ "Join_Count":2,
+ "TARGET_FID":90110,
+ "feature_id":"8b831765-3f0f-47be-8339-507530d90cae",
+ "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.47,
+ "heightmax":29.15,
+ "elevmin":18.67,
+ "elevmax":20.2,
+ "bldgarea":753.78,
+ "comment":" ",
+ "OBJECTID_2":90110,
+ "Shape_Le_1":0.00097855823041,
+ "Shape_Ar_1":1.66115303183e-08,
+ "OBJECTID_3":90110,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90109,
+ "g_objectid":"941041",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424879",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359482520000000",
+ "g_sup_tota":"335.2",
+ "g_geometry":"0.00081956",
+ "g_geomet_1":"3.86115e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00097855823041,
+ "Shape_Area":1.66115303183e-08,
+ "Shape_Le_3":0.000978561692259,
+ "Shape_Ar_2":1.66115303183e-08,
+ "building_height":13.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1889,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55421545929785,
+ 45.5352793937793
+ ],
+ [
+ -73.55429212020702,
+ 45.53530655060712
+ ],
+ [
+ -73.55434852748441,
+ 45.53522790849148
+ ],
+ [
+ -73.5542723674976,
+ 45.535200052890424
+ ],
+ [
+ -73.55421545929785,
+ 45.5352793937793
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.554382262853,
+ 45.53518087304915
+ ],
+ [
+ -73.55435716727129,
+ 45.53517264964836
+ ],
+ [
+ -73.55433786692086,
+ 45.535201749911124
+ ],
+ [
+ -73.55433486678253,
+ 45.53520594974508
+ ],
+ [
+ -73.55435814483437,
+ 45.53521449870045
+ ],
+ [
+ -73.554382262853,
+ 45.53518087304915
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1889,
+ "ID_UEV":"01024195",
+ "CIVIQUE_DE":" 2169",
+ "CIVIQUE_FI":" 2169",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-59-5721-2-000-0000",
+ "SUPERFICIE":168,
+ "SUPERFIC_1":125,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000489510770302,
+ "OBJECTID":90111,
+ "Join_Count":1,
+ "TARGET_FID":90111,
+ "feature_id":"8b831765-3f0f-47be-8339-507530d90cae",
+ "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.47,
+ "heightmax":29.15,
+ "elevmin":18.67,
+ "elevmax":20.2,
+ "bldgarea":753.78,
+ "comment":" ",
+ "OBJECTID_2":90111,
+ "Shape_Le_1":0.000489510770302,
+ "Shape_Ar_1":8.5951097906e-09,
+ "OBJECTID_3":90111,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90110,
+ "g_objectid":"941041",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424879",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004359482520000000",
+ "g_sup_tota":"335.2",
+ "g_geometry":"0.00081956",
+ "g_geomet_1":"3.86115e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000489510770302,
+ "Shape_Area":8.5951097906e-09,
+ "Shape_Le_3":0.000489510605584,
+ "Shape_Ar_2":8.5951097906e-09,
+ "building_height":13.34
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1890,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55466542519106,
+ 45.5310296978126
+ ],
+ [
+ -73.55488719620898,
+ 45.53113511994013
+ ],
+ [
+ -73.55495636756416,
+ 45.53106594858495
+ ],
+ [
+ -73.55487716696952,
+ 45.531026848760355
+ ],
+ [
+ -73.55489086724157,
+ 45.53101324921238
+ ],
+ [
+ -73.55474936701152,
+ 45.53094334850702
+ ],
+ [
+ -73.55474616722368,
+ 45.53094674884368
+ ],
+ [
+ -73.55466542519106,
+ 45.5310296978126
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55484415555517,
+ 45.530965677774105
+ ],
+ [
+ -73.5548815673523,
+ 45.53098544846996
+ ],
+ [
+ -73.5548829622008,
+ 45.53098412556724
+ ],
+ [
+ -73.55484415555517,
+ 45.530965677774105
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1890,
+ "ID_UEV":"01025484",
+ "CIVIQUE_DE":" 2341",
+ "CIVIQUE_FI":" 2345",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1941,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-54-1659-9-000-0000",
+ "SUPERFICIE":334,
+ "SUPERFIC_1":531,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0008164616302,
+ "OBJECTID":90112,
+ "Join_Count":2,
+ "TARGET_FID":90112,
+ "feature_id":"9f2fc24c-13d5-4bfb-a521-ba56fb4e3f4f",
+ "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.67,
+ "heightmax":31.12,
+ "elevmin":19.25,
+ "elevmax":20.08,
+ "bldgarea":249.55,
+ "comment":" ",
+ "OBJECTID_2":90112,
+ "Shape_Le_1":0.0008164616302,
+ "Shape_Ar_1":2.60657999141e-08,
+ "OBJECTID_3":90112,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90111,
+ "g_objectid":"940508",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1423997",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004354165990000000",
+ "g_sup_tota":"334.4",
+ "g_geometry":"0.000862835",
+ "g_geomet_1":"3.89477e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0008164616302,
+ "Shape_Area":2.60657999141e-08,
+ "Shape_Le_3":0.000816462245115,
+ "Shape_Ar_2":2.60657999141e-08,
+ "building_height":14.225000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1891,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55448833069376,
+ 45.53121279978118
+ ],
+ [
+ -73.55444619655657,
+ 45.53125563808752
+ ],
+ [
+ -73.55455737614383,
+ 45.53130609095363
+ ],
+ [
+ -73.55459803629219,
+ 45.531262957669654
+ ],
+ [
+ -73.55448833069376,
+ 45.53121279978118
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1891,
+ "ID_UEV":"01025490",
+ "CIVIQUE_DE":" 2369",
+ "CIVIQUE_FI":" 2373",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-54-3686-0-000-0000",
+ "SUPERFICIE":138,
+ "SUPERFIC_1":247,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000362083182226,
+ "OBJECTID":90116,
+ "Join_Count":1,
+ "TARGET_FID":90116,
+ "feature_id":"b72c6cb9-c04f-470a-8c71-64d02dc5867b",
+ "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.08,
+ "heightmax":30.83,
+ "elevmin":19.23,
+ "elevmax":20.04,
+ "bldgarea":244.23,
+ "comment":" ",
+ "OBJECTID_2":90116,
+ "Shape_Le_1":0.000362083182226,
+ "Shape_Ar_1":6.82994801867e-09,
+ "OBJECTID_3":90116,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90115,
+ "g_objectid":"944325",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"4027406",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004354368600000000",
+ "g_sup_tota":"137.8",
+ "g_geometry":"0.000682711",
+ "g_geomet_1":"1.58105e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000362083182226,
+ "Shape_Area":6.82994801867e-09,
+ "Shape_Le_3":0.000362083170714,
+ "Shape_Ar_2":6.82994801867e-09,
+ "building_height":11.375
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1892,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55837649290267,
+ 45.525726071051636
+ ],
+ [
+ -73.55838406789226,
+ 45.52572964765541
+ ],
+ [
+ -73.5583522633681,
+ 45.52576287041044
+ ],
+ [
+ -73.5584761188996,
+ 45.52582044950444
+ ],
+ [
+ -73.55864281183814,
+ 45.52564137020337
+ ],
+ [
+ -73.55851388592893,
+ 45.52557947616219
+ ],
+ [
+ -73.55837649290267,
+ 45.525726071051636
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1892,
+ "ID_UEV":"01034196",
+ "CIVIQUE_DE":" 1933",
+ "CIVIQUE_FI":" 1935",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1942,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-28-3066-1-000-0000",
+ "SUPERFICIE":297,
+ "SUPERFIC_1":332,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000779539166742,
+ "OBJECTID":90123,
+ "Join_Count":1,
+ "TARGET_FID":90123,
+ "feature_id":"1692e151-ce00-4169-b74b-9fe7a07c7efa",
+ "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.51,
+ "heightmax":38.76,
+ "elevmin":23.42,
+ "elevmax":25.23,
+ "bldgarea":1059.73,
+ "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_2":90123,
+ "Shape_Le_1":0.000779539166742,
+ "Shape_Ar_1":3.32823306423e-08,
+ "OBJECTID_3":90123,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90122,
+ "g_objectid":"942006",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567211",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004228197220000000",
+ "g_sup_tota":"297.3",
+ "g_geometry":"0.000791935",
+ "g_geomet_1":"3.46672e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000779539166742,
+ "Shape_Area":3.32823306423e-08,
+ "Shape_Le_3":0.000779537416771,
+ "Shape_Ar_2":3.32823306423e-08,
+ "building_height":18.125
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1893,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56312852318464,
+ 45.524380024269
+ ],
+ [
+ -73.56303447028642,
+ 45.524336547444
+ ],
+ [
+ -73.56295056983477,
+ 45.52442624762352
+ ],
+ [
+ -73.56294290221501,
+ 45.524434411669056
+ ],
+ [
+ -73.56303849025596,
+ 45.5244786205422
+ ],
+ [
+ -73.56312852318464,
+ 45.524380024269
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5629146203353,
+ 45.52442133192922
+ ],
+ [
+ -73.56291666449431,
+ 45.52442227711669
+ ],
+ [
+ -73.56300537002365,
+ 45.52432484816351
+ ],
+ [
+ -73.56300349493719,
+ 45.52432400280078
+ ],
+ [
+ -73.5629146203353,
+ 45.52442133192922
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56324419218757,
+ 45.524253352960166
+ ],
+ [
+ -73.56318897021664,
+ 45.524223547628914
+ ],
+ [
+ -73.56313867023529,
+ 45.524196347633634
+ ],
+ [
+ -73.5630768697236,
+ 45.52425284754118
+ ],
+ [
+ -73.56314377029061,
+ 45.52428884740268
+ ],
+ [
+ -73.56318766979697,
+ 45.52431264796063
+ ],
+ [
+ -73.56320218485479,
+ 45.52429935598079
+ ],
+ [
+ -73.56324419218757,
+ 45.524253352960166
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1893,
+ "ID_UEV":"01032430",
+ "CIVIQUE_DE":" 2170",
+ "CIVIQUE_FI":" 2170",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-87-7113-5-000-0000",
+ "SUPERFICIE":357,
+ "SUPERFIC_1":226,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0011559006573,
+ "OBJECTID":90133,
+ "Join_Count":3,
+ "TARGET_FID":90133,
+ "feature_id":"34a39948-8c7a-4af6-b010-2d9cc09ef6cc",
+ "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.95,
+ "heightmax":11.53,
+ "elevmin":29.01,
+ "elevmax":29.6,
+ "bldgarea":122.44,
+ "comment":" ",
+ "OBJECTID_2":90133,
+ "Shape_Le_1":0.0011559006573,
+ "Shape_Ar_1":2.33287942954e-08,
+ "OBJECTID_3":90133,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90132,
+ "g_objectid":"941581",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565499",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994287810760000000",
+ "g_sup_tota":"356.6",
+ "g_geometry":"0.000907494",
+ "g_geomet_1":"4.14762e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0011559006573,
+ "Shape_Area":2.33287942954e-08,
+ "Shape_Le_3":0.00115590141128,
+ "Shape_Ar_2":2.33287942954e-08,
+ "building_height":4.289999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1894,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54990310126895,
+ 45.5293032306099
+ ],
+ [
+ -73.55002243950582,
+ 45.529357273569616
+ ],
+ [
+ -73.5500817884656,
+ 45.5292928038701
+ ],
+ [
+ -73.54994349791595,
+ 45.529230178680095
+ ],
+ [
+ -73.54993386617683,
+ 45.52923734897477
+ ],
+ [
+ -73.54995616576628,
+ 45.529247248711854
+ ],
+ [
+ -73.54993086603848,
+ 45.529274048508825
+ ],
+ [
+ -73.54990310126895,
+ 45.5293032306099
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1894,
+ "ID_UEV":"01118548",
+ "CIVIQUE_DE":" 2378",
+ "CIVIQUE_FI":" 2382",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-82-9665-9-000-0000",
+ "SUPERFICIE":120,
+ "SUPERFIC_1":281,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000483983890047,
+ "OBJECTID":90144,
+ "Join_Count":1,
+ "TARGET_FID":90144,
+ "feature_id":"57f595cc-6f71-4513-84ee-4f0400054d01",
+ "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.51,
+ "heightmax":31.3,
+ "elevmin":19.88,
+ "elevmax":20.71,
+ "bldgarea":395.7,
+ "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_2":90144,
+ "Shape_Le_1":0.000483983890047,
+ "Shape_Ar_1":1.10838964679e-08,
+ "OBJECTID_3":90144,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90143,
+ "g_objectid":"940588",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424111",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004382955520000000",
+ "g_sup_tota":"208.1",
+ "g_geometry":"0.000749309",
+ "g_geomet_1":"2.40823e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000483983890047,
+ "Shape_Area":1.10838964679e-08,
+ "Shape_Le_3":0.00048398348483,
+ "Shape_Ar_2":1.10838964679e-08,
+ "building_height":14.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1895,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56336005994066,
+ 45.52334950462623
+ ],
+ [
+ -73.56336773025839,
+ 45.523353087525265
+ ],
+ [
+ -73.56343057038636,
+ 45.523282247927696
+ ],
+ [
+ -73.56342594517308,
+ 45.52328024154021
+ ],
+ [
+ -73.56336005994066,
+ 45.52334950462623
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56349767420015,
+ 45.52320483518529
+ ],
+ [
+ -73.56356970899672,
+ 45.523238594835576
+ ],
+ [
+ -73.56364573138724,
+ 45.523159183799585
+ ],
+ [
+ -73.56357346906219,
+ 45.52312515165472
+ ],
+ [
+ -73.56349767420015,
+ 45.52320483518529
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1895,
+ "ID_UEV":"01032227",
+ "CIVIQUE_DE":" 2173",
+ "CIVIQUE_FI":" 2177",
+ "NOM_RUE":"rue de la Visitation (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-85-3894-8-000-0000",
+ "SUPERFICIE":207,
+ "SUPERFIC_1":171,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0005831321096,
+ "OBJECTID":90145,
+ "Join_Count":2,
+ "TARGET_FID":90145,
+ "feature_id":"a9f9b5cd-425d-42c5-9e38-4d39949ffe07",
+ "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":14.42,
+ "elevmin":28.73,
+ "elevmax":30.54,
+ "bldgarea":614.2,
+ "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_2":90145,
+ "Shape_Le_1":0.0005831321096,
+ "Shape_Ar_1":8.92269385208e-09,
+ "OBJECTID_3":90145,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90144,
+ "g_objectid":"944785",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"3",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994285478990010001",
+ "g_sup_tota":"306.2",
+ "g_geometry":"0.000942731",
+ "g_geomet_1":"3.5364e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0005831321096,
+ "Shape_Area":8.92269385208e-09,
+ "Shape_Le_3":0.000583133319564,
+ "Shape_Ar_2":8.92269385208e-09,
+ "building_height":6.545
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1896,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5533032760472,
+ 45.5373693498659
+ ],
+ [
+ -73.55326456922633,
+ 45.53743239413997
+ ],
+ [
+ -73.55355836245032,
+ 45.53753660398139
+ ],
+ [
+ -73.55359811698136,
+ 45.537477539207366
+ ],
+ [
+ -73.55352596707156,
+ 45.53745365051586
+ ],
+ [
+ -73.5535288440028,
+ 45.53744935985037
+ ],
+ [
+ -73.5533032760472,
+ 45.5373693498659
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1896,
+ "ID_UEV":"01025793",
+ "CIVIQUE_DE":" 2842",
+ "CIVIQUE_FI":" 2846",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1926,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-61-2772-2-000-0000",
+ "SUPERFICIE":202,
+ "SUPERFIC_1":390,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000777409202203,
+ "OBJECTID":90150,
+ "Join_Count":1,
+ "TARGET_FID":90150,
+ "feature_id":"6c94053b-b163-4f57-b82d-073b0be5220d",
+ "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.53,
+ "heightmax":11.97,
+ "elevmin":18.1,
+ "elevmax":19.83,
+ "bldgarea":798.73,
+ "comment":" ",
+ "OBJECTID_2":90150,
+ "Shape_Le_1":0.000777409202203,
+ "Shape_Ar_1":2.2353403126e-08,
+ "OBJECTID_3":90150,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90149,
+ "g_objectid":"943793",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360948",
+ "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":"66023004461246530000000",
+ "g_sup_tota":"200.4",
+ "g_geometry":"0.000788082",
+ "g_geomet_1":"2.30865e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000777409202203,
+ "Shape_Area":2.2353403126e-08,
+ "Shape_Le_3":0.000777408819301,
+ "Shape_Ar_2":2.2353403126e-08,
+ "building_height":5.720000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1897,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55900945824175,
+ 45.538381295810446
+ ],
+ [
+ -73.55901586950861,
+ 45.538383349862
+ ],
+ [
+ -73.5590378687245,
+ 45.53834935009273
+ ],
+ [
+ -73.55912367034296,
+ 45.538376799200215
+ ],
+ [
+ -73.55918412906615,
+ 45.53829245358416
+ ],
+ [
+ -73.55915996877938,
+ 45.5382880496041
+ ],
+ [
+ -73.55916106954956,
+ 45.53828634988543
+ ],
+ [
+ -73.55912066930529,
+ 45.53827175029134
+ ],
+ [
+ -73.55909471397172,
+ 45.538262355973245
+ ],
+ [
+ -73.55900945824175,
+ 45.538381295810446
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1897,
+ "ID_UEV":"01024647",
+ "CIVIQUE_DE":" 2637",
+ "CIVIQUE_FI":" 2637",
+ "NOM_RUE":"rue Hogan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-12-8673-9-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":130,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000484571774818,
+ "OBJECTID":90164,
+ "Join_Count":1,
+ "TARGET_FID":90164,
+ "feature_id":"45f5a825-340c-434e-8b8c-9c75084f529d",
+ "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.54,
+ "heightmax":56.19,
+ "elevmin":27.2,
+ "elevmax":42.59,
+ "bldgarea":2277.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_2":90164,
+ "Shape_Le_1":0.000484571774818,
+ "Shape_Ar_1":9.55496509784e-09,
+ "OBJECTID_3":90164,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90163,
+ "g_objectid":"944115",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361369",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004412936930000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.00066682",
+ "g_geomet_1":"2.13249e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000484571774818,
+ "Shape_Area":9.55496509784e-09,
+ "Shape_Le_3":0.00048457307123,
+ "Shape_Ar_2":9.55496509784e-09,
+ "building_height":27.825
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1898,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55148404467477,
+ 45.5386632827346
+ ],
+ [
+ -73.55161172142564,
+ 45.53870846557352
+ ],
+ [
+ -73.55164653777933,
+ 45.538659376079636
+ ],
+ [
+ -73.55152047621085,
+ 45.5386147634109
+ ],
+ [
+ -73.55148404467477,
+ 45.5386632827346
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1898,
+ "ID_UEV":"01025587",
+ "CIVIQUE_DE":" 3120",
+ "CIVIQUE_FI":" 3120",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-73-7207-9-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000390015451131,
+ "OBJECTID":90172,
+ "Join_Count":1,
+ "TARGET_FID":90172,
+ "feature_id":"449dbcee-b963-4154-a860-c067bbf911dc",
+ "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":10.15,
+ "elevmin":20.29,
+ "elevmax":21.73,
+ "bldgarea":502.96,
+ "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_2":90172,
+ "Shape_Le_1":0.000390015451131,
+ "Shape_Ar_1":7.79120665232e-09,
+ "OBJECTID_3":90172,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90171,
+ "g_objectid":"944248",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361921",
+ "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":"66023004473751220000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749068",
+ "g_geomet_1":"1.81933e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000390015451131,
+ "Shape_Area":7.79120665232e-09,
+ "Shape_Le_3":0.000390015715608,
+ "Shape_Ar_2":7.79120665232e-09,
+ "building_height":4.82
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1899,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55144755738071,
+ 45.538711779575266
+ ],
+ [
+ -73.55157690417263,
+ 45.538757554168086
+ ],
+ [
+ -73.55161172142564,
+ 45.53870846557352
+ ],
+ [
+ -73.55148404467477,
+ 45.5386632827346
+ ],
+ [
+ -73.55148196724085,
+ 45.538666050847866
+ ],
+ [
+ -73.55144755738071,
+ 45.538711779575266
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1899,
+ "ID_UEV":"01025589",
+ "CIVIQUE_DE":" 3110",
+ "CIVIQUE_FI":" 3110",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-73-7512-2-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000393514943662,
+ "OBJECTID":90174,
+ "Join_Count":1,
+ "TARGET_FID":90174,
+ "feature_id":"449dbcee-b963-4154-a860-c067bbf911dc",
+ "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":10.15,
+ "elevmin":20.29,
+ "elevmax":21.73,
+ "bldgarea":502.96,
+ "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_2":90174,
+ "Shape_Le_1":0.000393514943662,
+ "Shape_Ar_1":7.89170857147e-09,
+ "OBJECTID_3":90174,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90173,
+ "g_objectid":"944248",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361921",
+ "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":"66023004473751220000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749068",
+ "g_geomet_1":"1.81933e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000393514943662,
+ "Shape_Area":7.89170857147e-09,
+ "Shape_Le_3":0.000393515679543,
+ "Shape_Ar_2":7.89170857147e-09,
+ "building_height":4.82
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1900,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55137457290006,
+ 45.53880877505522
+ ],
+ [
+ -73.55135186681704,
+ 45.538838950907156
+ ],
+ [
+ -73.55132916702928,
+ 45.53886905121604
+ ],
+ [
+ -73.55132076736137,
+ 45.538865951252944
+ ],
+ [
+ -73.55131626715385,
+ 45.53887205045506
+ ],
+ [
+ -73.55131346756433,
+ 45.53887605063952
+ ],
+ [
+ -73.55145166728246,
+ 45.53892395122966
+ ],
+ [
+ -73.55145746701034,
+ 45.538925950422566
+ ],
+ [
+ -73.55150726876728,
+ 45.538855733155856
+ ],
+ [
+ -73.55137457290006,
+ 45.53880877505522
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1900,
+ "ID_UEV":"01025594",
+ "CIVIQUE_DE":" 3080",
+ "CIVIQUE_FI":" 3080",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-73-8530-3-000-0000",
+ "SUPERFICIE":354,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000476127740156,
+ "OBJECTID":90175,
+ "Join_Count":1,
+ "TARGET_FID":90175,
+ "feature_id":"449dbcee-b963-4154-a860-c067bbf911dc",
+ "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":10.15,
+ "elevmin":20.29,
+ "elevmax":21.73,
+ "bldgarea":502.96,
+ "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_2":90175,
+ "Shape_Le_1":0.000476127740156,
+ "Shape_Ar_1":1.19364788237e-08,
+ "OBJECTID_3":90175,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90174,
+ "g_objectid":"944251",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361924",
+ "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":"66023004473853030000000",
+ "g_sup_tota":"353.6",
+ "g_geometry":"0.000933057",
+ "g_geomet_1":"4.07775e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000476127740156,
+ "Shape_Area":1.19364788237e-08,
+ "Shape_Le_3":0.000476125439306,
+ "Shape_Ar_2":1.19364788237e-08,
+ "building_height":4.82
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1901,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55851806777645,
+ 45.52369764747874
+ ],
+ [
+ -73.55863666856925,
+ 45.5237543479351
+ ],
+ [
+ -73.55870386771117,
+ 45.523786347612145
+ ],
+ [
+ -73.55880756853631,
+ 45.5236771474327
+ ],
+ [
+ -73.55869556786801,
+ 45.52362494808318
+ ],
+ [
+ -73.55866516808489,
+ 45.52361054813858
+ ],
+ [
+ -73.55864546843546,
+ 45.5236012482493
+ ],
+ [
+ -73.55862226772533,
+ 45.52359014791729
+ ],
+ [
+ -73.55851806777645,
+ 45.52369764747874
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1901,
+ "ID_UEV":"01032538",
+ "CIVIQUE_DE":" 1845",
+ "CIVIQUE_FI":" 1855",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1974,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-26-2149-0-000-0000",
+ "SUPERFICIE":840,
+ "SUPERFIC_1":743,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000710901448746,
+ "OBJECTID":90183,
+ "Join_Count":1,
+ "TARGET_FID":90183,
+ "feature_id":"3c5263a4-8dc1-46ff-82b1-2c3d9c021b07",
+ "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.81,
+ "heightmax":36.29,
+ "elevmin":24.22,
+ "elevmax":24.68,
+ "bldgarea":253.56,
+ "comment":" ",
+ "OBJECTID_2":90183,
+ "Shape_Le_1":0.000710901448746,
+ "Shape_Ar_1":2.92055449995e-08,
+ "OBJECTID_3":90183,
+ "Join_Cou_1":1,
+ "TARGET_F_1":90182,
+ "g_objectid":"941996",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567169",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004226214900000000",
+ "g_sup_tota":"839.8",
+ "g_geometry":"0.00128906",
+ "g_geomet_1":"9.77035e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000710901448746,
+ "Shape_Area":2.92055449995e-08,
+ "Shape_Le_3":0.000710902325993,
+ "Shape_Ar_2":2.92055449995e-08,
+ "building_height":15.74
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1902,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5583638727164,
+ 45.5244042430117
+ ],
+ [
+ -73.55824286803578,
+ 45.52434844817264
+ ],
+ [
+ -73.55811816804086,
+ 45.52448204785852
+ ],
+ [
+ -73.5582387041747,
+ 45.52453767182639
+ ],
+ [
+ -73.5583638727164,
+ 45.5244042430117
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1902,
+ "ID_UEV":"01032645",
+ "CIVIQUE_DE":" 1855",
+ "CIVIQUE_FI":" 1863",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1930,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-27-5331-9-000-0000",
+ "SUPERFICIE":392,
+ "SUPERFIC_1":607,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000631704195435,
+ "OBJECTID":90184,
+ "Join_Count":1,
+ "TARGET_FID":90184,
+ "feature_id":"19f7bef5-f7db-41ee-9d66-1f93c05b8687",
+ "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":3.69,
+ "heightmax":36.63,
+ "elevmin":23.99,
+ "elevmax":24.59,
+ "bldgarea":202.59,
+ "comment":" ",
+ "OBJECTID_2":90184,
+ "Shape_Le_1":0.000631704195435,
+ "Shape_Ar_1":2.30846514486e-08,
+ "OBJECTID_3":90184,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90183,
+ "g_objectid":"942103",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567350",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004227433770000000",
+ "g_sup_tota":"392.1",
+ "g_geometry":"0.000950031",
+ "g_geomet_1":"4.51854e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000631704195435,
+ "Shape_Area":2.30846514486e-08,
+ "Shape_Le_3":0.000631703264281,
+ "Shape_Ar_2":2.30846514486e-08,
+ "building_height":16.470000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1903,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56124895269885,
+ 45.534484543277344
+ ],
+ [
+ -73.56158301306745,
+ 45.53453677050585
+ ],
+ [
+ -73.56160756995523,
+ 45.53446775023678
+ ],
+ [
+ -73.5616078703288,
+ 45.53446754968796
+ ],
+ [
+ -73.56142756974839,
+ 45.53436244951773
+ ],
+ [
+ -73.56140100017787,
+ 45.534346991970395
+ ],
+ [
+ -73.5613549710769,
+ 45.53432576797011
+ ],
+ [
+ -73.56132076985949,
+ 45.53431924968392
+ ],
+ [
+ -73.56131577052824,
+ 45.534318450186625
+ ],
+ [
+ -73.56127306981816,
+ 45.53444704964192
+ ],
+ [
+ -73.56126141730242,
+ 45.53444516646156
+ ],
+ [
+ -73.56124895269885,
+ 45.534484543277344
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1903,
+ "ID_UEV":"01026168",
+ "CIVIQUE_DE":" 2350",
+ "CIVIQUE_FI":" 2350",
+ "NOM_RUE":"rue Sherbrooke Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":17,
+ "ANNEE_CONS":1927,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-08-0138-1-000-0000",
+ "SUPERFICIE":454,
+ "SUPERFIC_1":1322,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000930349879568,
+ "OBJECTID":90187,
+ "Join_Count":1,
+ "TARGET_FID":90187,
+ "feature_id":"e573e2d0-c046-4493-80b5-200ab3c4b9f1",
+ "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":55.78,
+ "elevmin":38.93,
+ "elevmax":42.5,
+ "bldgarea":1445.04,
+ "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_2":90187,
+ "Shape_Le_1":0.000930349879568,
+ "Shape_Ar_1":4.33714511525e-08,
+ "OBJECTID_3":90187,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90186,
+ "g_objectid":"941398",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425405",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"17",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004308013810000000",
+ "g_sup_tota":"454.3",
+ "g_geometry":"0.00104356",
+ "g_geomet_1":"5.2192e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000930349879568,
+ "Shape_Area":4.33714511525e-08,
+ "Shape_Le_3":0.000930349838652,
+ "Shape_Ar_2":4.33714511525e-08,
+ "building_height":27.385
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1904,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56300349493719,
+ 45.52432400280078
+ ],
+ [
+ -73.56298097051722,
+ 45.52431384765624
+ ],
+ [
+ -73.56295926987625,
+ 45.52433774803894
+ ],
+ [
+ -73.56285887046235,
+ 45.52429264793765
+ ],
+ [
+ -73.56279284223773,
+ 45.52436501008744
+ ],
+ [
+ -73.5629146203353,
+ 45.52442133192922
+ ],
+ [
+ -73.56300349493719,
+ 45.52432400280078
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1904,
+ "ID_UEV":"01032428",
+ "CIVIQUE_DE":" 2156",
+ "CIVIQUE_FI":" 2164",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-87-8107-6-000-0000",
+ "SUPERFICIE":357,
+ "SUPERFIC_1":329,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000530986663788,
+ "OBJECTID":90198,
+ "Join_Count":1,
+ "TARGET_FID":90198,
+ "feature_id":"34a39948-8c7a-4af6-b010-2d9cc09ef6cc",
+ "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.95,
+ "heightmax":11.53,
+ "elevmin":29.01,
+ "elevmax":29.6,
+ "bldgarea":122.44,
+ "comment":" ",
+ "OBJECTID_2":90198,
+ "Shape_Le_1":0.000530986663788,
+ "Shape_Ar_1":1.33889882013e-08,
+ "OBJECTID_3":90198,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90197,
+ "g_objectid":"941581",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565499",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994287810760000000",
+ "g_sup_tota":"356.6",
+ "g_geometry":"0.000907494",
+ "g_geomet_1":"4.14762e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000530986663788,
+ "Shape_Area":1.33889882013e-08,
+ "Shape_Le_3":0.000530986526149,
+ "Shape_Ar_2":1.33889882013e-08,
+ "building_height":4.289999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1905,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55099606893528,
+ 45.53855200602056
+ ],
+ [
+ -73.55112162778273,
+ 45.53859644062353
+ ],
+ [
+ -73.55115116691466,
+ 45.53855545042399
+ ],
+ [
+ -73.55115688390491,
+ 45.538547505813035
+ ],
+ [
+ -73.55103092036254,
+ 45.53850292821786
+ ],
+ [
+ -73.55100136684145,
+ 45.53854455064079
+ ],
+ [
+ -73.55099606893528,
+ 45.53855200602056
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1905,
+ "ID_UEV":"01025601",
+ "CIVIQUE_DE":" 3109",
+ "CIVIQUE_FI":" 3109",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-1393-4-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000387315231018,
+ "OBJECTID":90199,
+ "Join_Count":1,
+ "TARGET_FID":90199,
+ "feature_id":"215d7c30-7807-463c-a82a-56f4cca07cf7",
+ "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":7.05,
+ "heightmax":29.86,
+ "elevmin":20.3,
+ "elevmax":21.55,
+ "bldgarea":398.47,
+ "comment":" ",
+ "OBJECTID_2":90199,
+ "Shape_Le_1":0.000387315231018,
+ "Shape_Ar_1":7.72331278714e-09,
+ "OBJECTID_3":90199,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90198,
+ "g_objectid":"944256",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361929",
+ "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":"66023004482169940000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749125",
+ "g_geomet_1":"1.81954e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000387315231018,
+ "Shape_Area":7.72331278714e-09,
+ "Shape_Le_3":0.000387314392163,
+ "Shape_Ar_2":7.72331278714e-09,
+ "building_height":11.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1906,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55096120132023,
+ 45.53860107662868
+ ],
+ [
+ -73.55108636626464,
+ 45.53864537363538
+ ],
+ [
+ -73.55112162778273,
+ 45.53859644062353
+ ],
+ [
+ -73.55099606893528,
+ 45.53855200602056
+ ],
+ [
+ -73.55096120132023,
+ 45.53860107662868
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1906,
+ "ID_UEV":"01025603",
+ "CIVIQUE_DE":" 3099",
+ "CIVIQUE_FI":" 3099",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-1699-4-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000386474280681,
+ "OBJECTID":90201,
+ "Join_Count":1,
+ "TARGET_FID":90201,
+ "feature_id":"215d7c30-7807-463c-a82a-56f4cca07cf7",
+ "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":7.05,
+ "heightmax":29.86,
+ "elevmin":20.3,
+ "elevmax":21.55,
+ "bldgarea":398.47,
+ "comment":" ",
+ "OBJECTID_2":90201,
+ "Shape_Le_1":0.000386474280681,
+ "Shape_Ar_1":7.69868251829e-09,
+ "OBJECTID_3":90201,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90200,
+ "g_objectid":"944257",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361930",
+ "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":"66023004483200510000000",
+ "g_sup_tota":"314.7",
+ "g_geometry":"0.000881871",
+ "g_geomet_1":"3.62731e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000386474280681,
+ "Shape_Area":7.69868251829e-09,
+ "Shape_Le_3":0.000386473139606,
+ "Shape_Ar_2":7.69868251829e-09,
+ "building_height":11.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1907,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55096120132023,
+ 45.53860107662868
+ ],
+ [
+ -73.55092476708617,
+ 45.538652350575816
+ ],
+ [
+ -73.5509226671692,
+ 45.53865535071416
+ ],
+ [
+ -73.55104536707188,
+ 45.538696250981495
+ ],
+ [
+ -73.55104876740853,
+ 45.53869755050185
+ ],
+ [
+ -73.55108636626464,
+ 45.53864537363538
+ ],
+ [
+ -73.55096120132023,
+ 45.53860107662868
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1907,
+ "ID_UEV":"01025604",
+ "CIVIQUE_DE":" 3089",
+ "CIVIQUE_FI":" 3089",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-83-2005-1-000-0000",
+ "SUPERFICIE":315,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000396624643612,
+ "OBJECTID":90202,
+ "Join_Count":1,
+ "TARGET_FID":90202,
+ "feature_id":"215d7c30-7807-463c-a82a-56f4cca07cf7",
+ "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":7.05,
+ "heightmax":29.86,
+ "elevmin":20.3,
+ "elevmax":21.55,
+ "bldgarea":398.47,
+ "comment":" ",
+ "OBJECTID_2":90202,
+ "Shape_Le_1":0.000396624643612,
+ "Shape_Ar_1":8.3237599489e-09,
+ "OBJECTID_3":90202,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90201,
+ "g_objectid":"944257",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361930",
+ "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":"66023004483200510000000",
+ "g_sup_tota":"314.7",
+ "g_geometry":"0.000881871",
+ "g_geomet_1":"3.62731e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000396624643612,
+ "Shape_Area":8.3237599489e-09,
+ "Shape_Le_3":0.00039662469461,
+ "Shape_Ar_2":8.3237599489e-09,
+ "building_height":11.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1908,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55983556108413,
+ 45.53555057624839
+ ],
+ [
+ -73.5598584695146,
+ 45.535560049706824
+ ],
+ [
+ -73.55984996912262,
+ 45.53557024981747
+ ],
+ [
+ -73.55985086934399,
+ 45.53557055019103
+ ],
+ [
+ -73.55993166893322,
+ 45.53560004975279
+ ],
+ [
+ -73.5600146691635,
+ 45.5354876497855
+ ],
+ [
+ -73.56001256924652,
+ 45.53548685028821
+ ],
+ [
+ -73.55992160731817,
+ 45.53544965882499
+ ],
+ [
+ -73.55991979428492,
+ 45.53545178572163
+ ],
+ [
+ -73.55991869171609,
+ 45.535451327067385
+ ],
+ [
+ -73.55983845869976,
+ 45.53554542493171
+ ],
+ [
+ -73.55983956126859,
+ 45.535545883585954
+ ],
+ [
+ -73.55983556108413,
+ 45.53555057624839
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1908,
+ "ID_UEV":"01023556",
+ "CIVIQUE_DE":" 2563",
+ "CIVIQUE_FI":" 2567",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1955,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-19-2060-2-000-0000",
+ "SUPERFICIE":287,
+ "SUPERFIC_1":267,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00050028299679,
+ "OBJECTID":90204,
+ "Join_Count":1,
+ "TARGET_FID":90204,
+ "feature_id":"9ebc8b49-6979-4f20-aab7-f99b7901cafe",
+ "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.55,
+ "heightmax":46.97,
+ "elevmin":35.97,
+ "elevmax":38.87,
+ "bldgarea":220.74,
+ "comment":" ",
+ "OBJECTID_2":90204,
+ "Shape_Le_1":0.00050028299679,
+ "Shape_Ar_1":1.43533088722e-08,
+ "OBJECTID_3":90204,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90203,
+ "g_objectid":"944219",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361497",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004319206020000000",
+ "g_sup_tota":"286.9",
+ "g_geometry":"0.000781137",
+ "g_geomet_1":"3.29386e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00050028299679,
+ "Shape_Area":1.43533088722e-08,
+ "Shape_Le_3":0.000500284537234,
+ "Shape_Ar_2":1.43533088722e-08,
+ "building_height":22.21
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1909,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55750975689162,
+ 45.52285135665508
+ ],
+ [
+ -73.55751306819539,
+ 45.52285284773103
+ ],
+ [
+ -73.55750526208003,
+ 45.52286140657895
+ ],
+ [
+ -73.55763223376242,
+ 45.522920126912624
+ ],
+ [
+ -73.55773915775777,
+ 45.52280686719346
+ ],
+ [
+ -73.55770906824075,
+ 45.522791147943416
+ ],
+ [
+ -73.55769496777039,
+ 45.522804448017155
+ ],
+ [
+ -73.55764166855,
+ 45.52277614815101
+ ],
+ [
+ -73.55764196802426,
+ 45.5227757479527
+ ],
+ [
+ -73.55764586838396,
+ 45.52272754788832
+ ],
+ [
+ -73.55764762925654,
+ 45.52270366908935
+ ],
+ [
+ -73.55750975689162,
+ 45.52285135665508
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55769448393514,
+ 45.52265347882528
+ ],
+ [
+ -73.55769706768737,
+ 45.52265454811919
+ ],
+ [
+ -73.5577560677102,
+ 45.52267894762563
+ ],
+ [
+ -73.5577457677748,
+ 45.522690448155956
+ ],
+ [
+ -73.5577863685679,
+ 45.52270694801753
+ ],
+ [
+ -73.55779636812973,
+ 45.52269414796685
+ ],
+ [
+ -73.55783067726578,
+ 45.5227099247735
+ ],
+ [
+ -73.55787452281282,
+ 45.52266348108508
+ ],
+ [
+ -73.55774736856804,
+ 45.52260744792568
+ ],
+ [
+ -73.55775354331321,
+ 45.52260054203168
+ ],
+ [
+ -73.55774678850533,
+ 45.52259745106181
+ ],
+ [
+ -73.55769448393514,
+ 45.52265347882528
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1909,
+ "ID_UEV":"01032507",
+ "CIVIQUE_DE":" 1718",
+ "CIVIQUE_FI":" 1726",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-9238-6-000-0000",
+ "SUPERFICIE":426,
+ "SUPERFIC_1":548,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00117546302934,
+ "OBJECTID":90208,
+ "Join_Count":2,
+ "TARGET_FID":90208,
+ "feature_id":"ba670480-c003-490b-8be7-48a56ae97f60",
+ "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.47,
+ "heightmax":39.79,
+ "elevmin":25.32,
+ "elevmax":26.84,
+ "bldgarea":1037.35,
+ "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_2":90208,
+ "Shape_Le_1":0.00117546302934,
+ "Shape_Ar_1":3.10850700383e-08,
+ "OBJECTID_3":90208,
+ "Join_Cou_1":6,
+ "TARGET_F_1":90207,
+ "g_objectid":"942087",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567327",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004235023190000000",
+ "g_sup_tota":"425.5",
+ "g_geometry":"0.00100666",
+ "g_geomet_1":"4.92427e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00117546302934,
+ "Shape_Area":3.10850700383e-08,
+ "Shape_Le_3":0.00117546111416,
+ "Shape_Ar_2":3.10850700383e-08,
+ "building_height":18.66
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1910,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55763223376242,
+ 45.522920126912624
+ ],
+ [
+ -73.55776517334591,
+ 45.52298160546702
+ ],
+ [
+ -73.55786416172353,
+ 45.52287641716322
+ ],
+ [
+ -73.55789507232157,
+ 45.52284357122413
+ ],
+ [
+ -73.55787806794032,
+ 45.52283524799859
+ ],
+ [
+ -73.55788086842918,
+ 45.52283254823381
+ ],
+ [
+ -73.5578157683049,
+ 45.52279884793877
+ ],
+ [
+ -73.55780086833725,
+ 45.522813048233886
+ ],
+ [
+ -73.55776026844347,
+ 45.522791947440716
+ ],
+ [
+ -73.55774256798696,
+ 45.522808647851114
+ ],
+ [
+ -73.55773915775777,
+ 45.52280686719346
+ ],
+ [
+ -73.55763223376242,
+ 45.522920126912624
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55783067726578,
+ 45.5227099247735
+ ],
+ [
+ -73.55783746804656,
+ 45.52271304811897
+ ],
+ [
+ -73.55787966783424,
+ 45.522665748275955
+ ],
+ [
+ -73.55787452281282,
+ 45.52266348108508
+ ],
+ [
+ -73.55783067726578,
+ 45.5227099247735
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1910,
+ "ID_UEV":"01032508",
+ "CIVIQUE_DE":" 1730",
+ "CIVIQUE_FI":" 1738",
+ "NOM_RUE":"rue Alexandre-DeS\u00c3\u00a8ve (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-25-8145-4-000-0000",
+ "SUPERFICIE":426,
+ "SUPERFIC_1":470,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000822773725646,
+ "OBJECTID":90209,
+ "Join_Count":2,
+ "TARGET_FID":90209,
+ "feature_id":"ba670480-c003-490b-8be7-48a56ae97f60",
+ "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.47,
+ "heightmax":39.79,
+ "elevmin":25.32,
+ "elevmax":26.84,
+ "bldgarea":1037.35,
+ "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_2":90209,
+ "Shape_Le_1":0.000822773725646,
+ "Shape_Ar_1":2.64685851971e-08,
+ "OBJECTID_3":90209,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90208,
+ "g_objectid":"942082",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567321",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004225625460000000",
+ "g_sup_tota":"401.3",
+ "g_geometry":"0.000972228",
+ "g_geomet_1":"4.62299e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000822773725646,
+ "Shape_Area":2.64685851971e-08,
+ "Shape_Le_3":0.00082277452492,
+ "Shape_Ar_2":2.64685851971e-08,
+ "building_height":18.66
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1911,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55147047750238,
+ 45.53676956411439
+ ],
+ [
+ -73.55153820184839,
+ 45.53679427118896
+ ],
+ [
+ -73.55162632101974,
+ 45.53667140760967
+ ],
+ [
+ -73.551564366724,
+ 45.536648549541226
+ ],
+ [
+ -73.55159676749867,
+ 45.53660524988267
+ ],
+ [
+ -73.55159009542841,
+ 45.53660278394162
+ ],
+ [
+ -73.55147047750238,
+ 45.53676956411439
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1911,
+ "ID_UEV":"01025062",
+ "CIVIQUE_DE":" 2072",
+ "CIVIQUE_FI":" 2076",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-70-7389-1-000-0000",
+ "SUPERFICIE":144,
+ "SUPERFIC_1":258,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000555757968199,
+ "OBJECTID":90236,
+ "Join_Count":1,
+ "TARGET_FID":90236,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":90236,
+ "Shape_Le_1":0.000555757968199,
+ "Shape_Ar_1":1.08469046692e-08,
+ "OBJECTID_3":90236,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90235,
+ "g_objectid":"943768",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360922",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004470689250000000",
+ "g_sup_tota":"139.4",
+ "g_geometry":"0.000620802",
+ "g_geomet_1":"1.60529e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000555757968199,
+ "Shape_Area":1.08469046692e-08,
+ "Shape_Le_3":0.000555758584567,
+ "Shape_Ar_2":1.08469046692e-08,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1912,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55141106648936,
+ 45.53876027641592
+ ],
+ [
+ -73.55154208691962,
+ 45.53880664276265
+ ],
+ [
+ -73.55157690417263,
+ 45.538757554168086
+ ],
+ [
+ -73.55144755738071,
+ 45.538711779575266
+ ],
+ [
+ -73.55141106648936,
+ 45.53876027641592
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1912,
+ "ID_UEV":"01025591",
+ "CIVIQUE_DE":" 3100",
+ "CIVIQUE_FI":" 3100",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-73-7718-5-000-0000",
+ "SUPERFICIE":158,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000397065590538,
+ "OBJECTID":90238,
+ "Join_Count":1,
+ "TARGET_FID":90238,
+ "feature_id":"449dbcee-b963-4154-a860-c067bbf911dc",
+ "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":10.15,
+ "elevmin":20.29,
+ "elevmax":21.73,
+ "bldgarea":502.96,
+ "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_2":90238,
+ "Shape_Le_1":0.000397065590538,
+ "Shape_Ar_1":7.99464769373e-09,
+ "OBJECTID_3":90238,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90237,
+ "g_objectid":"944248",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361921",
+ "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":"66023004473751220000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749068",
+ "g_geomet_1":"1.81933e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000397065590538,
+ "Shape_Area":7.99464769373e-09,
+ "Shape_Le_3":0.000397064793682,
+ "Shape_Ar_2":7.99464769373e-09,
+ "building_height":4.82
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1913,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55219181202435,
+ 45.53698731606208
+ ],
+ [
+ -73.5522416668413,
+ 45.537004850144015
+ ],
+ [
+ -73.55227906424926,
+ 45.537017987440464
+ ],
+ [
+ -73.5523385418121,
+ 45.53693505825663
+ ],
+ [
+ -73.5522522122916,
+ 45.53690309904908
+ ],
+ [
+ -73.55219181202435,
+ 45.53698731606208
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1913,
+ "ID_UEV":"01025080",
+ "CIVIQUE_DE":" 2134",
+ "CIVIQUE_FI":" 2134",
+ "NOM_RUE":"rue Wurtele (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1952,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-71-1817-5-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":72,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000390232959207,
+ "OBJECTID":90275,
+ "Join_Count":1,
+ "TARGET_FID":90275,
+ "feature_id":"647e8734-995f-4abe-bc93-451184d5904a",
+ "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":32.04,
+ "elevmin":18.31,
+ "elevmax":21.18,
+ "bldgarea":2402,
+ "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_2":90275,
+ "Shape_Le_1":0.000390232959207,
+ "Shape_Ar_1":9.13080940081e-09,
+ "OBJECTID_3":90275,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90274,
+ "g_objectid":"943777",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3360931",
+ "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":"66023004471112040000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667003",
+ "g_geomet_1":"2.14036e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000390232959207,
+ "Shape_Area":9.13080940081e-09,
+ "Shape_Le_3":0.000390231835975,
+ "Shape_Ar_2":9.13080940081e-09,
+ "building_height":15.77
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1914,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55110061512313,
+ 45.53840477081382
+ ],
+ [
+ -73.55122732600213,
+ 45.538449614608325
+ ],
+ [
+ -73.55125766732932,
+ 45.538407450793514
+ ],
+ [
+ -73.55125436681742,
+ 45.53840635092265
+ ],
+ [
+ -73.5511360672975,
+ 45.53836525100582
+ ],
+ [
+ -73.55113016684557,
+ 45.538363151088845
+ ],
+ [
+ -73.55110061512313,
+ 45.53840477081382
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1914,
+ "ID_UEV":"01025596",
+ "CIVIQUE_DE":" 3139",
+ "CIVIQUE_FI":" 3139",
+ "NOM_RUE":"terrasse Thomas-Valin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-82-0475-0-000-0000",
+ "SUPERFICIE":280,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000372380018681,
+ "OBJECTID":90282,
+ "Join_Count":1,
+ "TARGET_FID":90282,
+ "feature_id":"215d7c30-7807-463c-a82a-56f4cca07cf7",
+ "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":7.05,
+ "heightmax":29.86,
+ "elevmin":20.3,
+ "elevmax":21.55,
+ "bldgarea":398.47,
+ "comment":" ",
+ "OBJECTID_2":90282,
+ "Shape_Le_1":0.000372380018681,
+ "Shape_Ar_1":6.6535390036e-09,
+ "OBJECTID_3":90282,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90281,
+ "g_objectid":"944253",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361926",
+ "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":"66023004482078290000000",
+ "g_sup_tota":"157.9",
+ "g_geometry":"0.000749124",
+ "g_geomet_1":"1.81954e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000372380018681,
+ "Shape_Area":6.6535390036e-09,
+ "Shape_Le_3":0.000372379853779,
+ "Shape_Ar_2":6.6535390036e-09,
+ "building_height":11.405
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1915,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55522723796851,
+ 45.52328657276741
+ ],
+ [
+ -73.55522737916206,
+ 45.5232866375186
+ ],
+ [
+ -73.5552511671295,
+ 45.52326154823216
+ ],
+ [
+ -73.55525064732136,
+ 45.523261303616565
+ ],
+ [
+ -73.55522723796851,
+ 45.52328657276741
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1915,
+ "ID_UEV":"01022250",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-45-7098-4-000-0000",
+ "SUPERFICIE":398,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":6.9749548841e-05,
+ "OBJECTID":90285,
+ "Join_Count":1,
+ "TARGET_FID":90285,
+ "feature_id":"cacf7be8-a632-49cc-9a14-792010ce994d",
+ "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":5.03,
+ "heightmax":33.86,
+ "elevmin":25.68,
+ "elevmax":26.6,
+ "bldgarea":48.34,
+ "comment":" ",
+ "OBJECTID_2":90285,
+ "Shape_Le_1":6.9749548841e-05,
+ "Shape_Ar_1":1.19677919715e-11,
+ "OBJECTID_3":90285,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90284,
+ "g_objectid":"938503",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1567683",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004246902380000000",
+ "g_sup_tota":"1546.1",
+ "g_geometry":"0.00174787",
+ "g_geomet_1":"1.78996e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":6.9749548841e-05,
+ "Shape_Area":1.19677919715e-11,
+ "Shape_Le_3":6.9749519259e-05,
+ "Shape_Ar_2":1.19677919715e-11,
+ "building_height":14.415
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1916,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55583651876218,
+ 45.52287439458794
+ ],
+ [
+ -73.55582666668916,
+ 45.52288464775858
+ ],
+ [
+ -73.55580226718273,
+ 45.52290984766164
+ ],
+ [
+ -73.55579446736262,
+ 45.52291764748174
+ ],
+ [
+ -73.55576306753339,
+ 45.52290194801678
+ ],
+ [
+ -73.55575856732587,
+ 45.52289954772624
+ ],
+ [
+ -73.55572156741825,
+ 45.52293314819653
+ ],
+ [
+ -73.55563636744624,
+ 45.52288674767556
+ ],
+ [
+ -73.5555981219776,
+ 45.52292150917061
+ ],
+ [
+ -73.55584874594472,
+ 45.52303782388676
+ ],
+ [
+ -73.55595195933729,
+ 45.522927956410356
+ ],
+ [
+ -73.55583651876218,
+ 45.52287439458794
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1916,
+ "ID_UEV":"01022251",
+ "CIVIQUE_DE":" 1588",
+ "CIVIQUE_FI":" 1596",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-45-4256-1-000-0000",
+ "SUPERFICIE":357,
+ "SUPERFIC_1":466,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000853514469196,
+ "OBJECTID":90286,
+ "Join_Count":1,
+ "TARGET_FID":90286,
+ "feature_id":"3b6a970a-0312-4213-b4c7-f584969c30ca",
+ "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.5,
+ "heightmax":41.23,
+ "elevmin":25.7,
+ "elevmax":27.48,
+ "bldgarea":1561.87,
+ "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_2":90286,
+ "Shape_Le_1":0.000853514469196,
+ "Shape_Ar_1":2.66262619345e-08,
+ "OBJECTID_3":90286,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90285,
+ "g_objectid":"942227",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567663",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004245425610000000",
+ "g_sup_tota":"356.7",
+ "g_geometry":"0.000875957",
+ "g_geomet_1":"4.11028e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000853514469196,
+ "Shape_Area":2.66262619345e-08,
+ "Shape_Le_3":0.00085351596908,
+ "Shape_Ar_2":2.66262619345e-08,
+ "building_height":19.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1917,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5558757220088,
+ 45.522812634545744
+ ],
+ [
+ -73.55600426750479,
+ 45.52287227668452
+ ],
+ [
+ -73.55605586790583,
+ 45.522817347892584
+ ],
+ [
+ -73.55591729406972,
+ 45.52275305266155
+ ],
+ [
+ -73.55591186756048,
+ 45.52275864824332
+ ],
+ [
+ -73.55592216749588,
+ 45.52276344792508
+ ],
+ [
+ -73.5558757220088,
+ 45.522812634545744
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1917,
+ "ID_UEV":"01022253",
+ "CIVIQUE_DE":" 1576",
+ "CIVIQUE_FI":" 1580",
+ "NOM_RUE":"rue Logan (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-45-3342-0-000-0000",
+ "SUPERFICIE":178,
+ "SUPERFIC_1":204,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000456643444937,
+ "OBJECTID":90287,
+ "Join_Count":1,
+ "TARGET_FID":90287,
+ "feature_id":"3b6a970a-0312-4213-b4c7-f584969c30ca",
+ "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.5,
+ "heightmax":41.23,
+ "elevmin":25.7,
+ "elevmax":27.48,
+ "bldgarea":1561.87,
+ "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_2":90287,
+ "Shape_Le_1":0.000456643444937,
+ "Shape_Ar_1":1.0214508518e-08,
+ "OBJECTID_3":90287,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90286,
+ "g_objectid":"942226",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567661",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004245364720000000",
+ "g_sup_tota":"178.4",
+ "g_geometry":"0.0007273",
+ "g_geomet_1":"2.08327e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000456643444937,
+ "Shape_Area":1.0214508518e-08,
+ "Shape_Le_3":0.000456643281661,
+ "Shape_Ar_2":1.0214508518e-08,
+ "building_height":19.365
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1918,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55547606778815,
+ 45.53857432449578
+ ],
+ [
+ -73.5554829682862,
+ 45.53857765108802
+ ],
+ [
+ -73.55548316793569,
+ 45.53857775091277
+ ],
+ [
+ -73.55549596798637,
+ 45.5385552507745
+ ],
+ [
+ -73.5555816095255,
+ 45.5385794614233
+ ],
+ [
+ -73.55564964503694,
+ 45.53848445794168
+ ],
+ [
+ -73.55562726810578,
+ 45.538475850530375
+ ],
+ [
+ -73.55563166848856,
+ 45.538470250451994
+ ],
+ [
+ -73.55562726810578,
+ 45.53846785106077
+ ],
+ [
+ -73.55560836795367,
+ 45.5384554512084
+ ],
+ [
+ -73.55558256820281,
+ 45.538475051033075
+ ],
+ [
+ -73.55556656836428,
+ 45.538464550548866
+ ],
+ [
+ -73.55556646853954,
+ 45.538464550548866
+ ],
+ [
+ -73.55555706612755,
+ 45.538461219460004
+ ],
+ [
+ -73.55547606778815,
+ 45.53857432449578
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1918,
+ "ID_UEV":"01025209",
+ "CIVIQUE_DE":" 2379",
+ "CIVIQUE_FI":" 2381",
+ "NOM_RUE":"rue Wurtele (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-42-6294-3-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":156,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000499063219565,
+ "OBJECTID":90288,
+ "Join_Count":1,
+ "TARGET_FID":90288,
+ "feature_id":"2b113e00-c2ae-47d2-a946-63dfcb1dfc06",
+ "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":36.44,
+ "elevmin":19.05,
+ "elevmax":24.19,
+ "bldgarea":2686.32,
+ "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_2":90288,
+ "Shape_Le_1":0.000499063219565,
+ "Shape_Ar_1":1.08131243008e-08,
+ "OBJECTID_3":90288,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90287,
+ "g_objectid":"944035",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361252",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004442629430000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000668762",
+ "g_geomet_1":"2.14862e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000499063219565,
+ "Shape_Area":1.08131243008e-08,
+ "Shape_Le_3":0.000499064164128,
+ "Shape_Ar_2":1.08131243008e-08,
+ "building_height":17.965
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1919,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55980296875384,
+ 45.53680325002027
+ ],
+ [
+ -73.55987806933928,
+ 45.536828949946376
+ ],
+ [
+ -73.55992526935754,
+ 45.536845049609646
+ ],
+ [
+ -73.55998676949567,
+ 45.536755849453186
+ ],
+ [
+ -73.55998066939422,
+ 45.536753850260276
+ ],
+ [
+ -73.55986536911334,
+ 45.53671385021431
+ ],
+ [
+ -73.55980296875384,
+ 45.53680325002027
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1919,
+ "ID_UEV":"01024049",
+ "CIVIQUE_DE":" 2670",
+ "CIVIQUE_FI":" 2670",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1950,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-10-1993-2-000-0000",
+ "SUPERFICIE":602,
+ "SUPERFIC_1":90,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000475076509735,
+ "OBJECTID":90292,
+ "Join_Count":1,
+ "TARGET_FID":90292,
+ "feature_id":"b92080c1-0655-44cd-8c31-297952195b00",
+ "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.59,
+ "heightmax":50.32,
+ "elevmin":40.92,
+ "elevmax":42.4,
+ "bldgarea":117.02,
+ "comment":" ",
+ "OBJECTID_2":90292,
+ "Shape_Le_1":0.000475076509735,
+ "Shape_Ar_1":1.34721749999e-08,
+ "OBJECTID_3":90292,
+ "Join_Cou_1":1,
+ "TARGET_F_1":90291,
+ "g_objectid":"944190",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361460",
+ "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":"66023004410199320000000",
+ "g_sup_tota":"602",
+ "g_geometry":"0.0010983",
+ "g_geomet_1":"6.93564e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000475076509735,
+ "Shape_Area":1.34721749999e-08,
+ "Shape_Le_3":0.000475077327503,
+ "Shape_Ar_2":1.34721749999e-08,
+ "building_height":24.865
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1920,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56001607030724,
+ 45.5368803497986
+ ],
+ [
+ -73.5601085700763,
+ 45.53691274967395
+ ],
+ [
+ -73.56016626967944,
+ 45.53683104986336
+ ],
+ [
+ -73.56016156982244,
+ 45.53682944996944
+ ],
+ [
+ -73.56007386973515,
+ 45.536798749812746
+ ],
+ [
+ -73.56001607030724,
+ 45.5368803497986
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56013477002546,
+ 45.53671584940722
+ ],
+ [
+ -73.56022776981757,
+ 45.536752850214164
+ ],
+ [
+ -73.56023143275627,
+ 45.536748308637826
+ ],
+ [
+ -73.5602665243025,
+ 45.53670129298058
+ ],
+ [
+ -73.56017577011754,
+ 45.5366650494028
+ ],
+ [
+ -73.56013477002546,
+ 45.53671584940722
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1920,
+ "ID_UEV":"01024051",
+ "CIVIQUE_DE":" 2680",
+ "CIVIQUE_FI":" 2680",
+ "NOM_RUE":"avenue Gascon (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":1,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1943,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-11-0600-2-000-0000",
+ "SUPERFICIE":401,
+ "SUPERFIC_1":75,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000723507453718,
+ "OBJECTID":90293,
+ "Join_Count":2,
+ "TARGET_FID":90293,
+ "feature_id":"fbb8050e-4a02-492c-aad9-ad3e6ec67a92",
+ "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":5.2,
+ "heightmax":48.32,
+ "elevmin":42.07,
+ "elevmax":42.65,
+ "bldgarea":54.07,
+ "comment":" ",
+ "OBJECTID_2":90293,
+ "Shape_Le_1":0.000723507453718,
+ "Shape_Ar_1":1.55836882891e-08,
+ "OBJECTID_3":90293,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90292,
+ "g_objectid":"944191",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361461",
+ "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":"66023004411060020000000",
+ "g_sup_tota":"401.3",
+ "g_geometry":"0.000950423",
+ "g_geomet_1":"4.62377e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000723507453718,
+ "Shape_Area":1.55836882891e-08,
+ "Shape_Le_3":0.000723507447973,
+ "Shape_Ar_2":1.55836882891e-08,
+ "building_height":21.56
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1921,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5589928369717,
+ 45.527096708896295
+ ],
+ [
+ -73.55891506809776,
+ 45.52705954890935
+ ],
+ [
+ -73.55891176848517,
+ 45.52706294924601
+ ],
+ [
+ -73.55884326712493,
+ 45.527138356500245
+ ],
+ [
+ -73.55891983180663,
+ 45.52717405868616
+ ],
+ [
+ -73.5589928369717,
+ 45.527096708896295
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1921,
+ "ID_UEV":"01116284",
+ "CIVIQUE_DE":" 2012",
+ "CIVIQUE_FI":" 2014",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-10-9317-8-000-0000",
+ "SUPERFICIE":197,
+ "SUPERFIC_1":143,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000383646475276,
+ "OBJECTID":90309,
+ "Join_Count":1,
+ "TARGET_FID":90309,
+ "feature_id":"f1a140ba-7af8-4a33-ab2b-ec6cc7bfc3e2",
+ "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.47,
+ "heightmax":38.86,
+ "elevmin":25.21,
+ "elevmax":27.53,
+ "bldgarea":2355.24,
+ "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_2":90309,
+ "Shape_Le_1":0.000383646475276,
+ "Shape_Ar_1":8.67080738506e-09,
+ "OBJECTID_3":90309,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90308,
+ "g_objectid":"942876",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884719",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004310862140000000",
+ "g_sup_tota":"156",
+ "g_geometry":"0.000636322",
+ "g_geomet_1":"1.7919e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000383646475276,
+ "Shape_Area":8.67080738506e-09,
+ "Shape_Le_3":0.000383645768488,
+ "Shape_Ar_2":8.67080738506e-09,
+ "building_height":18.195
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1922,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55755275167999,
+ 45.512789280251376
+ ],
+ [
+ -73.5576407179666,
+ 45.51282896643395
+ ],
+ [
+ -73.55781685108865,
+ 45.51264461170976
+ ],
+ [
+ -73.55774506720293,
+ 45.51261434592562
+ ],
+ [
+ -73.55772509685758,
+ 45.51260591478144
+ ],
+ [
+ -73.55755275167999,
+ 45.512789280251376
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1922,
+ "ID_UEV":"01091562",
+ "CIVIQUE_DE":" 1105",
+ "CIVIQUE_FI":" 1109",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-24-9122-7-000-0000",
+ "SUPERFICIE":225,
+ "SUPERFIC_1":350,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000702700098332,
+ "OBJECTID":90312,
+ "Join_Count":1,
+ "TARGET_FID":90312,
+ "feature_id":"4396a641-cdd1-4f4a-a083-1d93e66f7a3b",
+ "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":40.66,
+ "elevmin":21.01,
+ "elevmax":24.57,
+ "bldgarea":1980.28,
+ "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_2":90312,
+ "Shape_Le_1":0.000702700098332,
+ "Shape_Ar_1":2.3350035054e-08,
+ "OBJECTID_3":90312,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90311,
+ "g_objectid":"939622",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181938",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004124912270000000",
+ "g_sup_tota":"224.9",
+ "g_geometry":"0.000752638",
+ "g_geomet_1":"2.57147e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000702700098332,
+ "Shape_Area":2.3350035054e-08,
+ "Shape_Le_3":0.000702700557263,
+ "Shape_Ar_2":2.3350035054e-08,
+ "building_height":20.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1923,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5576407179666,
+ 45.51282896643395
+ ],
+ [
+ -73.55777155043855,
+ 45.51288574153404
+ ],
+ [
+ -73.55778937680014,
+ 45.51286618667547
+ ],
+ [
+ -73.55783456683363,
+ 45.512813145560514
+ ],
+ [
+ -73.55783286711497,
+ 45.51281254571271
+ ],
+ [
+ -73.55784969432978,
+ 45.5128000217539
+ ],
+ [
+ -73.55788897581742,
+ 45.51275693073806
+ ],
+ [
+ -73.5578772675437,
+ 45.5127508459251
+ ],
+ [
+ -73.55790786697632,
+ 45.51272224568539
+ ],
+ [
+ -73.5578552674285,
+ 45.51269474621586
+ ],
+ [
+ -73.55779836732263,
+ 45.51266534557953
+ ],
+ [
+ -73.55781916684292,
+ 45.512645645930114
+ ],
+ [
+ -73.55781906701817,
+ 45.51264554610536
+ ],
+ [
+ -73.55781685108865,
+ 45.51264461170976
+ ],
+ [
+ -73.5576407179666,
+ 45.51282896643395
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1923,
+ "ID_UEV":"01091563",
+ "CIVIQUE_DE":" 1111",
+ "CIVIQUE_FI":" 1117",
+ "NOM_RUE":"rue Saint-Denis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":10,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-24-8327-3-000-0000",
+ "SUPERFICIE":315,
+ "SUPERFIC_1":744,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000784496402497,
+ "OBJECTID":90313,
+ "Join_Count":1,
+ "TARGET_FID":90313,
+ "feature_id":"4396a641-cdd1-4f4a-a083-1d93e66f7a3b",
+ "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":40.66,
+ "elevmin":21.01,
+ "elevmax":24.57,
+ "bldgarea":1980.28,
+ "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_2":90313,
+ "Shape_Le_1":0.000784496402497,
+ "Shape_Ar_1":2.86122060465e-08,
+ "OBJECTID_3":90313,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90312,
+ "g_objectid":"939622",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181938",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004124912270000000",
+ "g_sup_tota":"224.9",
+ "g_geometry":"0.000752638",
+ "g_geomet_1":"2.57147e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000784496402497,
+ "Shape_Area":2.86122060465e-08,
+ "Shape_Le_3":0.000784493842611,
+ "Shape_Ar_2":2.86122060465e-08,
+ "building_height":20.08
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1924,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55363037296519,
+ 45.51487248153009
+ ],
+ [
+ -73.55366836572435,
+ 45.514889346516426
+ ],
+ [
+ -73.55370246621769,
+ 45.51485144728676
+ ],
+ [
+ -73.55371358453614,
+ 45.51485634949123
+ ],
+ [
+ -73.55379399741689,
+ 45.51476877261106
+ ],
+ [
+ -73.55379006648023,
+ 45.5147671466368
+ ],
+ [
+ -73.55374013612023,
+ 45.51474753961755
+ ],
+ [
+ -73.55363037296519,
+ 45.51487248153009
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1924,
+ "ID_UEV":"01091630",
+ "CIVIQUE_DE":" 1009",
+ "CIVIQUE_FI":" 1017",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-66-0865-1-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":179,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000447800445085,
+ "OBJECTID":90321,
+ "Join_Count":1,
+ "TARGET_FID":90321,
+ "feature_id":"bcc025e6-562e-45fb-84d2-b304f4641d42",
+ "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.53,
+ "heightmax":33.46,
+ "elevmin":16.84,
+ "elevmax":21.43,
+ "bldgarea":1849.85,
+ "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_2":90321,
+ "Shape_Le_1":0.000447800445085,
+ "Shape_Ar_1":8.24102461514e-09,
+ "OBJECTID_3":90321,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90320,
+ "g_objectid":"939652",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182348",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004166086510000000",
+ "g_sup_tota":"181.4",
+ "g_geometry":"0.00093365",
+ "g_geomet_1":"2.07171e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000447800445085,
+ "Shape_Area":8.24102461514e-09,
+ "Shape_Le_3":0.000447800088609,
+ "Shape_Ar_2":8.24102461514e-09,
+ "building_height":16.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1925,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5535291668594,
+ 45.51481157944114
+ ],
+ [
+ -73.55353436584015,
+ 45.51481424683032
+ ],
+ [
+ -73.55349986604783,
+ 45.514847546927044
+ ],
+ [
+ -73.55354316570637,
+ 45.5148698465165
+ ],
+ [
+ -73.55354606601998,
+ 45.51486694710222
+ ],
+ [
+ -73.55360286630108,
+ 45.514809447148565
+ ],
+ [
+ -73.5536120169029,
+ 45.51481391048387
+ ],
+ [
+ -73.5536896697643,
+ 45.51472772305627
+ ],
+ [
+ -73.55364796640237,
+ 45.51471134640181
+ ],
+ [
+ -73.5536249644424,
+ 45.51470231361118
+ ],
+ [
+ -73.5535291668594,
+ 45.51481157944114
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1925,
+ "ID_UEV":"01091632",
+ "CIVIQUE_DE":" 1001",
+ "CIVIQUE_FI":" 1005",
+ "NOM_RUE":"rue Saint-Andr\u00c3\u00a9 (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-66-1660-5-000-0000",
+ "SUPERFICIE":228,
+ "SUPERFIC_1":261,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000528444449344,
+ "OBJECTID":90322,
+ "Join_Count":1,
+ "TARGET_FID":90322,
+ "feature_id":"bcc025e6-562e-45fb-84d2-b304f4641d42",
+ "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.53,
+ "heightmax":33.46,
+ "elevmin":16.84,
+ "elevmax":21.43,
+ "bldgarea":1849.85,
+ "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_2":90322,
+ "Shape_Le_1":0.000528444449344,
+ "Shape_Ar_1":1.13745842584e-08,
+ "OBJECTID_3":90322,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90321,
+ "g_objectid":"944681",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004166225870000000",
+ "g_sup_tota":"265.1",
+ "g_geometry":"0.000990614",
+ "g_geomet_1":"3.07971e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000528444449344,
+ "Shape_Area":1.13745842584e-08,
+ "Shape_Le_3":0.000528442628926,
+ "Shape_Ar_2":1.13745842584e-08,
+ "building_height":16.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1926,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5530525099872,
+ 45.505966551065775
+ ],
+ [
+ -73.55302226848475,
+ 45.506032172796836
+ ],
+ [
+ -73.55327095801015,
+ 45.50614411410987
+ ],
+ [
+ -73.5533073104059,
+ 45.5061558718463
+ ],
+ [
+ -73.55338256477539,
+ 45.506071117938035
+ ],
+ [
+ -73.5530525099872,
+ 45.505966551065775
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1926,
+ "ID_UEV":"01090795",
+ "CIVIQUE_DE":" 36",
+ "CIVIQUE_FI":" 40",
+ "NOM_RUE":"rue Saint-Paul Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1865,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-66-4283-5-000-0000",
+ "SUPERFICIE":260,
+ "SUPERFIC_1":1286,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000842749862687,
+ "OBJECTID":90323,
+ "Join_Count":1,
+ "TARGET_FID":90323,
+ "feature_id":"6b80a702-2199-4c9e-b3db-1ff290844780",
+ "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.08,
+ "heightmax":24.3,
+ "elevmin":12.99,
+ "elevmax":16.28,
+ "bldgarea":1199.74,
+ "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_2":90323,
+ "Shape_Le_1":0.000842749862687,
+ "Shape_Ar_1":2.97168922748e-08,
+ "OBJECTID_3":90323,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90322,
+ "g_objectid":"939585",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181747",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"12",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004066377280000000",
+ "g_sup_tota":"408.6",
+ "g_geometry":"0.00099424",
+ "g_geomet_1":"4.70495e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000842749862687,
+ "Shape_Area":2.97168922748e-08,
+ "Shape_Le_3":0.00084274867361,
+ "Shape_Ar_2":2.97168922748e-08,
+ "building_height":11.61
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1927,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.552891579005,
+ 45.506223931639425
+ ],
+ [
+ -73.5531417730962,
+ 45.5063313664497
+ ],
+ [
+ -73.55318887149107,
+ 45.50625550683647
+ ],
+ [
+ -73.55311258290122,
+ 45.50622553692928
+ ],
+ [
+ -73.55311423675447,
+ 45.506223574608576
+ ],
+ [
+ -73.55293109341707,
+ 45.5061673139207
+ ],
+ [
+ -73.55289868904511,
+ 45.50621271709351
+ ],
+ [
+ -73.552891579005,
+ 45.506223931639425
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1927,
+ "ID_UEV":"01090797",
+ "CIVIQUE_DE":" 84",
+ "CIVIQUE_FI":" 84",
+ "NOM_RUE":"rue Saint-Paul Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-67-5403-6-000-0000",
+ "SUPERFICIE":222,
+ "SUPERFIC_1":1130,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000706756756714,
+ "OBJECTID":90324,
+ "Join_Count":1,
+ "TARGET_FID":90324,
+ "feature_id":"5101e086-fc3c-4944-92b1-9396fd245c84",
+ "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.98,
+ "heightmax":25.26,
+ "elevmin":12.99,
+ "elevmax":17.14,
+ "bldgarea":3360.27,
+ "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_2":90324,
+ "Shape_Le_1":0.000706756756714,
+ "Shape_Ar_1":2.18049711577e-08,
+ "OBJECTID_3":90324,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90323,
+ "g_objectid":"939559",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181750",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004067540360000000",
+ "g_sup_tota":"222",
+ "g_geometry":"0.000760226",
+ "g_geomet_1":"2.51439e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000706756756714,
+ "Shape_Area":2.18049711577e-08,
+ "Shape_Le_3":0.000706756580598,
+ "Shape_Ar_2":2.18049711577e-08,
+ "building_height":12.14
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1928,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5561500494071,
+ 45.506153735057126
+ ],
+ [
+ -73.55624877877996,
+ 45.50619636562007
+ ],
+ [
+ -73.55628331454517,
+ 45.506154462608656
+ ],
+ [
+ -73.55624896583895,
+ 45.50613934500506
+ ],
+ [
+ -73.55625630790414,
+ 45.506131087430035
+ ],
+ [
+ -73.55591692804563,
+ 45.50598117404224
+ ],
+ [
+ -73.55587416887964,
+ 45.506034611758224
+ ],
+ [
+ -73.5561500494071,
+ 45.506153735057126
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1928,
+ "ID_UEV":"01091138",
+ "CIVIQUE_DE":" 7",
+ "CIVIQUE_FI":" 9",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-46-1786-2-000-0000",
+ "SUPERFICIE":224,
+ "SUPERFIC_1":803,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000950373322314,
+ "OBJECTID":90326,
+ "Join_Count":1,
+ "TARGET_FID":90326,
+ "feature_id":"0e472c2a-a03a-43ab-aaa2-9b6212010ad7",
+ "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":43.8,
+ "elevmin":23.05,
+ "elevmax":24.46,
+ "bldgarea":2674.3,
+ "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_2":90326,
+ "Shape_Le_1":0.000950373322314,
+ "Shape_Ar_1":2.58809261876e-08,
+ "OBJECTID_3":90326,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90325,
+ "g_objectid":"939555",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180959",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004046178620000000",
+ "g_sup_tota":"223.5",
+ "g_geometry":"0.000949754",
+ "g_geomet_1":"2.62726e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000950373322314,
+ "Shape_Area":2.58809261876e-08,
+ "Shape_Le_3":0.000950374136427,
+ "Shape_Ar_2":2.58809261876e-08,
+ "building_height":21.404999999999998
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1929,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56028601980582,
+ 45.535594923617126
+ ],
+ [
+ -73.56023006938403,
+ 45.535573549430055
+ ],
+ [
+ -73.56014956926906,
+ 45.53566624974792
+ ],
+ [
+ -73.56020495401727,
+ 45.5356900107357
+ ],
+ [
+ -73.56028601980582,
+ 45.535594923617126
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1929,
+ "ID_UEV":"01116905",
+ "CIVIQUE_DE":" 2587",
+ "CIVIQUE_FI":" 2589",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1915,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-09-9973-0-000-0000",
+ "SUPERFICIE":154,
+ "SUPERFIC_1":136,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000367888633938,
+ "OBJECTID":90329,
+ "Join_Count":1,
+ "TARGET_FID":90329,
+ "feature_id":"ed68438b-2723-4884-86d4-7695c5a7e863",
+ "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,
+ "heightmax":53.98,
+ "elevmin":39.25,
+ "elevmax":43.37,
+ "bldgarea":648.4,
+ "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_2":90329,
+ "Shape_Le_1":0.000367888633938,
+ "Shape_Ar_1":7.04993371188e-09,
+ "OBJECTID_3":90329,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90328,
+ "g_objectid":"944221",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361499",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004309937740000000",
+ "g_sup_tota":"231",
+ "g_geometry":"0.000727684",
+ "g_geomet_1":"2.66408e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000367888633938,
+ "Shape_Area":7.04993371188e-09,
+ "Shape_Le_3":0.000367888192806,
+ "Shape_Ar_2":7.04993371188e-09,
+ "building_height":26.99
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1930,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55479117919141,
+ 45.50951201761582
+ ],
+ [
+ -73.5549728413454,
+ 45.50959573910237
+ ],
+ [
+ -73.55498856599137,
+ 45.50957894606181
+ ],
+ [
+ -73.55480716643943,
+ 45.50949494578541
+ ],
+ [
+ -73.55479117919141,
+ 45.50951201761582
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55413587918932,
+ 45.5091724695841
+ ],
+ [
+ -73.5543377661968,
+ 45.50925244629366
+ ],
+ [
+ -73.55474306636127,
+ 45.508746545267144
+ ],
+ [
+ -73.55460317321972,
+ 45.50869116501555
+ ],
+ [
+ -73.55413587918932,
+ 45.5091724695841
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55412362502712,
+ 45.509185090669696
+ ],
+ [
+ -73.55412496501697,
+ 45.5091856455514
+ ],
+ [
+ -73.55413357512623,
+ 45.50917484289498
+ ],
+ [
+ -73.55412362502712,
+ 45.509185090669696
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55488108171839,
+ 45.50840491800286
+ ],
+ [
+ -73.55488926644833,
+ 45.50840804494561
+ ],
+ [
+ -73.5548944663284,
+ 45.50841004503784
+ ],
+ [
+ -73.55494443985586,
+ 45.50833965779926
+ ],
+ [
+ -73.55488257819027,
+ 45.50840337656487
+ ],
+ [
+ -73.55488108171839,
+ 45.50840491800286
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5555235897637,
+ 45.50774311770102
+ ],
+ [
+ -73.55560496581836,
+ 45.50777434486042
+ ],
+ [
+ -73.55560686608585,
+ 45.50777524508179
+ ],
+ [
+ -73.55570966399165,
+ 45.50765645812933
+ ],
+ [
+ -73.55569880197997,
+ 45.50765222052385
+ ],
+ [
+ -73.55560798484247,
+ 45.50776734453761
+ ],
+ [
+ -73.55552986073633,
+ 45.50773665877008
+ ],
+ [
+ -73.5555235897637,
+ 45.50774311770102
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55578035070447,
+ 45.5075714811892
+ ],
+ [
+ -73.55575095726272,
+ 45.50760874190021
+ ],
+ [
+ -73.55577916629733,
+ 45.50757614507333
+ ],
+ [
+ -73.55578246590991,
+ 45.50757234453837
+ ],
+ [
+ -73.55578035070447,
+ 45.5075714811892
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55585760606552,
+ 45.50745091357909
+ ],
+ [
+ -73.55576882229516,
+ 45.50756346013587
+ ],
+ [
+ -73.55577307608844,
+ 45.50756511848572
+ ],
+ [
+ -73.5558656657897,
+ 45.507454244667954
+ ],
+ [
+ -73.55585760606552,
+ 45.50745091357909
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1930,
+ "ID_UEV":"01091235",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Saint-Antoine Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-49-7970-0-000-0000",
+ "SUPERFICIE":17222,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00325071623549,
+ "OBJECTID":90361,
+ "Join_Count":3,
+ "TARGET_FID":90361,
+ "feature_id":"b75eddc6-c617-4965-a90f-6a5e0a070e51",
+ "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":63.72,
+ "elevmin":21.06,
+ "elevmax":27.61,
+ "bldgarea":3650.33,
+ "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_2":90361,
+ "Shape_Le_1":0.00325071623549,
+ "Shape_Ar_1":1.21703385735e-07,
+ "OBJECTID_3":90361,
+ "Join_Cou_1":6,
+ "TARGET_F_1":90360,
+ "g_objectid":"944971",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1181247",
+ "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":"66023004058068600000000",
+ "g_sup_tota":"5712.7",
+ "g_geometry":"0.0033953",
+ "g_geomet_1":"6.56684e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00325071623549,
+ "Shape_Area":1.21703385735e-07,
+ "Shape_Le_3":0.00325071619324,
+ "Shape_Ar_2":1.21703385735e-07,
+ "building_height":31.605
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1931,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55410996072796,
+ 45.51048927221244
+ ],
+ [
+ -73.55439298906704,
+ 45.510625063546144
+ ],
+ [
+ -73.55446698888228,
+ 45.51065227253464
+ ],
+ [
+ -73.55453937801173,
+ 45.510532426180816
+ ],
+ [
+ -73.55461255674594,
+ 45.51040709576115
+ ],
+ [
+ -73.55449548120335,
+ 45.510349322413596
+ ],
+ [
+ -73.55449033887989,
+ 45.510346922123055
+ ],
+ [
+ -73.55448946653749,
+ 45.51034804627561
+ ],
+ [
+ -73.55427466616476,
+ 45.51026564589314
+ ],
+ [
+ -73.55427286572203,
+ 45.51026494622059
+ ],
+ [
+ -73.55410996072796,
+ 45.51048927221244
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1931,
+ "ID_UEV":"01091238",
+ "CIVIQUE_DE":" 338",
+ "CIVIQUE_FI":" 338",
+ "NOM_RUE":"rue Saint-Antoine Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1924,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-51-5270-1-000-0000",
+ "SUPERFICIE":969,
+ "SUPERFIC_1":3887,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00132478738595,
+ "OBJECTID":90362,
+ "Join_Count":1,
+ "TARGET_FID":90362,
+ "feature_id":"9c8dc24f-026b-452f-998b-95fd9153f932",
+ "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":45.37,
+ "elevmin":15.44,
+ "elevmax":17.89,
+ "bldgarea":2183.36,
+ "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_2":90362,
+ "Shape_Le_1":0.00132478738595,
+ "Shape_Ar_1":1.0801819179e-07,
+ "OBJECTID_3":90362,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90361,
+ "g_objectid":"944978",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1181738",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"23",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004151527010000000",
+ "g_sup_tota":"968.6",
+ "g_geometry":"0.00134349",
+ "g_geomet_1":"1.11552e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00132478738595,
+ "Shape_Area":1.0801819179e-07,
+ "Shape_Le_3":0.00132478719097,
+ "Shape_Ar_2":1.0801819179e-07,
+ "building_height":22.43
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1932,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5556806545604,
+ 45.51329574695146
+ ],
+ [
+ -73.55576235077372,
+ 45.513333194721454
+ ],
+ [
+ -73.55594914535861,
+ 45.51313547157505
+ ],
+ [
+ -73.55586850225143,
+ 45.513097190133514
+ ],
+ [
+ -73.5556806545604,
+ 45.51329574695146
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1932,
+ "ID_UEV":"01091599",
+ "CIVIQUE_DE":" 1045",
+ "CIVIQUE_FI":" 1047",
+ "NOM_RUE":"rue Berri (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1866,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-44-3777-2-000-0000",
+ "SUPERFICIE":233,
+ "SUPERFIC_1":732,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000724477806648,
+ "OBJECTID":90363,
+ "Join_Count":1,
+ "TARGET_FID":90363,
+ "feature_id":"7aff759e-4478-4c33-ae54-70616df9b628",
+ "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":39.35,
+ "elevmin":16.61,
+ "elevmax":23.95,
+ "bldgarea":1891.89,
+ "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_2":90363,
+ "Shape_Le_1":0.000724477806648,
+ "Shape_Ar_1":2.31759334601e-08,
+ "OBJECTID_3":90363,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90362,
+ "g_objectid":"939631",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182036",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004144377720000000",
+ "g_sup_tota":"232.9",
+ "g_geometry":"0.000801731",
+ "g_geomet_1":"2.68218e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000724477806648,
+ "Shape_Area":2.31759334601e-08,
+ "Shape_Le_3":0.000724477016583,
+ "Shape_Ar_2":2.31759334601e-08,
+ "building_height":19.415
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1933,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55536846570398,
+ 45.51314274619108
+ ],
+ [
+ -73.55544484512535,
+ 45.51317795374986
+ ],
+ [
+ -73.55549834129725,
+ 45.513119818874834
+ ],
+ [
+ -73.5554225662203,
+ 45.513084846039106
+ ],
+ [
+ -73.55536846570398,
+ 45.51314274619108
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55543897075374,
+ 45.51304750618775
+ ],
+ [
+ -73.55552698920104,
+ 45.51308868614424
+ ],
+ [
+ -73.55562537143558,
+ 45.51298177294076
+ ],
+ [
+ -73.55553773879745,
+ 45.51294017300088
+ ],
+ [
+ -73.55543897075374,
+ 45.51304750618775
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1933,
+ "ID_UEV":"01091604",
+ "CIVIQUE_DE":" 1027",
+ "CIVIQUE_FI":" 1029",
+ "NOM_RUE":"rue Berri (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1850,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-44-6260-6-000-0000",
+ "SUPERFICIE":253,
+ "SUPERFIC_1":155,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00081113592962,
+ "OBJECTID":90364,
+ "Join_Count":2,
+ "TARGET_FID":90364,
+ "feature_id":"22417e10-e267-49fc-8247-74425f127e02",
+ "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.05,
+ "heightmax":28.45,
+ "elevmin":22.67,
+ "elevmax":23.69,
+ "bldgarea":57.09,
+ "comment":" ",
+ "OBJECTID_2":90364,
+ "Shape_Le_1":0.00081113592962,
+ "Shape_Ar_1":1.97896927964e-08,
+ "OBJECTID_3":90364,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90363,
+ "g_objectid":"939633",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182042",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004144695510000000",
+ "g_sup_tota":"248.5",
+ "g_geometry":"0.000820646",
+ "g_geomet_1":"2.87212e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00081113592962,
+ "Shape_Area":1.97896927964e-08,
+ "Shape_Le_3":0.000811138029515,
+ "Shape_Ar_2":1.97896927964e-08,
+ "building_height":13.2
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1934,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55450761215842,
+ 45.50825726641001
+ ],
+ [
+ -73.55450486652822,
+ 45.50826084481243
+ ],
+ [
+ -73.55480996602896,
+ 45.508377744987236
+ ],
+ [
+ -73.55488108171839,
+ 45.50840491800286
+ ],
+ [
+ -73.55488257819027,
+ 45.50840337656487
+ ],
+ [
+ -73.55450761215842,
+ 45.50825726641001
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1934,
+ "ID_UEV":"01091143",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Notre-Dame Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-59-4446-3-000-0000",
+ "SUPERFICIE":2032,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000811944366552,
+ "OBJECTID":90372,
+ "Join_Count":1,
+ "TARGET_FID":90372,
+ "feature_id":"9a660b3e-2a72-462c-93a4-ded2575dfb4a",
+ "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.93,
+ "heightmax":55.51,
+ "elevmin":21.57,
+ "elevmax":27,
+ "bldgarea":3671.08,
+ "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_2":90372,
+ "Shape_Le_1":0.000811944366552,
+ "Shape_Ar_1":1.28055329714e-09,
+ "OBJECTID_3":90372,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90371,
+ "g_objectid":"944971",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1181247",
+ "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":"66023004058068600000000",
+ "g_sup_tota":"5712.7",
+ "g_geometry":"0.0033953",
+ "g_geomet_1":"6.56684e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000811944366552,
+ "Shape_Area":1.28055329714e-09,
+ "Shape_Le_3":0.000811944501318,
+ "Shape_Ar_2":1.28055329714e-09,
+ "building_height":27.29
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1935,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55389638882913,
+ 45.53077419682202
+ ],
+ [
+ -73.55404483002673,
+ 45.53083762690525
+ ],
+ [
+ -73.55408366724929,
+ 45.530795348876545
+ ],
+ [
+ -73.55394236756806,
+ 45.530731348623135
+ ],
+ [
+ -73.55393756698697,
+ 45.53072914888141
+ ],
+ [
+ -73.55389638882913,
+ 45.53077419682202
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55391533754464,
+ 45.53068441390487
+ ],
+ [
+ -73.55391115209983,
+ 45.53068909757409
+ ],
+ [
+ -73.55397036706064,
+ 45.530716649204294
+ ],
+ [
+ -73.5539747674434,
+ 45.53071874912127
+ ],
+ [
+ -73.55397965525873,
+ 45.53071329653171
+ ],
+ [
+ -73.55391533754464,
+ 45.53068441390487
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1935,
+ "ID_UEV":"01118588",
+ "CIVIQUE_DE":" 2351",
+ "CIVIQUE_FI":" 2353",
+ "NOM_RUE":"rue Coupal (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-54-8130-4-000-0000",
+ "SUPERFICIE":218,
+ "SUPERFIC_1":161,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000594559778594,
+ "OBJECTID":90374,
+ "Join_Count":2,
+ "TARGET_FID":90374,
+ "feature_id":"1391596e-c006-4a1f-98a7-715b6baa2871",
+ "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":26.42,
+ "elevmin":17.53,
+ "elevmax":19.23,
+ "bldgarea":353.08,
+ "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_2":90374,
+ "Shape_Le_1":0.000594559778594,
+ "Shape_Ar_1":9.47691636641e-09,
+ "OBJECTID_3":90374,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90373,
+ "g_objectid":"940849",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424523",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004354841830000000",
+ "g_sup_tota":"153.4",
+ "g_geometry":"0.000678979",
+ "g_geomet_1":"1.78765e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000594559778594,
+ "Shape_Area":9.47691636641e-09,
+ "Shape_Le_3":0.000594560953838,
+ "Shape_Ar_2":9.47691636641e-09,
+ "building_height":11.950000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1936,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55314377948368,
+ 45.51131659993143
+ ],
+ [
+ -73.55329044631888,
+ 45.5113826254581
+ ],
+ [
+ -73.55336497493549,
+ 45.51128016929467
+ ],
+ [
+ -73.55336640845483,
+ 45.51127808916278
+ ],
+ [
+ -73.55333819942021,
+ 45.511265007624296
+ ],
+ [
+ -73.55322486505732,
+ 45.51122654541903
+ ],
+ [
+ -73.55321386544938,
+ 45.511222546133894
+ ],
+ [
+ -73.55314377948368,
+ 45.51131659993143
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1936,
+ "ID_UEV":"01091482",
+ "CIVIQUE_DE":" 442",
+ "CIVIQUE_FI":" 450",
+ "NOM_RUE":"rue Saint-Louis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-62-4062-0-000-0000",
+ "SUPERFICIE":271,
+ "SUPERFIC_1":410,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000569842921748,
+ "OBJECTID":90378,
+ "Join_Count":1,
+ "TARGET_FID":90378,
+ "feature_id":"cf8efdb4-7079-4199-a540-402807daf202",
+ "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.53,
+ "heightmax":35.88,
+ "elevmin":18.97,
+ "elevmax":20.97,
+ "bldgarea":899.1,
+ "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_2":90378,
+ "Shape_Le_1":0.000569842921748,
+ "Shape_Ar_1":1.9497104569e-08,
+ "OBJECTID_3":90378,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90377,
+ "g_objectid":"939665",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182381",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004162406200000000",
+ "g_sup_tota":"271",
+ "g_geometry":"0.000748411",
+ "g_geomet_1":"3.12122e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000569842921748,
+ "Shape_Area":1.9497104569e-08,
+ "Shape_Le_3":0.000569841950322,
+ "Shape_Ar_2":1.9497104569e-08,
+ "building_height":17.675
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1937,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.5495756509174,
+ 45.52367886603713
+ ],
+ [
+ -73.54958026533882,
+ 45.523680848142924
+ ],
+ [
+ -73.54958036516356,
+ 45.523680848142924
+ ],
+ [
+ -73.54962216475295,
+ 45.523638547631165
+ ],
+ [
+ -73.54961597202134,
+ 45.52363552680841
+ ],
+ [
+ -73.54959981749943,
+ 45.523652886421864
+ ],
+ [
+ -73.54959978782179,
+ 45.52365291789814
+ ],
+ [
+ -73.5495756509174,
+ 45.52367886603713
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54935354085507,
+ 45.52360457484155
+ ],
+ [
+ -73.54934986532587,
+ 45.5236086478711
+ ],
+ [
+ -73.54948306481343,
+ 45.523667948267494
+ ],
+ [
+ -73.54948316553751,
+ 45.523667948267494
+ ],
+ [
+ -73.54948453520498,
+ 45.52366636725934
+ ],
+ [
+ -73.54935354085507,
+ 45.52360457484155
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54966398502673,
+ 45.52358391741415
+ ],
+ [
+ -73.54966876492341,
+ 45.523586247557574
+ ],
+ [
+ -73.54971156545822,
+ 45.523542947899024
+ ],
+ [
+ -73.54971146473416,
+ 45.52354284807427
+ ],
+ [
+ -73.5497048133483,
+ 45.5235400260017
+ ],
+ [
+ -73.54968969214742,
+ 45.523556283945645
+ ],
+ [
+ -73.54968966426844,
+ 45.52355631362327
+ ],
+ [
+ -73.54966398502673,
+ 45.52358391741415
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.54972788095878,
+ 45.52351522180034
+ ],
+ [
+ -73.54979096480302,
+ 45.523541947852905
+ ],
+ [
+ -73.54979360880985,
+ 45.523538864976935
+ ],
+ [
+ -73.54976282231824,
+ 45.523524669178435
+ ],
+ [
+ -73.54973218691273,
+ 45.52351058669451
+ ],
+ [
+ -73.54972788095878,
+ 45.52351522180034
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1937,
+ "ID_UEV":"01115273",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Falardeau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-96-2745-8-000-0000",
+ "SUPERFICIE":273,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000709042318135,
+ "OBJECTID":90381,
+ "Join_Count":1,
+ "TARGET_FID":90381,
+ "feature_id":"33ce952f-01d1-4397-ae2f-ceb50d17fb4e",
+ "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.47,
+ "heightmax":31.4,
+ "elevmin":17.05,
+ "elevmax":19.38,
+ "bldgarea":1187.1,
+ "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_2":90381,
+ "Shape_Le_1":0.000709042318135,
+ "Shape_Ar_1":1.56278608008e-09,
+ "OBJECTID_3":90381,
+ "Join_Cou_1":7,
+ "TARGET_F_1":90380,
+ "g_objectid":"942324",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1729159",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004296170790000000",
+ "g_sup_tota":"698.7",
+ "g_geometry":"0.00120899",
+ "g_geomet_1":"8.0496e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000709042318135,
+ "Shape_Area":1.56278608008e-09,
+ "Shape_Le_3":0.000709041784537,
+ "Shape_Ar_2":1.56278608008e-09,
+ "building_height":14.465
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1938,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54973890934504,
+ 45.523909561927034
+ ],
+ [
+ -73.54973846507994,
+ 45.52391004756094
+ ],
+ [
+ -73.54973516546735,
+ 45.52391374827116
+ ],
+ [
+ -73.54984956552687,
+ 45.52396374787896
+ ],
+ [
+ -73.54985536525474,
+ 45.523966247994245
+ ],
+ [
+ -73.54985702000731,
+ 45.52396437290778
+ ],
+ [
+ -73.54984600601021,
+ 45.52395929713415
+ ],
+ [
+ -73.54973890934504,
+ 45.523909561927034
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1938,
+ "ID_UEV":"01115275",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Tansley (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-96-2075-0-000-0000",
+ "SUPERFICIE":2931,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000269485061861,
+ "OBJECTID":90382,
+ "Join_Count":1,
+ "TARGET_FID":90382,
+ "feature_id":"07b855a0-9f50-46d7-99b0-8dd74b985c9f",
+ "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.46,
+ "heightmax":30.89,
+ "elevmin":16.67,
+ "elevmax":19.4,
+ "bldgarea":490.49,
+ "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_2":90382,
+ "Shape_Le_1":0.000269485061861,
+ "Shape_Ar_1":5.05336037443e-10,
+ "OBJECTID_3":90382,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90381,
+ "g_objectid":"2322290",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1729154",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004296274580000000",
+ "g_sup_tota":"3203.5",
+ "g_geometry":"0.00311825",
+ "g_geomet_1":"3.6897e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000269485061861,
+ "Shape_Area":5.05336037443e-10,
+ "Shape_Le_3":0.000269484342542,
+ "Shape_Ar_2":5.05336037443e-10,
+ "building_height":14.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1939,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55289586877117,
+ 45.511610273545585
+ ],
+ [
+ -73.55291020126663,
+ 45.511615927583286
+ ],
+ [
+ -73.55305414405535,
+ 45.51167749517056
+ ],
+ [
+ -73.55318986524193,
+ 45.51147964611907
+ ],
+ [
+ -73.5531763655187,
+ 45.51147514591155
+ ],
+ [
+ -73.55317951674314,
+ 45.511470249103006
+ ],
+ [
+ -73.5531786291123,
+ 45.51146989656877
+ ],
+ [
+ -73.55310127482582,
+ 45.51143730603714
+ ],
+ [
+ -73.55309576467964,
+ 45.511442746036195
+ ],
+ [
+ -73.55304406535318,
+ 45.51141694628534
+ ],
+ [
+ -73.55300316508584,
+ 45.51147024550572
+ ],
+ [
+ -73.55289586877117,
+ 45.511610273545585
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1939,
+ "ID_UEV":"01091484",
+ "CIVIQUE_DE":" 464",
+ "CIVIQUE_FI":" 494",
+ "NOM_RUE":"rue Saint-Louis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":16,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-62-5690-7-000-0000",
+ "SUPERFICIE":569,
+ "SUPERFIC_1":822,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000825954761314,
+ "OBJECTID":90385,
+ "Join_Count":1,
+ "TARGET_FID":90385,
+ "feature_id":"cf8efdb4-7079-4199-a540-402807daf202",
+ "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.53,
+ "heightmax":35.88,
+ "elevmin":18.97,
+ "elevmax":20.97,
+ "bldgarea":899.1,
+ "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_2":90385,
+ "Shape_Le_1":0.000825954761314,
+ "Shape_Ar_1":3.91821102577e-08,
+ "OBJECTID_3":90385,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90384,
+ "g_objectid":"944835",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"4",
+ "g_utilisat":"1000",
+ "g_nb_logem":"16",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004162569070000000",
+ "g_sup_tota":"568.6",
+ "g_geometry":"0.00104745",
+ "g_geomet_1":"6.51675e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000825954761314,
+ "Shape_Area":3.91821102577e-08,
+ "Shape_Le_3":0.000825953735788,
+ "Shape_Ar_2":3.91821102577e-08,
+ "building_height":17.675
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1940,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5530007324197,
+ 45.51110852109167
+ ],
+ [
+ -73.55289692277661,
+ 45.51126131680662
+ ],
+ [
+ -73.55289287312944,
+ 45.511267480759926
+ ],
+ [
+ -73.55300466515502,
+ 45.511304445593986
+ ],
+ [
+ -73.55300876516422,
+ 45.51130574601366
+ ],
+ [
+ -73.55309616487796,
+ 45.51116794559451
+ ],
+ [
+ -73.55309656507626,
+ 45.51116724592195
+ ],
+ [
+ -73.55308516527,
+ 45.5111624462402
+ ],
+ [
+ -73.55309411712166,
+ 45.51115182344819
+ ],
+ [
+ -73.5530007324197,
+ 45.51110852109167
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1940,
+ "ID_UEV":"01091534",
+ "CIVIQUE_DE":" 443",
+ "CIVIQUE_FI":" 449",
+ "NOM_RUE":"rue du Champ-de-Mars (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-62-5859-8-000-0000",
+ "SUPERFICIE":390,
+ "SUPERFIC_1":404,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000607328260959,
+ "OBJECTID":90393,
+ "Join_Count":1,
+ "TARGET_FID":90393,
+ "feature_id":"e900e068-7f5e-489c-a551-7fd75b8aef41",
+ "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":38.65,
+ "elevmin":18.57,
+ "elevmax":21.22,
+ "bldgarea":2038.99,
+ "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_2":90393,
+ "Shape_Le_1":0.000607328260959,
+ "Shape_Ar_1":2.1090900779e-08,
+ "OBJECTID_3":90393,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90392,
+ "g_objectid":"939667",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182384",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004162585980000000",
+ "g_sup_tota":"390.2",
+ "g_geometry":"0.000900677",
+ "g_geomet_1":"4.49355e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000607328260959,
+ "Shape_Area":2.1090900779e-08,
+ "Shape_Le_3":0.000607327943313,
+ "Shape_Ar_2":2.1090900779e-08,
+ "building_height":19.075
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1941,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55333819942021,
+ 45.511265007624296
+ ],
+ [
+ -73.55336640845483,
+ 45.51127808916278
+ ],
+ [
+ -73.5533683653796,
+ 45.51127524550647
+ ],
+ [
+ -73.55333819942021,
+ 45.511265007624296
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55309411712166,
+ 45.51115182344819
+ ],
+ [
+ -73.55310606551436,
+ 45.51113764563613
+ ],
+ [
+ -73.55313656512223,
+ 45.511150445686816
+ ],
+ [
+ -73.55314306542198,
+ 45.5111529458021
+ ],
+ [
+ -73.55317016469319,
+ 45.51111874548401
+ ],
+ [
+ -73.55322226511728,
+ 45.51113904588056
+ ],
+ [
+ -73.5531946649237,
+ 45.511174045695945
+ ],
+ [
+ -73.55337876513974,
+ 45.51125884546964
+ ],
+ [
+ -73.55337956553636,
+ 45.5112591458432
+ ],
+ [
+ -73.55338647232968,
+ 45.51125061847156
+ ],
+ [
+ -73.55352326101153,
+ 45.5110625774263
+ ],
+ [
+ -73.55347646478886,
+ 45.51104454601928
+ ],
+ [
+ -73.55348986468735,
+ 45.51102724576108
+ ],
+ [
+ -73.5535361375046,
+ 45.51104487786911
+ ],
+ [
+ -73.55354064310804,
+ 45.51103868423818
+ ],
+ [
+ -73.55348947618023,
+ 45.51101501228329
+ ],
+ [
+ -73.55338323746828,
+ 45.51096527257956
+ ],
+ [
+ -73.55338274553912,
+ 45.51096505224566
+ ],
+ [
+ -73.55336016536118,
+ 45.510991046250076
+ ],
+ [
+ -73.55333186549504,
+ 45.5109788460472
+ ],
+ [
+ -73.55330666469267,
+ 45.511007745761155
+ ],
+ [
+ -73.55325356512178,
+ 45.51098494614864
+ ],
+ [
+ -73.55328326523235,
+ 45.51095094548005
+ ],
+ [
+ -73.55314796492848,
+ 45.51089274585383
+ ],
+ [
+ -73.55314746490542,
+ 45.51089254620434
+ ],
+ [
+ -73.5530007324197,
+ 45.51110852109167
+ ],
+ [
+ -73.55309411712166,
+ 45.51115182344819
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55315947984796,
+ 45.510861721041884
+ ],
+ [
+ -73.55315294537398,
+ 45.5108716666444
+ ],
+ [
+ -73.55326348104666,
+ 45.5109105587256
+ ],
+ [
+ -73.55315947984796,
+ 45.510861721041884
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1941,
+ "ID_UEV":"01091535",
+ "CIVIQUE_DE":" 435",
+ "CIVIQUE_FI":" 435",
+ "NOM_RUE":"rue du Champ-de-Mars (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":27,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-62-3739-4-000-0000",
+ "SUPERFICIE":1037,
+ "SUPERFIC_1":2596,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00198195993529,
+ "OBJECTID":90394,
+ "Join_Count":2,
+ "TARGET_FID":90394,
+ "feature_id":"cf8efdb4-7079-4199-a540-402807daf202",
+ "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.53,
+ "heightmax":35.88,
+ "elevmin":18.97,
+ "elevmax":20.97,
+ "bldgarea":899.1,
+ "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_2":90394,
+ "Shape_Le_1":0.00198195993529,
+ "Shape_Ar_1":9.97115051254e-08,
+ "OBJECTID_3":90394,
+ "Join_Cou_1":7,
+ "TARGET_F_1":90393,
+ "g_objectid":"939641",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182102",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004162222890000000",
+ "g_sup_tota":"108.3",
+ "g_geometry":"0.000536606",
+ "g_geomet_1":"1.20609e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00198195993529,
+ "Shape_Area":9.97115051254e-08,
+ "Shape_Le_3":0.00198196030935,
+ "Shape_Ar_2":9.97115051254e-08,
+ "building_height":17.675
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1942,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55130127185805,
+ 45.510692583746035
+ ],
+ [
+ -73.55123216525406,
+ 45.51098534544763
+ ],
+ [
+ -73.55123466536935,
+ 45.510985645821194
+ ],
+ [
+ -73.55135786529509,
+ 45.511004145775004
+ ],
+ [
+ -73.55140606535947,
+ 45.51084544601082
+ ],
+ [
+ -73.55151746528064,
+ 45.51086214552189
+ ],
+ [
+ -73.55151886552507,
+ 45.510862445895455
+ ],
+ [
+ -73.55150416520691,
+ 45.510891046135164
+ ],
+ [
+ -73.55145566476895,
+ 45.510986046019504
+ ],
+ [
+ -73.55152086471797,
+ 45.51100253329057
+ ],
+ [
+ -73.55152253835631,
+ 45.5109955914237
+ ],
+ [
+ -73.55154995598753,
+ 45.510887791488685
+ ],
+ [
+ -73.55155345794758,
+ 45.5108755706014
+ ],
+ [
+ -73.55155815690526,
+ 45.5108591759605
+ ],
+ [
+ -73.55159787096682,
+ 45.510867522568404
+ ],
+ [
+ -73.55161769382336,
+ 45.51079195793281
+ ],
+ [
+ -73.55162009771118,
+ 45.51077895553467
+ ],
+ [
+ -73.55161781343318,
+ 45.51077642574175
+ ],
+ [
+ -73.55157244623325,
+ 45.5107657157155
+ ],
+ [
+ -73.55146226489346,
+ 45.5107514461726
+ ],
+ [
+ -73.55146587657079,
+ 45.5107376991358
+ ],
+ [
+ -73.55144735593258,
+ 45.510732622462854
+ ],
+ [
+ -73.55130127185805,
+ 45.510692583746035
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1942,
+ "ID_UEV":"01119413",
+ "CIVIQUE_DE":" 459",
+ "CIVIQUE_FI":" 459",
+ "NOM_RUE":"rue Saint-Paul Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":5,
+ "NOMBRE_LOG":49,
+ "ANNEE_CONS":1845,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-72-8225-8-000-0000",
+ "SUPERFICIE":1110,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00153999304661,
+ "OBJECTID":90399,
+ "Join_Count":1,
+ "TARGET_FID":90399,
+ "feature_id":"259395c3-dd28-4676-af22-11b4153a2ecf",
+ "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":48.8,
+ "elevmin":20.59,
+ "elevmax":27.17,
+ "bldgarea":4578.55,
+ "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_2":90399,
+ "Shape_Le_1":0.00153999304661,
+ "Shape_Ar_1":6.62833679874e-08,
+ "OBJECTID_3":90399,
+ "Join_Cou_1":6,
+ "TARGET_F_1":90398,
+ "g_objectid":"939618",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181924",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004171769480000000",
+ "g_sup_tota":"291.5",
+ "g_geometry":"0.000894379",
+ "g_geomet_1":"3.35695e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00153999304661,
+ "Shape_Area":6.62833679874e-08,
+ "Shape_Le_3":0.00153999433916,
+ "Shape_Ar_2":6.62833679874e-08,
+ "building_height":24.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1943,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55233064216725,
+ 45.5100099956151
+ ],
+ [
+ -73.55246813681691,
+ 45.510040012287035
+ ],
+ [
+ -73.55257514714717,
+ 45.5099045420113
+ ],
+ [
+ -73.55241617129111,
+ 45.50986427306804
+ ],
+ [
+ -73.55238720322869,
+ 45.50991895184844
+ ],
+ [
+ -73.55237988724384,
+ 45.509917036292485
+ ],
+ [
+ -73.55233064216725,
+ 45.5100099956151
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1943,
+ "ID_UEV":"01091127",
+ "CIVIQUE_DE":" 356",
+ "CIVIQUE_FI":" 362",
+ "NOM_RUE":"rue Notre-Dame Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1865,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-71-0115-1-000-0000",
+ "SUPERFICIE":212,
+ "SUPERFIC_1":652,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000652005452535,
+ "OBJECTID":90409,
+ "Join_Count":1,
+ "TARGET_FID":90409,
+ "feature_id":"ed79ca9f-38c1-4cc5-8967-46999276e73b",
+ "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":45.67,
+ "elevmin":19.48,
+ "elevmax":27.5,
+ "bldgarea":6028.92,
+ "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_2":90409,
+ "Shape_Le_1":0.000652005452535,
+ "Shape_Ar_1":2.43840996039e-08,
+ "OBJECTID_3":90409,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90408,
+ "g_objectid":"939603",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181823",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004171011510000000",
+ "g_sup_tota":"211.7",
+ "g_geometry":"0.000652006",
+ "g_geomet_1":"2.43841e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000652005452535,
+ "Shape_Area":2.43840996039e-08,
+ "Shape_Le_3":0.000652004666422,
+ "Shape_Ar_2":2.43840996039e-08,
+ "building_height":22.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1944,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55206581430772,
+ 45.51022925392722
+ ],
+ [
+ -73.55230630111674,
+ 45.51029548629795
+ ],
+ [
+ -73.55238191611438,
+ 45.51016672946129
+ ],
+ [
+ -73.5522932654437,
+ 45.51014294599046
+ ],
+ [
+ -73.55213806494159,
+ 45.51010114550176
+ ],
+ [
+ -73.55213806494159,
+ 45.51010124622583
+ ],
+ [
+ -73.55206581430772,
+ 45.51022925392722
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1944,
+ "ID_UEV":"01091128",
+ "CIVIQUE_DE":" 400",
+ "CIVIQUE_FI":" 406",
+ "NOM_RUE":"rue Notre-Dame Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1923,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-71-2042-5-000-0000",
+ "SUPERFICIE":364,
+ "SUPERFIC_1":920,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000798365459242,
+ "OBJECTID":90410,
+ "Join_Count":1,
+ "TARGET_FID":90410,
+ "feature_id":"259395c3-dd28-4676-af22-11b4153a2ecf",
+ "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":48.8,
+ "elevmin":20.59,
+ "elevmax":27.17,
+ "bldgarea":4578.55,
+ "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_2":90410,
+ "Shape_Le_1":0.000798365459242,
+ "Shape_Ar_1":3.59642451312e-08,
+ "OBJECTID_3":90410,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90409,
+ "g_objectid":"939607",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181902",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"1",
+ "g_nb_locau":"5",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004171204250000000",
+ "g_sup_tota":"363.6",
+ "g_geometry":"0.000883636",
+ "g_geomet_1":"4.24803e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000798365459242,
+ "Shape_Area":3.59642451312e-08,
+ "Shape_Le_3":0.000798366534591,
+ "Shape_Ar_2":3.59642451312e-08,
+ "building_height":24.145
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1945,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55600260196036,
+ 45.505048569885886
+ ],
+ [
+ -73.55609372306871,
+ 45.505076688988304
+ ],
+ [
+ -73.55616895495515,
+ 45.504973954035044
+ ],
+ [
+ -73.55618660055302,
+ 45.504979798729025
+ ],
+ [
+ -73.55618896307203,
+ 45.50497751265238
+ ],
+ [
+ -73.55616496646188,
+ 45.50496604449765
+ ],
+ [
+ -73.5562175660097,
+ 45.504911345032845
+ ],
+ [
+ -73.55619396600058,
+ 45.50490034452557
+ ],
+ [
+ -73.55622186656774,
+ 45.504871344986874
+ ],
+ [
+ -73.55622246641553,
+ 45.504870145291264
+ ],
+ [
+ -73.55619249650836,
+ 45.504861682670814
+ ],
+ [
+ -73.55600260196036,
+ 45.505048569885886
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1945,
+ "ID_UEV":"01091279",
+ "CIVIQUE_DE":" 461",
+ "CIVIQUE_FI":" 461",
+ "NOM_RUE":"rue Saint-Sulpice (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1821,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-45-1262-6-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":764,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000712251512464,
+ "OBJECTID":90411,
+ "Join_Count":1,
+ "TARGET_FID":90411,
+ "feature_id":"e9c8d19d-0f46-449e-bd82-59f46cc9a19c",
+ "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.97,
+ "heightmax":44.12,
+ "elevmin":17.71,
+ "elevmax":24.21,
+ "bldgarea":7957.09,
+ "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_2":90411,
+ "Shape_Le_1":0.000712251512464,
+ "Shape_Ar_1":1.61053223978e-08,
+ "OBJECTID_3":90411,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90410,
+ "g_objectid":"939552",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1180943",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004045037320000000",
+ "g_sup_tota":"284.8",
+ "g_geometry":"0.00081749",
+ "g_geomet_1":"3.19938e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000712251512464,
+ "Shape_Area":1.61053223978e-08,
+ "Shape_Le_3":0.000712251299775,
+ "Shape_Ar_2":1.61053223978e-08,
+ "building_height":21.575
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1946,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55626670226835,
+ 45.513561596440816
+ ],
+ [
+ -73.55639781353011,
+ 45.513621056017215
+ ],
+ [
+ -73.55658697423132,
+ 45.51342149375723
+ ],
+ [
+ -73.55657416698607,
+ 45.51341574619003
+ ],
+ [
+ -73.55645545467733,
+ 45.51336246225812
+ ],
+ [
+ -73.55626670226835,
+ 45.513561596440816
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1946,
+ "ID_UEV":"01091586",
+ "CIVIQUE_DE":" 1073",
+ "CIVIQUE_FI":" 1075",
+ "NOM_RUE":"rue Berri (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":11,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-35-8907-8-000-0000",
+ "SUPERFICIE":369,
+ "SUPERFIC_1":480,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000837466648258,
+ "OBJECTID":90414,
+ "Join_Count":1,
+ "TARGET_FID":90414,
+ "feature_id":"17f7a9ea-9775-4a3e-a1ca-361b6150d397",
+ "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":50.18,
+ "elevmin":22.84,
+ "elevmax":25.32,
+ "bldgarea":2337.59,
+ "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_2":90414,
+ "Shape_Le_1":0.000837466648258,
+ "Shape_Ar_1":3.73722744151e-08,
+ "OBJECTID_3":90414,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90413,
+ "g_objectid":"939628",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182006",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"11",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004135890780000000",
+ "g_sup_tota":"368.8",
+ "g_geometry":"0.000912071",
+ "g_geomet_1":"4.2465e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000837466648258,
+ "Shape_Area":3.73722744151e-08,
+ "Shape_Le_3":0.00083746640837,
+ "Shape_Ar_2":3.73722744151e-08,
+ "building_height":24.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1947,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55552986073633,
+ 45.50773665877008
+ ],
+ [
+ -73.55560798484247,
+ 45.50776734453761
+ ],
+ [
+ -73.55569880197997,
+ 45.50765222052385
+ ],
+ [
+ -73.55570966399165,
+ 45.50765645812933
+ ],
+ [
+ -73.55575095726272,
+ 45.50760874190021
+ ],
+ [
+ -73.55578035070447,
+ 45.5075714811892
+ ],
+ [
+ -73.55577096627891,
+ 45.50756764468135
+ ],
+ [
+ -73.55577307608844,
+ 45.50756511848572
+ ],
+ [
+ -73.55576882229516,
+ 45.50756346013587
+ ],
+ [
+ -73.55585760606552,
+ 45.50745091357909
+ ],
+ [
+ -73.55577806642647,
+ 45.50741804515695
+ ],
+ [
+ -73.55579167137039,
+ 45.507401980567245
+ ],
+ [
+ -73.55576654431242,
+ 45.507390223730134
+ ],
+ [
+ -73.55575076570712,
+ 45.507410345161595
+ ],
+ [
+ -73.55563446627944,
+ 45.507364844861996
+ ],
+ [
+ -73.55554516629823,
+ 45.507477844677084
+ ],
+ [
+ -73.5555330659201,
+ 45.50747304499532
+ ],
+ [
+ -73.55553026633058,
+ 45.50747704517978
+ ],
+ [
+ -73.55541754170802,
+ 45.50763619010838
+ ],
+ [
+ -73.55541836368837,
+ 45.507636517461606
+ ],
+ [
+ -73.55540803677333,
+ 45.50764960799331
+ ],
+ [
+ -73.55539816581455,
+ 45.50766354478706
+ ],
+ [
+ -73.55539728627758,
+ 45.50766323721892
+ ],
+ [
+ -73.55538921756019,
+ 45.50767346610787
+ ],
+ [
+ -73.55543912094052,
+ 45.507692930134915
+ ],
+ [
+ -73.5554339597313,
+ 45.50769947180348
+ ],
+ [
+ -73.55552986073633,
+ 45.50773665877008
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1947,
+ "ID_UEV":"01097611",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Notre-Dame Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-48-7333-3-000-0000",
+ "SUPERFICIE":2890,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00136975884379,
+ "OBJECTID":90418,
+ "Join_Count":1,
+ "TARGET_FID":90418,
+ "feature_id":"9a660b3e-2a72-462c-93a4-ded2575dfb4a",
+ "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.93,
+ "heightmax":55.51,
+ "elevmin":21.57,
+ "elevmax":27,
+ "bldgarea":3671.08,
+ "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_2":90418,
+ "Shape_Le_1":0.00136975884379,
+ "Shape_Ar_1":9.52737799676e-08,
+ "OBJECTID_3":90418,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90417,
+ "g_objectid":"938458",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1180961",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6712",
+ "g_nb_logem":" ",
+ "g_nb_locau":"8",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004047158720000000",
+ "g_sup_tota":"12337.9",
+ "g_geometry":"0.00492592",
+ "g_geomet_1":"1.42079e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00136975884379,
+ "Shape_Area":9.52737799676e-08,
+ "Shape_Le_3":0.00136975611526,
+ "Shape_Ar_2":9.52737799676e-08,
+ "building_height":27.29
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1948,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5618137719099,
+ 45.51396801266395
+ ],
+ [
+ -73.56195342673111,
+ 45.51403080872514
+ ],
+ [
+ -73.56204947972155,
+ 45.51407400316301
+ ],
+ [
+ -73.56205015511242,
+ 45.514073236940625
+ ],
+ [
+ -73.56203496916034,
+ 45.51406664580935
+ ],
+ [
+ -73.56227516908562,
+ 45.51379334543684
+ ],
+ [
+ -73.56229076692719,
+ 45.51380016319727
+ ],
+ [
+ -73.5623675312584,
+ 45.51371303687745
+ ],
+ [
+ -73.5623836686932,
+ 45.51369104575545
+ ],
+ [
+ -73.56255516940739,
+ 45.5134569459316
+ ],
+ [
+ -73.56253146867418,
+ 45.51344834571488
+ ],
+ [
+ -73.56254006889091,
+ 45.513436746259124
+ ],
+ [
+ -73.56253706875256,
+ 45.5134353460147
+ ],
+ [
+ -73.56208646793799,
+ 45.5132303455543
+ ],
+ [
+ -73.56196156829358,
+ 45.51336614588122
+ ],
+ [
+ -73.56189106774043,
+ 45.51344264581175
+ ],
+ [
+ -73.56189806806323,
+ 45.513445745774845
+ ],
+ [
+ -73.56206746796113,
+ 45.51352474582066
+ ],
+ [
+ -73.56201676778146,
+ 45.51357854596342
+ ],
+ [
+ -73.56198516830273,
+ 45.51356384564526
+ ],
+ [
+ -73.56198056827046,
+ 45.513568746051085
+ ],
+ [
+ -73.56193646821528,
+ 45.51361654591715
+ ],
+ [
+ -73.56199706813203,
+ 45.51364414611075
+ ],
+ [
+ -73.56195086815988,
+ 45.513694145718546
+ ],
+ [
+ -73.5619314679847,
+ 45.51368524602758
+ ],
+ [
+ -73.56188096835385,
+ 45.513662146041504
+ ],
+ [
+ -73.56189226833536,
+ 45.51364994583862
+ ],
+ [
+ -73.56188756847834,
+ 45.513647646272155
+ ],
+ [
+ -73.56175306857111,
+ 45.513582845622125
+ ],
+ [
+ -73.56175266837279,
+ 45.513582645972626
+ ],
+ [
+ -73.56174156804077,
+ 45.51359334610633
+ ],
+ [
+ -73.56155786802303,
+ 45.513499545917604
+ ],
+ [
+ -73.5614237683141,
+ 45.51343104545668
+ ],
+ [
+ -73.56137576789921,
+ 45.5134065461255
+ ],
+ [
+ -73.56137556824972,
+ 45.5134065461255
+ ],
+ [
+ -73.56136296784854,
+ 45.51342214576571
+ ],
+ [
+ -73.56133696844817,
+ 45.513411746005566
+ ],
+ [
+ -73.5613506678209,
+ 45.513394646296184
+ ],
+ [
+ -73.56136296784854,
+ 45.51337964560446
+ ],
+ [
+ -73.56138386809289,
+ 45.51335564629633
+ ],
+ [
+ -73.56146746817096,
+ 45.513259545641816
+ ],
+ [
+ -73.56165576822097,
+ 45.51304294572566
+ ],
+ [
+ -73.56142506783446,
+ 45.51294384583211
+ ],
+ [
+ -73.56137666812059,
+ 45.51292304541251
+ ],
+ [
+ -73.56135336848502,
+ 45.51291344604899
+ ],
+ [
+ -73.56116766837503,
+ 45.513135745868276
+ ],
+ [
+ -73.56115136816295,
+ 45.51315514604345
+ ],
+ [
+ -73.56116136772478,
+ 45.51315964625097
+ ],
+ [
+ -73.56108376792339,
+ 45.513243445978546
+ ],
+ [
+ -73.56105716777591,
+ 45.513272046218255
+ ],
+ [
+ -73.5606462972107,
+ 45.51371411786254
+ ],
+ [
+ -73.56090961870578,
+ 45.51383393993468
+ ],
+ [
+ -73.56119596824118,
+ 45.51352584569152
+ ],
+ [
+ -73.56119626771543,
+ 45.51352554621728
+ ],
+ [
+ -73.5612420683886,
+ 45.5135450462172
+ ],
+ [
+ -73.56115756808914,
+ 45.513643245889384
+ ],
+ [
+ -73.56115386827824,
+ 45.51364734589859
+ ],
+ [
+ -73.56127856827315,
+ 45.51370394563088
+ ],
+ [
+ -73.56132026803779,
+ 45.51365854605535
+ ],
+ [
+ -73.56141456824957,
+ 45.51370134569085
+ ],
+ [
+ -73.5615696680276,
+ 45.51377174551993
+ ],
+ [
+ -73.56152956815689,
+ 45.513815345552054
+ ],
+ [
+ -73.56152956815689,
+ 45.51381544627612
+ ],
+ [
+ -73.5616540685023,
+ 45.513877345713226
+ ],
+ [
+ -73.56165486799961,
+ 45.51387774591154
+ ],
+ [
+ -73.56166206797191,
+ 45.51386994609143
+ ],
+ [
+ -73.5618275684094,
+ 45.51394644602196
+ ],
+ [
+ -73.56180928878949,
+ 45.51396600088053
+ ],
+ [
+ -73.5618137719099,
+ 45.51396801266395
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1948,
+ "ID_UEV":"01117077",
+ "CIVIQUE_DE":" 311",
+ "CIVIQUE_FI":" 375",
+ "NOM_RUE":"rue Sainte-Catherine Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Universit\u00c3\u00a9",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-95-8309-3-000-0000",
+ "SUPERFICIE":10044,
+ "SUPERFIC_1":41698,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00684048703974,
+ "OBJECTID":90433,
+ "Join_Count":1,
+ "TARGET_FID":90433,
+ "feature_id":"51d0fffa-7e6c-4971-baa4-a6705f66b2be",
+ "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":59.1,
+ "elevmin":24.26,
+ "elevmax":28.1,
+ "bldgarea":7609.41,
+ "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_2":90433,
+ "Shape_Le_1":0.00684048703974,
+ "Shape_Ar_1":8.18768003005e-07,
+ "OBJECTID_3":90433,
+ "Join_Cou_1":6,
+ "TARGET_F_1":90432,
+ "g_objectid":"945507",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"2161752",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994195678150000000",
+ "g_sup_tota":"665.7",
+ "g_geometry":"0.00114152",
+ "g_geomet_1":"7.73491e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00684048703974,
+ "Shape_Area":8.18768003005e-07,
+ "Shape_Le_3":0.00684048753909,
+ "Shape_Ar_2":8.18768003005e-07,
+ "building_height":29.3
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1949,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5636779442036,
+ 45.51968048561621
+ ],
+ [
+ -73.56364966951848,
+ 45.51966964698691
+ ],
+ [
+ -73.5637051693799,
+ 45.51959824711171
+ ],
+ [
+ -73.56370526920466,
+ 45.51959814728696
+ ],
+ [
+ -73.56366426911258,
+ 45.51957624699649
+ ],
+ [
+ -73.56362576913578,
+ 45.519555647125706
+ ],
+ [
+ -73.56361816896516,
+ 45.519562546724444
+ ],
+ [
+ -73.56352656941749,
+ 45.51951314696446
+ ],
+ [
+ -73.56352646869342,
+ 45.5195132467892
+ ],
+ [
+ -73.56347486919171,
+ 45.51950204663244
+ ],
+ [
+ -73.56347646908563,
+ 45.51950264648025
+ ],
+ [
+ -73.56338233704706,
+ 45.519629449989424
+ ],
+ [
+ -73.5633727439788,
+ 45.519646009206255
+ ],
+ [
+ -73.5635339573481,
+ 45.519719233805894
+ ],
+ [
+ -73.56358146943111,
+ 45.519736646479345
+ ],
+ [
+ -73.56361516882683,
+ 45.51970364675619
+ ],
+ [
+ -73.56364338145873,
+ 45.51971786863503
+ ],
+ [
+ -73.5636779442036,
+ 45.51968048561621
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1949,
+ "ID_UEV":"01117081",
+ "CIVIQUE_DE":" 923",
+ "CIVIQUE_FI":" 933",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":18,
+ "ANNEE_CONS":1993,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-81-3390-6-000-0000",
+ "SUPERFICIE":506,
+ "SUPERFIC_1":1167,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000914391547613,
+ "OBJECTID":90434,
+ "Join_Count":1,
+ "TARGET_FID":90434,
+ "feature_id":"eeaf62a2-8d65-44ee-a62a-c8022a269689",
+ "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.25,
+ "heightmax":14.35,
+ "elevmin":24.9,
+ "elevmax":31.11,
+ "bldgarea":2317,
+ "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_2":90434,
+ "Shape_Le_1":0.000914391547613,
+ "Shape_Ar_1":4.50531472565e-08,
+ "OBJECTID_3":90434,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90433,
+ "g_objectid":"943241",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161577",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994281209940000000",
+ "g_sup_tota":"219.6",
+ "g_geometry":"0.000680341",
+ "g_geomet_1":"2.52812e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000914391547613,
+ "Shape_Area":4.50531472565e-08,
+ "Shape_Le_3":0.000914390468366,
+ "Shape_Ar_2":4.50531472565e-08,
+ "building_height":6.55
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1950,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55106114387853,
+ 45.52105786657758
+ ],
+ [
+ -73.55100636527338,
+ 45.5210327476135
+ ],
+ [
+ -73.55100316548554,
+ 45.52103614795016
+ ],
+ [
+ -73.55087486550448,
+ 45.52117334762219
+ ],
+ [
+ -73.55087826494182,
+ 45.52117494751611
+ ],
+ [
+ -73.55092966479404,
+ 45.52119604740996
+ ],
+ [
+ -73.55095506524592,
+ 45.521165547802084
+ ],
+ [
+ -73.55096026512598,
+ 45.5211676899872
+ ],
+ [
+ -73.55106114387853,
+ 45.52105786657758
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1950,
+ "ID_UEV":"01097398",
+ "CIVIQUE_DE":" 1177",
+ "CIVIQUE_FI":" 1181",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-83-1857-0-000-0000",
+ "SUPERFICIE":181,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000506533236412,
+ "OBJECTID":90435,
+ "Join_Count":1,
+ "TARGET_FID":90435,
+ "feature_id":"51cb76dd-fad4-47d5-ac66-51d7f00801f3",
+ "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.51,
+ "heightmax":14.26,
+ "elevmin":17.25,
+ "elevmax":21.23,
+ "bldgarea":1111.21,
+ "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_2":90435,
+ "Shape_Le_1":0.000506533236412,
+ "Shape_Ar_1":1.09310691594e-08,
+ "OBJECTID_3":90435,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90434,
+ "g_objectid":"942298",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567818",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004283146030000000",
+ "g_sup_tota":"180.4",
+ "g_geometry":"0.000770859",
+ "g_geomet_1":"2.07811e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000506533236412,
+ "Shape_Area":1.09310691594e-08,
+ "Shape_Le_3":0.000506532060263,
+ "Shape_Ar_2":1.09310691594e-08,
+ "building_height":5.875
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1951,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55182138487086,
+ 45.509898817826475
+ ],
+ [
+ -73.55199088729147,
+ 45.50993582313003
+ ],
+ [
+ -73.55209521134677,
+ 45.50970744928965
+ ],
+ [
+ -73.55202318284546,
+ 45.509687759532774
+ ],
+ [
+ -73.55201986524644,
+ 45.509693346121324
+ ],
+ [
+ -73.55192786550043,
+ 45.509666345775535
+ ],
+ [
+ -73.55192758131467,
+ 45.509666822416214
+ ],
+ [
+ -73.55182138487086,
+ 45.509898817826475
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1951,
+ "ID_UEV":"01091466",
+ "CIVIQUE_DE":" 416",
+ "CIVIQUE_FI":" 420",
+ "NOM_RUE":"rue de Bonsecours (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-70-3998-9-000-0000",
+ "SUPERFICIE":376,
+ "SUPERFIC_1":780,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000857316949441,
+ "OBJECTID":90447,
+ "Join_Count":1,
+ "TARGET_FID":90447,
+ "feature_id":"ed79ca9f-38c1-4cc5-8967-46999276e73b",
+ "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":45.67,
+ "elevmin":19.48,
+ "elevmax":27.5,
+ "bldgarea":6028.92,
+ "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_2":90447,
+ "Shape_Le_1":0.000857316949441,
+ "Shape_Ar_1":4.2798153852e-08,
+ "OBJECTID_3":90447,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90446,
+ "g_objectid":"939612",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181909",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004170417380000000",
+ "g_sup_tota":"858.3",
+ "g_geometry":"0.00144978",
+ "g_geomet_1":"9.80683e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000857316949441,
+ "Shape_Area":4.2798153852e-08,
+ "Shape_Le_3":0.000857318485221,
+ "Shape_Ar_2":4.2798153852e-08,
+ "building_height":22.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1952,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55496204678288,
+ 45.503451777727655
+ ],
+ [
+ -73.55492454505355,
+ 45.503523082274725
+ ],
+ [
+ -73.55512400928744,
+ 45.50357681406901
+ ],
+ [
+ -73.55516094354455,
+ 45.50350583147924
+ ],
+ [
+ -73.55516172955203,
+ 45.50350422169277
+ ],
+ [
+ -73.55496204678288,
+ 45.503451777727655
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1952,
+ "ID_UEV":"01090899",
+ "CIVIQUE_DE":" 149",
+ "CIVIQUE_FI":" 151",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1876,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-44-9800-8-000-0000",
+ "SUPERFICIE":148,
+ "SUPERFIC_1":440,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00057540080813,
+ "OBJECTID":90457,
+ "Join_Count":1,
+ "TARGET_FID":90457,
+ "feature_id":"386de4e9-2498-495d-8398-6698890475b0",
+ "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.95,
+ "heightmax":65.47,
+ "elevmin":13.64,
+ "elevmax":23.85,
+ "bldgarea":22559.06,
+ "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_2":90457,
+ "Shape_Le_1":0.00057540080813,
+ "Shape_Ar_1":1.6357406916e-08,
+ "OBJECTID_3":90457,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90456,
+ "g_objectid":"939567",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181086",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004044980080000000",
+ "g_sup_tota":"148.3",
+ "g_geometry":"0.000583645",
+ "g_geomet_1":"1.66836e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00057540080813,
+ "Shape_Area":1.6357406916e-08,
+ "Shape_Le_3":0.000575402526961,
+ "Shape_Ar_2":1.6357406916e-08,
+ "building_height":32.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1953,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55184501545695,
+ 45.50798129145373
+ ],
+ [
+ -73.5517855828602,
+ 45.50808556694565
+ ],
+ [
+ -73.55211350445651,
+ 45.50816196615211
+ ],
+ [
+ -73.55216025391444,
+ 45.50807717447232
+ ],
+ [
+ -73.55184501545695,
+ 45.50798129145373
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1953,
+ "ID_UEV":"01090814",
+ "CIVIQUE_DE":" 266",
+ "CIVIQUE_FI":" 272",
+ "NOM_RUE":"rue Saint-Paul Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1850,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-79-3807-5-000-0000",
+ "SUPERFICIE":310,
+ "SUPERFIC_1":1264,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000883049123393,
+ "OBJECTID":90458,
+ "Join_Count":1,
+ "TARGET_FID":90458,
+ "feature_id":"2e042070-9c9b-42c6-99c3-6821f20f9793",
+ "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":10.11,
+ "heightmax":21.46,
+ "elevmin":13.38,
+ "elevmax":17.64,
+ "bldgarea":1337.92,
+ "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_2":90458,
+ "Shape_Le_1":0.000883049123393,
+ "Shape_Ar_1":3.497323397e-08,
+ "OBJECTID_3":90458,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90457,
+ "g_objectid":"939608",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181904",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"7",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004078349690000000",
+ "g_sup_tota":"335.7",
+ "g_geometry":"0.000916637",
+ "g_geomet_1":"3.894e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000883049123393,
+ "Shape_Area":3.497323397e-08,
+ "Shape_Le_3":0.00088305029383,
+ "Shape_Ar_2":3.497323397e-08,
+ "building_height":5.675000000000001
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1954,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55130333580215,
+ 45.50966810844674
+ ],
+ [
+ -73.55132416500005,
+ 45.50964474585863
+ ],
+ [
+ -73.55133606482937,
+ 45.5096499457387
+ ],
+ [
+ -73.55133636520294,
+ 45.50964924606615
+ ],
+ [
+ -73.55139636527188,
+ 45.509523645849875
+ ],
+ [
+ -73.55139656492138,
+ 45.50952324565156
+ ],
+ [
+ -73.55137956503674,
+ 45.50951934619117
+ ],
+ [
+ -73.55157646530347,
+ 45.50909924588379
+ ],
+ [
+ -73.55159346518812,
+ 45.50906274599922
+ ],
+ [
+ -73.55162666546009,
+ 45.50907044599458
+ ],
+ [
+ -73.55162676528484,
+ 45.509070346169835
+ ],
+ [
+ -73.55170326521537,
+ 45.5089051461059
+ ],
+ [
+ -73.55170516548284,
+ 45.50890094627195
+ ],
+ [
+ -73.55167266488343,
+ 45.508893445926084
+ ],
+ [
+ -73.55188526551444,
+ 45.50843634571108
+ ],
+ [
+ -73.551903865293,
+ 45.508440545545035
+ ],
+ [
+ -73.55190406494249,
+ 45.5084402460708
+ ],
+ [
+ -73.55196256494226,
+ 45.508314745679264
+ ],
+ [
+ -73.55194026535281,
+ 45.50830954579919
+ ],
+ [
+ -73.55195466529742,
+ 45.50827844454488
+ ],
+ [
+ -73.55195446474859,
+ 45.50827844454488
+ ],
+ [
+ -73.55171666511384,
+ 45.50822434492787
+ ],
+ [
+ -73.5517165652891,
+ 45.50822434492787
+ ],
+ [
+ -73.55169966522921,
+ 45.50825624567949
+ ],
+ [
+ -73.55168006540454,
+ 45.508251145624165
+ ],
+ [
+ -73.55167996468047,
+ 45.50825144599773
+ ],
+ [
+ -73.55162156540476,
+ 45.50837854628318
+ ],
+ [
+ -73.5516214646807,
+ 45.508378945582166
+ ],
+ [
+ -73.55163736469447,
+ 45.50838254556832
+ ],
+ [
+ -73.5515607649392,
+ 45.50855104614416
+ ],
+ [
+ -73.55154066509147,
+ 45.50854654593664
+ ],
+ [
+ -73.55154056526672,
+ 45.50854684541088
+ ],
+ [
+ -73.5514905647596,
+ 45.50866344611144
+ ],
+ [
+ -73.5515047650547,
+ 45.50866644624979
+ ],
+ [
+ -73.55142746472757,
+ 45.50884784580174
+ ],
+ [
+ -73.55136066488463,
+ 45.5088337462307
+ ],
+ [
+ -73.55135836531815,
+ 45.50883334603239
+ ],
+ [
+ -73.55134916525361,
+ 45.5088561456449
+ ],
+ [
+ -73.5512985648987,
+ 45.5089825462578
+ ],
+ [
+ -73.5512985648987,
+ 45.50898264608254
+ ],
+ [
+ -73.55134826503225,
+ 45.508993846239306
+ ],
+ [
+ -73.55126716506946,
+ 45.509170845408484
+ ],
+ [
+ -73.5512532651479,
+ 45.50916764562064
+ ],
+ [
+ -73.5512528649496,
+ 45.50916834619252
+ ],
+ [
+ -73.55119336490371,
+ 45.50928424542188
+ ],
+ [
+ -73.55119326507896,
+ 45.5092844459707
+ ],
+ [
+ -73.55121606469147,
+ 45.50929064589688
+ ],
+ [
+ -73.55112836370486,
+ 45.50944994550888
+ ],
+ [
+ -73.55112196412918,
+ 45.50946154586394
+ ],
+ [
+ -73.55105766440154,
+ 45.50957894606181
+ ],
+ [
+ -73.55105626415711,
+ 45.509581645826586
+ ],
+ [
+ -73.55107886412013,
+ 45.50958644550835
+ ],
+ [
+ -73.5510683915149,
+ 45.50961095473207
+ ],
+ [
+ -73.55107044017052,
+ 45.509611466446316
+ ],
+ [
+ -73.55130333580215,
+ 45.50966810844674
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1954,
+ "ID_UEV":"01090815",
+ "CIVIQUE_DE":" 363",
+ "CIVIQUE_FI":" 363",
+ "NOM_RUE":"rue de la Commune Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Mus\u00c3\u00a9e",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-70-7608-0-000-0000",
+ "SUPERFICIE":5012,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00395161940677,
+ "OBJECTID":90459,
+ "Join_Count":1,
+ "TARGET_FID":90459,
+ "feature_id":"9f6e967e-c30c-4246-98a7-e482663d715c",
+ "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":69.35,
+ "elevmin":13.57,
+ "elevmax":20.27,
+ "bldgarea":3569.36,
+ "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_2":90459,
+ "Shape_Le_1":0.00395161940677,
+ "Shape_Ar_1":4.08826135708e-07,
+ "OBJECTID_3":90459,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90458,
+ "g_objectid":"938611",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Parc et r\u00c3\u00a9cr\u00c3\u00a9ation",
+ "g_no_lot":"1181906",
+ "g_nb_poly_":"1",
+ "g_utilisat":"7112",
+ "g_nb_logem":" ",
+ "g_nb_locau":"7",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004170760800000000",
+ "g_sup_tota":"5011.6",
+ "g_geometry":"0.0038396",
+ "g_geomet_1":"5.77143e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00395161940677,
+ "Shape_Area":4.08826135708e-07,
+ "Shape_Le_3":0.0039516174448,
+ "Shape_Ar_2":4.08826135708e-07,
+ "building_height":34.425
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1955,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55656182738826,
+ 45.5190693756015
+ ],
+ [
+ -73.55657146722127,
+ 45.51907434705377
+ ],
+ [
+ -73.55664831249148,
+ 45.51911378952006
+ ],
+ [
+ -73.55669766188943,
+ 45.519136304047485
+ ],
+ [
+ -73.55686469387237,
+ 45.51895827875186
+ ],
+ [
+ -73.55672528726404,
+ 45.518895156236766
+ ],
+ [
+ -73.55657601779083,
+ 45.519054249904
+ ],
+ [
+ -73.55656182738826,
+ 45.5190693756015
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1955,
+ "ID_UEV":"01116645",
+ "CIVIQUE_DE":" 1444",
+ "CIVIQUE_FI":" 1446",
+ "NOM_RUE":"rue Beaudry (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1914,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-31-6923-4-000-0000",
+ "SUPERFICIE":307,
+ "SUPERFIC_1":571,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000787510786466,
+ "OBJECTID":90460,
+ "Join_Count":1,
+ "TARGET_FID":90460,
+ "feature_id":"436fd987-b39d-4f24-a78c-6652f18bc34a",
+ "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.47,
+ "heightmax":16.7,
+ "elevmin":21.78,
+ "elevmax":26.69,
+ "bldgarea":4869.88,
+ "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_2":90460,
+ "Shape_Le_1":0.000787510786466,
+ "Shape_Ar_1":3.51066651068e-08,
+ "OBJECTID_3":90460,
+ "Join_Cou_1":10,
+ "TARGET_F_1":90459,
+ "g_objectid":"944759",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"Multiple",
+ "g_nb_poly_":"2",
+ "g_utilisat":"1511",
+ "g_nb_logem":"1",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004231451190000000",
+ "g_sup_tota":"302",
+ "g_geometry":"0.000778767",
+ "g_geomet_1":"3.4297e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000787510786466,
+ "Shape_Area":3.51066651068e-08,
+ "Shape_Le_3":0.000787509612064,
+ "Shape_Ar_2":3.51066651068e-08,
+ "building_height":7.114999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1956,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55555576930516,
+ 45.505507523603626
+ ],
+ [
+ -73.555824767321,
+ 45.50561415172202
+ ],
+ [
+ -73.55595802076789,
+ 45.50566431140914
+ ],
+ [
+ -73.556027940359,
+ 45.50557657175168
+ ],
+ [
+ -73.55569749886233,
+ 45.50544706128315
+ ],
+ [
+ -73.55568249906992,
+ 45.50544118151561
+ ],
+ [
+ -73.55564346579516,
+ 45.505487045141315
+ ],
+ [
+ -73.55561926593822,
+ 45.50547684503067
+ ],
+ [
+ -73.55565286640851,
+ 45.5054370446342
+ ],
+ [
+ -73.55562826635325,
+ 45.50542684452355
+ ],
+ [
+ -73.555632616374,
+ 45.505421630254325
+ ],
+ [
+ -73.55562707924815,
+ 45.50541946019023
+ ],
+ [
+ -73.55560830500112,
+ 45.50544125256205
+ ],
+ [
+ -73.5555523734651,
+ 45.50550617821784
+ ],
+ [
+ -73.55555576930516,
+ 45.505507523603626
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1956,
+ "ID_UEV":"01091104",
+ "CIVIQUE_DE":" 38",
+ "CIVIQUE_FI":" 42",
+ "NOM_RUE":"rue Notre-Dame Ouest (MTL+MTO)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-46-4026-0-000-0000",
+ "SUPERFICIE":412,
+ "SUPERFIC_1":1706,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00121101395287,
+ "OBJECTID":90464,
+ "Join_Count":1,
+ "TARGET_FID":90464,
+ "feature_id":"e9c8d19d-0f46-449e-bd82-59f46cc9a19c",
+ "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.97,
+ "heightmax":44.12,
+ "elevmin":17.71,
+ "elevmax":24.21,
+ "bldgarea":7957.09,
+ "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_2":90464,
+ "Shape_Le_1":0.00121101395287,
+ "Shape_Ar_1":4.52496938208e-08,
+ "OBJECTID_3":90464,
+ "Join_Cou_1":6,
+ "TARGET_F_1":90463,
+ "g_objectid":"939572",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1181217",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":"2",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004046453920000000",
+ "g_sup_tota":"397.6",
+ "g_geometry":"0.00112651",
+ "g_geomet_1":"4.67324e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00121101395287,
+ "Shape_Area":4.52496938208e-08,
+ "Shape_Le_3":0.00121101420169,
+ "Shape_Ar_2":4.52496938208e-08,
+ "building_height":21.575
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1957,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55339243213687,
+ 45.511887687417136
+ ],
+ [
+ -73.55350475746043,
+ 45.511915390133446
+ ],
+ [
+ -73.5536994193146,
+ 45.51195652152654
+ ],
+ [
+ -73.55375316639736,
+ 45.511848745873216
+ ],
+ [
+ -73.55375456574247,
+ 45.51184594628369
+ ],
+ [
+ -73.55354456505148,
+ 45.511797045647434
+ ],
+ [
+ -73.55354436540199,
+ 45.51179754567049
+ ],
+ [
+ -73.55350266473803,
+ 45.511851345813255
+ ],
+ [
+ -73.5534500651902,
+ 45.511831245965524
+ ],
+ [
+ -73.55346226539308,
+ 45.51181564542599
+ ],
+ [
+ -73.55345275506244,
+ 45.511811960903565
+ ],
+ [
+ -73.55344668823592,
+ 45.511818516961284
+ ],
+ [
+ -73.55345043750953,
+ 45.51182007009046
+ ],
+ [
+ -73.55339243213687,
+ 45.511887687417136
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55361565825787,
+ 45.51174389301654
+ ],
+ [
+ -73.55360896640252,
+ 45.51175224591971
+ ],
+ [
+ -73.55379030929718,
+ 45.51182410984509
+ ],
+ [
+ -73.55361565825787,
+ 45.51174389301654
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1957,
+ "ID_UEV":"01091246",
+ "CIVIQUE_DE":" 480",
+ "CIVIQUE_FI":" 480",
+ "NOM_RUE":"rue Saint-Antoine Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":26,
+ "ANNEE_CONS":1987,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-63-1224-7-000-0000",
+ "SUPERFICIE":500,
+ "SUPERFIC_1":901,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0013087916849,
+ "OBJECTID":90468,
+ "Join_Count":1,
+ "TARGET_FID":90468,
+ "feature_id":"c52c0295-0b26-4802-9a80-d342271c1d21",
+ "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":33.73,
+ "elevmin":15.97,
+ "elevmax":19.97,
+ "bldgarea":2029.77,
+ "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_2":90468,
+ "Shape_Le_1":0.0013087916849,
+ "Shape_Ar_1":3.3755411376e-08,
+ "OBJECTID_3":90468,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90467,
+ "g_objectid":"939643",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182105",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"26",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004163122470000000",
+ "g_sup_tota":"499.6",
+ "g_geometry":"0.00102319",
+ "g_geomet_1":"5.76612e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0013087916849,
+ "Shape_Area":3.3755411376e-08,
+ "Shape_Le_3":0.00130879106331,
+ "Shape_Ar_2":3.3755411376e-08,
+ "building_height":16.615
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1958,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55450761215842,
+ 45.50825726641001
+ ],
+ [
+ -73.55488257819027,
+ 45.50840337656487
+ ],
+ [
+ -73.55494443985586,
+ 45.50833965779926
+ ],
+ [
+ -73.55498406578386,
+ 45.50828384497376
+ ],
+ [
+ -73.55498076617127,
+ 45.508282745102896
+ ],
+ [
+ -73.55491236643441,
+ 45.50825624478017
+ ],
+ [
+ -73.55501966634637,
+ 45.50812004515426
+ ],
+ [
+ -73.55506016641539,
+ 45.50813584444396
+ ],
+ [
+ -73.55506836643382,
+ 45.508124544462454
+ ],
+ [
+ -73.55511576610157,
+ 45.50814154524641
+ ],
+ [
+ -73.55512046595858,
+ 45.50814334478982
+ ],
+ [
+ -73.55524736569521,
+ 45.50797594498417
+ ],
+ [
+ -73.55525076603188,
+ 45.507971544601396
+ ],
+ [
+ -73.55520776584756,
+ 45.50795594496119
+ ],
+ [
+ -73.55522056589824,
+ 45.5079390449013
+ ],
+ [
+ -73.55517486594916,
+ 45.50792194519191
+ ],
+ [
+ -73.55527586611018,
+ 45.50778844443146
+ ],
+ [
+ -73.55534986592542,
+ 45.50781624517387
+ ],
+ [
+ -73.55535536617906,
+ 45.50781834509085
+ ],
+ [
+ -73.55543896625713,
+ 45.50771064498058
+ ],
+ [
+ -73.5555235897637,
+ 45.50774311770102
+ ],
+ [
+ -73.55552986073633,
+ 45.50773665877008
+ ],
+ [
+ -73.5554339597313,
+ 45.50769947180348
+ ],
+ [
+ -73.55543912094052,
+ 45.507692930134915
+ ],
+ [
+ -73.55538921756019,
+ 45.50767346610787
+ ],
+ [
+ -73.55539728627758,
+ 45.50766323721892
+ ],
+ [
+ -73.55506546612021,
+ 45.507547044810565
+ ],
+ [
+ -73.55505986604183,
+ 45.507545044718334
+ ],
+ [
+ -73.55497466606982,
+ 45.50766934451493
+ ],
+ [
+ -73.55497456624508,
+ 45.50766934451493
+ ],
+ [
+ -73.55501726605583,
+ 45.50768604492533
+ ],
+ [
+ -73.55501226582525,
+ 45.50769234467626
+ ],
+ [
+ -73.55490806587639,
+ 45.507825644887895
+ ],
+ [
+ -73.55484206643007,
+ 45.507800044786535
+ ],
+ [
+ -73.55468966641682,
+ 45.50798654529313
+ ],
+ [
+ -73.5546954661447,
+ 45.5079888448596
+ ],
+ [
+ -73.55475976587235,
+ 45.508013845113155
+ ],
+ [
+ -73.55465046586815,
+ 45.50815304487742
+ ],
+ [
+ -73.55460876610351,
+ 45.508136844490075
+ ],
+ [
+ -73.55460266600208,
+ 45.508134445098854
+ ],
+ [
+ -73.5545081661408,
+ 45.50825654515373
+ ],
+ [
+ -73.55450761215842,
+ 45.50825726641001
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55541754170802,
+ 45.50763619010838
+ ],
+ [
+ -73.55540803677333,
+ 45.50764960799331
+ ],
+ [
+ -73.55541836368837,
+ 45.507636517461606
+ ],
+ [
+ -73.55541754170802,
+ 45.50763619010838
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1958,
+ "ID_UEV":"01091142",
+ "CIVIQUE_DE":" 155",
+ "CIVIQUE_FI":" 155",
+ "NOM_RUE":"rue Notre-Dame Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-58-0686-0-000-0000",
+ "SUPERFICIE":5713,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00345605320218,
+ "OBJECTID":90471,
+ "Join_Count":1,
+ "TARGET_FID":90471,
+ "feature_id":"9a660b3e-2a72-462c-93a4-ded2575dfb4a",
+ "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.93,
+ "heightmax":55.51,
+ "elevmin":21.57,
+ "elevmax":27,
+ "bldgarea":3671.08,
+ "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_2":90471,
+ "Shape_Le_1":0.00345605320218,
+ "Shape_Ar_1":3.22694797603e-07,
+ "OBJECTID_3":90471,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90470,
+ "g_objectid":"944971",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1181247",
+ "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":"66023004058068600000000",
+ "g_sup_tota":"5712.7",
+ "g_geometry":"0.0033953",
+ "g_geomet_1":"6.56684e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00345605320218,
+ "Shape_Area":3.22694797603e-07,
+ "Shape_Le_3":0.00345604936105,
+ "Shape_Ar_2":3.22694797603e-07,
+ "building_height":27.29
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1959,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55736356579777,
+ 45.50425524463413
+ ],
+ [
+ -73.5573768658715,
+ 45.504271044823156
+ ],
+ [
+ -73.5574176663141,
+ 45.504320145108906
+ ],
+ [
+ -73.55746986656294,
+ 45.50438284494263
+ ],
+ [
+ -73.55747016603718,
+ 45.504383344965696
+ ],
+ [
+ -73.55748706609707,
+ 45.504396045191626
+ ],
+ [
+ -73.55762046613346,
+ 45.50449594458247
+ ],
+ [
+ -73.55772806641897,
+ 45.50457614522322
+ ],
+ [
+ -73.55772976613764,
+ 45.50457474497879
+ ],
+ [
+ -73.55787446615554,
+ 45.504439944697985
+ ],
+ [
+ -73.55795366585085,
+ 45.50436624525631
+ ],
+ [
+ -73.55772626597624,
+ 45.50424544472179
+ ],
+ [
+ -73.55769186600865,
+ 45.50422714441748
+ ],
+ [
+ -73.55774456628055,
+ 45.50417834450529
+ ],
+ [
+ -73.55776096631739,
+ 45.50418714527083
+ ],
+ [
+ -73.55777736635422,
+ 45.50417314462522
+ ],
+ [
+ -73.55786686598492,
+ 45.50422544469881
+ ],
+ [
+ -73.55786736600798,
+ 45.504225745072375
+ ],
+ [
+ -73.55790216617388,
+ 45.50418444460673
+ ],
+ [
+ -73.55790466628916,
+ 45.50418124481889
+ ],
+ [
+ -73.55765386605492,
+ 45.504084045192826
+ ],
+ [
+ -73.55760126650709,
+ 45.5041470445008
+ ],
+ [
+ -73.55768386653905,
+ 45.50418114499414
+ ],
+ [
+ -73.55767236600873,
+ 45.50419504491568
+ ],
+ [
+ -73.55765626634546,
+ 45.50418864444068
+ ],
+ [
+ -73.5576419662256,
+ 45.504206645270756
+ ],
+ [
+ -73.55761176609198,
+ 45.50419474454212
+ ],
+ [
+ -73.55745956572822,
+ 45.50413474447318
+ ],
+ [
+ -73.55736356579777,
+ 45.50425524463413
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55733576595468,
+ 45.50428814453254
+ ],
+ [
+ -73.55733636580248,
+ 45.504288745279666
+ ],
+ [
+ -73.55742616580675,
+ 45.50438464448605
+ ],
+ [
+ -73.55742956614341,
+ 45.50438834519627
+ ],
+ [
+ -73.55744176634629,
+ 45.50438264529314
+ ],
+ [
+ -73.55734966587623,
+ 45.50428484491995
+ ],
+ [
+ -73.55734596606533,
+ 45.504280944560236
+ ],
+ [
+ -73.55733576595468,
+ 45.50428814453254
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1959,
+ "ID_UEV":"01091272",
+ "CIVIQUE_DE":" 500",
+ "CIVIQUE_FI":" 500",
+ "NOM_RUE":"place d' Armes (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1968,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-24-9687-1-000-0000",
+ "SUPERFICIE":2820,
+ "SUPERFIC_1":45047,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00251939101797,
+ "OBJECTID":90472,
+ "Join_Count":2,
+ "TARGET_FID":90472,
+ "feature_id":"f717d5c0-45ff-4e7e-ba6e-f17ed063f37f",
+ "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":115.74,
+ "heightmax":119.95,
+ "elevmin":22.57,
+ "elevmax":22.71,
+ "bldgarea":15.16,
+ "comment":" ",
+ "OBJECTID_2":90472,
+ "Shape_Le_1":0.00251939101797,
+ "Shape_Ar_1":1.46616580008e-07,
+ "OBJECTID_3":90472,
+ "Join_Cou_1":1,
+ "TARGET_F_1":90471,
+ "g_objectid":"944955",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1180830",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"90",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004024968710000000",
+ "g_sup_tota":"2820.1",
+ "g_geometry":"0.00233147",
+ "g_geomet_1":"3.24692e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00251939101797,
+ "Shape_Area":1.46616580008e-07,
+ "Shape_Le_3":0.00251939574498,
+ "Shape_Ar_2":1.46616580008e-07,
+ "building_height":2.105000000000004
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1960,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55666234371404,
+ 45.50365853186605
+ ],
+ [
+ -73.5567478602474,
+ 45.50369802469438
+ ],
+ [
+ -73.55698482980789,
+ 45.503826805812736
+ ],
+ [
+ -73.55703731873912,
+ 45.50384890665202
+ ],
+ [
+ -73.55727154626669,
+ 45.50396139295422
+ ],
+ [
+ -73.5573180951758,
+ 45.503905943454825
+ ],
+ [
+ -73.55726936631005,
+ 45.50387984512904
+ ],
+ [
+ -73.55673398640619,
+ 45.50359298028211
+ ],
+ [
+ -73.55666234371404,
+ 45.50365853186605
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1960,
+ "ID_UEV":"01091273",
+ "CIVIQUE_DE":" 459",
+ "CIVIQUE_FI":" 477",
+ "NOM_RUE":"rue Saint-Fran\u00c3\u00a7ois-Xavier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1887,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Maison de chambres et pension",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-34-4629-7-000-0000",
+ "SUPERFICIE":513,
+ "SUPERFIC_1":2071,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0015128591617,
+ "OBJECTID":90473,
+ "Join_Count":1,
+ "TARGET_FID":90473,
+ "feature_id":"386de4e9-2498-495d-8398-6698890475b0",
+ "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.95,
+ "heightmax":65.47,
+ "elevmin":13.64,
+ "elevmax":23.85,
+ "bldgarea":22559.06,
+ "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_2":90473,
+ "Shape_Le_1":0.0015128591617,
+ "Shape_Ar_1":5.55226274432e-08,
+ "OBJECTID_3":90473,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90472,
+ "g_objectid":"944906",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel institutionnel",
+ "g_no_lot":"4030964",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1553",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004044034530000000",
+ "g_sup_tota":"10005.5",
+ "g_geometry":"0.00508265",
+ "g_geomet_1":"1.15164e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0015128591617,
+ "Shape_Area":5.55226274432e-08,
+ "Shape_Le_3":0.00151285968515,
+ "Shape_Ar_2":5.55226274432e-08,
+ "building_height":32.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1961,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56497541050864,
+ 45.514793903266316
+ ],
+ [
+ -73.56497417034353,
+ 45.51479684584805
+ ],
+ [
+ -73.56498834635694,
+ 45.5147997929264
+ ],
+ [
+ -73.56497541050864,
+ 45.514793903266316
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.5645473538991,
+ 45.51459898420605
+ ],
+ [
+ -73.56454556874485,
+ 45.51460164619931
+ ],
+ [
+ -73.56454566946891,
+ 45.514601746024056
+ ],
+ [
+ -73.56460274314392,
+ 45.51462420569283
+ ],
+ [
+ -73.56458957616985,
+ 45.514618209912754
+ ],
+ [
+ -73.5645473538991,
+ 45.51459898420605
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1961,
+ "ID_UEV":"01115394",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Espace de terrain non am\u00c3\u00a9nag\u00c3\u00a9 et non exploit\u00c3\u00a9 (sauf l'exploitation non commerciale de la for\u00c3\u00aat)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9941-76-3750-3-000-0000",
+ "SUPERFICIE":659,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000157428452119,
+ "OBJECTID":90475,
+ "Join_Count":1,
+ "TARGET_FID":90475,
+ "feature_id":"84e763e9-289e-4205-bdef-0a9c5e88cc85",
+ "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":14.95,
+ "elevmin":23.59,
+ "elevmax":25.72,
+ "bldgarea":1922.53,
+ "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_2":90475,
+ "Shape_Le_1":0.000157428452119,
+ "Shape_Ar_1":1.20658403411e-10,
+ "OBJECTID_3":90475,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90474,
+ "g_objectid":"943117",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2161352",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994176164400000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.0006508",
+ "g_geomet_1":"1.84538e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000157428452119,
+ "Shape_Area":1.20658403411e-10,
+ "Shape_Le_3":0.000157427937255,
+ "Shape_Ar_2":1.20658403411e-10,
+ "building_height":7.225
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1962,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55240265448076,
+ 45.53236307224828
+ ],
+ [
+ -73.55242486683598,
+ 45.532372050180264
+ ],
+ [
+ -73.55255336736586,
+ 45.53242404988029
+ ],
+ [
+ -73.55262766755466,
+ 45.53233334965466
+ ],
+ [
+ -73.55248836706633,
+ 45.53227705029593
+ ],
+ [
+ -73.5524797056957,
+ 45.53227338286062
+ ],
+ [
+ -73.55240265448076,
+ 45.53236307224828
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1962,
+ "ID_UEV":"01115396",
+ "CIVIQUE_DE":" 1957",
+ "CIVIQUE_FI":" 1963",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-76-0009-1-000-0000",
+ "SUPERFICIE":334,
+ "SUPERFIC_1":273,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0005577231468,
+ "OBJECTID":90476,
+ "Join_Count":1,
+ "TARGET_FID":90476,
+ "feature_id":"4e994e8e-10a7-4607-9b1a-da44749411b7",
+ "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.53,
+ "heightmax":30.99,
+ "elevmin":18.44,
+ "elevmax":23,
+ "bldgarea":2032.43,
+ "comment":" ",
+ "OBJECTID_2":90476,
+ "Shape_Le_1":0.0005577231468,
+ "Shape_Ar_1":1.80333920537e-08,
+ "OBJECTID_3":90476,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90475,
+ "g_objectid":"941218",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425170",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004376000910000000",
+ "g_sup_tota":"333.7",
+ "g_geometry":"0.000819983",
+ "g_geomet_1":"3.83362e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0005577231468,
+ "Shape_Area":1.80333920537e-08,
+ "Shape_Le_3":0.000557723702375,
+ "Shape_Ar_2":1.80333920537e-08,
+ "building_height":14.229999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1963,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.54769892049063,
+ 45.529461209117805
+ ],
+ [
+ -73.54783441504806,
+ 45.529515163044636
+ ],
+ [
+ -73.54786656491189,
+ 45.52947944916754
+ ],
+ [
+ -73.5477401651983,
+ 45.52942324873424
+ ],
+ [
+ -73.54769892049063,
+ 45.529461209117805
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1963,
+ "ID_UEV":"01116740",
+ "CIVIQUE_DE":" 2450",
+ "CIVIQUE_FI":" 2454",
+ "NOM_RUE":"boulevard De Maisonneuve Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0143-02-7082-5-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":191,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000388280665815,
+ "OBJECTID":90489,
+ "Join_Count":1,
+ "TARGET_FID":90489,
+ "feature_id":"bf2a56c0-7848-4055-971d-0b8d62618c51",
+ "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.03,
+ "heightmax":12.11,
+ "elevmin":18.53,
+ "elevmax":19.5,
+ "bldgarea":813.6,
+ "comment":" ",
+ "OBJECTID_2":90489,
+ "Shape_Le_1":0.000388280665815,
+ "Shape_Ar_1":6.84490126187e-09,
+ "OBJECTID_3":90489,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90488,
+ "g_objectid":"940704",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424298",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023014302738780000000",
+ "g_sup_tota":"138.9",
+ "g_geometry":"0.000687724",
+ "g_geomet_1":"1.5776e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000388280665815,
+ "Shape_Area":6.84490126187e-09,
+ "Shape_Le_3":0.000388280004171,
+ "Shape_Ar_2":6.84490126187e-09,
+ "building_height":5.54
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1964,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55517448373728,
+ 45.505784079521945
+ ],
+ [
+ -73.55521379310392,
+ 45.50580103354116
+ ],
+ [
+ -73.55525635441907,
+ 45.5057239328635
+ ],
+ [
+ -73.55525039820915,
+ 45.50572228980213
+ ],
+ [
+ -73.55532222975894,
+ 45.50559352756954
+ ],
+ [
+ -73.55530342223699,
+ 45.50558819728777
+ ],
+ [
+ -73.55529806587488,
+ 45.505596744444496
+ ],
+ [
+ -73.55491054440795,
+ 45.50547668674999
+ ],
+ [
+ -73.55478051233263,
+ 45.50543974349966
+ ],
+ [
+ -73.55475276105292,
+ 45.50548403511043
+ ],
+ [
+ -73.55470012643154,
+ 45.50557672193846
+ ],
+ [
+ -73.55469939618203,
+ 45.50557799717712
+ ],
+ [
+ -73.55505965020454,
+ 45.50573427686568
+ ],
+ [
+ -73.5551819660967,
+ 45.50577214461907
+ ],
+ [
+ -73.55517448373728,
+ 45.505784079521945
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1964,
+ "ID_UEV":"01091415",
+ "CIVIQUE_DE":" 433",
+ "CIVIQUE_FI":" 433",
+ "NOM_RUE":"rue Marie-Morin (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1887,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-56-0033-9-000-0000",
+ "SUPERFICIE":943,
+ "SUPERFIC_1":2802,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00155015361358,
+ "OBJECTID":90492,
+ "Join_Count":1,
+ "TARGET_FID":90492,
+ "feature_id":"e9c8d19d-0f46-449e-bd82-59f46cc9a19c",
+ "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.97,
+ "heightmax":44.12,
+ "elevmin":17.71,
+ "elevmax":24.21,
+ "bldgarea":7957.09,
+ "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_2":90492,
+ "Shape_Le_1":0.00155015361358,
+ "Shape_Ar_1":1.06228655772e-07,
+ "OBJECTID_3":90492,
+ "Join_Cou_1":7,
+ "TARGET_F_1":90491,
+ "g_objectid":"938387",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"6192597",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004046604330000000",
+ "g_sup_tota":"893.5",
+ "g_geometry":"0.00186313",
+ "g_geomet_1":"1.02887e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00155015361358,
+ "Shape_Area":1.06228655772e-07,
+ "Shape_Le_3":0.00155015288379,
+ "Shape_Ar_2":1.06228655772e-07,
+ "building_height":21.575
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1965,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55410892201098,
+ 45.50556320602743
+ ],
+ [
+ -73.5541126020368,
+ 45.50556445068914
+ ],
+ [
+ -73.55423336479979,
+ 45.5053985446574
+ ],
+ [
+ -73.55449588409962,
+ 45.50549288713733
+ ],
+ [
+ -73.55449657837623,
+ 45.505491675750534
+ ],
+ [
+ -73.55443236768147,
+ 45.505468900419714
+ ],
+ [
+ -73.55423215521164,
+ 45.50537722353034
+ ],
+ [
+ -73.55416848590875,
+ 45.50547222161603
+ ],
+ [
+ -73.55410892201098,
+ 45.50556320602743
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1965,
+ "ID_UEV":"01091418",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-56-5623-2-000-0000",
+ "SUPERFICIE":528,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00100088218403,
+ "OBJECTID":90493,
+ "Join_Count":1,
+ "TARGET_FID":90493,
+ "feature_id":"c3f9f9a2-e685-49bf-a8d6-0563931b117c",
+ "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":22.51,
+ "elevmin":16.28,
+ "elevmax":18.68,
+ "bldgarea":818.63,
+ "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_2":90493,
+ "Shape_Le_1":0.00100088218403,
+ "Shape_Ar_1":4.15185154428e-09,
+ "OBJECTID_3":90493,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90492,
+ "g_objectid":"945707",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Transport et infrastructure",
+ "g_no_lot":"1181543",
+ "g_nb_poly_":"1",
+ "g_utilisat":"4621",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004056562320000000",
+ "g_sup_tota":"527.5",
+ "g_geometry":"0.00101362",
+ "g_geomet_1":"6.04658e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00100088218403,
+ "Shape_Area":4.15185154428e-09,
+ "Shape_Le_3":0.00100088366913,
+ "Shape_Ar_2":4.15185154428e-09,
+ "building_height":10.75
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1966,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55538861141713,
+ 45.512315093816824
+ ],
+ [
+ -73.55565830101163,
+ 45.51243690518932
+ ],
+ [
+ -73.55581149872353,
+ 45.51250610082619
+ ],
+ [
+ -73.5559325294845,
+ 45.51237700764308
+ ],
+ [
+ -73.55573786583169,
+ 45.51228614553948
+ ],
+ [
+ -73.55574044418799,
+ 45.51228340890249
+ ],
+ [
+ -73.55550941285097,
+ 45.51217911632345
+ ],
+ [
+ -73.55550466622921,
+ 45.51218554557676
+ ],
+ [
+ -73.55551196602626,
+ 45.51218824624087
+ ],
+ [
+ -73.5554892662385,
+ 45.51221644628227
+ ],
+ [
+ -73.55547326639997,
+ 45.512236046106935
+ ],
+ [
+ -73.55545886645537,
+ 45.512230145654996
+ ],
+ [
+ -73.55538861141713,
+ 45.512315093816824
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1966,
+ "ID_UEV":"01091769",
+ "CIVIQUE_DE":" 429",
+ "CIVIQUE_FI":" 429",
+ "NOM_RUE":"avenue Viger Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":4,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Autres activit\u00c3\u00a9s de la restauration",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-43-5280-7-000-0000",
+ "SUPERFICIE":770,
+ "SUPERFIC_1":1401,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.0013161164109,
+ "OBJECTID":90494,
+ "Join_Count":1,
+ "TARGET_FID":90494,
+ "feature_id":"87cad259-a779-4472-808d-de2c747162c3",
+ "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":37.49,
+ "elevmin":17.28,
+ "elevmax":21.53,
+ "bldgarea":1134.64,
+ "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_2":90494,
+ "Shape_Le_1":0.0013161164109,
+ "Shape_Ar_1":7.96133257063e-08,
+ "OBJECTID_3":90494,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90493,
+ "g_objectid":"945261",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Terrain vague",
+ "g_no_lot":"1182035",
+ "g_nb_poly_":"1",
+ "g_utilisat":"9100",
+ "g_nb_logem":" ",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004143619640000000",
+ "g_sup_tota":"760.9",
+ "g_geometry":"0.00134089",
+ "g_geomet_1":"8.76287e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.0013161164109,
+ "Shape_Area":7.96133257063e-08,
+ "Shape_Le_3":0.00131611670476,
+ "Shape_Ar_2":7.96133257063e-08,
+ "building_height":18.490000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1967,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55492102780504,
+ 45.51397391491454
+ ],
+ [
+ -73.55493016581634,
+ 45.51397874607257
+ ],
+ [
+ -73.554933566153,
+ 45.51397544556066
+ ],
+ [
+ -73.55497506626814,
+ 45.51393474584214
+ ],
+ [
+ -73.55503982195206,
+ 45.51396734806496
+ ],
+ [
+ -73.55514156225514,
+ 45.513860415975714
+ ],
+ [
+ -73.5551251658156,
+ 45.513853546054605
+ ],
+ [
+ -73.55512106580639,
+ 45.513851745611866
+ ],
+ [
+ -73.55506265304085,
+ 45.51382506272676
+ ],
+ [
+ -73.55492102780504,
+ 45.51397391491454
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1967,
+ "ID_UEV":"01091615",
+ "CIVIQUE_DE":" 1043",
+ "CIVIQUE_FI":" 1043",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":9,
+ "ANNEE_CONS":1933,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-45-9956-3-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":271,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000585235913633,
+ "OBJECTID":90504,
+ "Join_Count":1,
+ "TARGET_FID":90504,
+ "feature_id":"e0a552d8-de57-4b44-b475-28ffb0e5e6e6",
+ "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.55,
+ "heightmax":38.66,
+ "elevmin":15.9,
+ "elevmax":23.98,
+ "bldgarea":1569.64,
+ "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_2":90504,
+ "Shape_Le_1":0.000585235913633,
+ "Shape_Ar_1":1.25339119626e-08,
+ "OBJECTID_3":90504,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90503,
+ "g_objectid":"939635",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182054",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004145995630000000",
+ "g_sup_tota":"191.8",
+ "g_geometry":"0.000714314",
+ "g_geomet_1":"2.20776e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000585235913633,
+ "Shape_Area":1.25339119626e-08,
+ "Shape_Le_3":0.000585237171181,
+ "Shape_Ar_2":1.25339119626e-08,
+ "building_height":19.055
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1968,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55485978847031,
+ 45.513919992463975
+ ],
+ [
+ -73.55489616604707,
+ 45.513939146224914
+ ],
+ [
+ -73.55488136590415,
+ 45.51395294542239
+ ],
+ [
+ -73.55492102780504,
+ 45.51397391491454
+ ],
+ [
+ -73.55506265304085,
+ 45.51382506272676
+ ],
+ [
+ -73.55498420427945,
+ 45.51378922744119
+ ],
+ [
+ -73.55485978847031,
+ 45.513919992463975
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1968,
+ "ID_UEV":"01091616",
+ "CIVIQUE_DE":" 1037",
+ "CIVIQUE_FI":" 1039",
+ "NOM_RUE":"rue Saint-Hubert (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":7,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0041-55-0552-8-000-0000",
+ "SUPERFICIE":192,
+ "SUPERFIC_1":362,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000578415541614,
+ "OBJECTID":90505,
+ "Join_Count":1,
+ "TARGET_FID":90505,
+ "feature_id":"e0a552d8-de57-4b44-b475-28ffb0e5e6e6",
+ "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.55,
+ "heightmax":38.66,
+ "elevmin":15.9,
+ "elevmax":23.98,
+ "bldgarea":1569.64,
+ "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_2":90505,
+ "Shape_Le_1":0.000578415541614,
+ "Shape_Ar_1":1.57691312876e-08,
+ "OBJECTID_3":90505,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90504,
+ "g_objectid":"939635",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1182054",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"9",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004145995630000000",
+ "g_sup_tota":"191.8",
+ "g_geometry":"0.000714314",
+ "g_geomet_1":"2.20776e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000578415541614,
+ "Shape_Area":1.57691312876e-08,
+ "Shape_Le_3":0.00057841530658,
+ "Shape_Ar_2":1.57691312876e-08,
+ "building_height":19.055
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1969,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55553049385905,
+ 45.52382868499611
+ ],
+ [
+ -73.55552256723453,
+ 45.52382504813776
+ ],
+ [
+ -73.55558736698524,
+ 45.523755147432404
+ ],
+ [
+ -73.55550656739601,
+ 45.52371814752478
+ ],
+ [
+ -73.55537016722128,
+ 45.52386514800847
+ ],
+ [
+ -73.5554589617835,
+ 45.523905898988346
+ ],
+ [
+ -73.55553049385905,
+ 45.52382868499611
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1969,
+ "ID_UEV":"01032653",
+ "CIVIQUE_DE":" 1650",
+ "CIVIQUE_FI":" 1650",
+ "NOM_RUE":"avenue Papineau (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":8,
+ "ANNEE_CONS":1929,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-46-6454-8-000-0000",
+ "SUPERFICIE":207,
+ "SUPERFIC_1":475,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000596395447797,
+ "OBJECTID":90578,
+ "Join_Count":1,
+ "TARGET_FID":90578,
+ "feature_id":"7be114c7-4ed9-4509-9865-b2ae95870cfc",
+ "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.45,
+ "heightmax":39.07,
+ "elevmin":24.73,
+ "elevmax":27.05,
+ "bldgarea":1899.32,
+ "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_2":90578,
+ "Shape_Le_1":0.000596395447797,
+ "Shape_Ar_1":1.78110245834e-08,
+ "OBJECTID_3":90578,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90577,
+ "g_objectid":"942242",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567682",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004246645480000000",
+ "g_sup_tota":"206.5",
+ "g_geometry":"0.00068863",
+ "g_geomet_1":"2.37948e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000596395447797,
+ "Shape_Area":1.78110245834e-08,
+ "Shape_Le_3":0.000596395096075,
+ "Shape_Ar_2":1.78110245834e-08,
+ "building_height":18.31
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1970,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56024749195004,
+ 45.52318081968937
+ ],
+ [
+ -73.56026296928245,
+ 45.523187847891165
+ ],
+ [
+ -73.56034936895006,
+ 45.52309354767938
+ ],
+ [
+ -73.56047126935545,
+ 45.52314874806657
+ ],
+ [
+ -73.5604406690235,
+ 45.52318214798803
+ ],
+ [
+ -73.56038215373525,
+ 45.5232467705723
+ ],
+ [
+ -73.56049278113878,
+ 45.52329798156689
+ ],
+ [
+ -73.56058102171862,
+ 45.523204186774095
+ ],
+ [
+ -73.56066803832115,
+ 45.52311169419962
+ ],
+ [
+ -73.5607034644152,
+ 45.52307403778691
+ ],
+ [
+ -73.56046176891735,
+ 45.522964847500006
+ ],
+ [
+ -73.56043766888516,
+ 45.52299124799799
+ ],
+ [
+ -73.56042935735081,
+ 45.52298750681828
+ ],
+ [
+ -73.56040308455655,
+ 45.52301543346578
+ ],
+ [
+ -73.56040926919427,
+ 45.52301914766583
+ ],
+ [
+ -73.56039936945717,
+ 45.52302734768424
+ ],
+ [
+ -73.56038546953563,
+ 45.52303914768881
+ ],
+ [
+ -73.5603824415183,
+ 45.52303737602438
+ ],
+ [
+ -73.56024749195004,
+ 45.52318081968937
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1970,
+ "ID_UEV":"01032414",
+ "CIVIQUE_DE":" 1910",
+ "CIVIQUE_FI":" 1928",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":5,
+ "ANNEE_CONS":1942,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-05-7480-8-000-0000",
+ "SUPERFICIE":713,
+ "SUPERFIC_1":1087,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00142773789556,
+ "OBJECTID":90581,
+ "Join_Count":1,
+ "TARGET_FID":90581,
+ "feature_id":"efe7f60b-e277-4767-94f1-fb601a5ab6a0",
+ "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.46,
+ "heightmax":38.13,
+ "elevmin":24.8,
+ "elevmax":26.63,
+ "bldgarea":1884.27,
+ "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_2":90581,
+ "Shape_Le_1":0.00142773789556,
+ "Shape_Ar_1":6.19422893536e-08,
+ "OBJECTID_3":90581,
+ "Join_Cou_1":6,
+ "TARGET_F_1":90580,
+ "g_objectid":"941919",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566854",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004205499330000000",
+ "g_sup_tota":"361.1",
+ "g_geometry":"0.000936633",
+ "g_geomet_1":"4.15986e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00142773789556,
+ "Shape_Area":6.19422893536e-08,
+ "Shape_Le_3":0.00142773893554,
+ "Shape_Ar_2":6.19422893536e-08,
+ "building_height":17.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1971,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56026586599876,
+ 45.523557033080905
+ ],
+ [
+ -73.56026756931472,
+ 45.52355774804193
+ ],
+ [
+ -73.56028956942993,
+ 45.52353184756701
+ ],
+ [
+ -73.56041746741404,
+ 45.523585439067055
+ ],
+ [
+ -73.56049067492656,
+ 45.52350769267617
+ ],
+ [
+ -73.56035735852711,
+ 45.5234594602362
+ ],
+ [
+ -73.56026586599876,
+ 45.523557033080905
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1971,
+ "ID_UEV":"01032453",
+ "CIVIQUE_DE":" 1945",
+ "CIVIQUE_FI":" 1955",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1885,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-06-8733-7-000-0000",
+ "SUPERFICIE":406,
+ "SUPERFIC_1":194,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00055682241043,
+ "OBJECTID":90623,
+ "Join_Count":1,
+ "TARGET_FID":90623,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":90623,
+ "Shape_Le_1":0.00055682241043,
+ "Shape_Ar_1":1.3427725089e-08,
+ "OBJECTID_3":90623,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90622,
+ "g_objectid":"941935",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566875",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206873370000000",
+ "g_sup_tota":"405.6",
+ "g_geometry":"0.000995076",
+ "g_geomet_1":"4.68355e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00055682241043,
+ "Shape_Area":1.3427725089e-08,
+ "Shape_Le_3":0.000556822745144,
+ "Shape_Ar_2":1.3427725089e-08,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1972,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56018795143466,
+ 45.523552060729315
+ ],
+ [
+ -73.56019026898757,
+ 45.52355304818492
+ ],
+ [
+ -73.56020776889527,
+ 45.52353264796363
+ ],
+ [
+ -73.56026586599876,
+ 45.523557033080905
+ ],
+ [
+ -73.56035735852711,
+ 45.5234594602362
+ ],
+ [
+ -73.56030176873348,
+ 45.52343934779796
+ ],
+ [
+ -73.56029986936532,
+ 45.523438547401334
+ ],
+ [
+ -73.56029627297646,
+ 45.52343654011453
+ ],
+ [
+ -73.56018795143466,
+ 45.523552060729315
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1972,
+ "ID_UEV":"01032455",
+ "CIVIQUE_DE":" 1941",
+ "CIVIQUE_FI":" 1943",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-06-9528-0-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":207,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000449820738745,
+ "OBJECTID":90624,
+ "Join_Count":1,
+ "TARGET_FID":90624,
+ "feature_id":"8d25d3a0-128a-4b94-9452-9ce8974246ec",
+ "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,
+ "heightmax":40.66,
+ "elevmin":23.64,
+ "elevmax":27.22,
+ "bldgarea":3012.7,
+ "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_2":90624,
+ "Shape_Le_1":0.000449820738745,
+ "Shape_Ar_1":8.00180149665e-09,
+ "OBJECTID_3":90624,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90623,
+ "g_objectid":"941935",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1566875",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004206873370000000",
+ "g_sup_tota":"405.6",
+ "g_geometry":"0.000995076",
+ "g_geomet_1":"4.68355e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000449820738745,
+ "Shape_Area":8.00180149665e-09,
+ "Shape_Le_3":0.000449820867363,
+ "Shape_Ar_2":8.00180149665e-09,
+ "building_height":19.83
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1973,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55262799310924,
+ 45.508207438572725
+ ],
+ [
+ -73.55279920514104,
+ 45.50827866487877
+ ],
+ [
+ -73.55290240234584,
+ 45.50816063695413
+ ],
+ [
+ -73.55291666469417,
+ 45.508141645071156
+ ],
+ [
+ -73.55291843455996,
+ 45.50814230157625
+ ],
+ [
+ -73.55300681813199,
+ 45.50804121597963
+ ],
+ [
+ -73.55274526470404,
+ 45.50793944509961
+ ],
+ [
+ -73.5526453770044,
+ 45.50806641048675
+ ],
+ [
+ -73.55266343539108,
+ 45.508073934214984
+ ],
+ [
+ -73.55262166637864,
+ 45.508123379840406
+ ],
+ [
+ -73.55262652181837,
+ 45.508125418603484
+ ],
+ [
+ -73.5525804234696,
+ 45.508183187454435
+ ],
+ [
+ -73.55257762298076,
+ 45.508186485268375
+ ],
+ [
+ -73.55262799310924,
+ 45.508207438572725
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1973,
+ "ID_UEV":"01091456",
+ "CIVIQUE_DE":" 417",
+ "CIVIQUE_FI":" 425",
+ "NOM_RUE":"place Jacques-Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1814,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-69-7411-3-000-0000",
+ "SUPERFICIE":687,
+ "SUPERFIC_1":2891,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00116667978253,
+ "OBJECTID":90633,
+ "Join_Count":1,
+ "TARGET_FID":90633,
+ "feature_id":"b0a6c12c-9cd3-4c88-937c-ad5b434b8b66",
+ "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.95,
+ "heightmax":21.38,
+ "elevmin":16.21,
+ "elevmax":22.38,
+ "bldgarea":3174.7,
+ "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_2":90633,
+ "Shape_Le_1":0.00116667978253,
+ "Shape_Ar_1":7.70749120425e-08,
+ "OBJECTID_3":90633,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90632,
+ "g_objectid":"944980",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1181795",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004069741130000000",
+ "g_sup_tota":"687.4",
+ "g_geometry":"0.00118098",
+ "g_geomet_1":"7.84512e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00116667978253,
+ "Shape_Area":7.70749120425e-08,
+ "Shape_Le_3":0.00116667928073,
+ "Shape_Ar_2":7.70749120425e-08,
+ "building_height":10.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1974,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56204952918426,
+ 45.526111927873465
+ ],
+ [
+ -73.56193356880101,
+ 45.526058248239856
+ ],
+ [
+ -73.56193026918842,
+ 45.52606184822601
+ ],
+ [
+ -73.56184646946085,
+ 45.52615074800891
+ ],
+ [
+ -73.56185046874599,
+ 45.526152648276394
+ ],
+ [
+ -73.56196163214545,
+ 45.52620329269809
+ ],
+ [
+ -73.56197292583171,
+ 45.526191552948106
+ ],
+ [
+ -73.56204952918426,
+ 45.526111927873465
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1974,
+ "ID_UEV":"01032618",
+ "CIVIQUE_DE":" 2157",
+ "CIVIQUE_FI":" 2163",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-99-6519-9-000-0000",
+ "SUPERFICIE":306,
+ "SUPERFIC_1":254,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000508201896333,
+ "OBJECTID":90669,
+ "Join_Count":1,
+ "TARGET_FID":90669,
+ "feature_id":"94ba7cf6-342c-4ab0-9b9d-4b3916913846",
+ "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.5,
+ "heightmax":9.34,
+ "elevmin":29.66,
+ "elevmax":31.91,
+ "bldgarea":920.46,
+ "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_2":90669,
+ "Shape_Le_1":0.000508201896333,
+ "Shape_Ar_1":1.52712642943e-08,
+ "OBJECTID_3":90669,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90668,
+ "g_objectid":"941656",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565664",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"8",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994299483360000000",
+ "g_sup_tota":"916.9",
+ "g_geometry":"0.00133711",
+ "g_geomet_1":"1.05625e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000508201896333,
+ "Shape_Area":1.52712642943e-08,
+ "Shape_Le_3":0.000508200966711,
+ "Shape_Ar_2":1.52712642943e-08,
+ "building_height":3.42
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1975,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55148665720532,
+ 45.532020105893466
+ ],
+ [
+ -73.55156106081616,
+ 45.53205022508811
+ ],
+ [
+ -73.55163807785685,
+ 45.53196057796859
+ ],
+ [
+ -73.55156470936569,
+ 45.531929254581726
+ ],
+ [
+ -73.55148665720532,
+ 45.532020105893466
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1975,
+ "ID_UEV":"01116684",
+ "CIVIQUE_DE":" 1889",
+ "CIVIQUE_FI":" 1893",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-75-7265-4-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":196,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000398006564196,
+ "OBJECTID":90682,
+ "Join_Count":1,
+ "TARGET_FID":90682,
+ "feature_id":"4e994e8e-10a7-4607-9b1a-da44749411b7",
+ "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.53,
+ "heightmax":30.99,
+ "elevmin":18.44,
+ "elevmax":23,
+ "bldgarea":2032.43,
+ "comment":" ",
+ "OBJECTID_2":90682,
+ "Shape_Le_1":0.000398006564196,
+ "Shape_Ar_1":9.05012011063e-09,
+ "OBJECTID_3":90682,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90681,
+ "g_objectid":"941223",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425175",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004375726540000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000654791",
+ "g_geomet_1":"1.88302e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000398006564196,
+ "Shape_Area":9.05012011063e-09,
+ "Shape_Le_3":0.000398006418622,
+ "Shape_Ar_2":9.05012011063e-09,
+ "building_height":14.229999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1976,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55208899433347,
+ 45.531509649800796
+ ],
+ [
+ -73.55209416633456,
+ 45.53151174971777
+ ],
+ [
+ -73.55217816571162,
+ 45.53141924994872
+ ],
+ [
+ -73.55217190912815,
+ 45.53141644496326
+ ],
+ [
+ -73.55208899433347,
+ 45.531509649800796
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1976,
+ "ID_UEV":"01088086",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"rue Poupart (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Parc pour la r\u00c3\u00a9cr\u00c3\u00a9ation en g\u00c3\u00a9n\u00c3\u00a9ral",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-75-2813-6-000-0000",
+ "SUPERFICIE":150,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000262136062304,
+ "OBJECTID":90684,
+ "Join_Count":1,
+ "TARGET_FID":90684,
+ "feature_id":"32bde229-c231-4ab1-9b7f-8fae3afc6f61",
+ "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.51,
+ "heightmax":32.73,
+ "elevmin":19.16,
+ "elevmax":21.85,
+ "bldgarea":1317.59,
+ "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_2":90684,
+ "Shape_Le_1":0.000262136062304,
+ "Shape_Ar_1":7.35285130243e-10,
+ "OBJECTID_3":90684,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90683,
+ "g_objectid":"940656",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1424229",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004375320700000000",
+ "g_sup_tota":"137.7",
+ "g_geometry":"0.00056621",
+ "g_geomet_1":"1.55691e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000262136062304,
+ "Shape_Area":7.35285130243e-10,
+ "Shape_Le_3":0.000262134798584,
+ "Shape_Ar_2":7.35285130243e-10,
+ "building_height":15.11
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1977,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55962839235826,
+ 45.522448784134376
+ ],
+ [
+ -73.55963276845934,
+ 45.522450947903216
+ ],
+ [
+ -73.55960536791524,
+ 45.52247844827207
+ ],
+ [
+ -73.55965146806264,
+ 45.52250114805983
+ ],
+ [
+ -73.55970756777188,
+ 45.52244474797703
+ ],
+ [
+ -73.5597400683713,
+ 45.52246074781556
+ ],
+ [
+ -73.55974016819604,
+ 45.522460647990805
+ ],
+ [
+ -73.55983806839399,
+ 45.52236514808341
+ ],
+ [
+ -73.55975666805763,
+ 45.522323947442516
+ ],
+ [
+ -73.55975606820982,
+ 45.52232364796827
+ ],
+ [
+ -73.55974576827442,
+ 45.52233374825418
+ ],
+ [
+ -73.55973956744893,
+ 45.52233061321752
+ ],
+ [
+ -73.55962839235826,
+ 45.522448784134376
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1977,
+ "ID_UEV":"01032361",
+ "CIVIQUE_DE":" 1835",
+ "CIVIQUE_FI":" 1839",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1913,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-15-3503-0-000-0000",
+ "SUPERFICIE":284,
+ "SUPERFIC_1":378,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000623294175319,
+ "OBJECTID":90720,
+ "Join_Count":1,
+ "TARGET_FID":90720,
+ "feature_id":"a8600f71-e084-42b2-8406-f618146c3abd",
+ "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.96,
+ "heightmax":38.06,
+ "elevmin":25.06,
+ "elevmax":26.22,
+ "bldgarea":333.92,
+ "comment":" ",
+ "OBJECTID_2":90720,
+ "Shape_Le_1":0.000623294175319,
+ "Shape_Ar_1":1.65203955989e-08,
+ "OBJECTID_3":90720,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90719,
+ "g_objectid":"941971",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567006",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004215350300000000",
+ "g_sup_tota":"283.8",
+ "g_geometry":"0.000858099",
+ "g_geomet_1":"3.30261e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000623294175319,
+ "Shape_Area":1.65203955989e-08,
+ "Shape_Le_3":0.0006232952314,
+ "Shape_Ar_2":1.65203955989e-08,
+ "building_height":18.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1978,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.56406152484135,
+ 45.52494106273016
+ ],
+ [
+ -73.56408067050839,
+ 45.52495024750621
+ ],
+ [
+ -73.56407371784964,
+ 45.52495741060631
+ ],
+ [
+ -73.56413896096612,
+ 45.5249875846596
+ ],
+ [
+ -73.56414187027293,
+ 45.52498854783351
+ ],
+ [
+ -73.564142370296,
+ 45.52498774743689
+ ],
+ [
+ -73.56419017016206,
+ 45.52499894759365
+ ],
+ [
+ -73.56420416990836,
+ 45.52500214828081
+ ],
+ [
+ -73.56420487048024,
+ 45.524999648165526
+ ],
+ [
+ -73.56425437006497,
+ 45.52483254783411
+ ],
+ [
+ -73.56425317036935,
+ 45.52483234818462
+ ],
+ [
+ -73.56421336997289,
+ 45.52481674764508
+ ],
+ [
+ -73.56419537004214,
+ 45.524839447432846
+ ],
+ [
+ -73.56414775453709,
+ 45.52482076311802
+ ],
+ [
+ -73.56414428225467,
+ 45.524826454027924
+ ],
+ [
+ -73.56416139455456,
+ 45.52483436716261
+ ],
+ [
+ -73.56406152484135,
+ 45.52494106273016
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.56421246975152,
+ 45.52473704792671
+ ],
+ [
+ -73.56421167025422,
+ 45.52475924769142
+ ],
+ [
+ -73.56421077003286,
+ 45.52479004767286
+ ],
+ [
+ -73.5642112700559,
+ 45.524790547695915
+ ],
+ [
+ -73.56423747000508,
+ 45.524776448124875
+ ],
+ [
+ -73.5642528699958,
+ 45.52476674803729
+ ],
+ [
+ -73.56421367034645,
+ 45.524736348254166
+ ],
+ [
+ -73.56421246975152,
+ 45.52473704792671
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1978,
+ "ID_UEV":"01032448",
+ "CIVIQUE_DE":" 2266",
+ "CIVIQUE_FI":" 2268",
+ "NOM_RUE":"rue Plessis (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\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-77-8572-2-000-0000",
+ "SUPERFICIE":270,
+ "SUPERFIC_1":216,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000795868500579,
+ "OBJECTID":90724,
+ "Join_Count":2,
+ "TARGET_FID":90724,
+ "feature_id":"12993f7d-9f44-4a1d-b0d4-f5c6e3a6cdb8",
+ "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.21,
+ "heightmax":13.03,
+ "elevmin":30.24,
+ "elevmax":38.39,
+ "bldgarea":1313.19,
+ "comment":" ",
+ "OBJECTID_2":90724,
+ "Shape_Le_1":0.000795868500579,
+ "Shape_Ar_1":2.14399602734e-08,
+ "OBJECTID_3":90724,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90723,
+ "g_objectid":"942952",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885090",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994277857220000000",
+ "g_sup_tota":"269.8",
+ "g_geometry":"0.00081698",
+ "g_geomet_1":"3.10301e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000795868500579,
+ "Shape_Area":2.14399602734e-08,
+ "Shape_Le_3":0.000795869990107,
+ "Shape_Ar_2":2.14399602734e-08,
+ "building_height":5.41
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1979,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55437064181352,
+ 45.5370244220897
+ ],
+ [
+ -73.55436686825821,
+ 45.537029649848755
+ ],
+ [
+ -73.55422216824032,
+ 45.53697794962297
+ ],
+ [
+ -73.55419016856327,
+ 45.53702304972426
+ ],
+ [
+ -73.55418746789917,
+ 45.53702614968736
+ ],
+ [
+ -73.55433539288592,
+ 45.53708870203227
+ ],
+ [
+ -73.55440540150991,
+ 45.53711350173701
+ ],
+ [
+ -73.55442216847014,
+ 45.53708774965022
+ ],
+ [
+ -73.5544403680504,
+ 45.53709355027742
+ ],
+ [
+ -73.55446076827168,
+ 45.537062250272925
+ ],
+ [
+ -73.55451066805473,
+ 45.53707825011145
+ ],
+ [
+ -73.55451291186324,
+ 45.537074808405976
+ ],
+ [
+ -73.55437064181352,
+ 45.5370244220897
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1979,
+ "ID_UEV":"01025765",
+ "CIVIQUE_DE":" 2785",
+ "CIVIQUE_FI":" 2789",
+ "NOM_RUE":"rue de Rouen (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-51-5628-4-000-0000",
+ "SUPERFICIE":209,
+ "SUPERFIC_1":379,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000749026354682,
+ "OBJECTID":90754,
+ "Join_Count":1,
+ "TARGET_FID":90754,
+ "feature_id":"b7b5f1c4-dc81-482b-bee9-ce4f60e0d43d",
+ "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.55,
+ "heightmax":17.62,
+ "elevmin":17.9,
+ "elevmax":19.14,
+ "bldgarea":976.96,
+ "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_2":90754,
+ "Shape_Le_1":0.000749026354682,
+ "Shape_Ar_1":1.63829721573e-08,
+ "OBJECTID_3":90754,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90753,
+ "g_objectid":"943922",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361122",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004451562840000000",
+ "g_sup_tota":"208.8",
+ "g_geometry":"0.00081505",
+ "g_geomet_1":"2.40622e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000749026354682,
+ "Shape_Area":1.63829721573e-08,
+ "Shape_Le_3":0.000749026922848,
+ "Shape_Ar_2":1.63829721573e-08,
+ "building_height":8.535
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1980,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55750833506346,
+ 45.53456686901609
+ ],
+ [
+ -73.55758171614512,
+ 45.53459849187719
+ ],
+ [
+ -73.55767920625222,
+ 45.5344850594882
+ ],
+ [
+ -73.55760595377359,
+ 45.53445328464167
+ ],
+ [
+ -73.55750833506346,
+ 45.53456686901609
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1980,
+ "ID_UEV":"01023596",
+ "CIVIQUE_DE":" 2325",
+ "CIVIQUE_FI":" 2329",
+ "NOM_RUE":"rue D'Iberville (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-0349-1-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":264,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000459090533251,
+ "OBJECTID":90758,
+ "Join_Count":1,
+ "TARGET_FID":90758,
+ "feature_id":"4971b23e-f123-4f90-ab79-6866e5043664",
+ "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.44,
+ "heightmax":41.61,
+ "elevmin":19.02,
+ "elevmax":29.18,
+ "bldgarea":3074.8,
+ "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_2":90758,
+ "Shape_Le_1":0.000459090533251,
+ "Shape_Ar_1":1.14143893803e-08,
+ "OBJECTID_3":90758,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90757,
+ "g_objectid":"941172",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425099",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338034910000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.00065535",
+ "g_geomet_1":"1.88852e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000459090533251,
+ "Shape_Area":1.14143893803e-08,
+ "Shape_Le_3":0.000459091391146,
+ "Shape_Ar_2":1.14143893803e-08,
+ "building_height":19.585
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1981,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55509966374034,
+ 45.50390509449481
+ ],
+ [
+ -73.55523283984553,
+ 45.50395960690064
+ ],
+ [
+ -73.5555438721738,
+ 45.50362866987751
+ ],
+ [
+ -73.55538953412155,
+ 45.503561566063716
+ ],
+ [
+ -73.55527505042508,
+ 45.50351527526004
+ ],
+ [
+ -73.55521016433946,
+ 45.503577081167656
+ ],
+ [
+ -73.5552011998973,
+ 45.503572539591325
+ ],
+ [
+ -73.55507576515629,
+ 45.50371344447018
+ ],
+ [
+ -73.55505508074923,
+ 45.50373669554236
+ ],
+ [
+ -73.5551694097623,
+ 45.50379883329981
+ ],
+ [
+ -73.55516814801346,
+ 45.503800756050346
+ ],
+ [
+ -73.55517236493453,
+ 45.50380274445139
+ ],
+ [
+ -73.55515469415566,
+ 45.5038212524991
+ ],
+ [
+ -73.55509966374034,
+ 45.50390509449481
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1981,
+ "ID_UEV":"01090900",
+ "CIVIQUE_DE":" 147",
+ "CIVIQUE_FI":" 147",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1852,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble \u00c3\u00a0 bureaux",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-44-7822-4-000-0000",
+ "SUPERFICIE":970,
+ "SUPERFIC_1":3886,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00147223467302,
+ "OBJECTID":90765,
+ "Join_Count":1,
+ "TARGET_FID":90765,
+ "feature_id":"386de4e9-2498-495d-8398-6698890475b0",
+ "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.95,
+ "heightmax":65.47,
+ "elevmin":13.64,
+ "elevmax":23.85,
+ "bldgarea":22559.06,
+ "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_2":90765,
+ "Shape_Le_1":0.00147223467302,
+ "Shape_Ar_1":1.09736467999e-07,
+ "OBJECTID_3":90765,
+ "Join_Cou_1":116,
+ "TARGET_F_1":90764,
+ "g_objectid":"944906",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel institutionnel",
+ "g_no_lot":"4030964",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1553",
+ "g_nb_logem":"1",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004044034530000000",
+ "g_sup_tota":"10005.5",
+ "g_geometry":"0.00508265",
+ "g_geomet_1":"1.15164e-006",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00147223467302,
+ "Shape_Area":1.09736467999e-07,
+ "Shape_Le_3":0.00147223530533,
+ "Shape_Ar_2":1.09736467999e-07,
+ "building_height":32.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1982,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55659555736092,
+ 45.53457815460845
+ ],
+ [
+ -73.5566690607504,
+ 45.53460932421124
+ ],
+ [
+ -73.55677263207316,
+ 45.534488692749264
+ ],
+ [
+ -73.5567472684935,
+ 45.53447744942505
+ ],
+ [
+ -73.55671766820767,
+ 45.53451035022278
+ ],
+ [
+ -73.55667140528297,
+ 45.53448981240521
+ ],
+ [
+ -73.55659555736092,
+ 45.53457815460845
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1982,
+ "ID_UEV":"01023687",
+ "CIVIQUE_DE":" 2282",
+ "CIVIQUE_FI":" 2284",
+ "NOM_RUE":"rue Frontenac (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-38-7044-1-000-0000",
+ "SUPERFICIE":164,
+ "SUPERFIC_1":145,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000477884466307,
+ "OBJECTID":90808,
+ "Join_Count":1,
+ "TARGET_FID":90808,
+ "feature_id":"d80313b7-1503-46fc-9f1d-2959e9a5ec4b",
+ "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.66,
+ "heightmax":39.99,
+ "elevmin":19.81,
+ "elevmax":29.17,
+ "bldgarea":3287.58,
+ "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_2":90808,
+ "Shape_Le_1":0.000477884466307,
+ "Shape_Ar_1":9.99463316458e-09,
+ "OBJECTID_3":90808,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90807,
+ "g_objectid":"941155",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1425080",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"2",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004338764060000000",
+ "g_sup_tota":"163.5",
+ "g_geometry":"0.000655021",
+ "g_geomet_1":"1.88415e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000477884466307,
+ "Shape_Area":9.99463316458e-09,
+ "Shape_Le_3":0.000477885598125,
+ "Shape_Ar_2":9.99463316458e-09,
+ "building_height":19.165000000000003
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1983,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5524493922475,
+ 45.53341218897164
+ ],
+ [
+ -73.55265679299845,
+ 45.53349792853687
+ ],
+ [
+ -73.55269516707015,
+ 45.53345084992708
+ ],
+ [
+ -73.55275138908718,
+ 45.53347347776908
+ ],
+ [
+ -73.55275358703027,
+ 45.53347093268769
+ ],
+ [
+ -73.55249353187284,
+ 45.53336000760856
+ ],
+ [
+ -73.5524493922475,
+ 45.53341218897164
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1983,
+ "ID_UEV":"01025513",
+ "CIVIQUE_DE":" 2575",
+ "CIVIQUE_FI":" 2577",
+ "NOM_RUE":"rue Ontario Est (MTE+MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-67-9126-3-000-0000",
+ "SUPERFICIE":162,
+ "SUPERFIC_1":290,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000700199855713,
+ "OBJECTID":90824,
+ "Join_Count":1,
+ "TARGET_FID":90824,
+ "feature_id":"b756c60f-0f93-4292-80e2-fa9c2296e114",
+ "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.5,
+ "heightmax":34.53,
+ "elevmin":18.84,
+ "elevmax":20.25,
+ "bldgarea":1134.14,
+ "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_2":90824,
+ "Shape_Le_1":0.000700199855713,
+ "Shape_Ar_1":1.45180377676e-08,
+ "OBJECTID_3":90824,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90823,
+ "g_objectid":"938490",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Institutionnel",
+ "g_no_lot":"1424957",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6911",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004367861720000000",
+ "g_sup_tota":"304.7",
+ "g_geometry":"0.000835702",
+ "g_geomet_1":"3.51911e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000700199855713,
+ "Shape_Area":1.45180377676e-08,
+ "Shape_Le_3":0.000700199394509,
+ "Shape_Ar_2":1.45180377676e-08,
+ "building_height":16.015
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1984,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56065263833044,
+ 45.52866002379136
+ ],
+ [
+ -73.56067266893037,
+ 45.52866874901385
+ ],
+ [
+ -73.56066146877362,
+ 45.52868134851572
+ ],
+ [
+ -73.56069719614054,
+ 45.528696985028134
+ ],
+ [
+ -73.56073039641251,
+ 45.528662034675456
+ ],
+ [
+ -73.56075936897155,
+ 45.52862874896788
+ ],
+ [
+ -73.56076266948345,
+ 45.52862494843292
+ ],
+ [
+ -73.56074526940051,
+ 45.52861754881113
+ ],
+ [
+ -73.56082916895284,
+ 45.52852054883456
+ ],
+ [
+ -73.56079815942935,
+ 45.52850730811607
+ ],
+ [
+ -73.56065263833044,
+ 45.52866002379136
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1984,
+ "ID_UEV":"01035022",
+ "CIVIQUE_DE":" 2198",
+ "CIVIQUE_FI":" 2200",
+ "NOM_RUE":"rue de Bordeaux (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":2,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0043-01-5589-5-000-0000",
+ "SUPERFICIE":133,
+ "SUPERFIC_1":248,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000566897227799,
+ "OBJECTID":90827,
+ "Join_Count":1,
+ "TARGET_FID":90827,
+ "feature_id":"409e0849-60ab-45c1-a511-8085d4b1b174",
+ "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.59,
+ "heightmax":39.07,
+ "elevmin":25.76,
+ "elevmax":28.26,
+ "bldgarea":1213.6,
+ "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_2":90827,
+ "Shape_Le_1":0.000566897227799,
+ "Shape_Ar_1":9.75781843956e-09,
+ "OBJECTID_3":90827,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90826,
+ "g_objectid":"942885",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1884731",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004301598630000000",
+ "g_sup_tota":"134.1",
+ "g_geometry":"0.000649962",
+ "g_geomet_1":"1.52173e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000566897227799,
+ "Shape_Area":9.75781843956e-09,
+ "Shape_Le_3":0.00056689679785,
+ "Shape_Ar_2":9.75781843956e-09,
+ "building_height":18.240000000000002
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1985,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.550908871569,
+ 45.53767385851206
+ ],
+ [
+ -73.55091556702165,
+ 45.537676150883954
+ ],
+ [
+ -73.55090996694327,
+ 45.53768425107762
+ ],
+ [
+ -73.5509914311315,
+ 45.53771100590849
+ ],
+ [
+ -73.5510726498048,
+ 45.53759901063613
+ ],
+ [
+ -73.5510708673485,
+ 45.53759835053375
+ ],
+ [
+ -73.5509863283782,
+ 45.537567050529255
+ ],
+ [
+ -73.550908871569,
+ 45.53767385851206
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1985,
+ "ID_UEV":"01025432",
+ "CIVIQUE_DE":" 2075",
+ "CIVIQUE_FI":" 2079",
+ "NOM_RUE":"rue Florian (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0044-81-1994-1-000-0000",
+ "SUPERFICIE":186,
+ "SUPERFIC_1":279,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000465001167895,
+ "OBJECTID":90830,
+ "Join_Count":1,
+ "TARGET_FID":90830,
+ "feature_id":"ae574f17-4b7b-493f-bada-12de1d032c69",
+ "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.76,
+ "heightmax":32.01,
+ "elevmin":20.08,
+ "elevmax":20.81,
+ "bldgarea":419.02,
+ "comment":" ",
+ "OBJECTID_2":90830,
+ "Shape_Le_1":0.000465001167895,
+ "Shape_Ar_1":1.23544603703e-08,
+ "OBJECTID_3":90830,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90829,
+ "g_objectid":"943853",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"3361030",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004481129870000000",
+ "g_sup_tota":"185.8",
+ "g_geometry":"0.000667839",
+ "g_geomet_1":"2.14068e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000465001167895,
+ "Shape_Area":1.23544603703e-08,
+ "Shape_Le_3":0.000465000502553,
+ "Shape_Ar_2":1.23544603703e-08,
+ "building_height":14.625
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1986,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56408747477899,
+ 45.52448218455547
+ ],
+ [
+ -73.56414657012995,
+ 45.524517947895276
+ ],
+ [
+ -73.5640908697197,
+ 45.524563448194876
+ ],
+ [
+ -73.56409097044377,
+ 45.524563448194876
+ ],
+ [
+ -73.56413944839866,
+ 45.52458588717924
+ ],
+ [
+ -73.56429084207055,
+ 45.5244218571333
+ ],
+ [
+ -73.56427427026321,
+ 45.52441344757284
+ ],
+ [
+ -73.56428176970975,
+ 45.52440614777579
+ ],
+ [
+ -73.56423637013422,
+ 45.52438294796497
+ ],
+ [
+ -73.56423606976065,
+ 45.52438284814023
+ ],
+ [
+ -73.56421997009738,
+ 45.524394847794284
+ ],
+ [
+ -73.56419047952885,
+ 45.52437531092215
+ ],
+ [
+ -73.56408747477899,
+ 45.52448218455547
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1986,
+ "ID_UEV":"01032329",
+ "CIVIQUE_DE":" 2265",
+ "CIVIQUE_FI":" 2275",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1910,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-77-8731-4-000-0000",
+ "SUPERFICIE":270,
+ "SUPERFIC_1":475,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000701969262334,
+ "OBJECTID":90833,
+ "Join_Count":1,
+ "TARGET_FID":90833,
+ "feature_id":"5d4ddff5-5724-4711-8582-47c39dd19358",
+ "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.35,
+ "heightmax":12.87,
+ "elevmin":30.15,
+ "elevmax":38.11,
+ "bldgarea":986.87,
+ "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_2":90833,
+ "Shape_Le_1":0.000701969262334,
+ "Shape_Ar_1":1.99780324953e-08,
+ "OBJECTID_3":90833,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90832,
+ "g_objectid":"942942",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1885078",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994277873140000000",
+ "g_sup_tota":"269.9",
+ "g_geometry":"0.000803299",
+ "g_geomet_1":"3.10028e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000701969262334,
+ "Shape_Area":1.99780324953e-08,
+ "Shape_Le_3":0.000701969461651,
+ "Shape_Ar_2":1.99780324953e-08,
+ "building_height":5.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1987,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55489005155648,
+ 45.50365424389853
+ ],
+ [
+ -73.5550166814965,
+ 45.50371366750205
+ ],
+ [
+ -73.5550557975089,
+ 45.503633902133174
+ ],
+ [
+ -73.55492916487091,
+ 45.503574844553725
+ ],
+ [
+ -73.55492886539666,
+ 45.50357474472898
+ ],
+ [
+ -73.55489005155648,
+ 45.50365424389853
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1987,
+ "ID_UEV":"01090901",
+ "CIVIQUE_DE":" 141",
+ "CIVIQUE_FI":" 143",
+ "NOM_RUE":"rue Saint-Paul Ouest (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-54-0414-6-000-0000",
+ "SUPERFICIE":131,
+ "SUPERFIC_1":393,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000457231106771,
+ "OBJECTID":90839,
+ "Join_Count":1,
+ "TARGET_FID":90839,
+ "feature_id":"386de4e9-2498-495d-8398-6698890475b0",
+ "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.95,
+ "heightmax":65.47,
+ "elevmin":13.64,
+ "elevmax":23.85,
+ "bldgarea":22559.06,
+ "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_2":90839,
+ "Shape_Le_1":0.000457231106771,
+ "Shape_Ar_1":1.24086692655e-08,
+ "OBJECTID_3":90839,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90838,
+ "g_objectid":"938035",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1181105",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":"1",
+ "g_nb_locau":"6",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004054012900000000",
+ "g_sup_tota":"382",
+ "g_geometry":"0.000909228",
+ "g_geomet_1":"4.24575e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000457231106771,
+ "Shape_Area":1.24086692655e-08,
+ "Shape_Le_3":0.000457230673985,
+ "Shape_Ar_2":1.24086692655e-08,
+ "building_height":32.26
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1988,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55237207393391,
+ 45.5079763541757
+ ],
+ [
+ -73.55248358267305,
+ 45.50801816905356
+ ],
+ [
+ -73.55249864631732,
+ 45.50794302080406
+ ],
+ [
+ -73.5525564079737,
+ 45.50786814055254
+ ],
+ [
+ -73.55244666550306,
+ 45.50782294512312
+ ],
+ [
+ -73.55237796539264,
+ 45.50796424480435
+ ],
+ [
+ -73.55237207393391,
+ 45.5079763541757
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1988,
+ "ID_UEV":"01091066",
+ "CIVIQUE_DE":" 251",
+ "CIVIQUE_FI":" 259",
+ "NOM_RUE":"rue Saint-Paul Est (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-78-0089-5-000-0000",
+ "SUPERFICIE":184,
+ "SUPERFIC_1":378,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000579571104863,
+ "OBJECTID":90842,
+ "Join_Count":1,
+ "TARGET_FID":90842,
+ "feature_id":"b0a6c12c-9cd3-4c88-937c-ad5b434b8b66",
+ "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.95,
+ "heightmax":21.38,
+ "elevmin":16.21,
+ "elevmax":22.38,
+ "bldgarea":3174.7,
+ "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_2":90842,
+ "Shape_Le_1":0.000579571104863,
+ "Shape_Ar_1":1.83840685134e-08,
+ "OBJECTID_3":90842,
+ "Join_Cou_1":2,
+ "TARGET_F_1":90841,
+ "g_objectid":"938059",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1181799",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"3",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004078008950000000",
+ "g_sup_tota":"184",
+ "g_geometry":"0.000616821",
+ "g_geomet_1":"2.12891e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000579571104863,
+ "Shape_Area":1.83840685134e-08,
+ "Shape_Le_3":0.000579570767554,
+ "Shape_Ar_2":1.83840685134e-08,
+ "building_height":10.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1989,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55279920514104,
+ 45.50827866487877
+ ],
+ [
+ -73.55281029827849,
+ 45.50828327750155
+ ],
+ [
+ -73.55290240234584,
+ 45.50816063695413
+ ],
+ [
+ -73.55279920514104,
+ 45.50827866487877
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55291843455996,
+ 45.50814230157625
+ ],
+ [
+ -73.55294146529823,
+ 45.50815084513569
+ ],
+ [
+ -73.55293486517374,
+ 45.50815964500191
+ ],
+ [
+ -73.55293956503074,
+ 45.508161545269395
+ ],
+ [
+ -73.55302576504886,
+ 45.50819504501561
+ ],
+ [
+ -73.55308443771847,
+ 45.508120557767825
+ ],
+ [
+ -73.5531127204975,
+ 45.50808242201646
+ ],
+ [
+ -73.55300681813199,
+ 45.50804121597963
+ ],
+ [
+ -73.55291843455996,
+ 45.50814230157625
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1989,
+ "ID_UEV":"01091455",
+ "CIVIQUE_DE":" 431",
+ "CIVIQUE_FI":" 433",
+ "NOM_RUE":"place Jacques-Cartier (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1950,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Immeuble commercial",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-69-6120-1-000-0000",
+ "SUPERFICIE":333,
+ "SUPERFIC_1":379,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000845495732071,
+ "OBJECTID":90843,
+ "Join_Count":1,
+ "TARGET_FID":90843,
+ "feature_id":"b0a6c12c-9cd3-4c88-937c-ad5b434b8b66",
+ "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.95,
+ "heightmax":21.38,
+ "elevmin":16.21,
+ "elevmax":22.38,
+ "bldgarea":3174.7,
+ "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_2":90843,
+ "Shape_Le_1":0.000845495732071,
+ "Shape_Ar_1":1.68398533582e-08,
+ "OBJECTID_3":90843,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90842,
+ "g_objectid":"944980",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1181795",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":" ",
+ "g_nb_locau":"13",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004069741130000000",
+ "g_sup_tota":"687.4",
+ "g_geometry":"0.00118098",
+ "g_geomet_1":"7.84512e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000845495732071,
+ "Shape_Area":1.68398533582e-08,
+ "Shape_Le_3":0.000845495303353,
+ "Shape_Ar_2":1.68398533582e-08,
+ "building_height":10.215
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1990,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56142116028016,
+ 45.52601970509561
+ ],
+ [
+ -73.56142276916731,
+ 45.52602034811087
+ ],
+ [
+ -73.56135756921829,
+ 45.526101348248915
+ ],
+ [
+ -73.56147074619982,
+ 45.52615542178558
+ ],
+ [
+ -73.56148653919428,
+ 45.52613900556095
+ ],
+ [
+ -73.56167811817247,
+ 45.52593986778097
+ ],
+ [
+ -73.5616448693371,
+ 45.52592544805128
+ ],
+ [
+ -73.56158856907905,
+ 45.52590114747027
+ ],
+ [
+ -73.56154810408358,
+ 45.52588369073004
+ ],
+ [
+ -73.56142116028016,
+ 45.52601970509561
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1990,
+ "ID_UEV":"01032624",
+ "CIVIQUE_DE":" 2131",
+ "CIVIQUE_FI":" 2131",
+ "NOM_RUE":"rue De Champlain (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":19,
+ "ANNEE_CONS":1966,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-99-9401-7-000-0000",
+ "SUPERFICIE":377,
+ "SUPERFIC_1":860,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00085793641653,
+ "OBJECTID":90858,
+ "Join_Count":1,
+ "TARGET_FID":90858,
+ "feature_id":"efb6e9ca-6a74-42ff-9880-251a7354d8d4",
+ "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.49,
+ "heightmax":41.28,
+ "elevmin":28.53,
+ "elevmax":30.05,
+ "bldgarea":1057.92,
+ "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_2":90858,
+ "Shape_Le_1":0.00085793641653,
+ "Shape_Ar_1":3.80806846951e-08,
+ "OBJECTID_3":90858,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90857,
+ "g_objectid":"941653",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565660",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004208039420000000",
+ "g_sup_tota":"371.8",
+ "g_geometry":"0.000932617",
+ "g_geomet_1":"4.28005e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00085793641653,
+ "Shape_Area":3.80806846951e-08,
+ "Shape_Le_3":0.000857936395397,
+ "Shape_Ar_2":3.80806846951e-08,
+ "building_height":19.395
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1991,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5617558142013,
+ 45.52307588679304
+ ],
+ [
+ -73.56187502383513,
+ 45.52313140643955
+ ],
+ [
+ -73.56189934150325,
+ 45.523104363825624
+ ],
+ [
+ -73.5619245692853,
+ 45.52306654823291
+ ],
+ [
+ -73.56185386908264,
+ 45.52304324769802
+ ],
+ [
+ -73.56187106951609,
+ 45.52301754777191
+ ],
+ [
+ -73.56183136894437,
+ 45.523004347522914
+ ],
+ [
+ -73.56184456919335,
+ 45.52298494824706
+ ],
+ [
+ -73.56196905514962,
+ 45.523026834171354
+ ],
+ [
+ -73.56197175581373,
+ 45.5230238295364
+ ],
+ [
+ -73.56185367303043,
+ 45.52296853561972
+ ],
+ [
+ -73.5617558142013,
+ 45.52307588679304
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1991,
+ "ID_UEV":"01032285",
+ "CIVIQUE_DE":" 2032",
+ "CIVIQUE_FI":" 2032",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":2,
+ "NOMBRE_LOG":1,
+ "ANNEE_CONS":1870,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-95-6771-4-000-0000",
+ "SUPERFICIE":159,
+ "SUPERFIC_1":190,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000795030542533,
+ "OBJECTID":90871,
+ "Join_Count":1,
+ "TARGET_FID":90871,
+ "feature_id":"ebe94d82-3efd-4a6c-a255-28b22365bae9",
+ "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.14,
+ "heightmax":12.79,
+ "elevmin":26.56,
+ "elevmax":27.84,
+ "bldgarea":2155.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_2":90871,
+ "Shape_Le_1":0.000795030542533,
+ "Shape_Ar_1":1.25934359282e-08,
+ "OBJECTID_3":90871,
+ "Join_Cou_1":5,
+ "TARGET_F_1":90870,
+ "g_objectid":"941642",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565619",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994295756340000000",
+ "g_sup_tota":"218.8",
+ "g_geometry":"0.000660185",
+ "g_geomet_1":"2.465e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000795030542533,
+ "Shape_Area":1.25934359282e-08,
+ "Shape_Le_3":0.000795030426765,
+ "Shape_Ar_2":1.25934359282e-08,
+ "building_height":5.324999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1992,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.56220807786235,
+ 45.5230946907177
+ ],
+ [
+ -73.56221866917808,
+ 45.52308154802532
+ ],
+ [
+ -73.56211446922921,
+ 45.52304004791018
+ ],
+ [
+ -73.56198296946032,
+ 45.523175348214046
+ ],
+ [
+ -73.561978771425,
+ 45.523179722516474
+ ],
+ [
+ -73.56208558390442,
+ 45.52322946941478
+ ],
+ [
+ -73.56220807786235,
+ 45.5230946907177
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1992,
+ "ID_UEV":"01032287",
+ "CIVIQUE_DE":" 2040",
+ "CIVIQUE_FI":" 2048",
+ "NOM_RUE":"rue Panet (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":4,
+ "ANNEE_CONS":1875,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"9942-95-4880-5-000-0000",
+ "SUPERFICIE":221,
+ "SUPERFIC_1":392,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000623734083767,
+ "OBJECTID":90894,
+ "Join_Count":1,
+ "TARGET_FID":90894,
+ "feature_id":"702f3bc8-3ea6-4f74-ba6e-f1235929ae50",
+ "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.27,
+ "heightmax":12.24,
+ "elevmin":26.87,
+ "elevmax":28.4,
+ "bldgarea":806.54,
+ "comment":" ",
+ "OBJECTID_2":90894,
+ "Shape_Le_1":0.000623734083767,
+ "Shape_Ar_1":2.13979957172e-08,
+ "OBJECTID_3":90894,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90893,
+ "g_objectid":"941636",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1565607",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"4",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023994295488050000000",
+ "g_sup_tota":"220.7",
+ "g_geometry":"0.000667002",
+ "g_geomet_1":"2.5099e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000623734083767,
+ "Shape_Area":2.13979957172e-08,
+ "Shape_Le_3":0.00062373284812,
+ "Shape_Ar_2":2.13979957172e-08,
+ "building_height":4.985
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1993,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55749830312604,
+ 45.5219124122783
+ ],
+ [
+ -73.55759454317547,
+ 45.521956935914154
+ ],
+ [
+ -73.55766060197705,
+ 45.521887197986096
+ ],
+ [
+ -73.55758396804754,
+ 45.52185484757345
+ ],
+ [
+ -73.55756266850419,
+ 45.52187974800226
+ ],
+ [
+ -73.55753890122116,
+ 45.52186970167568
+ ],
+ [
+ -73.55749830312604,
+ 45.5219124122783
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1993,
+ "ID_UEV":"01032384",
+ "CIVIQUE_DE":" 1662",
+ "CIVIQUE_FI":" 1664",
+ "NOM_RUE":"rue Plessis (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\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-34-0042-3-000-0000",
+ "SUPERFICIE":114,
+ "SUPERFIC_1":112,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000402777591501,
+ "OBJECTID":90902,
+ "Join_Count":1,
+ "TARGET_FID":90902,
+ "feature_id":"2f5b5b7a-4a6b-4b0b-b16d-27fd453d9f25",
+ "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.56,
+ "heightmax":15.37,
+ "elevmin":25.67,
+ "elevmax":27.18,
+ "bldgarea":1027.38,
+ "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_2":90902,
+ "Shape_Le_1":0.000402777591501,
+ "Shape_Ar_1":8.67570456682e-09,
+ "OBJECTID_3":90902,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90901,
+ "g_objectid":"943593",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2652656",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"5",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004224844280000000",
+ "g_sup_tota":"558.4",
+ "g_geometry":"0.00107047",
+ "g_geomet_1":"6.50163e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000402777591501,
+ "Shape_Area":8.67570456682e-09,
+ "Shape_Le_3":0.000402778309613,
+ "Shape_Ar_2":8.67570456682e-09,
+ "building_height":6.404999999999999
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1994,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55467767305801,
+ 45.505615900004074
+ ],
+ [
+ -73.55503596655845,
+ 45.50572694469304
+ ],
+ [
+ -73.55505965020454,
+ 45.50573427686568
+ ],
+ [
+ -73.55469939618203,
+ 45.50557799717712
+ ],
+ [
+ -73.55467767305801,
+ 45.505615900004074
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1994,
+ "ID_UEV":"01091421",
+ "CIVIQUE_DE":"99999",
+ "CIVIQUE_FI":"99999",
+ "NOM_RUE":"boulevard Saint-Laurent (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":2999,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Terrain de stationnement pour automobiles",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-56-1048-6-000-0000",
+ "SUPERFICIE":685,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00083627730395,
+ "OBJECTID":90917,
+ "Join_Count":1,
+ "TARGET_FID":90917,
+ "feature_id":"e9c8d19d-0f46-449e-bd82-59f46cc9a19c",
+ "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.97,
+ "heightmax":44.12,
+ "elevmin":17.71,
+ "elevmax":24.21,
+ "bldgarea":7957.09,
+ "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_2":90917,
+ "Shape_Le_1":0.00083627730395,
+ "Shape_Ar_1":8.52628165846e-09,
+ "OBJECTID_3":90917,
+ "Join_Cou_1":3,
+ "TARGET_F_1":90916,
+ "g_objectid":"944969",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Service",
+ "g_no_lot":"1181223",
+ "g_nb_poly_":"1",
+ "g_utilisat":"6000",
+ "g_nb_logem":"3",
+ "g_nb_locau":"16",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004056003390000000",
+ "g_sup_tota":"942.5",
+ "g_geometry":"0.00152754",
+ "g_geomet_1":"1.09125e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00083627730395,
+ "Shape_Area":8.52628165846e-09,
+ "Shape_Le_3":0.00083627721098,
+ "Shape_Ar_2":8.52628165846e-09,
+ "building_height":21.575
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1995,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.55472971952278,
+ 45.50654769027398
+ ],
+ [
+ -73.55481986756467,
+ 45.50658977045184
+ ],
+ [
+ -73.55486510616157,
+ 45.50653244406733
+ ],
+ [
+ -73.55487153451556,
+ 45.50653551974873
+ ],
+ [
+ -73.55488197024857,
+ 45.50652158205566
+ ],
+ [
+ -73.55498297490621,
+ 45.506386693641296
+ ],
+ [
+ -73.55429234503754,
+ 45.50611083919417
+ ],
+ [
+ -73.5542209478603,
+ 45.50620174176726
+ ],
+ [
+ -73.5542306848201,
+ 45.506205719468674
+ ],
+ [
+ -73.55422214485795,
+ 45.506216195671186
+ ],
+ [
+ -73.55423326497504,
+ 45.506220544792605
+ ],
+ [
+ -73.5541718008098,
+ 45.50629813470145
+ ],
+ [
+ -73.5541763774597,
+ 45.506299823628254
+ ],
+ [
+ -73.55417472630442,
+ 45.5063013147042
+ ],
+ [
+ -73.5545016514519,
+ 45.506439205954884
+ ],
+ [
+ -73.55450260833055,
+ 45.506437832690125
+ ],
+ [
+ -73.55450860950657,
+ 45.50644058821287
+ ],
+ [
+ -73.55457686445257,
+ 45.50647192778753
+ ],
+ [
+ -73.55457438682033,
+ 45.50647518063537
+ ],
+ [
+ -73.55472971952278,
+ 45.50654769027398
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1995,
+ "ID_UEV":"01116340",
+ "CIVIQUE_DE":" 445",
+ "CIVIQUE_FI":" 447",
+ "NOM_RUE":"rue Saint-Jean-Baptiste (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":0,
+ "ANNEE_CONS":1991,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"H\u00c3\u00b4tel (incluant les h\u00c3\u00b4tels-motels)",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0040-57-3515-0-000-0000",
+ "SUPERFICIE":1511,
+ "SUPERFIC_1":0,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.00198060875045,
+ "OBJECTID":90918,
+ "Join_Count":1,
+ "TARGET_FID":90918,
+ "feature_id":"060405d3-3044-485d-bb9e-a435109fdb0c",
+ "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.97,
+ "heightmax":31.04,
+ "elevmin":15.81,
+ "elevmax":24.47,
+ "bldgarea":6097.51,
+ "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_2":90918,
+ "Shape_Le_1":0.00198060875045,
+ "Shape_Ar_1":1.69564399091e-07,
+ "OBJECTID_3":90918,
+ "Join_Cou_1":7,
+ "TARGET_F_1":90917,
+ "g_objectid":"938039",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"Commercial",
+ "g_no_lot":"1181581",
+ "g_nb_poly_":"1",
+ "g_utilisat":"5010",
+ "g_nb_logem":" ",
+ "g_nb_locau":"1",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004057662470000000",
+ "g_sup_tota":"1015.9",
+ "g_geometry":"0.00163825",
+ "g_geomet_1":"1.16996e-007",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.00198060875045,
+ "Shape_Area":1.69564399091e-07,
+ "Shape_Le_3":0.00198060967622,
+ "Shape_Ar_2":1.69564399091e-07,
+ "building_height":15.035
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1996,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55742873516984,
+ 45.52627018876849
+ ],
+ [
+ -73.55739246820968,
+ 45.52625044775026
+ ],
+ [
+ -73.55738946807134,
+ 45.52625324823911
+ ],
+ [
+ -73.55734206840359,
+ 45.52629744811903
+ ],
+ [
+ -73.55730906778109,
+ 45.52627994821134
+ ],
+ [
+ -73.55730896795635,
+ 45.52628014786083
+ ],
+ [
+ -73.5572230683118,
+ 45.5263734480265
+ ],
+ [
+ -73.55729873726875,
+ 45.526408404674434
+ ],
+ [
+ -73.55742873516984,
+ 45.52627018876849
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55736893475039,
+ 45.52620078808619
+ ],
+ [
+ -73.55736732676256,
+ 45.526202496798085
+ ],
+ [
+ -73.55745142146777,
+ 45.5262460680519
+ ],
+ [
+ -73.55745592797055,
+ 45.52624127556471
+ ],
+ [
+ -73.55736893475039,
+ 45.52620078808619
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1996,
+ "ID_UEV":"01119159",
+ "CIVIQUE_DE":" 1900",
+ "CIVIQUE_FI":" 1904",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":0,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-39-2133-7-000-0000",
+ "SUPERFICIE":189,
+ "SUPERFIC_1":706,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000747292120544,
+ "OBJECTID":90920,
+ "Join_Count":2,
+ "TARGET_FID":90920,
+ "feature_id":"b77fdb8e-0161-44d5-9bf1-8f01e78bd0fa",
+ "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.5,
+ "heightmax":36.6,
+ "elevmin":23.67,
+ "elevmax":24.87,
+ "bldgarea":821.05,
+ "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_2":90920,
+ "Shape_Le_1":0.000747292120544,
+ "Shape_Ar_1":1.32205158344e-08,
+ "OBJECTID_3":90920,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90919,
+ "g_objectid":"943562",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2356472",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004239143810000000",
+ "g_sup_tota":"194.8",
+ "g_geometry":"0.000675854",
+ "g_geomet_1":"2.24741e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000747292120544,
+ "Shape_Area":1.32205158344e-08,
+ "Shape_Le_3":0.000747292395713,
+ "Shape_Ar_2":1.32205158344e-08,
+ "building_height":17.05
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1997,
+ "geometry":{
+ "type":"Polygon",
+ "coordinates":[
+ [
+ [
+ -73.5593340937153,
+ 45.522761599818274
+ ],
+ [
+ -73.55946443785537,
+ 45.522821940730275
+ ],
+ [
+ -73.55954747405852,
+ 45.52273367946603
+ ],
+ [
+ -73.5594846681048,
+ 45.52270814771314
+ ],
+ [
+ -73.55957816791995,
+ 45.5225944482255
+ ],
+ [
+ -73.5595597677909,
+ 45.52258614748302
+ ],
+ [
+ -73.55952076779104,
+ 45.52256814755226
+ ],
+ [
+ -73.55939956795754,
+ 45.52269844762555
+ ],
+ [
+ -73.5593953402446,
+ 45.52269650059332
+ ],
+ [
+ -73.5593340937153,
+ 45.522761599818274
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1997,
+ "ID_UEV":"01115506",
+ "CIVIQUE_DE":" 1834",
+ "CIVIQUE_FI":" 1842",
+ "NOM_RUE":"rue Plessis (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":6,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":"A",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-15-5130-0-000-0000",
+ "SUPERFICIE":375,
+ "SUPERFIC_1":432,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000814947884783,
+ "OBJECTID":90922,
+ "Join_Count":1,
+ "TARGET_FID":90922,
+ "feature_id":"efe7f60b-e277-4767-94f1-fb601a5ab6a0",
+ "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.46,
+ "heightmax":38.13,
+ "elevmin":24.8,
+ "elevmax":26.63,
+ "bldgarea":1884.27,
+ "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_2":90922,
+ "Shape_Le_1":0.000814947884783,
+ "Shape_Ar_1":2.56811231431e-08,
+ "OBJECTID_3":90922,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90921,
+ "g_objectid":"941981",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"1567032",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"6",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004215513000000000",
+ "g_sup_tota":"375.3",
+ "g_geometry":"0.000928082",
+ "g_geomet_1":"4.36676e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000814947884783,
+ "Shape_Area":2.56811231431e-08,
+ "Shape_Le_3":0.000814948270867,
+ "Shape_Ar_2":2.56811231431e-08,
+ "building_height":17.835
+ }
+ },
+ {
+ "type":"Feature",
+ "id":1998,
+ "geometry":{
+ "type":"MultiPolygon",
+ "coordinates":[
+ [
+ [
+ [
+ -73.55729873726875,
+ 45.526408404674434
+ ],
+ [
+ -73.55733216776717,
+ 45.5264238478326
+ ],
+ [
+ -73.55738873332523,
+ 45.52644997403737
+ ],
+ [
+ -73.55747705214608,
+ 45.52635623140525
+ ],
+ [
+ -73.55743816815878,
+ 45.526335047874454
+ ],
+ [
+ -73.55747936790036,
+ 45.52629774759327
+ ],
+ [
+ -73.55742873516984,
+ 45.52627018876849
+ ],
+ [
+ -73.55729873726875,
+ 45.526408404674434
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -73.55745142146777,
+ 45.5262460680519
+ ],
+ [
+ -73.55746006844925,
+ 45.526250547575
+ ],
+ [
+ -73.55746524224898,
+ 45.526245611196295
+ ],
+ [
+ -73.55745592797055,
+ 45.52624127556471
+ ],
+ [
+ -73.55745142146777,
+ 45.5262460680519
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties":{
+ "FID":1998,
+ "ID_UEV":"01119160",
+ "CIVIQUE_DE":" 1906",
+ "CIVIQUE_FI":" 1910",
+ "NOM_RUE":"rue Dorion (MTL)",
+ "SUITE_DEBU":" ",
+ "MUNICIPALI":"50",
+ "ETAGE_HORS":3,
+ "NOMBRE_LOG":3,
+ "ANNEE_CONS":1900,
+ "CODE_UTILI":"1000",
+ "LETTRE_DEB":" ",
+ "LETTRE_FIN":" ",
+ "LIBELLE_UT":"Logement",
+ "CATEGORIE_":"R\u00c3\u00a9gulier",
+ "MATRICULE8":"0042-39-1438-1-000-0000",
+ "SUPERFICIE":195,
+ "SUPERFIC_1":353,
+ "NO_ARROND_":"REM19",
+ "Shape_Leng":0.000608916825968,
+ "OBJECTID":90924,
+ "Join_Count":2,
+ "TARGET_FID":90924,
+ "feature_id":"b77fdb8e-0161-44d5-9bf1-8f01e78bd0fa",
+ "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.5,
+ "heightmax":36.6,
+ "elevmin":23.67,
+ "elevmax":24.87,
+ "bldgarea":821.05,
+ "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_2":90924,
+ "Shape_Le_1":0.000608916825968,
+ "Shape_Ar_1":1.54016931163e-08,
+ "OBJECTID_3":90924,
+ "Join_Cou_1":4,
+ "TARGET_F_1":90923,
+ "g_objectid":"943562",
+ "g_co_mrc":"66023",
+ "g_code_mun":"66023",
+ "g_arrond":"REM19",
+ "g_anrole":"2019",
+ "g_usag_pre":"R\u00c3\u00a9sidentiel",
+ "g_no_lot":"2356472",
+ "g_nb_poly_":"1",
+ "g_utilisat":"1000",
+ "g_nb_logem":"3",
+ "g_nb_locau":" ",
+ "g_descript":"Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
+ "g_id_provi":"66023004239143810000000",
+ "g_sup_tota":"194.8",
+ "g_geometry":"0.000675854",
+ "g_geomet_1":"2.24741e-008",
+ "g_dat_acqu":"2020-02-12 00:00:00.0000000",
+ "g_dat_char":"2020-02-17 00:00:00.0000000",
+ "Shape_Le_2":0.000608916825968,
+ "Shape_Area":1.54016931163e-08,
+ "Shape_Le_3":0.000608916394978,
+ "Shape_Ar_2":1.54016931163e-08,
+ "building_height":17.05
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/hub/unittests/tests_data/New_York.cli b/hub/unittests/tests_data/New_York.cli
new file mode 100644
index 00000000..230d3eef
--- /dev/null
+++ b/hub/unittests/tests_data/New_York.cli
@@ -0,0 +1,8764 @@
+New_York
+45.47,-73.75,0.0,-5.0
+
+dm m h G_Dh G_Bn
+1 1 1 0 0
+1 1 2 0 0
+1 1 3 0 0
+1 1 4 0 0
+1 1 5 0 0
+1 1 6 0 0
+1 1 7 0 0
+1 1 8 0 0
+1 1 9 78 357
+1 1 10 204 628
+1 1 11 291 688
+1 1 12 338 714
+1 1 13 214 267
+1 1 14 181 258
+1 1 15 116 234
+1 1 16 39 115
+1 1 17 0 0
+1 1 18 0 0
+1 1 19 0 0
+1 1 20 0 0
+1 1 21 0 0
+1 1 22 0 0
+1 1 23 0 0
+1 1 24 0 0
+2 1 1 0 0
+2 1 2 0 0
+2 1 3 0 0
+2 1 4 0 0
+2 1 5 0 0
+2 1 6 0 0
+2 1 7 0 0
+2 1 8 0 0
+2 1 9 67 63
+2 1 10 188 406
+2 1 11 239 444
+2 1 12 235 275
+2 1 13 256 366
+2 1 14 169 0
+2 1 15 94 0
+2 1 16 28 0
+2 1 17 0 0
+2 1 18 0 0
+2 1 19 0 0
+2 1 20 0 0
+2 1 21 0 0
+2 1 22 0 0
+2 1 23 0 0
+2 1 24 0 0
+3 1 1 0 0
+3 1 2 0 0
+3 1 3 0 0
+3 1 4 0 0
+3 1 5 0 0
+3 1 6 0 0
+3 1 7 0 0
+3 1 8 0 0
+3 1 9 29 0
+3 1 10 44 0
+3 1 11 114 0
+3 1 12 159 0
+3 1 13 168 89
+3 1 14 129 86
+3 1 15 117 157
+3 1 16 16 0
+3 1 17 0 0
+3 1 18 0 0
+3 1 19 0 0
+3 1 20 0 0
+3 1 21 0 0
+3 1 22 0 0
+3 1 23 0 0
+3 1 24 0 0
+4 1 1 0 0
+4 1 2 0 0
+4 1 3 0 0
+4 1 4 0 0
+4 1 5 0 0
+4 1 6 0 0
+4 1 7 0 0
+4 1 8 0 0
+4 1 9 106 504
+4 1 10 242 732
+4 1 11 345 801
+4 1 12 414 824
+4 1 13 413 826
+4 1 14 349 711
+4 1 15 145 162
+4 1 16 58 123
+4 1 17 0 0
+4 1 18 0 0
+4 1 19 0 0
+4 1 20 0 0
+4 1 21 0 0
+4 1 22 0 0
+4 1 23 0 0
+4 1 24 0 0
+5 1 1 0 0
+5 1 2 0 0
+5 1 3 0 0
+5 1 4 0 0
+5 1 5 0 0
+5 1 6 0 0
+5 1 7 0 0
+5 1 8 0 0
+5 1 9 54 60
+5 1 10 127 79
+5 1 11 139 86
+5 1 12 189 89
+5 1 13 221 89
+5 1 14 194 174
+5 1 15 109 0
+5 1 16 39 0
+5 1 17 0 0
+5 1 18 0 0
+5 1 19 0 0
+5 1 20 0 0
+5 1 21 0 0
+5 1 22 0 0
+5 1 23 0 0
+5 1 24 0 0
+6 1 1 0 0
+6 1 2 0 0
+6 1 3 0 0
+6 1 4 0 0
+6 1 5 0 0
+6 1 6 0 0
+6 1 7 0 0
+6 1 8 0 0
+6 1 9 102 437
+6 1 10 224 406
+6 1 11 328 442
+6 1 12 280 91
+6 1 13 173 0
+6 1 14 113 0
+6 1 15 61 0
+6 1 16 24 0
+6 1 17 0 0
+6 1 18 0 0
+6 1 19 0 0
+6 1 20 0 0
+6 1 21 0 0
+6 1 22 0 0
+6 1 23 0 0
+6 1 24 0 0
+7 1 1 0 0
+7 1 2 0 0
+7 1 3 0 0
+7 1 4 0 0
+7 1 5 0 0
+7 1 6 0 0
+7 1 7 0 0
+7 1 8 0 0
+7 1 9 101 384
+7 1 10 195 247
+7 1 11 187 180
+7 1 12 234 93
+7 1 13 252 93
+7 1 14 218 90
+7 1 15 240 578
+7 1 16 103 523
+7 1 17 0 0
+7 1 18 0 0
+7 1 19 0 0
+7 1 20 0 0
+7 1 21 0 0
+7 1 22 0 0
+7 1 23 0 0
+7 1 24 0 0
+8 1 1 0 0
+8 1 2 0 0
+8 1 3 0 0
+8 1 4 0 0
+8 1 5 0 0
+8 1 6 0 0
+8 1 7 0 0
+8 1 8 0 0
+8 1 9 46 194
+8 1 10 128 249
+8 1 11 238 362
+8 1 12 365 468
+8 1 13 358 281
+8 1 14 278 273
+8 1 15 224 418
+8 1 16 117 463
+8 1 17 0 0
+8 1 18 0 0
+8 1 19 0 0
+8 1 20 0 0
+8 1 21 0 0
+8 1 22 0 0
+8 1 23 0 0
+8 1 24 0 0
+9 1 1 0 0
+9 1 2 0 0
+9 1 3 0 0
+9 1 4 0 0
+9 1 5 0 0
+9 1 6 0 0
+9 1 7 0 0
+9 1 8 0 0
+9 1 9 111 598
+9 1 10 250 758
+9 1 11 355 823
+9 1 12 413 854
+9 1 13 429 948
+9 1 14 372 915
+9 1 15 267 754
+9 1 16 123 531
+9 1 17 0 0
+9 1 18 0 0
+9 1 19 0 0
+9 1 20 0 0
+9 1 21 0 0
+9 1 22 0 0
+9 1 23 0 0
+9 1 24 0 0
+10 1 1 0 0
+10 1 2 0 0
+10 1 3 0 0
+10 1 4 0 0
+10 1 5 0 0
+10 1 6 0 0
+10 1 7 0 0
+10 1 8 0 0
+10 1 9 49 0
+10 1 10 116 0
+10 1 11 173 0
+10 1 12 203 0
+10 1 13 204 0
+10 1 14 175 0
+10 1 15 119 0
+10 1 16 53 0
+10 1 17 0 0
+10 1 18 0 0
+10 1 19 0 0
+10 1 20 0 0
+10 1 21 0 0
+10 1 22 0 0
+10 1 23 0 0
+10 1 24 0 0
+11 1 1 0 0
+11 1 2 0 0
+11 1 3 0 0
+11 1 4 0 0
+11 1 5 0 0
+11 1 6 0 0
+11 1 7 0 0
+11 1 8 0 0
+11 1 9 74 64
+11 1 10 124 84
+11 1 11 140 0
+11 1 12 189 0
+11 1 13 252 188
+11 1 14 117 0
+11 1 15 253 593
+11 1 16 118 545
+11 1 17 0 0
+11 1 18 0 0
+11 1 19 0 0
+11 1 20 0 0
+11 1 21 0 0
+11 1 22 0 0
+11 1 23 0 0
+11 1 24 0 0
+12 1 1 0 0
+12 1 2 0 0
+12 1 3 0 0
+12 1 4 0 0
+12 1 5 0 0
+12 1 6 0 0
+12 1 7 0 0
+12 1 8 0 0
+12 1 9 112 607
+12 1 10 250 767
+12 1 11 354 833
+12 1 12 409 858
+12 1 13 412 859
+12 1 14 359 831
+12 1 15 259 770
+12 1 16 123 621
+12 1 17 0 0
+12 1 18 0 0
+12 1 19 0 0
+12 1 20 0 0
+12 1 21 0 0
+12 1 22 0 0
+12 1 23 0 0
+12 1 24 0 0
+13 1 1 0 0
+13 1 2 0 0
+13 1 3 0 0
+13 1 4 0 0
+13 1 5 0 0
+13 1 6 0 0
+13 1 7 0 0
+13 1 8 0 0
+13 1 9 116 398
+13 1 10 229 336
+13 1 11 365 273
+13 1 12 437 377
+13 1 13 441 283
+13 1 14 307 0
+13 1 15 166 0
+13 1 16 80 0
+13 1 17 0 0
+13 1 18 0 0
+13 1 19 0 0
+13 1 20 0 0
+13 1 21 0 0
+13 1 22 0 0
+13 1 23 0 0
+13 1 24 0 0
+14 1 1 0 0
+14 1 2 0 0
+14 1 3 0 0
+14 1 4 0 0
+14 1 5 0 0
+14 1 6 0 0
+14 1 7 0 0
+14 1 8 0 0
+14 1 9 52 0
+14 1 10 234 586
+14 1 11 371 909
+14 1 12 421 845
+14 1 13 429 842
+14 1 14 390 731
+14 1 15 276 673
+14 1 16 131 613
+14 1 17 0 0
+14 1 18 0 0
+14 1 19 0 0
+14 1 20 0 0
+14 1 21 0 0
+14 1 22 0 0
+14 1 23 0 0
+14 1 24 0 0
+15 1 1 0 0
+15 1 2 0 0
+15 1 3 0 0
+15 1 4 0 0
+15 1 5 0 0
+15 1 6 0 0
+15 1 7 0 0
+15 1 8 0 0
+15 1 9 116 603
+15 1 10 257 762
+15 1 11 364 829
+15 1 12 421 853
+15 1 13 426 955
+15 1 14 387 926
+15 1 15 284 866
+15 1 16 140 705
+15 1 17 2 29
+15 1 18 0 0
+15 1 19 0 0
+15 1 20 0 0
+15 1 21 0 0
+15 1 22 0 0
+15 1 23 0 0
+15 1 24 0 0
+16 1 1 0 0
+16 1 2 0 0
+16 1 3 0 0
+16 1 4 0 0
+16 1 5 0 0
+16 1 6 0 0
+16 1 7 0 0
+16 1 8 0 0
+16 1 9 55 0
+16 1 10 126 0
+16 1 11 202 92
+16 1 12 242 190
+16 1 13 303 380
+16 1 14 229 278
+16 1 15 263 686
+16 1 16 137 632
+16 1 17 12 72
+16 1 18 0 0
+16 1 19 0 0
+16 1 20 0 0
+16 1 21 0 0
+16 1 22 0 0
+16 1 23 0 0
+16 1 24 0 0
+17 1 1 0 0
+17 1 2 0 0
+17 1 3 0 0
+17 1 4 0 0
+17 1 5 0 0
+17 1 6 0 0
+17 1 7 0 0
+17 1 8 0 0
+17 1 9 58 66
+17 1 10 215 250
+17 1 11 184 91
+17 1 12 246 93
+17 1 13 248 93
+17 1 14 217 91
+17 1 15 174 168
+17 1 16 95 207
+17 1 17 9 21
+17 1 18 0 0
+17 1 19 0 0
+17 1 20 0 0
+17 1 21 0 0
+17 1 22 0 0
+17 1 23 0 0
+17 1 24 0 0
+18 1 1 0 0
+18 1 2 0 0
+18 1 3 0 0
+18 1 4 0 0
+18 1 5 0 0
+18 1 6 0 0
+18 1 7 0 0
+18 1 8 0 0
+18 1 9 80 197
+18 1 10 164 166
+18 1 11 211 90
+18 1 12 212 93
+18 1 13 258 186
+18 1 14 197 91
+18 1 15 134 84
+18 1 16 76 139
+18 1 17 10 26
+18 1 18 0 0
+18 1 19 0 0
+18 1 20 0 0
+18 1 21 0 0
+18 1 22 0 0
+18 1 23 0 0
+18 1 24 0 0
+19 1 1 0 0
+19 1 2 0 0
+19 1 3 0 0
+19 1 4 0 0
+19 1 5 0 0
+19 1 6 0 0
+19 1 7 0 0
+19 1 8 0 0
+19 1 9 42 0
+19 1 10 84 0
+19 1 11 123 0
+19 1 12 148 0
+19 1 13 200 0
+19 1 14 109 0
+19 1 15 125 0
+19 1 16 60 0
+19 1 17 6 0
+19 1 18 0 0
+19 1 19 0 0
+19 1 20 0 0
+19 1 21 0 0
+19 1 22 0 0
+19 1 23 0 0
+19 1 24 0 0
+20 1 1 0 0
+20 1 2 0 0
+20 1 3 0 0
+20 1 4 0 0
+20 1 5 0 0
+20 1 6 0 0
+20 1 7 0 0
+20 1 8 0 0
+20 1 9 33 0
+20 1 10 82 0
+20 1 11 109 0
+20 1 12 124 0
+20 1 13 85 0
+20 1 14 113 0
+20 1 15 73 0
+20 1 16 51 67
+20 1 17 6 0
+20 1 18 0 0
+20 1 19 0 0
+20 1 20 0 0
+20 1 21 0 0
+20 1 22 0 0
+20 1 23 0 0
+20 1 24 0 0
+21 1 1 0 0
+21 1 2 0 0
+21 1 3 0 0
+21 1 4 0 0
+21 1 5 0 0
+21 1 6 0 0
+21 1 7 0 0
+21 1 8 0 0
+21 1 9 110 392
+21 1 10 268 737
+21 1 11 376 803
+21 1 12 435 828
+21 1 13 432 739
+21 1 14 353 449
+21 1 15 229 334
+21 1 16 116 278
+21 1 17 14 34
+21 1 18 0 0
+21 1 19 0 0
+21 1 20 0 0
+21 1 21 0 0
+21 1 22 0 0
+21 1 23 0 0
+21 1 24 0 0
+22 1 1 0 0
+22 1 2 0 0
+22 1 3 0 0
+22 1 4 0 0
+22 1 5 0 0
+22 1 6 0 0
+22 1 7 0 0
+22 1 8 0 0
+22 1 9 30 0
+22 1 10 72 0
+22 1 11 51 0
+22 1 12 132 0
+22 1 13 102 0
+22 1 14 70 0
+22 1 15 143 0
+22 1 16 71 0
+22 1 17 9 0
+22 1 18 0 0
+22 1 19 0 0
+22 1 20 0 0
+22 1 21 0 0
+22 1 22 0 0
+22 1 23 0 0
+22 1 24 0 0
+23 1 1 0 0
+23 1 2 0 0
+23 1 3 0 0
+23 1 4 0 0
+23 1 5 0 0
+23 1 6 0 0
+23 1 7 0 0
+23 1 8 0 0
+23 1 9 83 0
+23 1 10 149 0
+23 1 11 144 0
+23 1 12 119 0
+23 1 13 121 0
+23 1 14 109 0
+23 1 15 83 0
+23 1 16 48 0
+23 1 17 6 0
+23 1 18 0 0
+23 1 19 0 0
+23 1 20 0 0
+23 1 21 0 0
+23 1 22 0 0
+23 1 23 0 0
+23 1 24 0 0
+24 1 1 0 0
+24 1 2 0 0
+24 1 3 0 0
+24 1 4 0 0
+24 1 5 0 0
+24 1 6 0 0
+24 1 7 0 0
+24 1 8 0 0
+24 1 9 40 0
+24 1 10 89 0
+24 1 11 105 0
+24 1 12 117 0
+24 1 13 94 0
+24 1 14 80 0
+24 1 15 34 0
+24 1 16 26 0
+24 1 17 8 0
+24 1 18 0 0
+24 1 19 0 0
+24 1 20 0 0
+24 1 21 0 0
+24 1 22 0 0
+24 1 23 0 0
+24 1 24 0 0
+25 1 1 0 0
+25 1 2 0 0
+25 1 3 0 0
+25 1 4 0 0
+25 1 5 0 0
+25 1 6 0 0
+25 1 7 0 0
+25 1 8 2 26
+25 1 9 152 645
+25 1 10 308 782
+25 1 11 428 843
+25 1 12 474 865
+25 1 13 480 866
+25 1 14 430 849
+25 1 15 326 881
+25 1 16 182 755
+25 1 17 29 238
+25 1 18 0 0
+25 1 19 0 0
+25 1 20 0 0
+25 1 21 0 0
+25 1 22 0 0
+25 1 23 0 0
+25 1 24 0 0
+26 1 1 0 0
+26 1 2 0 0
+26 1 3 0 0
+26 1 4 0 0
+26 1 5 0 0
+26 1 6 0 0
+26 1 7 0 0
+26 1 8 3 30
+26 1 9 147 657
+26 1 10 290 879
+26 1 11 433 847
+26 1 12 466 872
+26 1 13 488 968
+26 1 14 438 947
+26 1 15 334 894
+26 1 16 178 691
+26 1 17 31 246
+26 1 18 0 0
+26 1 19 0 0
+26 1 20 0 0
+26 1 21 0 0
+26 1 22 0 0
+26 1 23 0 0
+26 1 24 0 0
+27 1 1 0 0
+27 1 2 0 0
+27 1 3 0 0
+27 1 4 0 0
+27 1 5 0 0
+27 1 6 0 0
+27 1 7 0 0
+27 1 8 14 55
+27 1 9 153 437
+27 1 10 316 705
+27 1 11 423 944
+27 1 12 489 976
+27 1 13 486 878
+27 1 14 456 381
+27 1 15 297 179
+27 1 16 112 0
+27 1 17 13 0
+27 1 18 0 0
+27 1 19 0 0
+27 1 20 0 0
+27 1 21 0 0
+27 1 22 0 0
+27 1 23 0 0
+27 1 24 0 0
+28 1 1 0 0
+28 1 2 0 0
+28 1 3 0 0
+28 1 4 0 0
+28 1 5 0 0
+28 1 6 0 0
+28 1 7 0 0
+28 1 8 14 68
+28 1 9 173 588
+28 1 10 362 442
+28 1 11 515 378
+28 1 12 597 390
+28 1 13 555 390
+28 1 14 490 478
+28 1 15 361 181
+28 1 16 156 78
+28 1 17 21 0
+28 1 18 0 0
+28 1 19 0 0
+28 1 20 0 0
+28 1 21 0 0
+28 1 22 0 0
+28 1 23 0 0
+28 1 24 0 0
+29 1 1 0 0
+29 1 2 0 0
+29 1 3 0 0
+29 1 4 0 0
+29 1 5 0 0
+29 1 6 0 0
+29 1 7 0 0
+29 1 8 12 43
+29 1 9 105 223
+29 1 10 196 178
+29 1 11 273 191
+29 1 12 346 294
+29 1 13 404 489
+29 1 14 421 766
+29 1 15 329 724
+29 1 16 203 784
+29 1 17 42 382
+29 1 18 0 0
+29 1 19 0 0
+29 1 20 0 0
+29 1 21 0 0
+29 1 22 0 0
+29 1 23 0 0
+29 1 24 0 0
+30 1 1 0 0
+30 1 2 0 0
+30 1 3 0 0
+30 1 4 0 0
+30 1 5 0 0
+30 1 6 0 0
+30 1 7 0 0
+30 1 8 2 0
+30 1 9 47 0
+30 1 10 51 0
+30 1 11 66 0
+30 1 12 130 0
+30 1 13 127 0
+30 1 14 103 0
+30 1 15 121 0
+30 1 16 57 0
+30 1 17 9 0
+30 1 18 0 0
+30 1 19 0 0
+30 1 20 0 0
+30 1 21 0 0
+30 1 22 0 0
+30 1 23 0 0
+30 1 24 0 0
+31 1 1 0 0
+31 1 2 0 0
+31 1 3 0 0
+31 1 4 0 0
+31 1 5 0 0
+31 1 6 0 0
+31 1 7 0 0
+31 1 8 4 0
+31 1 9 48 0
+31 1 10 156 0
+31 1 11 317 188
+31 1 12 231 96
+31 1 13 243 97
+31 1 14 218 95
+31 1 15 161 90
+31 1 16 74 0
+31 1 17 19 47
+31 1 18 0 0
+31 1 19 0 0
+31 1 20 0 0
+31 1 21 0 0
+31 1 22 0 0
+31 1 23 0 0
+31 1 24 0 0
+1 2 1 0 0
+1 2 2 0 0
+1 2 3 0 0
+1 2 4 0 0
+1 2 5 0 0
+1 2 6 0 0
+1 2 7 0 0
+1 2 8 15 68
+1 2 9 98 141
+1 2 10 176 85
+1 2 11 247 0
+1 2 12 446 469
+1 2 13 564 659
+1 2 14 412 829
+1 2 15 350 521
+1 2 16 209 377
+1 2 17 49 313
+1 2 18 0 0
+1 2 19 0 0
+1 2 20 0 0
+1 2 21 0 0
+1 2 22 0 0
+1 2 23 0 0
+1 2 24 0 0
+2 2 1 0 0
+2 2 2 0 0
+2 2 3 0 0
+2 2 4 0 0
+2 2 5 0 0
+2 2 6 0 0
+2 2 7 0 0
+2 2 8 13 26
+2 2 9 91 215
+2 2 10 226 256
+2 2 11 169 0
+2 2 12 149 189
+2 2 13 176 0
+2 2 14 135 0
+2 2 15 103 0
+2 2 16 48 0
+2 2 17 13 0
+2 2 18 0 0
+2 2 19 0 0
+2 2 20 0 0
+2 2 21 0 0
+2 2 22 0 0
+2 2 23 0 0
+2 2 24 0 0
+3 2 1 0 0
+3 2 2 0 0
+3 2 3 0 0
+3 2 4 0 0
+3 2 5 0 0
+3 2 6 0 0
+3 2 7 0 0
+3 2 8 10 0
+3 2 9 77 0
+3 2 10 158 0
+3 2 11 111 0
+3 2 12 174 0
+3 2 13 174 0
+3 2 14 124 0
+3 2 15 99 0
+3 2 16 63 0
+3 2 17 17 0
+3 2 18 0 0
+3 2 19 0 0
+3 2 20 0 0
+3 2 21 0 0
+3 2 22 0 0
+3 2 23 0 0
+3 2 24 0 0
+4 2 1 0 0
+4 2 2 0 0
+4 2 3 0 0
+4 2 4 0 0
+4 2 5 0 0
+4 2 6 0 0
+4 2 7 0 0
+4 2 8 17 0
+4 2 9 131 156
+4 2 10 271 276
+4 2 11 431 683
+4 2 12 518 901
+4 2 13 526 902
+4 2 14 476 884
+4 2 15 374 843
+4 2 16 238 833
+4 2 17 66 556
+4 2 18 0 0
+4 2 19 0 0
+4 2 20 0 0
+4 2 21 0 0
+4 2 22 0 0
+4 2 23 0 0
+4 2 24 0 0
+5 2 1 0 0
+5 2 2 0 0
+5 2 3 0 0
+5 2 4 0 0
+5 2 5 0 0
+5 2 6 0 0
+5 2 7 0 0
+5 2 8 13 0
+5 2 9 91 0
+5 2 10 169 89
+5 2 11 375 287
+5 2 12 553 294
+5 2 13 436 0
+5 2 14 485 0
+5 2 15 274 0
+5 2 16 257 485
+5 2 17 74 312
+5 2 18 0 0
+5 2 19 0 0
+5 2 20 0 0
+5 2 21 0 0
+5 2 22 0 0
+5 2 23 0 0
+5 2 24 0 0
+6 2 1 0 0
+6 2 2 0 0
+6 2 3 0 0
+6 2 4 0 0
+6 2 5 0 0
+6 2 6 0 0
+6 2 7 0 0
+6 2 8 13 0
+6 2 9 83 0
+6 2 10 165 88
+6 2 11 227 0
+6 2 12 263 0
+6 2 13 400 287
+6 2 14 194 93
+6 2 15 264 266
+6 2 16 144 156
+6 2 17 63 204
+6 2 18 0 0
+6 2 19 0 0
+6 2 20 0 0
+6 2 21 0 0
+6 2 22 0 0
+6 2 23 0 0
+6 2 24 0 0
+7 2 1 0 0
+7 2 2 0 0
+7 2 3 0 0
+7 2 4 0 0
+7 2 5 0 0
+7 2 6 0 0
+7 2 7 0 0
+7 2 8 8 55
+7 2 9 95 226
+7 2 10 168 175
+7 2 11 229 0
+7 2 12 264 0
+7 2 13 268 0
+7 2 14 403 467
+7 2 15 412 799
+7 2 16 254 628
+7 2 17 80 365
+7 2 18 0 0
+7 2 19 0 0
+7 2 20 0 0
+7 2 21 0 0
+7 2 22 0 0
+7 2 23 0 0
+7 2 24 0 0
+8 2 1 0 0
+8 2 2 0 0
+8 2 3 0 0
+8 2 4 0 0
+8 2 5 0 0
+8 2 6 0 0
+8 2 7 0 0
+8 2 8 29 212
+8 2 9 194 608
+8 2 10 366 791
+8 2 11 477 932
+8 2 12 535 956
+8 2 13 544 960
+8 2 14 495 943
+8 2 15 392 896
+8 2 16 246 793
+8 2 17 78 533
+8 2 18 0 0
+8 2 19 0 0
+8 2 20 0 0
+8 2 21 0 0
+8 2 22 0 0
+8 2 23 0 0
+8 2 24 0 0
+9 2 1 0 0
+9 2 2 0 0
+9 2 3 0 0
+9 2 4 0 0
+9 2 5 0 0
+9 2 6 0 0
+9 2 7 0 0
+9 2 8 34 268
+9 2 9 193 688
+9 2 10 258 710
+9 2 11 234 471
+9 2 12 421 677
+9 2 13 495 775
+9 2 14 193 0
+9 2 15 278 271
+9 2 16 129 161
+9 2 17 49 111
+9 2 18 0 0
+9 2 19 0 0
+9 2 20 0 0
+9 2 21 0 0
+9 2 22 0 0
+9 2 23 0 0
+9 2 24 0 0
+10 2 1 0 0
+10 2 2 0 0
+10 2 3 0 0
+10 2 4 0 0
+10 2 5 0 0
+10 2 6 0 0
+10 2 7 0 0
+10 2 8 18 0
+10 2 9 92 0
+10 2 10 207 0
+10 2 11 125 0
+10 2 12 305 0
+10 2 13 144 0
+10 2 14 252 0
+10 2 15 196 0
+10 2 16 59 0
+10 2 17 18 0
+10 2 18 0 0
+10 2 19 0 0
+10 2 20 0 0
+10 2 21 0 0
+10 2 22 0 0
+10 2 23 0 0
+10 2 24 0 0
+11 2 1 0 0
+11 2 2 0 0
+11 2 3 0 0
+11 2 4 0 0
+11 2 5 0 0
+11 2 6 0 0
+11 2 7 0 0
+11 2 8 6 0
+11 2 9 51 0
+11 2 10 149 0
+11 2 11 225 0
+11 2 12 247 0
+11 2 13 206 0
+11 2 14 255 0
+11 2 15 119 0
+11 2 16 68 0
+11 2 17 21 0
+11 2 18 0 0
+11 2 19 0 0
+11 2 20 0 0
+11 2 21 0 0
+11 2 22 0 0
+11 2 23 0 0
+11 2 24 0 0
+12 2 1 0 0
+12 2 2 0 0
+12 2 3 0 0
+12 2 4 0 0
+12 2 5 0 0
+12 2 6 0 0
+12 2 7 0 0
+12 2 8 14 0
+12 2 9 63 0
+12 2 10 156 91
+12 2 11 557 579
+12 2 12 619 593
+12 2 13 591 793
+12 2 14 550 878
+12 2 15 434 936
+12 2 16 276 847
+12 2 17 101 624
+12 2 18 0 0
+12 2 19 0 0
+12 2 20 0 0
+12 2 21 0 0
+12 2 22 0 0
+12 2 23 0 0
+12 2 24 0 0
+13 2 1 0 0
+13 2 2 0 0
+13 2 3 0 0
+13 2 4 0 0
+13 2 5 0 0
+13 2 6 0 0
+13 2 7 0 0
+13 2 8 43 318
+13 2 9 141 248
+13 2 10 352 750
+13 2 11 510 889
+13 2 12 568 908
+13 2 13 576 910
+13 2 14 527 896
+13 2 15 424 859
+13 2 16 276 780
+13 2 17 105 591
+13 2 18 0 0
+13 2 19 0 0
+13 2 20 0 0
+13 2 21 0 0
+13 2 22 0 0
+13 2 23 0 0
+13 2 24 0 0
+14 2 1 0 0
+14 2 2 0 0
+14 2 3 0 0
+14 2 4 0 0
+14 2 5 0 0
+14 2 6 0 0
+14 2 7 0 0
+14 2 8 59 535
+14 2 9 239 827
+14 2 10 402 934
+14 2 11 523 983
+14 2 12 590 1003
+14 2 13 599 1004
+14 2 14 549 990
+14 2 15 443 949
+14 2 16 291 864
+14 2 17 114 655
+14 2 18 0 0
+14 2 19 0 0
+14 2 20 0 0
+14 2 21 0 0
+14 2 22 0 0
+14 2 23 0 0
+14 2 24 0 0
+15 2 1 0 0
+15 2 2 0 0
+15 2 3 0 0
+15 2 4 0 0
+15 2 5 0 0
+15 2 6 0 0
+15 2 7 0 0
+15 2 8 46 161
+15 2 9 114 0
+15 2 10 141 0
+15 2 11 198 0
+15 2 12 225 0
+15 2 13 156 0
+15 2 14 143 0
+15 2 15 128 0
+15 2 16 79 0
+15 2 17 33 0
+15 2 18 0 0
+15 2 19 0 0
+15 2 20 0 0
+15 2 21 0 0
+15 2 22 0 0
+15 2 23 0 0
+15 2 24 0 0
+16 2 1 0 0
+16 2 2 0 0
+16 2 3 0 0
+16 2 4 0 0
+16 2 5 0 0
+16 2 6 0 0
+16 2 7 0 0
+16 2 8 62 427
+16 2 9 223 575
+16 2 10 382 734
+16 2 11 507 869
+16 2 12 571 885
+16 2 13 600 987
+16 2 14 550 971
+16 2 15 446 932
+16 2 16 295 848
+16 2 17 119 648
+16 2 18 0 0
+16 2 19 0 0
+16 2 20 0 0
+16 2 21 0 0
+16 2 22 0 0
+16 2 23 0 0
+16 2 24 0 0
+17 2 1 0 0
+17 2 2 0 0
+17 2 3 0 0
+17 2 4 0 0
+17 2 5 0 0
+17 2 6 0 0
+17 2 7 0 0
+17 2 8 42 0
+17 2 9 112 0
+17 2 10 134 0
+17 2 11 152 0
+17 2 12 451 0
+17 2 13 458 0
+17 2 14 426 390
+17 2 15 433 840
+17 2 16 300 849
+17 2 17 123 656
+17 2 18 0 0
+17 2 19 0 0
+17 2 20 0 0
+17 2 21 0 0
+17 2 22 0 0
+17 2 23 0 0
+17 2 24 0 0
+18 2 1 0 0
+18 2 2 0 0
+18 2 3 0 0
+18 2 4 0 0
+18 2 5 0 0
+18 2 6 0 0
+18 2 7 0 0
+18 2 8 68 436
+18 2 9 252 653
+18 2 10 443 459
+18 2 11 432 193
+18 2 12 449 98
+18 2 13 438 295
+18 2 14 525 386
+18 2 15 302 369
+18 2 16 184 168
+18 2 17 83 194
+18 2 18 0 0
+18 2 19 0 0
+18 2 20 0 0
+18 2 21 0 0
+18 2 22 0 0
+18 2 23 0 0
+18 2 24 0 0
+19 2 1 0 0
+19 2 2 0 0
+19 2 3 0 0
+19 2 4 0 0
+19 2 5 0 0
+19 2 6 0 0
+19 2 7 0 0
+19 2 8 29 0
+19 2 9 113 0
+19 2 10 244 93
+19 2 11 534 686
+19 2 12 625 798
+19 2 13 646 900
+19 2 14 592 884
+19 2 15 474 946
+19 2 16 319 868
+19 2 17 137 686
+19 2 18 0 0
+19 2 19 0 0
+19 2 20 0 0
+19 2 21 0 0
+19 2 22 0 0
+19 2 23 0 0
+19 2 24 0 0
+20 2 1 0 0
+20 2 2 0 0
+20 2 3 0 0
+20 2 4 0 0
+20 2 5 0 0
+20 2 6 0 0
+20 2 7 0 0
+20 2 8 84 533
+20 2 9 272 847
+20 2 10 436 941
+20 2 11 557 987
+20 2 12 625 1006
+20 2 13 634 1008
+20 2 14 580 988
+20 2 15 438 757
+20 2 16 297 698
+20 2 17 134 618
+20 2 18 0 0
+20 2 19 0 0
+20 2 20 0 0
+20 2 21 0 0
+20 2 22 0 0
+20 2 23 0 0
+20 2 24 0 0
+21 2 1 0 0
+21 2 2 0 0
+21 2 3 0 0
+21 2 4 0 0
+21 2 5 0 0
+21 2 6 0 0
+21 2 7 0 0
+21 2 8 87 412
+21 2 9 269 756
+21 2 10 423 841
+21 2 11 539 880
+21 2 12 605 899
+21 2 13 613 900
+21 2 14 564 886
+21 2 15 476 757
+21 2 16 345 694
+21 2 17 141 550
+21 2 18 0 0
+21 2 19 0 0
+21 2 20 0 0
+21 2 21 0 0
+21 2 22 0 0
+21 2 23 0 0
+21 2 24 0 0
+22 2 1 0 0
+22 2 2 0 0
+22 2 3 0 0
+22 2 4 0 0
+22 2 5 0 0
+22 2 6 0 0
+22 2 7 0 0
+22 2 8 34 0
+22 2 9 72 0
+22 2 10 107 0
+22 2 11 142 0
+22 2 12 240 0
+22 2 13 319 0
+22 2 14 298 0
+22 2 15 364 185
+22 2 16 200 170
+22 2 17 86 135
+22 2 18 0 0
+22 2 19 0 0
+22 2 20 0 0
+22 2 21 0 0
+22 2 22 0 0
+22 2 23 0 0
+22 2 24 0 0
+23 2 1 0 0
+23 2 2 0 0
+23 2 3 0 0
+23 2 4 0 0
+23 2 5 0 0
+23 2 6 0 0
+23 2 7 0 0
+23 2 8 95 512
+23 2 9 281 779
+23 2 10 442 861
+23 2 11 539 799
+23 2 12 578 712
+23 2 13 587 715
+23 2 14 485 502
+23 2 15 344 290
+23 2 16 253 357
+23 2 17 138 508
+23 2 18 0 0
+23 2 19 0 0
+23 2 20 0 0
+23 2 21 0 0
+23 2 22 0 0
+23 2 23 0 0
+23 2 24 0 0
+24 2 1 0 0
+24 2 2 0 0
+24 2 3 0 0
+24 2 4 0 0
+24 2 5 0 0
+24 2 6 0 0
+24 2 7 0 0
+24 2 8 49 0
+24 2 9 204 86
+24 2 10 354 381
+24 2 11 526 697
+24 2 12 654 713
+24 2 13 689 714
+24 2 14 664 704
+24 2 15 456 194
+24 2 16 326 270
+24 2 17 57 0
+24 2 18 0 0
+24 2 19 0 0
+24 2 20 0 0
+24 2 21 0 0
+24 2 22 0 0
+24 2 23 0 0
+24 2 24 0 0
+25 2 1 0 0
+25 2 2 0 0
+25 2 3 0 0
+25 2 4 0 0
+25 2 5 0 0
+25 2 6 0 0
+25 2 7 0 0
+25 2 8 50 0
+25 2 9 198 259
+25 2 10 427 861
+25 2 11 590 995
+25 2 12 656 1011
+25 2 13 653 910
+25 2 14 589 995
+25 2 15 467 768
+25 2 16 201 177
+25 2 17 103 218
+25 2 18 0 0
+25 2 19 0 0
+25 2 20 0 0
+25 2 21 0 0
+25 2 22 0 0
+25 2 23 0 0
+25 2 24 0 0
+26 2 1 0 0
+26 2 2 0 0
+26 2 3 0 0
+26 2 4 0 0
+26 2 5 0 0
+26 2 6 0 0
+26 2 7 0 0
+26 2 8 123 689
+26 2 9 315 890
+26 2 10 465 875
+26 2 11 604 1011
+26 2 12 673 1028
+26 2 13 681 1030
+26 2 14 665 915
+26 2 15 519 982
+26 2 16 381 821
+26 2 17 187 604
+26 2 18 3 30
+26 2 19 0 0
+26 2 20 0 0
+26 2 21 0 0
+26 2 22 0 0
+26 2 23 0 0
+26 2 24 0 0
+27 2 1 0 0
+27 2 2 0 0
+27 2 3 0 0
+27 2 4 0 0
+27 2 5 0 0
+27 2 6 0 0
+27 2 7 0 0
+27 2 8 127 687
+27 2 9 302 795
+27 2 10 484 964
+27 2 11 606 1003
+27 2 12 672 1017
+27 2 13 466 203
+27 2 14 318 0
+27 2 15 384 482
+27 2 16 175 0
+27 2 17 77 0
+27 2 18 3 0
+27 2 19 0 0
+27 2 20 0 0
+27 2 21 0 0
+27 2 22 0 0
+27 2 23 0 0
+27 2 24 0 0
+28 2 1 0 0
+28 2 2 0 0
+28 2 3 0 0
+28 2 4 0 0
+28 2 5 0 0
+28 2 6 0 0
+28 2 7 0 0
+28 2 8 32 0
+28 2 9 85 0
+28 2 10 237 0
+28 2 11 451 98
+28 2 12 273 0
+28 2 13 512 0
+28 2 14 381 0
+28 2 15 315 284
+28 2 16 284 351
+28 2 17 101 217
+28 2 18 1 4
+28 2 19 0 0
+28 2 20 0 0
+28 2 21 0 0
+28 2 22 0 0
+28 2 23 0 0
+28 2 24 0 0
+1 3 1 0 0
+1 3 2 0 0
+1 3 3 0 0
+1 3 4 0 0
+1 3 5 0 0
+1 3 6 0 0
+1 3 7 0 0
+1 3 8 127 328
+1 3 9 340 425
+1 3 10 515 373
+1 3 11 625 195
+1 3 12 539 99
+1 3 13 614 297
+1 3 14 469 98
+1 3 15 303 0
+1 3 16 241 0
+1 3 17 106 0
+1 3 18 9 9
+1 3 19 0 0
+1 3 20 0 0
+1 3 21 0 0
+1 3 22 0 0
+1 3 23 0 0
+1 3 24 0 0
+2 3 1 0 0
+2 3 2 0 0
+2 3 3 0 0
+2 3 4 0 0
+2 3 5 0 0
+2 3 6 0 0
+2 3 7 0 0
+2 3 8 114 400
+2 3 9 228 342
+2 3 10 107 0
+2 3 11 210 0
+2 3 12 123 0
+2 3 13 477 296
+2 3 14 593 781
+2 3 15 491 753
+2 3 16 336 611
+2 3 17 118 146
+2 3 18 10 21
+2 3 19 0 0
+2 3 20 0 0
+2 3 21 0 0
+2 3 22 0 0
+2 3 23 0 0
+2 3 24 0 0
+3 3 1 0 0
+3 3 2 0 0
+3 3 3 0 0
+3 3 4 0 0
+3 3 5 0 0
+3 3 6 0 0
+3 3 7 0 0
+3 3 8 101 264
+3 3 9 303 423
+3 3 10 428 557
+3 3 11 561 676
+3 3 12 558 491
+3 3 13 353 98
+3 3 14 434 291
+3 3 15 262 94
+3 3 16 220 175
+3 3 17 169 436
+3 3 18 18 93
+3 3 19 0 0
+3 3 20 0 0
+3 3 21 0 0
+3 3 22 0 0
+3 3 23 0 0
+3 3 24 0 0
+4 3 1 0 0
+4 3 2 0 0
+4 3 3 0 0
+4 3 4 0 0
+4 3 5 0 0
+4 3 6 0 0
+4 3 7 0 0
+4 3 8 103 69
+4 3 9 253 86
+4 3 10 408 189
+4 3 11 466 198
+4 3 12 437 100
+4 3 13 659 504
+4 3 14 662 698
+4 3 15 552 680
+4 3 16 390 808
+4 3 17 196 451
+4 3 18 23 123
+4 3 19 0 0
+4 3 20 0 0
+4 3 21 0 0
+4 3 22 0 0
+4 3 23 0 0
+4 3 24 0 0
+5 3 1 0 0
+5 3 2 0 0
+5 3 3 0 0
+5 3 4 0 0
+5 3 5 0 0
+5 3 6 0 0
+5 3 7 0 0
+5 3 8 69 0
+5 3 9 166 0
+5 3 10 69 0
+5 3 11 73 0
+5 3 12 83 0
+5 3 13 226 0
+5 3 14 207 0
+5 3 15 167 0
+5 3 16 128 0
+5 3 17 90 0
+5 3 18 12 0
+5 3 19 0 0
+5 3 20 0 0
+5 3 21 0 0
+5 3 22 0 0
+5 3 23 0 0
+5 3 24 0 0
+6 3 1 0 0
+6 3 2 0 0
+6 3 3 0 0
+6 3 4 0 0
+6 3 5 0 0
+6 3 6 0 0
+6 3 7 0 0
+6 3 8 84 71
+6 3 9 219 175
+6 3 10 296 95
+6 3 11 324 0
+6 3 12 337 0
+6 3 13 349 100
+6 3 14 313 0
+6 3 15 147 0
+6 3 16 100 0
+6 3 17 38 0
+6 3 18 5 0
+6 3 19 0 0
+6 3 20 0 0
+6 3 21 0 0
+6 3 22 0 0
+6 3 23 0 0
+6 3 24 0 0
+7 3 1 0 0
+7 3 2 0 0
+7 3 3 0 0
+7 3 4 0 0
+7 3 5 0 0
+7 3 6 0 0
+7 3 7 9 34
+7 3 8 136 422
+7 3 9 330 696
+7 3 10 484 757
+7 3 11 544 590
+7 3 12 499 301
+7 3 13 461 200
+7 3 14 532 494
+7 3 15 513 765
+7 3 16 384 806
+7 3 17 203 682
+7 3 18 30 183
+7 3 19 0 0
+7 3 20 0 0
+7 3 21 0 0
+7 3 22 0 0
+7 3 23 0 0
+7 3 24 0 0
+8 3 1 0 0
+8 3 2 0 0
+8 3 3 0 0
+8 3 4 0 0
+8 3 5 0 0
+8 3 6 0 0
+8 3 7 1 18
+8 3 8 192 652
+8 3 9 431 709
+8 3 10 628 476
+8 3 11 538 0
+8 3 12 596 0
+8 3 13 555 0
+8 3 14 511 0
+8 3 15 422 0
+8 3 16 294 0
+8 3 17 143 0
+8 3 18 23 0
+8 3 19 0 0
+8 3 20 0 0
+8 3 21 0 0
+8 3 22 0 0
+8 3 23 0 0
+8 3 24 0 0
+9 3 1 0 0
+9 3 2 0 0
+9 3 3 0 0
+9 3 4 0 0
+9 3 5 0 0
+9 3 6 0 0
+9 3 7 4 0
+9 3 8 52 0
+9 3 9 99 0
+9 3 10 140 0
+9 3 11 169 0
+9 3 12 186 0
+9 3 13 99 0
+9 3 14 217 0
+9 3 15 288 0
+9 3 16 120 0
+9 3 17 55 0
+9 3 18 15 34
+9 3 19 0 0
+9 3 20 0 0
+9 3 21 0 0
+9 3 22 0 0
+9 3 23 0 0
+9 3 24 0 0
+10 3 1 0 0
+10 3 2 0 0
+10 3 3 0 0
+10 3 4 0 0
+10 3 5 0 0
+10 3 6 0 0
+10 3 7 11 13
+10 3 8 117 75
+10 3 9 344 363
+10 3 10 568 195
+10 3 11 711 202
+10 3 12 761 718
+10 3 13 831 513
+10 3 14 734 709
+10 3 15 612 491
+10 3 16 402 644
+10 3 17 226 477
+10 3 18 41 234
+10 3 19 0 0
+10 3 20 0 0
+10 3 21 0 0
+10 3 22 0 0
+10 3 23 0 0
+10 3 24 0 0
+11 3 1 0 0
+11 3 2 0 0
+11 3 3 0 0
+11 3 4 0 0
+11 3 5 0 0
+11 3 6 0 0
+11 3 7 22 144
+11 3 8 197 701
+11 3 9 390 829
+11 3 10 553 884
+11 3 11 685 1015
+11 3 12 751 1030
+11 3 13 757 1031
+11 3 14 688 914
+11 3 15 577 886
+11 3 16 418 830
+11 3 17 231 720
+11 3 18 45 382
+11 3 19 0 0
+11 3 20 0 0
+11 3 21 0 0
+11 3 22 0 0
+11 3 23 0 0
+11 3 24 0 0
+12 3 1 0 0
+12 3 2 0 0
+12 3 3 0 0
+12 3 4 0 0
+12 3 5 0 0
+12 3 6 0 0
+12 3 7 22 38
+12 3 8 148 154
+12 3 9 289 91
+12 3 10 522 683
+12 3 11 674 706
+12 3 12 735 711
+12 3 13 664 303
+12 3 14 547 200
+12 3 15 559 580
+12 3 16 316 271
+12 3 17 184 314
+12 3 18 41 268
+12 3 19 0 0
+12 3 20 0 0
+12 3 21 0 0
+12 3 22 0 0
+12 3 23 0 0
+12 3 24 0 0
+13 3 1 0 0
+13 3 2 0 0
+13 3 3 0 0
+13 3 4 0 0
+13 3 5 0 0
+13 3 6 0 0
+13 3 7 28 221
+13 3 8 209 764
+13 3 9 415 809
+13 3 10 586 868
+13 3 11 696 894
+13 3 12 810 908
+13 3 13 873 805
+13 3 14 811 798
+13 3 15 674 681
+13 3 16 472 641
+13 3 17 234 556
+13 3 18 44 286
+13 3 19 0 0
+13 3 20 0 0
+13 3 21 0 0
+13 3 22 0 0
+13 3 23 0 0
+13 3 24 0 0
+14 3 1 0 0
+14 3 2 0 0
+14 3 3 0 0
+14 3 4 0 0
+14 3 5 0 0
+14 3 6 0 0
+14 3 7 4 0
+14 3 8 96 0
+14 3 9 86 0
+14 3 10 176 0
+14 3 11 176 0
+14 3 12 191 0
+14 3 13 193 0
+14 3 14 179 0
+14 3 15 152 0
+14 3 16 114 0
+14 3 17 67 0
+14 3 18 15 0
+14 3 19 0 0
+14 3 20 0 0
+14 3 21 0 0
+14 3 22 0 0
+14 3 23 0 0
+14 3 24 0 0
+15 3 1 0 0
+15 3 2 0 0
+15 3 3 0 0
+15 3 4 0 0
+15 3 5 0 0
+15 3 6 0 0
+15 3 7 8 0
+15 3 8 100 0
+15 3 9 203 0
+15 3 10 218 96
+15 3 11 133 0
+15 3 12 146 0
+15 3 13 146 0
+15 3 14 336 99
+15 3 15 366 192
+15 3 16 223 91
+15 3 17 115 0
+15 3 18 37 141
+15 3 19 0 0
+15 3 20 0 0
+15 3 21 0 0
+15 3 22 0 0
+15 3 23 0 0
+15 3 24 0 0
+16 3 1 0 0
+16 3 2 0 0
+16 3 3 0 0
+16 3 4 0 0
+16 3 5 0 0
+16 3 6 0 0
+16 3 7 42 217
+16 3 8 216 474
+16 3 9 420 643
+16 3 10 588 686
+16 3 11 773 606
+16 3 12 934 409
+16 3 13 540 205
+16 3 14 729 506
+16 3 15 557 394
+16 3 16 483 466
+16 3 17 275 328
+16 3 18 61 158
+16 3 19 0 0
+16 3 20 0 0
+16 3 21 0 0
+16 3 22 0 0
+16 3 23 0 0
+16 3 24 0 0
+17 3 1 0 0
+17 3 2 0 0
+17 3 3 0 0
+17 3 4 0 0
+17 3 5 0 0
+17 3 6 0 0
+17 3 7 47 306
+17 3 8 223 488
+17 3 9 461 746
+17 3 10 615 892
+17 3 11 753 920
+17 3 12 803 931
+17 3 13 809 1036
+17 3 14 738 1026
+17 3 15 620 990
+17 3 16 460 938
+17 3 17 266 824
+17 3 18 68 530
+17 3 19 0 0
+17 3 20 0 0
+17 3 21 0 0
+17 3 22 0 0
+17 3 23 0 0
+17 3 24 0 0
+18 3 1 0 0
+18 3 2 0 0
+18 3 3 0 0
+18 3 4 0 0
+18 3 5 0 0
+18 3 6 0 0
+18 3 7 50 442
+18 3 8 241 731
+18 3 9 436 840
+18 3 10 608 790
+18 3 11 716 915
+18 3 12 659 206
+18 3 13 734 614
+18 3 14 719 706
+18 3 15 544 294
+18 3 16 353 92
+18 3 17 221 246
+18 3 18 56 105
+18 3 19 0 0
+18 3 20 0 0
+18 3 21 0 0
+18 3 22 0 0
+18 3 23 0 0
+18 3 24 0 0
+19 3 1 0 0
+19 3 2 0 0
+19 3 3 0 0
+19 3 4 0 0
+19 3 5 0 0
+19 3 6 0 0
+19 3 7 38 48
+19 3 8 168 0
+19 3 9 128 0
+19 3 10 307 0
+19 3 11 370 0
+19 3 12 405 0
+19 3 13 329 0
+19 3 14 342 0
+19 3 15 337 98
+19 3 16 242 92
+19 3 17 196 81
+19 3 18 50 52
+19 3 19 0 0
+19 3 20 0 0
+19 3 21 0 0
+19 3 22 0 0
+19 3 23 0 0
+19 3 24 0 0
+20 3 1 0 0
+20 3 2 0 0
+20 3 3 0 0
+20 3 4 0 0
+20 3 5 0 0
+20 3 6 0 0
+20 3 7 58 448
+20 3 8 252 732
+20 3 9 442 830
+20 3 10 606 884
+20 3 11 751 1014
+20 3 12 833 926
+20 3 13 815 920
+20 3 14 792 915
+20 3 15 665 883
+20 3 16 498 843
+20 3 17 291 742
+20 3 18 79 483
+20 3 19 0 0
+20 3 20 0 0
+20 3 21 0 0
+20 3 22 0 0
+20 3 23 0 0
+20 3 24 0 0
+21 3 1 0 0
+21 3 2 0 0
+21 3 3 0 0
+21 3 4 0 0
+21 3 5 0 0
+21 3 6 0 0
+21 3 7 68 474
+21 3 8 266 824
+21 3 9 460 929
+21 3 10 624 984
+21 3 11 755 910
+21 3 12 833 919
+21 3 13 838 922
+21 3 14 792 909
+21 3 15 672 887
+21 3 16 500 838
+21 3 17 293 738
+21 3 18 86 444
+21 3 19 0 0
+21 3 20 0 0
+21 3 21 0 0
+21 3 22 0 0
+21 3 23 0 0
+21 3 24 0 0
+22 3 1 0 0
+22 3 2 0 0
+22 3 3 0 0
+22 3 4 0 0
+22 3 5 0 0
+22 3 6 0 0
+22 3 7 76 484
+22 3 8 291 748
+22 3 9 494 842
+22 3 10 665 885
+22 3 11 788 906
+22 3 12 854 815
+22 3 13 852 810
+22 3 14 787 797
+22 3 15 679 773
+22 3 16 510 736
+22 3 17 301 652
+22 3 18 90 384
+22 3 19 0 0
+22 3 20 0 0
+22 3 21 0 0
+22 3 22 0 0
+22 3 23 0 0
+22 3 24 0 0
+23 3 1 0 0
+23 3 2 0 0
+23 3 3 0 0
+23 3 4 0 0
+23 3 5 0 0
+23 3 6 0 0
+23 3 7 71 320
+23 3 8 261 490
+23 3 9 480 645
+23 3 10 650 680
+23 3 11 803 496
+23 3 12 894 403
+23 3 13 803 200
+23 3 14 831 199
+23 3 15 563 97
+23 3 16 390 92
+23 3 17 210 81
+23 3 18 60 54
+23 3 19 0 0
+23 3 20 0 0
+23 3 21 0 0
+23 3 22 0 0
+23 3 23 0 0
+23 3 24 0 0
+24 3 1 0 0
+24 3 2 0 0
+24 3 3 0 0
+24 3 4 0 0
+24 3 5 0 0
+24 3 6 0 0
+24 3 7 55 53
+24 3 8 191 0
+24 3 9 363 91
+24 3 10 519 290
+24 3 11 597 198
+24 3 12 650 101
+24 3 13 626 0
+24 3 14 275 0
+24 3 15 485 0
+24 3 16 326 0
+24 3 17 177 0
+24 3 18 58 0
+24 3 19 0 0
+24 3 20 0 0
+24 3 21 0 0
+24 3 22 0 0
+24 3 23 0 0
+24 3 24 0 0
+25 3 1 0 0
+25 3 2 0 0
+25 3 3 0 0
+25 3 4 0 0
+25 3 5 0 0
+25 3 6 0 0
+25 3 7 51 163
+25 3 8 124 81
+25 3 9 256 91
+25 3 10 392 96
+25 3 11 637 395
+25 3 12 642 301
+25 3 13 696 403
+25 3 14 718 798
+25 3 15 609 678
+25 3 16 468 736
+25 3 17 277 656
+25 3 18 94 519
+25 3 19 0 0
+25 3 20 0 0
+25 3 21 0 0
+25 3 22 0 0
+25 3 23 0 0
+25 3 24 0 0
+26 3 1 0 0
+26 3 2 0 0
+26 3 3 0 0
+26 3 4 0 0
+26 3 5 0 0
+26 3 6 0 0
+26 3 7 91 522
+26 3 8 289 748
+26 3 9 479 836
+26 3 10 651 982
+26 3 11 766 1007
+26 3 12 827 1019
+26 3 13 842 915
+26 3 14 813 904
+26 3 15 690 878
+26 3 16 509 832
+26 3 17 319 741
+26 3 18 103 411
+26 3 19 0 0
+26 3 20 0 0
+26 3 21 0 0
+26 3 22 0 0
+26 3 23 0 0
+26 3 24 0 0
+27 3 1 0 0
+27 3 2 0 0
+27 3 3 0 0
+27 3 4 0 0
+27 3 5 0 0
+27 3 6 0 0
+27 3 7 89 346
+27 3 8 292 576
+27 3 9 473 550
+27 3 10 541 97
+27 3 11 681 299
+27 3 12 828 707
+27 3 13 844 808
+27 3 14 682 400
+27 3 15 636 581
+27 3 16 488 641
+27 3 17 304 656
+27 3 18 107 468
+27 3 19 0 0
+27 3 20 0 0
+27 3 21 0 0
+27 3 22 0 0
+27 3 23 0 0
+27 3 24 0 0
+28 3 1 0 0
+28 3 2 0 0
+28 3 3 0 0
+28 3 4 0 0
+28 3 5 0 0
+28 3 6 0 0
+28 3 7 66 0
+28 3 8 213 0
+28 3 9 386 92
+28 3 10 639 582
+28 3 11 695 696
+28 3 12 580 201
+28 3 13 724 503
+28 3 14 713 496
+28 3 15 576 481
+28 3 16 494 733
+28 3 17 306 569
+28 3 18 74 118
+28 3 19 0 0
+28 3 20 0 0
+28 3 21 0 0
+28 3 22 0 0
+28 3 23 0 0
+28 3 24 0 0
+29 3 1 0 0
+29 3 2 0 0
+29 3 3 0 0
+29 3 4 0 0
+29 3 5 0 0
+29 3 6 0 0
+29 3 7 33 0
+29 3 8 58 0
+29 3 9 171 0
+29 3 10 229 0
+29 3 11 253 0
+29 3 12 233 0
+29 3 13 274 0
+29 3 14 234 0
+29 3 15 149 0
+29 3 16 98 0
+29 3 17 49 0
+29 3 18 23 0
+29 3 19 0 0
+29 3 20 0 0
+29 3 21 0 0
+29 3 22 0 0
+29 3 23 0 0
+29 3 24 0 0
+30 3 1 0 0
+30 3 2 0 0
+30 3 3 0 0
+30 3 4 0 0
+30 3 5 0 0
+30 3 6 0 0
+30 3 7 65 186
+30 3 8 171 251
+30 3 9 185 93
+30 3 10 373 293
+30 3 11 643 701
+30 3 12 693 710
+30 3 13 741 811
+30 3 14 691 804
+30 3 15 588 783
+30 3 16 467 836
+30 3 17 256 584
+30 3 18 85 370
+30 3 19 0 0
+30 3 20 0 0
+30 3 21 0 0
+30 3 22 0 0
+30 3 23 0 0
+30 3 24 0 0
+31 3 1 0 0
+31 3 2 0 0
+31 3 3 0 0
+31 3 4 0 0
+31 3 5 0 0
+31 3 6 0 0
+31 3 7 121 644
+31 3 8 319 854
+31 3 9 506 941
+31 3 10 659 986
+31 3 11 769 1009
+31 3 12 825 1019
+31 3 13 821 917
+31 3 14 763 907
+31 3 15 651 785
+31 3 16 494 743
+31 3 17 306 672
+31 3 18 79 317
+31 3 19 0 0
+31 3 20 0 0
+31 3 21 0 0
+31 3 22 0 0
+31 3 23 0 0
+31 3 24 0 0
+1 4 1 0 0
+1 4 2 0 0
+1 4 3 0 0
+1 4 4 0 0
+1 4 5 0 0
+1 4 6 0 0
+1 4 7 35 0
+1 4 8 84 0
+1 4 9 139 0
+1 4 10 186 0
+1 4 11 259 0
+1 4 12 153 0
+1 4 13 174 0
+1 4 14 122 0
+1 4 15 242 97
+1 4 16 201 93
+1 4 17 104 83
+1 4 18 39 63
+1 4 19 0 0
+1 4 20 0 0
+1 4 21 0 0
+1 4 22 0 0
+1 4 23 0 0
+1 4 24 0 0
+2 4 1 0 0
+2 4 2 0 0
+2 4 3 0 0
+2 4 4 0 0
+2 4 5 0 0
+2 4 6 0 0
+2 4 7 43 0
+2 4 8 116 0
+2 4 9 178 0
+2 4 10 153 0
+2 4 11 122 0
+2 4 12 132 0
+2 4 13 174 0
+2 4 14 188 0
+2 4 15 158 0
+2 4 16 115 0
+2 4 17 44 0
+2 4 18 13 0
+2 4 19 0 0
+2 4 20 0 0
+2 4 21 0 0
+2 4 22 0 0
+2 4 23 0 0
+2 4 24 0 0
+3 4 1 0 0
+3 4 2 0 0
+3 4 3 0 0
+3 4 4 0 0
+3 4 5 0 0
+3 4 6 0 0
+3 4 7 39 129
+3 4 8 95 0
+3 4 9 91 0
+3 4 10 344 195
+3 4 11 402 200
+3 4 12 287 101
+3 4 13 155 0
+3 4 14 182 0
+3 4 15 137 0
+3 4 16 102 0
+3 4 17 84 0
+3 4 18 39 63
+3 4 19 0 0
+3 4 20 0 0
+3 4 21 0 0
+3 4 22 0 0
+3 4 23 0 0
+3 4 24 0 0
+4 4 1 0 0
+4 4 2 0 0
+4 4 3 0 0
+4 4 4 0 0
+4 4 5 0 0
+4 4 6 0 0
+4 4 7 148 534
+4 4 8 353 679
+4 4 9 550 750
+4 4 10 599 786
+4 4 11 701 603
+4 4 12 743 306
+4 4 13 784 915
+4 4 14 744 704
+4 4 15 419 98
+4 4 16 266 0
+4 4 17 152 85
+4 4 18 57 65
+4 4 19 0 0
+4 4 20 0 0
+4 4 21 0 0
+4 4 22 0 0
+4 4 23 0 0
+4 4 24 0 0
+5 4 1 0 0
+5 4 2 0 0
+5 4 3 0 0
+5 4 4 0 0
+5 4 5 0 0
+5 4 6 0 0
+5 4 7 22 0
+5 4 8 85 0
+5 4 9 66 0
+5 4 10 113 0
+5 4 11 226 0
+5 4 12 176 0
+5 4 13 182 0
+5 4 14 353 0
+5 4 15 300 0
+5 4 16 226 0
+5 4 17 60 0
+5 4 18 41 0
+5 4 19 0 0
+5 4 20 0 0
+5 4 21 0 0
+5 4 22 0 0
+5 4 23 0 0
+5 4 24 0 0
+6 4 1 0 0
+6 4 2 0 0
+6 4 3 0 0
+6 4 4 0 0
+6 4 5 0 0
+6 4 6 0 0
+6 4 7 45 0
+6 4 8 96 0
+6 4 9 84 0
+6 4 10 378 99
+6 4 11 177 0
+6 4 12 461 0
+6 4 13 459 0
+6 4 14 426 0
+6 4 15 195 0
+6 4 16 128 0
+6 4 17 252 0
+6 4 18 44 0
+6 4 19 0 0
+6 4 20 0 0
+6 4 21 0 0
+6 4 22 0 0
+6 4 23 0 0
+6 4 24 0 0
+7 4 1 0 0
+7 4 2 0 0
+7 4 3 0 0
+7 4 4 0 0
+7 4 5 0 0
+7 4 6 0 0
+7 4 7 99 141
+7 4 8 191 88
+7 4 9 259 95
+7 4 10 331 199
+7 4 11 577 305
+7 4 12 619 103
+7 4 13 617 616
+7 4 14 888 913
+7 4 15 633 890
+7 4 16 508 663
+7 4 17 308 693
+7 4 18 81 206
+7 4 19 0 0
+7 4 20 0 0
+7 4 21 0 0
+7 4 22 0 0
+7 4 23 0 0
+7 4 24 0 0
+8 4 1 0 0
+8 4 2 0 0
+8 4 3 0 0
+8 4 4 0 0
+8 4 5 0 0
+8 4 6 12 72
+8 4 7 170 722
+8 4 8 371 886
+8 4 9 558 960
+8 4 10 710 998
+8 4 11 820 1021
+8 4 12 874 1028
+8 4 13 871 1028
+8 4 14 809 1015
+8 4 15 704 993
+8 4 16 509 950
+8 4 17 301 783
+8 4 18 108 345
+8 4 19 0 0
+8 4 20 0 0
+8 4 21 0 0
+8 4 22 0 0
+8 4 23 0 0
+8 4 24 0 0
+9 4 1 0 0
+9 4 2 0 0
+9 4 3 0 0
+9 4 4 0 0
+9 4 5 0 0
+9 4 6 10 51
+9 4 7 64 0
+9 4 8 219 263
+9 4 9 498 574
+9 4 10 608 499
+9 4 11 700 508
+9 4 12 765 308
+9 4 13 548 0
+9 4 14 276 0
+9 4 15 194 0
+9 4 16 133 0
+9 4 17 73 0
+9 4 18 24 0
+9 4 19 0 0
+9 4 20 0 0
+9 4 21 0 0
+9 4 22 0 0
+9 4 23 0 0
+9 4 24 0 0
+10 4 1 0 0
+10 4 2 0 0
+10 4 3 0 0
+10 4 4 0 0
+10 4 5 0 0
+10 4 6 3 0
+10 4 7 74 0
+10 4 8 102 0
+10 4 9 268 0
+10 4 10 201 0
+10 4 11 408 0
+10 4 12 394 102
+10 4 13 430 101
+10 4 14 442 100
+10 4 15 505 295
+10 4 16 517 752
+10 4 17 351 775
+10 4 18 161 692
+10 4 19 0 0
+10 4 20 0 0
+10 4 21 0 0
+10 4 22 0 0
+10 4 23 0 0
+10 4 24 0 0
+11 4 1 0 0
+11 4 2 0 0
+11 4 3 0 0
+11 4 4 0 0
+11 4 5 0 0
+11 4 6 18 111
+11 4 7 186 732
+11 4 8 386 886
+11 4 9 572 958
+11 4 10 723 994
+11 4 11 829 1014
+11 4 12 883 1023
+11 4 13 877 1020
+11 4 14 817 1010
+11 4 15 703 986
+11 4 16 556 939
+11 4 17 367 775
+11 4 18 165 691
+11 4 19 0 0
+11 4 20 0 0
+11 4 21 0 0
+11 4 22 0 0
+11 4 23 0 0
+11 4 24 0 0
+12 4 1 0 0
+12 4 2 0 0
+12 4 3 0 0
+12 4 4 0 0
+12 4 5 0 0
+12 4 6 21 140
+12 4 7 190 732
+12 4 8 416 882
+12 4 9 645 956
+12 4 10 655 894
+12 4 11 751 909
+12 4 12 733 815
+12 4 13 955 813
+12 4 14 738 703
+12 4 15 633 589
+12 4 16 488 750
+12 4 17 383 859
+12 4 18 182 690
+12 4 19 1 9
+12 4 20 0 0
+12 4 21 0 0
+12 4 22 0 0
+12 4 23 0 0
+12 4 24 0 0
+13 4 1 0 0
+13 4 2 0 0
+13 4 3 0 0
+13 4 4 0 0
+13 4 5 0 0
+13 4 6 23 166
+13 4 7 189 656
+13 4 8 345 612
+13 4 9 449 472
+13 4 10 788 788
+13 4 11 748 703
+13 4 12 791 710
+13 4 13 794 811
+13 4 14 773 751
+13 4 15 649 808
+13 4 16 482 668
+13 4 17 253 257
+13 4 18 92 139
+13 4 19 1 4
+13 4 20 0 0
+13 4 21 0 0
+13 4 22 0 0
+13 4 23 0 0
+13 4 24 0 0
+14 4 1 0 0
+14 4 2 0 0
+14 4 3 0 0
+14 4 4 0 0
+14 4 5 0 0
+14 4 6 17 43
+14 4 7 109 73
+14 4 8 180 0
+14 4 9 192 0
+14 4 10 191 0
+14 4 11 175 0
+14 4 12 164 0
+14 4 13 141 0
+14 4 14 130 0
+14 4 15 165 0
+14 4 16 194 0
+14 4 17 73 0
+14 4 18 55 0
+14 4 19 3 0
+14 4 20 0 0
+14 4 21 0 0
+14 4 22 0 0
+14 4 23 0 0
+14 4 24 0 0
+15 4 1 0 0
+15 4 2 0 0
+15 4 3 0 0
+15 4 4 0 0
+15 4 5 0 0
+15 4 6 9 0
+15 4 7 37 0
+15 4 8 86 0
+15 4 9 182 0
+15 4 10 336 0
+15 4 11 563 0
+15 4 12 655 101
+15 4 13 391 0
+15 4 14 311 0
+15 4 15 346 0
+15 4 16 181 0
+15 4 17 80 0
+15 4 18 29 0
+15 4 19 2 0
+15 4 20 0 0
+15 4 21 0 0
+15 4 22 0 0
+15 4 23 0 0
+15 4 24 0 0
+16 4 1 0 0
+16 4 2 0 0
+16 4 3 0 0
+16 4 4 0 0
+16 4 5 0 0
+16 4 6 9 0
+16 4 7 68 0
+16 4 8 71 0
+16 4 9 60 0
+16 4 10 61 0
+16 4 11 80 0
+16 4 12 346 0
+16 4 13 344 0
+16 4 14 319 0
+16 4 15 255 0
+16 4 16 196 0
+16 4 17 127 0
+16 4 18 28 71
+16 4 19 8 26
+16 4 20 0 0
+16 4 21 0 0
+16 4 22 0 0
+16 4 23 0 0
+16 4 24 0 0
+17 4 1 0 0
+17 4 2 0 0
+17 4 3 0 0
+17 4 4 0 0
+17 4 5 0 0
+17 4 6 15 93
+17 4 7 56 0
+17 4 8 83 0
+17 4 9 305 94
+17 4 10 164 98
+17 4 11 620 302
+17 4 12 557 204
+17 4 13 439 101
+17 4 14 405 202
+17 4 15 424 296
+17 4 16 312 284
+17 4 17 260 440
+17 4 18 120 363
+17 4 19 10 43
+17 4 20 0 0
+17 4 21 0 0
+17 4 22 0 0
+17 4 23 0 0
+17 4 24 0 0
+18 4 1 0 0
+18 4 2 0 0
+18 4 3 0 0
+18 4 4 0 0
+18 4 5 0 0
+18 4 6 41 382
+18 4 7 224 768
+18 4 8 422 895
+18 4 9 604 958
+18 4 10 755 996
+18 4 11 861 1017
+18 4 12 912 1024
+18 4 13 906 1023
+18 4 14 843 1011
+18 4 15 728 987
+18 4 16 569 944
+18 4 17 363 789
+18 4 18 164 581
+18 4 19 17 119
+18 4 20 0 0
+18 4 21 0 0
+18 4 22 0 0
+18 4 23 0 0
+18 4 24 0 0
+19 4 1 0 0
+19 4 2 0 0
+19 4 3 0 0
+19 4 4 0 0
+19 4 5 0 0
+19 4 6 45 425
+19 4 7 228 768
+19 4 8 426 893
+19 4 9 608 957
+19 4 10 759 996
+19 4 11 866 1018
+19 4 12 815 821
+19 4 13 757 717
+19 4 14 655 608
+19 4 15 521 495
+19 4 16 480 669
+19 4 17 370 799
+19 4 18 193 741
+19 4 19 22 157
+19 4 20 0 0
+19 4 21 0 0
+19 4 22 0 0
+19 4 23 0 0
+19 4 24 0 0
+20 4 1 0 0
+20 4 2 0 0
+20 4 3 0 0
+20 4 4 0 0
+20 4 5 0 0
+20 4 6 49 456
+20 4 7 240 769
+20 4 8 430 892
+20 4 9 611 955
+20 4 10 761 993
+20 4 11 861 1006
+20 4 12 914 1019
+20 4 13 909 1019
+20 4 14 849 1010
+20 4 15 734 986
+20 4 16 578 759
+20 4 17 367 702
+20 4 18 198 735
+20 4 19 26 174
+20 4 20 0 0
+20 4 21 0 0
+20 4 22 0 0
+20 4 23 0 0
+20 4 24 0 0
+21 4 1 0 0
+21 4 2 0 0
+21 4 3 0 0
+21 4 4 0 0
+21 4 5 0 0
+21 4 6 52 455
+21 4 7 236 766
+21 4 8 431 886
+21 4 9 612 950
+21 4 10 760 986
+21 4 11 831 1006
+21 4 12 864 911
+21 4 13 873 911
+21 4 14 817 1006
+21 4 15 751 888
+21 4 16 578 941
+21 4 17 363 786
+21 4 18 180 654
+21 4 19 23 153
+21 4 20 0 0
+21 4 21 0 0
+21 4 22 0 0
+21 4 23 0 0
+21 4 24 0 0
+22 4 1 0 0
+22 4 2 0 0
+22 4 3 0 0
+22 4 4 0 0
+22 4 5 0 0
+22 4 6 21 0
+22 4 7 112 0
+22 4 8 237 0
+22 4 9 347 0
+22 4 10 437 0
+22 4 11 498 0
+22 4 12 353 0
+22 4 13 350 0
+22 4 14 442 197
+22 4 15 279 0
+22 4 16 201 0
+22 4 17 142 0
+22 4 18 79 70
+22 4 19 11 21
+22 4 20 0 0
+22 4 21 0 0
+22 4 22 0 0
+22 4 23 0 0
+22 4 24 0 0
+23 4 1 0 0
+23 4 2 0 0
+23 4 3 0 0
+23 4 4 0 0
+23 4 5 0 0
+23 4 6 44 276
+23 4 7 241 756
+23 4 8 434 873
+23 4 9 614 940
+23 4 10 759 974
+23 4 11 863 995
+23 4 12 912 1004
+23 4 13 909 1007
+23 4 14 739 797
+23 4 15 551 583
+23 4 16 359 373
+23 4 17 254 347
+23 4 18 152 437
+23 4 19 28 238
+23 4 20 0 0
+23 4 21 0 0
+23 4 22 0 0
+23 4 23 0 0
+23 4 24 0 0
+24 4 1 0 0
+24 4 2 0 0
+24 4 3 0 0
+24 4 4 0 0
+24 4 5 0 0
+24 4 6 53 238
+24 4 7 182 153
+24 4 8 269 88
+24 4 9 372 189
+24 4 10 716 783
+24 4 11 549 300
+24 4 12 306 0
+24 4 13 304 0
+24 4 14 496 0
+24 4 15 422 0
+24 4 16 198 0
+24 4 17 139 0
+24 4 18 78 73
+24 4 19 11 0
+24 4 20 0 0
+24 4 21 0 0
+24 4 22 0 0
+24 4 23 0 0
+24 4 24 0 0
+25 4 1 0 0
+25 4 2 0 0
+25 4 3 0 0
+25 4 4 0 0
+25 4 5 0 0
+25 4 6 61 384
+25 4 7 231 614
+25 4 8 405 793
+25 4 9 570 846
+25 4 10 690 877
+25 4 11 894 894
+25 4 12 626 200
+25 4 13 531 0
+25 4 14 494 0
+25 4 15 424 0
+25 4 16 329 0
+25 4 17 144 0
+25 4 18 80 72
+25 4 19 15 30
+25 4 20 0 0
+25 4 21 0 0
+25 4 22 0 0
+25 4 23 0 0
+25 4 24 0 0
+26 4 1 0 0
+26 4 2 0 0
+26 4 3 0 0
+26 4 4 0 0
+26 4 5 0 0
+26 4 6 56 235
+26 4 7 237 605
+26 4 8 384 347
+26 4 9 554 463
+26 4 10 686 576
+26 4 11 785 588
+26 4 12 374 99
+26 4 13 355 0
+26 4 14 237 0
+26 4 15 378 0
+26 4 16 218 0
+26 4 17 110 0
+26 4 18 67 0
+26 4 19 12 0
+26 4 20 0 0
+26 4 21 0 0
+26 4 22 0 0
+26 4 23 0 0
+26 4 24 0 0
+27 4 1 0 0
+27 4 2 0 0
+27 4 3 0 0
+27 4 4 0 0
+27 4 5 0 0
+27 4 6 7 0
+27 4 7 30 0
+27 4 8 69 0
+27 4 9 228 92
+27 4 10 197 96
+27 4 11 309 0
+27 4 12 299 98
+27 4 13 349 98
+27 4 14 363 194
+27 4 15 338 95
+27 4 16 268 91
+27 4 17 128 0
+27 4 18 52 0
+27 4 19 7 0
+27 4 20 0 0
+27 4 21 0 0
+27 4 22 0 0
+27 4 23 0 0
+27 4 24 0 0
+28 4 1 0 0
+28 4 2 0 0
+28 4 3 0 0
+28 4 4 0 0
+28 4 5 0 0
+28 4 6 26 0
+28 4 7 30 0
+28 4 8 152 88
+28 4 9 215 94
+28 4 10 263 98
+28 4 11 298 99
+28 4 12 173 0
+28 4 13 219 0
+28 4 14 160 0
+28 4 15 447 193
+28 4 16 212 0
+28 4 17 135 0
+28 4 18 91 73
+28 4 19 19 72
+28 4 20 0 0
+28 4 21 0 0
+28 4 22 0 0
+28 4 23 0 0
+28 4 24 0 0
+29 4 1 0 0
+29 4 2 0 0
+29 4 3 0 0
+29 4 4 0 0
+29 4 5 0 0
+29 4 6 58 265
+29 4 7 238 701
+29 4 8 263 266
+29 4 9 466 470
+29 4 10 338 97
+29 4 11 338 199
+29 4 12 426 100
+29 4 13 429 200
+29 4 14 385 198
+29 4 15 353 194
+29 4 16 531 837
+29 4 17 290 432
+29 4 18 122 221
+29 4 19 33 242
+29 4 20 0 0
+29 4 21 0 0
+29 4 22 0 0
+29 4 23 0 0
+29 4 24 0 0
+30 4 1 0 0
+30 4 2 0 0
+30 4 3 0 0
+30 4 4 0 0
+30 4 5 0 0
+30 4 6 85 493
+30 4 7 276 791
+30 4 8 468 892
+30 4 9 643 946
+30 4 10 788 979
+30 4 11 889 999
+30 4 12 934 1003
+30 4 13 924 1000
+30 4 14 866 995
+30 4 15 758 978
+30 4 16 601 937
+30 4 17 418 871
+30 4 18 224 746
+30 4 19 46 426
+30 4 20 0 0
+30 4 21 0 0
+30 4 22 0 0
+30 4 23 0 0
+30 4 24 0 0
+1 5 1 0 0
+1 5 2 0 0
+1 5 3 0 0
+1 5 4 0 0
+1 5 5 0 0
+1 5 6 41 57
+1 5 7 169 159
+1 5 8 436 718
+1 5 9 545 569
+1 5 10 583 395
+1 5 11 634 402
+1 5 12 681 508
+1 5 13 495 203
+1 5 14 533 301
+1 5 15 481 296
+1 5 16 381 284
+1 5 17 274 267
+1 5 18 128 152
+1 5 19 31 134
+1 5 20 0 0
+1 5 21 0 0
+1 5 22 0 0
+1 5 23 0 0
+1 5 24 0 0
+2 5 1 0 0
+2 5 2 0 0
+2 5 3 0 0
+2 5 4 0 0
+2 5 5 0 0
+2 5 6 29 0
+2 5 7 94 0
+2 5 8 213 90
+2 5 9 296 96
+2 5 10 289 0
+2 5 11 326 0
+2 5 12 345 0
+2 5 13 294 0
+2 5 14 185 0
+2 5 15 255 0
+2 5 16 184 0
+2 5 17 266 349
+2 5 18 188 527
+2 5 19 32 176
+2 5 20 0 0
+2 5 21 0 0
+2 5 22 0 0
+2 5 23 0 0
+2 5 24 0 0
+3 5 1 0 0
+3 5 2 0 0
+3 5 3 0 0
+3 5 4 0 0
+3 5 5 0 0
+3 5 6 33 0
+3 5 7 74 0
+3 5 8 180 0
+3 5 9 119 0
+3 5 10 168 0
+3 5 11 213 0
+3 5 12 504 100
+3 5 13 151 0
+3 5 14 229 0
+3 5 15 179 0
+3 5 16 178 0
+3 5 17 95 0
+3 5 18 31 0
+3 5 19 7 0
+3 5 20 0 0
+3 5 21 0 0
+3 5 22 0 0
+3 5 23 0 0
+3 5 24 0 0
+4 5 1 0 0
+4 5 2 0 0
+4 5 3 0 0
+4 5 4 0 0
+4 5 5 0 0
+4 5 6 18 0
+4 5 7 60 0
+4 5 8 111 0
+4 5 9 159 0
+4 5 10 152 0
+4 5 11 173 0
+4 5 12 183 0
+4 5 13 163 0
+4 5 14 79 0
+4 5 15 181 0
+4 5 16 189 0
+4 5 17 128 0
+4 5 18 47 0
+4 5 19 16 0
+4 5 20 0 0
+4 5 21 0 0
+4 5 22 0 0
+4 5 23 0 0
+4 5 24 0 0
+5 5 1 0 0
+5 5 2 0 0
+5 5 3 0 0
+5 5 4 0 0
+5 5 5 0 0
+5 5 6 35 58
+5 5 7 98 161
+5 5 8 206 90
+5 5 9 253 95
+5 5 10 315 98
+5 5 11 489 199
+5 5 12 434 201
+5 5 13 380 100
+5 5 14 245 0
+5 5 15 258 0
+5 5 16 369 188
+5 5 17 238 175
+5 5 18 147 228
+5 5 19 43 324
+5 5 20 0 0
+5 5 21 0 0
+5 5 22 0 0
+5 5 23 0 0
+5 5 24 0 0
+6 5 1 0 0
+6 5 2 0 0
+6 5 3 0 0
+6 5 4 0 0
+6 5 5 0 0
+6 5 6 85 360
+6 5 7 111 81
+6 5 8 420 628
+6 5 9 598 758
+6 5 10 726 781
+6 5 11 816 796
+6 5 12 858 801
+6 5 13 851 900
+6 5 14 688 594
+6 5 15 383 194
+6 5 16 297 188
+6 5 17 258 176
+6 5 18 171 307
+6 5 19 39 191
+6 5 20 0 0
+6 5 21 0 0
+6 5 22 0 0
+6 5 23 0 0
+6 5 24 0 0
+7 5 1 0 0
+7 5 2 0 0
+7 5 3 0 0
+7 5 4 0 0
+7 5 5 0 0
+7 5 6 81 240
+7 5 7 289 722
+7 5 8 473 806
+7 5 9 639 852
+7 5 10 806 977
+7 5 11 856 897
+7 5 12 906 909
+7 5 13 902 913
+7 5 14 844 905
+7 5 15 737 886
+7 5 16 589 856
+7 5 17 415 897
+7 5 18 252 781
+7 5 19 65 450
+7 5 20 0 0
+7 5 21 0 0
+7 5 22 0 0
+7 5 23 0 0
+7 5 24 0 0
+8 5 1 0 0
+8 5 2 0 0
+8 5 3 0 0
+8 5 4 0 0
+8 5 5 0 0
+8 5 6 112 494
+8 5 7 285 487
+8 5 8 430 451
+8 5 9 608 383
+8 5 10 751 296
+8 5 11 853 403
+8 5 12 896 101
+8 5 13 887 403
+8 5 14 785 100
+8 5 15 713 0
+8 5 16 556 0
+8 5 17 263 0
+8 5 18 118 0
+8 5 19 25 0
+8 5 20 0 0
+8 5 21 0 0
+8 5 22 0 0
+8 5 23 0 0
+8 5 24 0 0
+9 5 1 0 0
+9 5 2 0 0
+9 5 3 0 0
+9 5 4 0 0
+9 5 5 0 0
+9 5 6 52 122
+9 5 7 173 242
+9 5 8 257 269
+9 5 9 381 285
+9 5 10 373 196
+9 5 11 497 199
+9 5 12 571 301
+9 5 13 580 500
+9 5 14 583 494
+9 5 15 527 484
+9 5 16 536 654
+9 5 17 401 703
+9 5 18 220 612
+9 5 19 70 440
+9 5 20 0 0
+9 5 21 0 0
+9 5 22 0 0
+9 5 23 0 0
+9 5 24 0 0
+10 5 1 0 0
+10 5 2 0 0
+10 5 3 0 0
+10 5 4 0 0
+10 5 5 0 0
+10 5 6 125 614
+10 5 7 310 800
+10 5 8 495 800
+10 5 9 669 940
+10 5 10 809 970
+10 5 11 904 986
+10 5 12 899 894
+10 5 13 890 892
+10 5 14 832 883
+10 5 15 731 869
+10 5 16 629 939
+10 5 17 450 883
+10 5 18 256 769
+10 5 19 75 501
+10 5 20 0 0
+10 5 21 0 0
+10 5 22 0 0
+10 5 23 0 0
+10 5 24 0 0
+11 5 1 0 0
+11 5 2 0 0
+11 5 3 0 0
+11 5 4 0 0
+11 5 5 0 0
+11 5 6 128 621
+11 5 7 316 809
+11 5 8 504 897
+11 5 9 676 946
+11 5 10 814 974
+11 5 11 906 990
+11 5 12 927 898
+11 5 13 903 893
+11 5 14 839 882
+11 5 15 744 868
+11 5 16 612 748
+11 5 17 433 615
+11 5 18 243 461
+11 5 19 57 204
+11 5 20 0 0
+11 5 21 0 0
+11 5 22 0 0
+11 5 23 0 0
+11 5 24 0 0
+12 5 1 0 0
+12 5 2 0 0
+12 5 3 0 0
+12 5 4 0 0
+12 5 5 0 0
+12 5 6 39 0
+12 5 7 115 0
+12 5 8 242 0
+12 5 9 443 189
+12 5 10 474 0
+12 5 11 532 0
+12 5 12 562 0
+12 5 13 371 0
+12 5 14 346 0
+12 5 15 450 0
+12 5 16 200 0
+12 5 17 133 0
+12 5 18 107 76
+12 5 19 30 0
+12 5 20 0 0
+12 5 21 0 0
+12 5 22 0 0
+12 5 23 0 0
+12 5 24 0 0
+13 5 1 0 0
+13 5 2 0 0
+13 5 3 0 0
+13 5 4 0 0
+13 5 5 0 0
+13 5 6 88 322
+13 5 7 185 330
+13 5 8 301 182
+13 5 9 314 96
+13 5 10 324 0
+13 5 11 367 0
+13 5 12 202 101
+13 5 13 442 101
+13 5 14 621 100
+13 5 15 641 196
+13 5 16 543 189
+13 5 17 281 178
+13 5 18 207 235
+13 5 19 80 433
+13 5 20 0 0
+13 5 21 0 0
+13 5 22 0 0
+13 5 23 0 0
+13 5 24 0 0
+14 5 1 0 0
+14 5 2 0 0
+14 5 3 0 0
+14 5 4 0 0
+14 5 5 0 0
+14 5 6 56 64
+14 5 7 110 83
+14 5 8 250 181
+14 5 9 505 479
+14 5 10 542 396
+14 5 11 664 504
+14 5 12 568 304
+14 5 13 486 203
+14 5 14 537 302
+14 5 15 518 393
+14 5 16 419 382
+14 5 17 414 720
+14 5 18 242 638
+14 5 19 84 504
+14 5 20 0 0
+14 5 21 0 0
+14 5 22 0 0
+14 5 23 0 0
+14 5 24 0 0
+15 5 1 0 0
+15 5 2 0 0
+15 5 3 0 0
+15 5 4 0 0
+15 5 5 0 0
+15 5 6 137 590
+15 5 7 331 826
+15 5 8 522 912
+15 5 9 694 960
+15 5 10 828 985
+15 5 11 927 1004
+15 5 12 970 1012
+15 5 13 963 907
+15 5 14 888 896
+15 5 15 758 684
+15 5 16 615 661
+15 5 17 460 713
+15 5 18 270 633
+15 5 19 88 446
+15 5 20 0 0
+15 5 21 0 0
+15 5 22 0 0
+15 5 23 0 0
+15 5 24 0 0
+16 5 1 0 0
+16 5 2 0 0
+16 5 3 0 0
+16 5 4 0 0
+16 5 5 8 30
+16 5 6 83 323
+16 5 7 178 246
+16 5 8 190 90
+16 5 9 318 95
+16 5 10 709 195
+16 5 11 668 198
+16 5 12 840 298
+16 5 13 911 298
+16 5 14 783 586
+16 5 15 726 864
+16 5 16 610 834
+16 5 17 408 782
+16 5 18 234 694
+16 5 19 79 484
+16 5 20 0 0
+16 5 21 0 0
+16 5 22 0 0
+16 5 23 0 0
+16 5 24 0 0
+17 5 1 0 0
+17 5 2 0 0
+17 5 3 0 0
+17 5 4 0 0
+17 5 5 2 0
+17 5 6 31 0
+17 5 7 62 0
+17 5 8 197 89
+17 5 9 281 94
+17 5 10 320 0
+17 5 11 288 0
+17 5 12 303 0
+17 5 13 384 99
+17 5 14 359 98
+17 5 15 379 191
+17 5 16 437 463
+17 5 17 427 784
+17 5 18 252 694
+17 5 19 89 488
+17 5 20 0 0
+17 5 21 0 0
+17 5 22 0 0
+17 5 23 0 0
+17 5 24 0 0
+18 5 1 0 0
+18 5 2 0 0
+18 5 3 0 0
+18 5 4 0 0
+18 5 5 11 51
+18 5 6 134 516
+18 5 7 259 404
+18 5 8 340 178
+18 5 9 460 188
+18 5 10 488 194
+18 5 11 463 99
+18 5 12 575 198
+18 5 13 605 99
+18 5 14 795 688
+18 5 15 730 772
+18 5 16 637 836
+18 5 17 462 874
+18 5 18 274 696
+18 5 19 95 492
+18 5 20 0 0
+18 5 21 0 0
+18 5 22 0 0
+18 5 23 0 0
+18 5 24 0 0
+19 5 1 0 0
+19 5 2 0 0
+19 5 3 0 0
+19 5 4 0 0
+19 5 5 11 47
+19 5 6 142 577
+19 5 7 333 807
+19 5 8 518 889
+19 5 9 686 936
+19 5 10 826 968
+19 5 11 917 981
+19 5 12 956 981
+19 5 13 946 977
+19 5 14 852 869
+19 5 15 734 756
+19 5 16 555 732
+19 5 17 438 688
+19 5 18 268 608
+19 5 19 94 431
+19 5 20 0 0
+19 5 21 0 0
+19 5 22 0 0
+19 5 23 0 0
+19 5 24 0 0
+20 5 1 0 0
+20 5 2 0 0
+20 5 3 0 0
+20 5 4 0 0
+20 5 5 6 4
+20 5 6 85 126
+20 5 7 264 400
+20 5 8 451 528
+20 5 9 634 649
+20 5 10 517 286
+20 5 11 477 194
+20 5 12 807 683
+20 5 13 854 778
+20 5 14 800 770
+20 5 15 187 0
+20 5 16 89 0
+20 5 17 159 0
+20 5 18 98 0
+20 5 19 26 0
+20 5 20 0 0
+20 5 21 0 0
+20 5 22 0 0
+20 5 23 0 0
+20 5 24 0 0
+21 5 1 0 0
+21 5 2 0 0
+21 5 3 0 0
+21 5 4 0 0
+21 5 5 4 0
+21 5 6 33 0
+21 5 7 239 243
+21 5 8 389 266
+21 5 9 283 93
+21 5 10 506 288
+21 5 11 632 195
+21 5 12 809 197
+21 5 13 762 197
+21 5 14 714 196
+21 5 15 470 96
+21 5 16 327 0
+21 5 17 265 0
+21 5 18 137 0
+21 5 19 61 115
+21 5 20 0 0
+21 5 21 0 0
+21 5 22 0 0
+21 5 23 0 0
+21 5 24 0 0
+22 5 1 0 0
+22 5 2 0 0
+22 5 3 0 0
+22 5 4 0 0
+22 5 5 5 0
+22 5 6 58 0
+22 5 7 122 0
+22 5 8 231 91
+22 5 9 541 286
+22 5 10 599 294
+22 5 11 321 99
+22 5 12 639 401
+22 5 13 574 300
+22 5 14 492 298
+22 5 15 443 292
+22 5 16 427 379
+22 5 17 370 537
+22 5 18 241 560
+22 5 19 105 546
+22 5 20 0 0
+22 5 21 0 0
+22 5 22 0 0
+22 5 23 0 0
+22 5 24 0 0
+23 5 1 0 0
+23 5 2 0 0
+23 5 3 0 0
+23 5 4 0 0
+23 5 5 16 98
+23 5 6 166 690
+23 5 7 354 846
+23 5 8 513 831
+23 5 9 675 871
+23 5 10 806 894
+23 5 11 896 907
+23 5 12 939 913
+23 5 13 930 909
+23 5 14 869 898
+23 5 15 810 885
+23 5 16 658 761
+23 5 17 391 774
+23 5 18 295 725
+23 5 19 114 609
+23 5 20 0 0
+23 5 21 0 0
+23 5 22 0 0
+23 5 23 0 0
+23 5 24 0 0
+24 5 1 0 0
+24 5 2 0 0
+24 5 3 0 0
+24 5 4 0 0
+24 5 5 17 111
+24 5 6 165 690
+24 5 7 345 758
+24 5 8 540 827
+24 5 9 683 869
+24 5 10 588 198
+24 5 11 591 200
+24 5 12 716 303
+24 5 13 751 406
+24 5 14 774 401
+24 5 15 513 98
+24 5 16 461 191
+24 5 17 164 0
+24 5 18 72 0
+24 5 19 38 0
+24 5 20 0 0
+24 5 21 0 0
+24 5 22 0 0
+24 5 23 0 0
+24 5 24 0 0
+25 5 1 0 0
+25 5 2 0 0
+25 5 3 0 0
+25 5 4 0 0
+25 5 5 3 0
+25 5 6 23 0
+25 5 7 127 0
+25 5 8 201 0
+25 5 9 269 0
+25 5 10 324 0
+25 5 11 363 0
+25 5 12 381 0
+25 5 13 232 0
+25 5 14 355 0
+25 5 15 311 0
+25 5 16 252 0
+25 5 17 181 0
+25 5 18 61 0
+25 5 19 56 118
+25 5 20 0 0
+25 5 21 0 0
+25 5 22 0 0
+25 5 23 0 0
+25 5 24 0 0
+26 5 1 0 0
+26 5 2 0 0
+26 5 3 0 0
+26 5 4 0 0
+26 5 5 10 13
+26 5 6 73 66
+26 5 7 150 82
+26 5 8 198 0
+26 5 9 240 0
+26 5 10 182 0
+26 5 11 169 0
+26 5 12 266 0
+26 5 13 304 0
+26 5 14 217 0
+26 5 15 144 0
+26 5 16 224 93
+26 5 17 110 0
+26 5 18 99 0
+26 5 19 28 0
+26 5 20 0 0
+26 5 21 0 0
+26 5 22 0 0
+26 5 23 0 0
+26 5 24 0 0
+27 5 1 0 0
+27 5 2 0 0
+27 5 3 0 0
+27 5 4 0 0
+27 5 5 1 0
+27 5 6 9 0
+27 5 7 27 0
+27 5 8 36 0
+27 5 9 78 0
+27 5 10 160 0
+27 5 11 281 0
+27 5 12 284 0
+27 5 13 197 0
+27 5 14 391 0
+27 5 15 373 0
+27 5 16 223 0
+27 5 17 254 0
+27 5 18 148 79
+27 5 19 47 0
+27 5 20 0 0
+27 5 21 0 0
+27 5 22 0 0
+27 5 23 0 0
+27 5 24 0 0
+28 5 1 0 0
+28 5 2 0 0
+28 5 3 0 0
+28 5 4 0 0
+28 5 5 19 128
+28 5 6 147 606
+28 5 7 106 164
+28 5 8 171 179
+28 5 9 411 282
+28 5 10 781 868
+28 5 11 826 783
+28 5 12 818 792
+28 5 13 813 793
+28 5 14 776 691
+28 5 15 685 678
+28 5 16 599 655
+28 5 17 393 443
+28 5 18 285 559
+28 5 19 112 424
+28 5 20 0 0
+28 5 21 0 0
+28 5 22 0 0
+28 5 23 0 0
+28 5 24 0 0
+29 5 1 0 0
+29 5 2 0 0
+29 5 3 0 0
+29 5 4 0 0
+29 5 5 21 136
+29 5 6 170 611
+29 5 7 356 825
+29 5 8 543 905
+29 5 9 708 947
+29 5 10 838 873
+29 5 11 934 890
+29 5 12 976 891
+29 5 13 966 888
+29 5 14 914 981
+29 5 15 812 968
+29 5 16 665 936
+29 5 17 492 885
+29 5 18 306 797
+29 5 19 125 609
+29 5 20 0 0
+29 5 21 0 0
+29 5 22 0 0
+29 5 23 0 0
+29 5 24 0 0
+30 5 1 0 0
+30 5 2 0 0
+30 5 3 0 0
+30 5 4 0 0
+30 5 5 22 149
+30 5 6 170 606
+30 5 7 353 739
+30 5 8 538 901
+30 5 9 702 942
+30 5 10 837 871
+30 5 11 932 886
+30 5 12 976 891
+30 5 13 979 899
+30 5 14 879 886
+30 5 15 776 869
+30 5 16 609 840
+30 5 17 457 793
+30 5 18 300 713
+30 5 19 123 545
+30 5 20 0 0
+30 5 21 0 0
+30 5 22 0 0
+30 5 23 0 0
+30 5 24 0 0
+31 5 1 0 0
+31 5 2 0 0
+31 5 3 0 0
+31 5 4 0 0
+31 5 5 8 0
+31 5 6 122 349
+31 5 7 216 169
+31 5 8 503 735
+31 5 9 676 771
+31 5 10 815 894
+31 5 11 922 907
+31 5 12 964 911
+31 5 13 989 1010
+31 5 14 922 901
+31 5 15 821 883
+31 5 16 673 852
+31 5 17 491 808
+31 5 18 306 733
+31 5 19 121 566
+31 5 20 0 0
+31 5 21 0 0
+31 5 22 0 0
+31 5 23 0 0
+31 5 24 0 0
+1 6 1 0 0
+1 6 2 0 0
+1 6 3 0 0
+1 6 4 0 0
+1 6 5 8 0
+1 6 6 56 0
+1 6 7 138 0
+1 6 8 124 0
+1 6 9 165 0
+1 6 10 198 0
+1 6 11 397 96
+1 6 12 573 96
+1 6 13 342 0
+1 6 14 388 191
+1 6 15 480 468
+1 6 16 354 362
+1 6 17 234 0
+1 6 18 206 306
+1 6 19 72 118
+1 6 20 0 0
+1 6 21 0 0
+1 6 22 0 0
+1 6 23 0 0
+1 6 24 0 0
+2 6 1 0 0
+2 6 2 0 0
+2 6 3 0 0
+2 6 4 0 0
+2 6 5 11 17
+2 6 6 82 65
+2 6 7 224 239
+2 6 8 420 436
+2 6 9 651 823
+2 6 10 705 660
+2 6 11 607 287
+2 6 12 833 675
+2 6 13 764 675
+2 6 14 848 861
+2 6 15 717 751
+2 6 16 587 544
+2 6 17 434 516
+2 6 18 266 461
+2 6 19 109 352
+2 6 20 7 17
+2 6 21 0 0
+2 6 22 0 0
+2 6 23 0 0
+2 6 24 0 0
+3 6 1 0 0
+3 6 2 0 0
+3 6 3 0 0
+3 6 4 0 0
+3 6 5 6 0
+3 6 6 34 0
+3 6 7 98 0
+3 6 8 127 0
+3 6 9 259 93
+3 6 10 369 96
+3 6 11 475 97
+3 6 12 402 98
+3 6 13 273 0
+3 6 14 431 0
+3 6 15 225 0
+3 6 16 367 93
+3 6 17 196 88
+3 6 18 161 158
+3 6 19 73 186
+3 6 20 5 13
+3 6 21 0 0
+3 6 22 0 0
+3 6 23 0 0
+3 6 24 0 0
+4 6 1 0 0
+4 6 2 0 0
+4 6 3 0 0
+4 6 4 0 0
+4 6 5 23 170
+4 6 6 166 617
+4 6 7 334 739
+4 6 8 511 809
+4 6 9 629 754
+4 6 10 743 774
+4 6 11 826 688
+4 6 12 924 792
+4 6 13 876 797
+4 6 14 836 787
+4 6 15 485 97
+4 6 16 546 561
+4 6 17 405 531
+4 6 18 170 161
+4 6 19 63 62
+4 6 20 5 4
+4 6 21 0 0
+4 6 22 0 0
+4 6 23 0 0
+4 6 24 0 0
+5 6 1 0 0
+5 6 2 0 0
+5 6 3 0 0
+5 6 4 0 0
+5 6 5 25 174
+5 6 6 163 548
+5 6 7 348 744
+5 6 8 492 720
+5 6 9 597 659
+5 6 10 755 676
+5 6 11 840 687
+5 6 12 681 298
+5 6 13 577 198
+5 6 14 528 195
+5 6 15 688 671
+5 6 16 556 650
+5 6 17 142 88
+5 6 18 260 553
+5 6 19 116 493
+5 6 20 9 38
+5 6 21 0 0
+5 6 22 0 0
+5 6 23 0 0
+5 6 24 0 0
+6 6 1 0 0
+6 6 2 0 0
+6 6 3 0 0
+6 6 4 0 0
+6 6 5 21 136
+6 6 6 111 272
+6 6 7 158 83
+6 6 8 243 89
+6 6 9 322 94
+6 6 10 367 96
+6 6 11 457 196
+6 6 12 340 99
+6 6 13 339 99
+6 6 14 318 98
+6 6 15 334 96
+6 6 16 272 93
+6 6 17 199 88
+6 6 18 121 79
+6 6 19 58 62
+6 6 20 6 17
+6 6 21 0 0
+6 6 22 0 0
+6 6 23 0 0
+6 6 24 0 0
+7 6 1 0 0
+7 6 2 0 0
+7 6 3 0 0
+7 6 4 0 0
+7 6 5 9 0
+7 6 6 60 0
+7 6 7 158 82
+7 6 8 231 89
+7 6 9 219 0
+7 6 10 314 96
+7 6 11 505 293
+7 6 12 679 491
+7 6 13 674 490
+7 6 14 701 584
+7 6 15 576 479
+7 6 16 459 371
+7 6 17 290 88
+7 6 18 177 80
+7 6 19 57 63
+7 6 20 6 13
+7 6 21 0 0
+7 6 22 0 0
+7 6 23 0 0
+7 6 24 0 0
+8 6 1 0 0
+8 6 2 0 0
+8 6 3 0 0
+8 6 4 0 0
+8 6 5 16 93
+8 6 6 135 406
+8 6 7 182 244
+8 6 8 454 534
+8 6 9 651 746
+8 6 10 742 670
+8 6 11 895 873
+8 6 12 939 880
+8 6 13 964 974
+8 6 14 862 869
+8 6 15 765 853
+8 6 16 622 733
+8 6 17 459 692
+8 6 18 290 625
+8 6 19 127 491
+8 6 20 11 43
+8 6 21 0 0
+8 6 22 0 0
+8 6 23 0 0
+8 6 24 0 0
+9 6 1 0 0
+9 6 2 0 0
+9 6 3 0 0
+9 6 4 0 0
+9 6 5 28 200
+9 6 6 174 596
+9 6 7 212 241
+9 6 8 256 88
+9 6 9 556 552
+9 6 10 690 663
+9 6 11 923 962
+9 6 12 965 965
+9 6 13 960 964
+9 6 14 904 956
+9 6 15 804 940
+9 6 16 671 920
+9 6 17 501 870
+9 6 18 319 785
+9 6 19 142 614
+9 6 20 12 51
+9 6 21 0 0
+9 6 22 0 0
+9 6 23 0 0
+9 6 24 0 0
+10 6 1 0 0
+10 6 2 0 0
+10 6 3 0 0
+10 6 4 0 0
+10 6 5 29 234
+10 6 6 179 669
+10 6 7 251 404
+10 6 8 330 88
+10 6 9 562 369
+10 6 10 735 663
+10 6 11 877 864
+10 6 12 967 968
+10 6 13 909 869
+10 6 14 701 575
+10 6 15 670 660
+10 6 16 553 639
+10 6 17 413 605
+10 6 18 284 631
+10 6 19 135 555
+10 6 20 11 47
+10 6 21 0 0
+10 6 22 0 0
+10 6 23 0 0
+10 6 24 0 0
+11 6 1 0 0
+11 6 2 0 0
+11 6 3 0 0
+11 6 4 0 0
+11 6 5 18 47
+11 6 6 141 332
+11 6 7 294 403
+11 6 8 448 351
+11 6 9 468 184
+11 6 10 522 95
+11 6 11 584 96
+11 6 12 337 0
+11 6 13 419 97
+11 6 14 487 96
+11 6 15 754 660
+11 6 16 516 456
+11 6 17 398 519
+11 6 18 260 469
+11 6 19 116 376
+11 6 20 11 43
+11 6 21 0 0
+11 6 22 0 0
+11 6 23 0 0
+11 6 24 0 0
+12 6 1 0 0
+12 6 2 0 0
+12 6 3 0 0
+12 6 4 0 0
+12 6 5 28 229
+12 6 6 173 548
+12 6 7 352 747
+12 6 8 548 815
+12 6 9 712 855
+12 6 10 831 683
+12 6 11 882 793
+12 6 12 814 600
+12 6 13 771 601
+12 6 14 727 596
+12 6 15 643 583
+12 6 16 614 757
+12 6 17 493 813
+12 6 18 317 741
+12 6 19 135 529
+12 6 20 13 59
+12 6 21 0 0
+12 6 22 0 0
+12 6 23 0 0
+12 6 24 0 0
+13 6 1 0 0
+13 6 2 0 0
+13 6 3 0 0
+13 6 4 0 0
+13 6 5 31 242
+13 6 6 183 632
+13 6 7 369 757
+13 6 8 553 822
+13 6 9 721 862
+13 6 10 857 884
+13 6 11 949 899
+13 6 12 921 803
+13 6 13 933 803
+13 6 14 881 896
+13 6 15 783 881
+13 6 16 659 859
+13 6 17 522 814
+13 6 18 319 741
+13 6 19 155 662
+13 6 20 14 76
+13 6 21 0 0
+13 6 22 0 0
+13 6 23 0 0
+13 6 24 0 0
+14 6 1 0 0
+14 6 2 0 0
+14 6 3 0 0
+14 6 4 0 0
+14 6 5 29 259
+14 6 6 170 550
+14 6 7 353 661
+14 6 8 539 809
+14 6 9 693 849
+14 6 10 834 872
+14 6 11 938 887
+14 6 12 989 993
+14 6 13 983 991
+14 6 14 931 981
+14 6 15 829 966
+14 6 16 684 932
+14 6 17 516 886
+14 6 18 333 807
+14 6 19 154 648
+14 6 20 15 72
+14 6 21 0 0
+14 6 22 0 0
+14 6 23 0 0
+14 6 24 0 0
+15 6 1 0 0
+15 6 2 0 0
+15 6 3 0 0
+15 6 4 0 0
+15 6 5 30 229
+15 6 6 181 616
+15 6 7 359 735
+15 6 8 539 800
+15 6 9 706 931
+15 6 10 839 957
+15 6 11 881 873
+15 6 12 870 782
+15 6 13 755 587
+15 6 14 765 678
+15 6 15 633 572
+15 6 16 523 554
+15 6 17 393 526
+15 6 18 272 557
+15 6 19 104 317
+15 6 20 11 43
+15 6 21 0 0
+15 6 22 0 0
+15 6 23 0 0
+15 6 24 0 0
+16 6 1 0 0
+16 6 2 0 0
+16 6 3 0 0
+16 6 4 0 0
+16 6 5 12 51
+16 6 6 73 67
+16 6 7 338 727
+16 6 8 414 529
+16 6 9 434 370
+16 6 10 561 286
+16 6 11 558 290
+16 6 12 334 0
+16 6 13 404 97
+16 6 14 266 0
+16 6 15 675 284
+16 6 16 568 458
+16 6 17 450 348
+16 6 18 289 394
+16 6 19 143 438
+16 6 20 7 26
+16 6 21 0 0
+16 6 22 0 0
+16 6 23 0 0
+16 6 24 0 0
+17 6 1 0 0
+17 6 2 0 0
+17 6 3 0 0
+17 6 4 0 0
+17 6 5 26 98
+17 6 6 86 133
+17 6 7 180 160
+17 6 8 239 87
+17 6 9 567 550
+17 6 10 816 848
+17 6 11 841 672
+17 6 12 878 581
+17 6 13 881 581
+17 6 14 558 288
+17 6 15 195 0
+17 6 16 281 0
+17 6 17 232 86
+17 6 18 183 155
+17 6 19 96 248
+17 6 20 7 17
+17 6 21 0 0
+17 6 22 0 0
+17 6 23 0 0
+17 6 24 0 0
+18 6 1 0 0
+18 6 2 0 0
+18 6 3 0 0
+18 6 4 0 0
+18 6 5 6 0
+18 6 6 54 0
+18 6 7 129 80
+18 6 8 170 0
+18 6 9 267 0
+18 6 10 377 94
+18 6 11 360 96
+18 6 12 379 0
+18 6 13 378 96
+18 6 14 356 96
+18 6 15 398 188
+18 6 16 366 363
+18 6 17 221 257
+18 6 18 123 156
+18 6 19 62 0
+18 6 20 8 17
+18 6 21 0 0
+18 6 22 0 0
+18 6 23 0 0
+18 6 24 0 0
+19 6 1 0 0
+19 6 2 0 0
+19 6 3 0 0
+19 6 4 0 0
+19 6 5 10 26
+19 6 6 73 66
+19 6 7 271 402
+19 6 8 207 88
+19 6 9 287 92
+19 6 10 293 95
+19 6 11 308 96
+19 6 12 152 0
+19 6 13 380 97
+19 6 14 721 580
+19 6 15 742 761
+19 6 16 484 461
+19 6 17 368 441
+19 6 18 238 404
+19 6 19 101 263
+19 6 20 12 47
+19 6 21 0 0
+19 6 22 0 0
+19 6 23 0 0
+19 6 24 0 0
+20 6 1 0 0
+20 6 2 0 0
+20 6 3 0 0
+20 6 4 0 0
+20 6 5 11 26
+20 6 6 62 70
+20 6 7 283 499
+20 6 8 344 271
+20 6 9 465 379
+20 6 10 391 98
+20 6 11 436 99
+20 6 12 524 199
+20 6 13 458 100
+20 6 14 510 198
+20 6 15 452 194
+20 6 16 361 188
+20 6 17 234 89
+20 6 18 148 82
+20 6 19 65 66
+20 6 20 7 13
+20 6 21 0 0
+20 6 22 0 0
+20 6 23 0 0
+20 6 24 0 0
+21 6 1 0 0
+21 6 2 0 0
+21 6 3 0 0
+21 6 4 0 0
+21 6 5 27 200
+21 6 6 173 614
+21 6 7 325 657
+21 6 8 534 804
+21 6 9 689 841
+21 6 10 814 768
+21 6 11 846 682
+21 6 12 890 687
+21 6 13 891 690
+21 6 14 861 775
+21 6 15 725 769
+21 6 16 559 560
+21 6 17 408 529
+21 6 18 281 563
+21 6 19 130 391
+21 6 20 15 68
+21 6 21 0 0
+21 6 22 0 0
+21 6 23 0 0
+21 6 24 0 0
+22 6 1 0 0
+22 6 2 0 0
+22 6 3 0 0
+22 6 4 0 0
+22 6 5 25 166
+22 6 6 137 336
+22 6 7 277 325
+22 6 8 451 532
+22 6 9 501 279
+22 6 10 675 382
+22 6 11 838 677
+22 6 12 696 292
+22 6 13 748 487
+22 6 14 669 484
+22 6 15 533 286
+22 6 16 395 278
+22 6 17 398 439
+22 6 18 318 722
+22 6 19 141 517
+22 6 20 18 106
+22 6 21 0 0
+22 6 22 0 0
+22 6 23 0 0
+22 6 24 0 0
+23 6 1 0 0
+23 6 2 0 0
+23 6 3 0 0
+23 6 4 0 0
+23 6 5 24 161
+23 6 6 169 603
+23 6 7 341 727
+23 6 8 536 883
+23 6 9 673 833
+23 6 10 796 760
+23 6 11 807 678
+23 6 12 805 683
+23 6 13 798 588
+23 6 14 815 685
+23 6 15 671 573
+23 6 16 604 741
+23 6 17 480 794
+23 6 18 312 719
+23 6 19 135 517
+23 6 20 18 106
+23 6 21 0 0
+23 6 22 0 0
+23 6 23 0 0
+23 6 24 0 0
+24 6 1 0 0
+24 6 2 0 0
+24 6 3 0 0
+24 6 4 0 0
+24 6 5 28 229
+24 6 6 172 602
+24 6 7 296 651
+24 6 8 435 442
+24 6 9 674 555
+24 6 10 803 477
+24 6 11 891 484
+24 6 12 827 488
+24 6 13 831 584
+24 6 14 799 579
+24 6 15 719 666
+24 6 16 636 737
+24 6 17 384 438
+24 6 18 290 558
+24 6 19 113 321
+24 6 20 11 34
+24 6 21 0 0
+24 6 22 0 0
+24 6 23 0 0
+24 6 24 0 0
+25 6 1 0 0
+25 6 2 0 0
+25 6 3 0 0
+25 6 4 0 0
+25 6 5 19 115
+25 6 6 62 68
+25 6 7 207 248
+25 6 8 350 359
+25 6 9 449 283
+25 6 10 443 194
+25 6 11 557 296
+25 6 12 585 298
+25 6 13 645 396
+25 6 14 553 296
+25 6 15 491 291
+25 6 16 536 563
+25 6 17 436 625
+25 6 18 300 652
+25 6 19 141 531
+25 6 20 17 106
+25 6 21 0 0
+25 6 22 0 0
+25 6 23 0 0
+25 6 24 0 0
+26 6 1 0 0
+26 6 2 0 0
+26 6 3 0 0
+26 6 4 0 0
+26 6 5 26 178
+26 6 6 160 477
+26 6 7 301 328
+26 6 8 473 357
+26 6 9 619 376
+26 6 10 749 193
+26 6 11 843 196
+26 6 12 963 593
+26 6 13 962 593
+26 6 14 855 588
+26 6 15 771 673
+26 6 16 559 558
+26 6 17 395 353
+26 6 18 228 161
+26 6 19 91 130
+26 6 20 10 38
+26 6 21 0 0
+26 6 22 0 0
+26 6 23 0 0
+26 6 24 0 0
+27 6 1 0 0
+27 6 2 0 0
+27 6 3 0 0
+27 6 4 0 0
+27 6 5 7 0
+27 6 6 28 0
+27 6 7 65 0
+27 6 8 121 0
+27 6 9 196 0
+27 6 10 220 0
+27 6 11 186 0
+27 6 12 357 0
+27 6 13 356 0
+27 6 14 331 0
+27 6 15 313 0
+27 6 16 439 0
+27 6 17 294 89
+27 6 18 243 161
+27 6 19 119 195
+27 6 20 14 64
+27 6 21 0 0
+27 6 22 0 0
+27 6 23 0 0
+27 6 24 0 0
+28 6 1 0 0
+28 6 2 0 0
+28 6 3 0 0
+28 6 4 0 0
+28 6 5 25 191
+28 6 6 175 614
+28 6 7 356 741
+28 6 8 538 808
+28 6 9 704 848
+28 6 10 839 870
+28 6 11 887 883
+28 6 12 938 894
+28 6 13 937 894
+28 6 14 886 887
+28 6 15 791 872
+28 6 16 661 850
+28 6 17 499 807
+28 6 18 322 735
+28 6 19 151 595
+28 6 20 18 119
+28 6 21 0 0
+28 6 22 0 0
+28 6 23 0 0
+28 6 24 0 0
+29 6 1 0 0
+29 6 2 0 0
+29 6 3 0 0
+29 6 4 0 0
+29 6 5 18 81
+29 6 6 150 268
+29 6 7 303 244
+29 6 8 445 267
+29 6 9 602 279
+29 6 10 767 285
+29 6 11 787 194
+29 6 12 344 0
+29 6 13 279 0
+29 6 14 540 0
+29 6 15 270 0
+29 6 16 262 0
+29 6 17 104 0
+29 6 18 123 0
+29 6 19 47 0
+29 6 20 6 0
+29 6 21 0 0
+29 6 22 0 0
+29 6 23 0 0
+29 6 24 0 0
+30 6 1 0 0
+30 6 2 0 0
+30 6 3 0 0
+30 6 4 0 0
+30 6 5 8 0
+30 6 6 56 0
+30 6 7 126 0
+30 6 8 199 0
+30 6 9 141 0
+30 6 10 171 0
+30 6 11 192 0
+30 6 12 259 0
+30 6 13 227 0
+30 6 14 301 0
+30 6 15 268 0
+30 6 16 112 0
+30 6 17 387 432
+30 6 18 212 314
+30 6 19 129 444
+30 6 20 14 72
+30 6 21 0 0
+30 6 22 0 0
+30 6 23 0 0
+30 6 24 0 0
+1 7 1 0 0
+1 7 2 0 0
+1 7 3 0 0
+1 7 4 0 0
+1 7 5 11 34
+1 7 6 59 65
+1 7 7 86 0
+1 7 8 220 87
+1 7 9 146 0
+1 7 10 153 0
+1 7 11 714 571
+1 7 12 621 481
+1 7 13 694 482
+1 7 14 538 288
+1 7 15 741 758
+1 7 16 612 831
+1 7 17 481 791
+1 7 18 321 726
+1 7 19 161 648
+1 7 20 14 51
+1 7 21 0 0
+1 7 22 0 0
+1 7 23 0 0
+1 7 24 0 0
+2 7 1 0 0
+2 7 2 0 0
+2 7 3 0 0
+2 7 4 0 0
+2 7 5 17 102
+2 7 6 139 463
+2 7 7 283 566
+2 7 8 173 177
+2 7 9 163 93
+2 7 10 381 96
+2 7 11 427 98
+2 7 12 450 98
+2 7 13 449 98
+2 7 14 364 97
+2 7 15 322 0
+2 7 16 265 0
+2 7 17 260 263
+2 7 18 133 80
+2 7 19 141 386
+2 7 20 15 72
+2 7 21 0 0
+2 7 22 0 0
+2 7 23 0 0
+2 7 24 0 0
+3 7 1 0 0
+3 7 2 0 0
+3 7 3 0 0
+3 7 4 0 0
+3 7 5 21 140
+3 7 6 166 654
+3 7 7 344 801
+3 7 8 468 790
+3 7 9 689 921
+3 7 10 823 947
+3 7 11 918 962
+3 7 12 971 972
+3 7 13 973 975
+3 7 14 869 869
+3 7 15 773 760
+3 7 16 636 646
+3 7 17 369 349
+3 7 18 201 79
+3 7 19 76 0
+3 7 20 9 0
+3 7 21 0 0
+3 7 22 0 0
+3 7 23 0 0
+3 7 24 0 0
+4 7 1 0 0
+4 7 2 0 0
+4 7 3 0 0
+4 7 4 0 0
+4 7 5 6 0
+4 7 6 39 0
+4 7 7 109 0
+4 7 8 128 0
+4 7 9 264 0
+4 7 10 198 0
+4 7 11 172 0
+4 7 12 207 0
+4 7 13 378 0
+4 7 14 171 0
+4 7 15 290 94
+4 7 16 261 0
+4 7 17 194 0
+4 7 18 169 157
+4 7 19 138 567
+4 7 20 14 43
+4 7 21 0 0
+4 7 22 0 0
+4 7 23 0 0
+4 7 24 0 0
+5 7 1 0 0
+5 7 2 0 0
+5 7 3 0 0
+5 7 4 0 0
+5 7 5 11 64
+5 7 6 67 127
+5 7 7 129 79
+5 7 8 205 87
+5 7 9 314 92
+5 7 10 378 96
+5 7 11 631 193
+5 7 12 888 711
+5 7 13 883 779
+5 7 14 837 704
+5 7 15 739 860
+5 7 16 642 841
+5 7 17 423 668
+5 7 18 229 571
+5 7 19 84 366
+5 7 20 15 72
+5 7 21 0 0
+5 7 22 0 0
+5 7 23 0 0
+5 7 24 0 0
+6 7 1 0 0
+6 7 2 0 0
+6 7 3 0 0
+6 7 4 0 0
+6 7 5 19 111
+6 7 6 139 398
+6 7 7 327 646
+6 7 8 504 711
+6 7 9 617 561
+6 7 10 685 481
+6 7 11 775 488
+6 7 12 864 595
+6 7 13 846 589
+6 7 14 833 686
+6 7 15 816 865
+6 7 16 664 840
+6 7 17 502 798
+6 7 18 339 807
+6 7 19 159 649
+6 7 20 18 111
+6 7 21 0 0
+6 7 22 0 0
+6 7 23 0 0
+6 7 24 0 0
+7 7 1 0 0
+7 7 2 0 0
+7 7 3 0 0
+7 7 4 0 0
+7 7 5 17 85
+7 7 6 151 522
+7 7 7 324 644
+7 7 8 498 713
+7 7 9 675 843
+7 7 10 751 868
+7 7 11 1002 881
+7 7 12 1054 789
+7 7 13 1054 789
+7 7 14 982 684
+7 7 15 837 480
+7 7 16 677 373
+7 7 17 498 356
+7 7 18 265 404
+7 7 19 104 260
+7 7 20 16 68
+7 7 21 0 0
+7 7 22 0 0
+7 7 23 0 0
+7 7 24 0 0
+8 7 1 0 0
+8 7 2 0 0
+8 7 3 0 0
+8 7 4 0 0
+8 7 5 17 106
+8 7 6 151 579
+8 7 7 326 719
+8 7 8 470 612
+8 7 9 367 183
+8 7 10 371 94
+8 7 11 586 478
+8 7 12 475 193
+8 7 13 234 0
+8 7 14 415 286
+8 7 15 352 94
+8 7 16 381 272
+8 7 17 403 516
+8 7 18 271 546
+8 7 19 43 125
+8 7 20 6 9
+8 7 21 0 0
+8 7 22 0 0
+8 7 23 0 0
+8 7 24 0 0
+9 7 1 0 0
+9 7 2 0 0
+9 7 3 0 0
+9 7 4 0 0
+9 7 5 16 81
+9 7 6 144 504
+9 7 7 298 548
+9 7 8 428 433
+9 7 9 422 274
+9 7 10 573 332
+9 7 11 474 288
+9 7 12 175 97
+9 7 13 793 676
+9 7 14 424 96
+9 7 15 376 94
+9 7 16 594 825
+9 7 17 373 522
+9 7 18 279 557
+9 7 19 116 383
+9 7 20 8 38
+9 7 21 0 0
+9 7 22 0 0
+9 7 23 0 0
+9 7 24 0 0
+10 7 1 0 0
+10 7 2 0 0
+10 7 3 0 0
+10 7 4 0 0
+10 7 5 16 89
+10 7 6 148 644
+10 7 7 333 721
+10 7 8 517 880
+10 7 9 686 929
+10 7 10 826 959
+10 7 11 923 974
+10 7 12 978 984
+10 7 13 974 981
+10 7 14 926 976
+10 7 15 825 957
+10 7 16 688 931
+10 7 17 518 882
+10 7 18 337 804
+10 7 19 156 646
+10 7 20 14 81
+10 7 21 0 0
+10 7 22 0 0
+10 7 23 0 0
+10 7 24 0 0
+11 7 1 0 0
+11 7 2 0 0
+11 7 3 0 0
+11 7 4 0 0
+11 7 5 14 72
+11 7 6 154 571
+11 7 7 337 634
+11 7 8 511 349
+11 7 9 679 277
+11 7 10 855 758
+11 7 11 805 578
+11 7 12 788 390
+11 7 13 636 586
+11 7 14 503 97
+11 7 15 520 95
+11 7 16 582 0
+11 7 17 213 0
+11 7 18 80 0
+11 7 19 35 0
+11 7 20 3 0
+11 7 21 0 0
+11 7 22 0 0
+11 7 23 0 0
+11 7 24 0 0
+12 7 1 0 0
+12 7 2 0 0
+12 7 3 0 0
+12 7 4 0 0
+12 7 5 3 0
+12 7 6 49 0
+12 7 7 118 0
+12 7 8 191 0
+12 7 9 184 0
+12 7 10 225 0
+12 7 11 254 0
+12 7 12 306 0
+12 7 13 288 0
+12 7 14 228 0
+12 7 15 171 0
+12 7 16 218 0
+12 7 17 44 0
+12 7 18 54 0
+12 7 19 37 0
+12 7 20 2 0
+12 7 21 0 0
+12 7 22 0 0
+12 7 23 0 0
+12 7 24 0 0
+13 7 1 0 0
+13 7 2 0 0
+13 7 3 0 0
+13 7 4 0 0
+13 7 5 4 4
+13 7 6 43 60
+13 7 7 97 0
+13 7 8 173 0
+13 7 9 459 541
+13 7 10 518 371
+13 7 11 416 94
+13 7 12 405 191
+13 7 13 657 572
+13 7 14 320 191
+13 7 15 472 281
+13 7 16 284 181
+13 7 17 276 258
+13 7 18 230 387
+13 7 19 127 369
+13 7 20 10 30
+13 7 21 0 0
+13 7 22 0 0
+13 7 23 0 0
+13 7 24 0 0
+14 7 1 0 0
+14 7 2 0 0
+14 7 3 0 0
+14 7 4 0 0
+14 7 5 12 55
+14 7 6 138 621
+14 7 7 149 235
+14 7 8 228 87
+14 7 9 304 91
+14 7 10 525 377
+14 7 11 534 288
+14 7 12 740 580
+14 7 13 834 677
+14 7 14 864 767
+14 7 15 724 851
+14 7 16 566 706
+14 7 17 548 784
+14 7 18 324 631
+14 7 19 152 564
+14 7 20 13 51
+14 7 21 0 0
+14 7 22 0 0
+14 7 23 0 0
+14 7 24 0 0
+15 7 1 0 0
+15 7 2 0 0
+15 7 3 0 0
+15 7 4 0 0
+15 7 5 0 3
+15 7 6 135 609
+15 7 7 318 776
+15 7 8 545 859
+15 7 9 712 726
+15 7 10 748 655
+15 7 11 884 857
+15 7 12 476 192
+15 7 13 750 574
+15 7 14 548 189
+15 7 15 518 279
+15 7 16 301 90
+15 7 17 105 0
+15 7 18 97 77
+15 7 19 49 60
+15 7 20 0 0
+15 7 21 0 0
+15 7 22 0 0
+15 7 23 0 0
+15 7 24 0 0
+16 7 1 0 0
+16 7 2 0 0
+16 7 3 0 0
+16 7 4 0 0
+16 7 5 0 0
+16 7 6 29 0
+16 7 7 63 0
+16 7 8 83 0
+16 7 9 370 180
+16 7 10 471 278
+16 7 11 800 755
+16 7 12 784 667
+16 7 13 784 571
+16 7 14 738 567
+16 7 15 749 744
+16 7 16 628 815
+16 7 17 466 681
+16 7 18 297 614
+16 7 19 131 480
+16 7 20 11 38
+16 7 21 0 0
+16 7 22 0 0
+16 7 23 0 0
+16 7 24 0 0
+17 7 1 0 0
+17 7 2 0 0
+17 7 3 0 0
+17 7 4 0 0
+17 7 5 9 43
+17 7 6 106 298
+17 7 7 220 539
+17 7 8 394 596
+17 7 9 470 540
+17 7 10 476 279
+17 7 11 513 284
+17 7 12 620 381
+17 7 13 670 475
+17 7 14 789 753
+17 7 15 705 741
+17 7 16 558 539
+17 7 17 314 0
+17 7 18 56 0
+17 7 19 28 0
+17 7 20 4 0
+17 7 21 0 0
+17 7 22 0 0
+17 7 23 0 0
+17 7 24 0 0
+18 7 1 0 0
+18 7 2 0 0
+18 7 3 0 0
+18 7 4 0 0
+18 7 5 8 30
+18 7 6 118 475
+18 7 7 291 690
+18 7 8 368 602
+18 7 9 553 544
+18 7 10 752 751
+18 7 11 691 476
+18 7 12 626 385
+18 7 13 656 481
+18 7 14 806 762
+18 7 15 743 842
+18 7 16 633 815
+18 7 17 481 774
+18 7 18 293 544
+18 7 19 141 426
+18 7 20 11 34
+18 7 21 0 0
+18 7 22 0 0
+18 7 23 0 0
+18 7 24 0 0
+19 7 1 0 0
+19 7 2 0 0
+19 7 3 0 0
+19 7 4 0 0
+19 7 5 6 13
+19 7 6 97 177
+19 7 7 178 153
+19 7 8 353 341
+19 7 9 566 719
+19 7 10 736 742
+19 7 11 749 815
+19 7 12 865 856
+19 7 13 799 825
+19 7 14 748 811
+19 7 15 791 927
+19 7 16 655 896
+19 7 17 490 847
+19 7 18 311 762
+19 7 19 136 591
+19 7 20 10 38
+19 7 21 0 0
+19 7 22 0 0
+19 7 23 0 0
+19 7 24 0 0
+20 7 1 0 0
+20 7 2 0 0
+20 7 3 0 0
+20 7 4 0 0
+20 7 5 0 0
+20 7 6 88 465
+20 7 7 260 609
+20 7 8 369 424
+20 7 9 612 717
+20 7 10 724 833
+20 7 11 778 659
+20 7 12 835 854
+20 7 13 830 854
+20 7 14 795 846
+20 7 15 713 831
+20 7 16 583 803
+20 7 17 529 757
+20 7 18 335 681
+20 7 19 115 353
+20 7 20 6 26
+20 7 21 0 0
+20 7 22 0 0
+20 7 23 0 0
+20 7 24 0 0
+21 7 1 0 0
+21 7 2 0 0
+21 7 3 0 0
+21 7 4 0 0
+21 7 5 0 0
+21 7 6 93 232
+21 7 7 126 152
+21 7 8 183 85
+21 7 9 399 180
+21 7 10 328 186
+21 7 11 450 95
+21 7 12 390 96
+21 7 13 549 192
+21 7 14 784 573
+21 7 15 526 379
+21 7 16 429 553
+21 7 17 333 611
+21 7 18 276 710
+21 7 19 114 554
+21 7 20 10 47
+21 7 21 0 0
+21 7 22 0 0
+21 7 23 0 0
+21 7 24 0 0
+22 7 1 0 0
+22 7 2 0 0
+22 7 3 0 0
+22 7 4 0 0
+22 7 5 0 0
+22 7 6 112 551
+22 7 7 270 711
+22 7 8 433 792
+22 7 9 593 745
+22 7 10 578 482
+22 7 11 537 294
+22 7 12 569 296
+22 7 13 445 99
+22 7 14 596 392
+22 7 15 478 288
+22 7 16 521 560
+22 7 17 293 266
+22 7 18 283 641
+22 7 19 103 375
+22 7 20 21 4
+22 7 21 0 0
+22 7 22 0 0
+22 7 23 0 0
+22 7 24 0 0
+23 7 1 0 0
+23 7 2 0 0
+23 7 3 0 0
+23 7 4 0 0
+23 7 5 0 0
+23 7 6 116 424
+23 7 7 282 550
+23 7 8 469 698
+23 7 9 608 829
+23 7 10 700 853
+23 7 11 825 799
+23 7 12 538 294
+23 7 13 462 196
+23 7 14 569 389
+23 7 15 377 96
+23 7 16 283 92
+23 7 17 223 0
+23 7 18 155 0
+23 7 19 59 0
+23 7 20 0 0
+23 7 21 0 0
+23 7 22 0 0
+23 7 23 0 0
+23 7 24 0 0
+24 7 1 0 0
+24 7 2 0 0
+24 7 3 0 0
+24 7 4 0 0
+24 7 5 0 0
+24 7 6 106 352
+24 7 7 261 541
+24 7 8 437 259
+24 7 9 391 182
+24 7 10 308 0
+24 7 11 319 0
+24 7 12 339 0
+24 7 13 247 0
+24 7 14 269 0
+24 7 15 205 0
+24 7 16 125 0
+24 7 17 112 0
+24 7 18 107 76
+24 7 19 37 58
+24 7 20 0 0
+24 7 21 0 0
+24 7 22 0 0
+24 7 23 0 0
+24 7 24 0 0
+25 7 1 0 0
+25 7 2 0 0
+25 7 3 0 0
+25 7 4 0 0
+25 7 5 0 0
+25 7 6 53 118
+25 7 7 100 0
+25 7 8 176 0
+25 7 9 143 0
+25 7 10 271 94
+25 7 11 548 382
+25 7 12 339 96
+25 7 13 524 387
+25 7 14 695 576
+25 7 15 710 759
+25 7 16 430 370
+25 7 17 407 614
+25 7 18 256 553
+25 7 19 98 428
+25 7 20 0 0
+25 7 21 0 0
+25 7 22 0 0
+25 7 23 0 0
+25 7 24 0 0
+26 7 1 0 0
+26 7 2 0 0
+26 7 3 0 0
+26 7 4 0 0
+26 7 5 0 0
+26 7 6 79 357
+26 7 7 184 316
+26 7 8 434 708
+26 7 9 627 844
+26 7 10 764 872
+26 7 11 860 886
+26 7 12 911 894
+26 7 13 802 694
+26 7 14 705 589
+26 7 15 424 193
+26 7 16 434 374
+26 7 17 288 265
+26 7 18 156 159
+26 7 19 47 62
+26 7 20 0 0
+26 7 21 0 0
+26 7 22 0 0
+26 7 23 0 0
+26 7 24 0 0
+27 7 1 0 0
+27 7 2 0 0
+27 7 3 0 0
+27 7 4 0 0
+27 7 5 0 0
+27 7 6 116 586
+27 7 7 295 776
+27 7 8 480 869
+27 7 9 653 922
+27 7 10 800 960
+27 7 11 904 980
+27 7 12 564 296
+27 7 13 625 395
+27 7 14 589 390
+27 7 15 623 577
+27 7 16 551 651
+27 7 17 348 440
+27 7 18 256 553
+27 7 19 119 539
+27 7 20 0 0
+27 7 21 0 0
+27 7 22 0 0
+27 7 23 0 0
+27 7 24 0 0
+28 7 1 0 0
+28 7 2 0 0
+28 7 3 0 0
+28 7 4 0 0
+28 7 5 0 0
+28 7 6 94 231
+28 7 7 250 309
+28 7 8 362 521
+28 7 9 575 551
+28 7 10 814 663
+28 7 11 922 771
+28 7 12 825 779
+28 7 13 794 783
+28 7 14 752 778
+28 7 15 755 764
+28 7 16 502 461
+28 7 17 392 611
+28 7 18 266 548
+28 7 19 96 356
+28 7 20 0 0
+28 7 21 0 0
+28 7 22 0 0
+28 7 23 0 0
+28 7 24 0 0
+29 7 1 0 0
+29 7 2 0 0
+29 7 3 0 0
+29 7 4 0 0
+29 7 5 0 0
+29 7 6 59 58
+29 7 7 111 77
+29 7 8 149 173
+29 7 9 616 731
+29 7 10 609 378
+29 7 11 819 673
+29 7 12 866 581
+29 7 13 708 291
+29 7 14 634 192
+29 7 15 620 282
+29 7 16 438 182
+29 7 17 186 0
+29 7 18 109 0
+29 7 19 28 0
+29 7 20 0 0
+29 7 21 0 0
+29 7 22 0 0
+29 7 23 0 0
+29 7 24 0 0
+30 7 1 0 0
+30 7 2 0 0
+30 7 3 0 0
+30 7 4 0 0
+30 7 5 0 0
+30 7 6 13 0
+30 7 7 46 0
+30 7 8 49 0
+30 7 9 166 0
+30 7 10 183 0
+30 7 11 186 95
+30 7 12 339 96
+30 7 13 423 192
+30 7 14 581 571
+30 7 15 385 281
+30 7 16 375 271
+30 7 17 344 598
+30 7 18 118 153
+30 7 19 44 57
+30 7 20 0 0
+30 7 21 0 0
+30 7 22 0 0
+30 7 23 0 0
+30 7 24 0 0
+31 7 1 0 0
+31 7 2 0 0
+31 7 3 0 0
+31 7 4 0 0
+31 7 5 0 0
+31 7 6 89 499
+31 7 7 269 763
+31 7 8 455 859
+31 7 9 531 546
+31 7 10 654 659
+31 7 11 679 575
+31 7 12 786 679
+31 7 13 896 876
+31 7 14 775 859
+31 7 15 674 832
+31 7 16 614 820
+31 7 17 457 773
+31 7 18 271 610
+31 7 19 114 564
+31 7 20 0 0
+31 7 21 0 0
+31 7 22 0 0
+31 7 23 0 0
+31 7 24 0 0
+1 8 1 0 0
+1 8 2 0 0
+1 8 3 0 0
+1 8 4 0 0
+1 8 5 0 0
+1 8 6 33 0
+1 8 7 42 0
+1 8 8 229 86
+1 8 9 456 273
+1 8 10 303 94
+1 8 11 301 96
+1 8 12 719 675
+1 8 13 576 482
+1 8 14 544 479
+1 8 15 431 378
+1 8 16 432 364
+1 8 17 293 342
+1 8 18 195 381
+1 8 19 108 558
+1 8 20 0 0
+1 8 21 0 0
+1 8 22 0 0
+1 8 23 0 0
+1 8 24 0 0
+2 8 1 0 0
+2 8 2 0 0
+2 8 3 0 0
+2 8 4 0 0
+2 8 5 0 0
+2 8 6 94 483
+2 8 7 274 751
+2 8 8 426 679
+2 8 9 628 903
+2 8 10 769 935
+2 8 11 868 952
+2 8 12 923 962
+2 8 13 672 578
+2 8 14 734 767
+2 8 15 659 564
+2 8 16 441 453
+2 8 17 288 342
+2 8 18 102 76
+2 8 19 85 440
+2 8 20 0 0
+2 8 21 0 0
+2 8 22 0 0
+2 8 23 0 0
+2 8 24 0 0
+3 8 1 0 0
+3 8 2 0 0
+3 8 3 0 0
+3 8 4 0 0
+3 8 5 0 0
+3 8 6 51 53
+3 8 7 99 74
+3 8 8 128 0
+3 8 9 145 0
+3 8 10 182 0
+3 8 11 315 0
+3 8 12 212 0
+3 8 13 178 0
+3 8 14 298 95
+3 8 15 258 0
+3 8 16 209 0
+3 8 17 161 0
+3 8 18 99 0
+3 8 19 31 0
+3 8 20 0 0
+3 8 21 0 0
+3 8 22 0 0
+3 8 23 0 0
+3 8 24 0 0
+4 8 1 0 0
+4 8 2 0 0
+4 8 3 0 0
+4 8 4 0 0
+4 8 5 0 0
+4 8 6 63 260
+4 8 7 164 225
+4 8 8 228 256
+4 8 9 237 274
+4 8 10 696 762
+4 8 11 819 801
+4 8 12 876 723
+4 8 13 881 815
+4 8 14 824 877
+4 8 15 730 861
+4 8 16 598 834
+4 8 17 437 787
+4 8 18 267 699
+4 8 19 94 509
+4 8 20 0 0
+4 8 21 0 0
+4 8 22 0 0
+4 8 23 0 0
+4 8 24 0 0
+5 8 1 0 0
+5 8 2 0 0
+5 8 3 0 0
+5 8 4 0 0
+5 8 5 0 0
+5 8 6 89 523
+5 8 7 268 754
+5 8 8 451 849
+5 8 9 625 910
+5 8 10 713 847
+5 8 11 812 869
+5 8 12 845 877
+5 8 13 864 880
+5 8 14 811 874
+5 8 15 721 852
+5 8 16 634 914
+5 8 17 464 863
+5 8 18 277 764
+5 8 19 85 436
+5 8 20 0 0
+5 8 21 0 0
+5 8 22 0 0
+5 8 23 0 0
+5 8 24 0 0
+6 8 1 0 0
+6 8 2 0 0
+6 8 3 0 0
+6 8 4 0 0
+6 8 5 0 0
+6 8 6 41 103
+6 8 7 99 224
+6 8 8 167 171
+6 8 9 548 544
+6 8 10 712 751
+6 8 11 675 672
+6 8 12 694 678
+6 8 13 720 584
+6 8 14 599 581
+6 8 15 626 570
+6 8 16 539 642
+6 8 17 397 345
+6 8 18 233 609
+6 8 19 76 214
+6 8 20 0 0
+6 8 21 0 0
+6 8 22 0 0
+6 8 23 0 0
+6 8 24 0 0
+7 8 1 0 0
+7 8 2 0 0
+7 8 3 0 0
+7 8 4 0 0
+7 8 5 0 0
+7 8 6 48 401
+7 8 7 221 521
+7 8 8 409 594
+7 8 9 556 453
+7 8 10 707 657
+7 8 11 784 671
+7 8 12 835 773
+7 8 13 818 676
+7 8 14 665 668
+7 8 15 530 658
+7 8 16 476 545
+7 8 17 357 514
+7 8 18 99 225
+7 8 19 38 0
+7 8 20 0 0
+7 8 21 0 0
+7 8 22 0 0
+7 8 23 0 0
+7 8 24 0 0
+8 8 1 0 0
+8 8 2 0 0
+8 8 3 0 0
+8 8 4 0 0
+8 8 5 0 0
+8 8 6 26 0
+8 8 7 48 0
+8 8 8 98 0
+8 8 9 214 0
+8 8 10 266 0
+8 8 11 304 0
+8 8 12 166 95
+8 8 13 325 0
+8 8 14 118 0
+8 8 15 323 372
+8 8 16 415 535
+8 8 17 309 585
+8 8 18 64 0
+8 8 19 73 396
+8 8 20 0 0
+8 8 21 0 0
+8 8 22 0 0
+8 8 23 0 0
+8 8 24 0 0
+9 8 1 0 0
+9 8 2 0 0
+9 8 3 0 0
+9 8 4 0 0
+9 8 5 0 0
+9 8 6 63 433
+9 8 7 253 735
+9 8 8 171 84
+9 8 9 141 0
+9 8 10 177 0
+9 8 11 238 0
+9 8 12 289 0
+9 8 13 320 96
+9 8 14 433 189
+9 8 15 478 371
+9 8 16 431 357
+9 8 17 267 251
+9 8 18 119 295
+9 8 19 58 342
+9 8 20 0 0
+9 8 21 0 0
+9 8 22 0 0
+9 8 23 0 0
+9 8 24 0 0
+10 8 1 0 0
+10 8 2 0 0
+10 8 3 0 0
+10 8 4 0 0
+10 8 5 0 0
+10 8 6 61 342
+10 8 7 239 671
+10 8 8 418 771
+10 8 9 617 916
+10 8 10 761 948
+10 8 11 862 965
+10 8 12 919 978
+10 8 13 920 978
+10 8 14 866 969
+10 8 15 764 949
+10 8 16 621 917
+10 8 17 400 777
+10 8 18 260 756
+10 8 19 80 504
+10 8 20 0 0
+10 8 21 0 0
+10 8 22 0 0
+10 8 23 0 0
+10 8 24 0 0
+11 8 1 0 0
+11 8 2 0 0
+11 8 3 0 0
+11 8 4 0 0
+11 8 5 0 0
+11 8 6 72 477
+11 8 7 249 738
+11 8 8 435 847
+11 8 9 611 910
+11 8 10 752 940
+11 8 11 794 863
+11 8 12 846 879
+11 8 13 848 881
+11 8 14 795 869
+11 8 15 759 946
+11 8 16 561 819
+11 8 17 420 853
+11 8 18 239 744
+11 8 19 71 491
+11 8 20 0 0
+11 8 21 0 0
+11 8 22 0 0
+11 8 23 0 0
+11 8 24 0 0
+12 8 1 0 0
+12 8 2 0 0
+12 8 3 0 0
+12 8 4 0 0
+12 8 5 0 0
+12 8 6 64 370
+12 8 7 223 514
+12 8 8 302 338
+12 8 9 257 0
+12 8 10 342 0
+12 8 11 203 0
+12 8 12 263 0
+12 8 13 350 96
+12 8 14 386 190
+12 8 15 511 279
+12 8 16 467 535
+12 8 17 380 667
+12 8 18 170 507
+12 8 19 54 409
+12 8 20 0 0
+12 8 21 0 0
+12 8 22 0 0
+12 8 23 0 0
+12 8 24 0 0
+13 8 1 0 0
+13 8 2 0 0
+13 8 3 0 0
+13 8 4 0 0
+13 8 5 0 0
+13 8 6 29 88
+13 8 7 167 362
+13 8 8 155 166
+13 8 9 359 446
+13 8 10 698 836
+13 8 11 844 952
+13 8 12 848 865
+13 8 13 797 768
+13 8 14 650 569
+13 8 15 614 649
+13 8 16 498 629
+13 8 17 403 755
+13 8 18 210 653
+13 8 19 52 177
+13 8 20 0 0
+13 8 21 0 0
+13 8 22 0 0
+13 8 23 0 0
+13 8 24 0 0
+14 8 1 0 0
+14 8 2 0 0
+14 8 3 0 0
+14 8 4 0 0
+14 8 5 0 0
+14 8 6 55 394
+14 8 7 188 649
+14 8 8 429 751
+14 8 9 556 803
+14 8 10 681 833
+14 8 11 789 850
+14 8 12 689 574
+14 8 13 634 477
+14 8 14 544 378
+14 8 15 557 560
+14 8 16 531 627
+14 8 17 373 756
+14 8 18 207 654
+14 8 19 66 392
+14 8 20 0 0
+14 8 21 0 0
+14 8 22 0 0
+14 8 23 0 0
+14 8 24 0 0
+15 8 1 0 0
+15 8 2 0 0
+15 8 3 0 0
+15 8 4 0 0
+15 8 5 0 0
+15 8 6 59 386
+15 8 7 245 645
+15 8 8 432 831
+15 8 9 545 799
+15 8 10 678 833
+15 8 11 861 946
+15 8 12 936 953
+15 8 13 952 856
+15 8 14 795 758
+15 8 15 669 555
+15 8 16 529 622
+15 8 17 393 661
+15 8 18 193 571
+15 8 19 59 255
+15 8 20 0 0
+15 8 21 0 0
+15 8 22 0 0
+15 8 23 0 0
+15 8 24 0 0
+16 8 1 0 0
+16 8 2 0 0
+16 8 3 0 0
+16 8 4 0 0
+16 8 5 0 0
+16 8 6 36 164
+16 8 7 107 213
+16 8 8 225 331
+16 8 9 529 535
+16 8 10 620 554
+16 8 11 714 576
+16 8 12 691 762
+16 8 13 515 381
+16 8 14 421 377
+16 8 15 339 277
+16 8 16 247 89
+16 8 17 266 83
+16 8 18 199 425
+16 8 19 26 165
+16 8 20 0 0
+16 8 21 0 0
+16 8 22 0 0
+16 8 23 0 0
+16 8 24 0 0
+17 8 1 0 0
+17 8 2 0 0
+17 8 3 0 0
+17 8 4 0 0
+17 8 5 0 0
+17 8 6 28 123
+17 8 7 135 355
+17 8 8 266 332
+17 8 9 134 90
+17 8 10 289 187
+17 8 11 543 381
+17 8 12 303 193
+17 8 13 328 96
+17 8 14 221 96
+17 8 15 288 93
+17 8 16 99 89
+17 8 17 163 83
+17 8 18 84 71
+17 8 19 18 39
+17 8 20 0 0
+17 8 21 0 0
+17 8 22 0 0
+17 8 23 0 0
+17 8 24 0 0
+18 8 1 0 0
+18 8 2 0 0
+18 8 3 0 0
+18 8 4 0 0
+18 8 5 0 0
+18 8 6 20 82
+18 8 7 163 507
+18 8 8 381 758
+18 8 9 591 906
+18 8 10 478 378
+18 8 11 698 674
+18 8 12 845 876
+18 8 13 892 971
+18 8 14 838 964
+18 8 15 737 947
+18 8 16 587 906
+18 8 17 412 842
+18 8 18 223 654
+18 8 19 50 367
+18 8 20 0 0
+18 8 21 0 0
+18 8 22 0 0
+18 8 23 0 0
+18 8 24 0 0
+19 8 1 0 0
+19 8 2 0 0
+19 8 3 0 0
+19 8 4 0 0
+19 8 5 0 0
+19 8 6 51 366
+19 8 7 199 645
+19 8 8 309 502
+19 8 9 488 685
+19 8 10 639 656
+19 8 11 569 668
+19 8 12 390 289
+19 8 13 538 96
+19 8 14 626 191
+19 8 15 381 186
+19 8 16 232 180
+19 8 17 196 167
+19 8 18 128 356
+19 8 19 15 40
+19 8 20 0 0
+19 8 21 0 0
+19 8 22 0 0
+19 8 23 0 0
+19 8 24 0 0
+20 8 1 0 0
+20 8 2 0 0
+20 8 3 0 0
+20 8 4 0 0
+20 8 5 0 0
+20 8 6 31 274
+20 8 7 147 495
+20 8 8 326 586
+20 8 9 520 811
+20 8 10 170 93
+20 8 11 379 96
+20 8 12 463 194
+20 8 13 630 485
+20 8 14 535 481
+20 8 15 471 377
+20 8 16 411 453
+20 8 17 284 420
+20 8 18 163 431
+20 8 19 34 268
+20 8 20 0 0
+20 8 21 0 0
+20 8 22 0 0
+20 8 23 0 0
+20 8 24 0 0
+21 8 1 0 0
+21 8 2 0 0
+21 8 3 0 0
+21 8 4 0 0
+21 8 5 0 0
+21 8 6 46 406
+21 8 7 223 723
+21 8 8 409 845
+21 8 9 586 911
+21 8 10 733 949
+21 8 11 838 971
+21 8 12 892 981
+21 8 13 890 980
+21 8 14 830 966
+21 8 15 726 947
+21 8 16 576 905
+21 8 17 401 843
+21 8 18 211 714
+21 8 19 39 344
+21 8 20 0 0
+21 8 21 0 0
+21 8 22 0 0
+21 8 23 0 0
+21 8 24 0 0
+22 8 1 0 0
+22 8 2 0 0
+22 8 3 0 0
+22 8 4 0 0
+22 8 5 0 0
+22 8 6 42 382
+22 8 7 213 639
+22 8 8 398 749
+22 8 9 574 810
+22 8 10 722 938
+22 8 11 822 955
+22 8 12 876 967
+22 8 13 876 967
+22 8 14 821 959
+22 8 15 717 939
+22 8 16 569 901
+22 8 17 392 831
+22 8 18 204 698
+22 8 19 35 297
+22 8 20 0 0
+22 8 21 0 0
+22 8 22 0 0
+22 8 23 0 0
+22 8 24 0 0
+23 8 1 0 0
+23 8 2 0 0
+23 8 3 0 0
+23 8 4 0 0
+23 8 5 0 0
+23 8 6 18 106
+23 8 7 104 141
+23 8 8 188 166
+23 8 9 260 90
+23 8 10 404 186
+23 8 11 641 191
+23 8 12 617 386
+23 8 13 514 193
+23 8 14 574 383
+23 8 15 406 281
+23 8 16 242 90
+23 8 17 174 84
+23 8 18 66 141
+23 8 19 11 26
+23 8 20 0 0
+23 8 21 0 0
+23 8 22 0 0
+23 8 23 0 0
+23 8 24 0 0
+24 8 1 0 0
+24 8 2 0 0
+24 8 3 0 0
+24 8 4 0 0
+24 8 5 0 0
+24 8 6 10 0
+24 8 7 66 0
+24 8 8 74 0
+24 8 9 92 0
+24 8 10 116 0
+24 8 11 128 0
+24 8 12 124 0
+24 8 13 227 98
+24 8 14 214 97
+24 8 15 450 475
+24 8 16 411 546
+24 8 17 313 674
+24 8 18 172 566
+24 8 19 22 191
+24 8 20 0 0
+24 8 21 0 0
+24 8 22 0 0
+24 8 23 0 0
+24 8 24 0 0
+25 8 1 0 0
+25 8 2 0 0
+25 8 3 0 0
+25 8 4 0 0
+25 8 5 0 0
+25 8 6 36 314
+25 8 7 209 718
+25 8 8 356 765
+25 8 9 533 734
+25 8 10 697 858
+25 8 11 798 878
+25 8 12 780 785
+25 8 13 640 590
+25 8 14 616 488
+25 8 15 608 667
+25 8 16 338 183
+25 8 17 207 84
+25 8 18 95 70
+25 8 19 10 21
+25 8 20 0 0
+25 8 21 0 0
+25 8 22 0 0
+25 8 23 0 0
+25 8 24 0 0
+26 8 1 0 0
+26 8 2 0 0
+26 8 3 0 0
+26 8 4 0 0
+26 8 5 0 0
+26 8 6 27 166
+26 8 7 146 282
+26 8 8 227 251
+26 8 9 324 270
+26 8 10 382 0
+26 8 11 319 0
+26 8 12 306 194
+26 8 13 414 194
+26 8 14 341 96
+26 8 15 291 187
+26 8 16 394 451
+26 8 17 291 500
+26 8 18 116 275
+26 8 19 19 115
+26 8 20 0 0
+26 8 21 0 0
+26 8 22 0 0
+26 8 23 0 0
+26 8 24 0 0
+27 8 1 0 0
+27 8 2 0 0
+27 8 3 0 0
+27 8 4 0 0
+27 8 5 0 0
+27 8 6 31 259
+27 8 7 184 641
+27 8 8 357 763
+27 8 9 593 734
+27 8 10 743 669
+27 8 11 846 783
+27 8 12 812 891
+27 8 13 809 890
+27 8 14 754 879
+27 8 15 719 858
+27 8 16 492 732
+27 8 17 376 421
+27 8 18 176 279
+27 8 19 20 55
+27 8 20 0 0
+27 8 21 0 0
+27 8 22 0 0
+27 8 23 0 0
+27 8 24 0 0
+28 8 1 0 0
+28 8 2 0 0
+28 8 3 0 0
+28 8 4 0 0
+28 8 5 0 0
+28 8 6 24 26
+28 8 7 162 72
+28 8 8 278 85
+28 8 9 101 0
+28 8 10 54 0
+28 8 11 266 0
+28 8 12 131 0
+28 8 13 116 0
+28 8 14 132 0
+28 8 15 53 0
+28 8 16 80 0
+28 8 17 42 0
+28 8 18 48 0
+28 8 19 2 0
+28 8 20 0 0
+28 8 21 0 0
+28 8 22 0 0
+28 8 23 0 0
+28 8 24 0 0
+29 8 1 0 0
+29 8 2 0 0
+29 8 3 0 0
+29 8 4 0 0
+29 8 5 0 0
+29 8 6 8 0
+29 8 7 60 68
+29 8 8 139 0
+29 8 9 193 0
+29 8 10 83 0
+29 8 11 285 96
+29 8 12 471 388
+29 8 13 293 97
+29 8 14 362 192
+29 8 15 528 560
+29 8 16 464 711
+29 8 17 313 651
+29 8 18 28 131
+29 8 19 8 26
+29 8 20 0 0
+29 8 21 0 0
+29 8 22 0 0
+29 8 23 0 0
+29 8 24 0 0
+30 8 1 0 0
+30 8 2 0 0
+30 8 3 0 0
+30 8 4 0 0
+30 8 5 0 0
+30 8 6 21 157
+30 8 7 132 275
+30 8 8 301 165
+30 8 9 271 179
+30 8 10 345 93
+30 8 11 488 286
+30 8 12 484 482
+30 8 13 482 482
+30 8 14 709 685
+30 8 15 581 747
+30 8 16 440 604
+30 8 17 251 489
+30 8 18 104 261
+30 8 19 9 4
+30 8 20 0 0
+30 8 21 0 0
+30 8 22 0 0
+30 8 23 0 0
+30 8 24 0 0
+31 8 1 0 0
+31 8 2 0 0
+31 8 3 0 0
+31 8 4 0 0
+31 8 5 0 0
+31 8 6 19 136
+31 8 7 113 409
+31 8 8 148 250
+31 8 9 510 724
+31 8 10 665 754
+31 8 11 551 193
+31 8 12 147 98
+31 8 13 218 98
+31 8 14 285 193
+31 8 15 285 282
+31 8 16 320 357
+31 8 17 248 246
+31 8 18 91 325
+31 8 19 16 18
+31 8 20 0 0
+31 8 21 0 0
+31 8 22 0 0
+31 8 23 0 0
+31 8 24 0 0
+1 9 1 0 0
+1 9 2 0 0
+1 9 3 0 0
+1 9 4 0 0
+1 9 5 0 0
+1 9 6 10 26
+1 9 7 79 67
+1 9 8 221 82
+1 9 9 415 359
+1 9 10 609 562
+1 9 11 797 861
+1 9 12 846 868
+1 9 13 840 865
+1 9 14 780 854
+1 9 15 669 831
+1 9 16 541 790
+1 9 17 347 719
+1 9 18 153 567
+1 9 19 10 38
+1 9 20 0 0
+1 9 21 0 0
+1 9 22 0 0
+1 9 23 0 0
+1 9 24 0 0
+2 9 1 0 0
+2 9 2 0 0
+2 9 3 0 0
+2 9 4 0 0
+2 9 5 0 0
+2 9 6 18 93
+2 9 7 130 331
+2 9 8 339 649
+2 9 9 453 618
+2 9 10 563 646
+2 9 11 639 472
+2 9 12 323 0
+2 9 13 376 95
+2 9 14 352 94
+2 9 15 252 0
+2 9 16 191 0
+2 9 17 69 0
+2 9 18 56 61
+2 9 19 0 0
+2 9 20 0 0
+2 9 21 0 0
+2 9 22 0 0
+2 9 23 0 0
+2 9 24 0 0
+3 9 1 0 0
+3 9 2 0 0
+3 9 3 0 0
+3 9 4 0 0
+3 9 5 0 0
+3 9 6 8 17
+3 9 7 94 196
+3 9 8 89 0
+3 9 9 194 88
+3 9 10 262 92
+3 9 11 591 568
+3 9 12 389 191
+3 9 13 627 575
+3 9 14 678 756
+3 9 15 619 831
+3 9 16 507 880
+3 9 17 329 801
+3 9 18 142 625
+3 9 19 0 0
+3 9 20 0 0
+3 9 21 0 0
+3 9 22 0 0
+3 9 23 0 0
+3 9 24 0 0
+4 9 1 0 0
+4 9 2 0 0
+4 9 3 0 0
+4 9 4 0 0
+4 9 5 0 0
+4 9 6 14 72
+4 9 7 152 474
+4 9 8 181 416
+4 9 9 388 543
+4 9 10 595 660
+4 9 11 763 969
+4 9 12 733 783
+4 9 13 833 974
+4 9 14 772 962
+4 9 15 663 940
+4 9 16 508 892
+4 9 17 327 808
+4 9 18 138 622
+4 9 19 0 0
+4 9 20 0 0
+4 9 21 0 0
+4 9 22 0 0
+4 9 23 0 0
+4 9 24 0 0
+5 9 1 0 0
+5 9 2 0 0
+5 9 3 0 0
+5 9 4 0 0
+5 9 5 0 0
+5 9 6 24 71
+5 9 7 157 601
+5 9 8 355 817
+5 9 9 530 891
+5 9 10 674 932
+5 9 11 774 953
+5 9 12 827 966
+5 9 13 818 961
+5 9 14 758 949
+5 9 15 648 924
+5 9 16 492 788
+5 9 17 313 709
+5 9 18 129 538
+5 9 19 0 0
+5 9 20 0 0
+5 9 21 0 0
+5 9 22 0 0
+5 9 23 0 0
+5 9 24 0 0
+6 9 1 0 0
+6 9 2 0 0
+6 9 3 0 0
+6 9 4 0 0
+6 9 5 0 0
+6 9 6 6 0
+6 9 7 37 0
+6 9 8 111 0
+6 9 9 207 0
+6 9 10 144 0
+6 9 11 282 0
+6 9 12 301 0
+6 9 13 343 0
+6 9 14 115 0
+6 9 15 83 0
+6 9 16 70 0
+6 9 17 41 79
+6 9 18 15 0
+6 9 19 0 0
+6 9 20 0 0
+6 9 21 0 0
+6 9 22 0 0
+6 9 23 0 0
+6 9 24 0 0
+7 9 1 0 0
+7 9 2 0 0
+7 9 3 0 0
+7 9 4 0 0
+7 9 5 0 0
+7 9 6 12 55
+7 9 7 154 602
+7 9 8 308 746
+7 9 9 531 906
+7 9 10 677 947
+7 9 11 777 966
+7 9 12 828 978
+7 9 13 824 979
+7 9 14 682 871
+7 9 15 574 751
+7 9 16 429 715
+7 9 17 194 321
+7 9 18 71 241
+7 9 19 0 0
+7 9 20 0 0
+7 9 21 0 0
+7 9 22 0 0
+7 9 23 0 0
+7 9 24 0 0
+8 9 1 0 0
+8 9 2 0 0
+8 9 3 0 0
+8 9 4 0 0
+8 9 5 0 0
+8 9 6 10 43
+8 9 7 144 537
+8 9 8 353 835
+8 9 9 475 822
+8 9 10 606 859
+8 9 11 460 294
+8 9 12 380 99
+8 9 13 376 98
+8 9 14 257 97
+8 9 15 219 94
+8 9 16 162 90
+8 9 17 97 80
+8 9 18 45 60
+8 9 19 0 0
+8 9 20 0 0
+8 9 21 0 0
+8 9 22 0 0
+8 9 23 0 0
+8 9 24 0 0
+9 9 1 0 0
+9 9 2 0 0
+9 9 3 0 0
+9 9 4 0 0
+9 9 5 0 0
+9 9 6 1 9
+9 9 7 98 386
+9 9 8 189 413
+9 9 9 453 575
+9 9 10 579 660
+9 9 11 644 677
+9 9 12 587 589
+9 9 13 669 489
+9 9 14 618 484
+9 9 15 452 376
+9 9 16 339 445
+9 9 17 130 160
+9 9 18 40 118
+9 9 19 0 0
+9 9 20 0 0
+9 9 21 0 0
+9 9 22 0 0
+9 9 23 0 0
+9 9 24 0 0
+10 9 1 0 0
+10 9 2 0 0
+10 9 3 0 0
+10 9 4 0 0
+10 9 5 0 0
+10 9 6 0 0
+10 9 7 82 65
+10 9 8 168 164
+10 9 9 244 90
+10 9 10 279 0
+10 9 11 297 0
+10 9 12 523 388
+10 9 13 466 0
+10 9 14 359 96
+10 9 15 239 0
+10 9 16 105 0
+10 9 17 59 0
+10 9 18 19 0
+10 9 19 0 0
+10 9 20 0 0
+10 9 21 0 0
+10 9 22 0 0
+10 9 23 0 0
+10 9 24 0 0
+11 9 1 0 0
+11 9 2 0 0
+11 9 3 0 0
+11 9 4 0 0
+11 9 5 0 0
+11 9 6 0 0
+11 9 7 151 657
+11 9 8 294 660
+11 9 9 468 722
+11 9 10 604 699
+11 9 11 600 676
+11 9 12 574 585
+11 9 13 434 293
+11 9 14 288 96
+11 9 15 433 466
+11 9 16 174 88
+11 9 17 129 158
+11 9 18 70 282
+11 9 19 0 0
+11 9 20 0 0
+11 9 21 0 0
+11 9 22 0 0
+11 9 23 0 0
+11 9 24 0 0
+12 9 1 0 0
+12 9 2 0 0
+12 9 3 0 0
+12 9 4 0 0
+12 9 5 0 0
+12 9 6 0 0
+12 9 7 71 127
+12 9 8 69 82
+12 9 9 287 268
+12 9 10 372 281
+12 9 11 171 191
+12 9 12 291 0
+12 9 13 288 97
+12 9 14 394 96
+12 9 15 452 651
+12 9 16 375 616
+12 9 17 208 622
+12 9 18 86 490
+12 9 19 0 0
+12 9 20 0 0
+12 9 21 0 0
+12 9 22 0 0
+12 9 23 0 0
+12 9 24 0 0
+13 9 1 0 0
+13 9 2 0 0
+13 9 3 0 0
+13 9 4 0 0
+13 9 5 0 0
+13 9 6 0 0
+13 9 7 119 314
+13 9 8 334 646
+13 9 9 463 532
+13 9 10 590 464
+13 9 11 656 381
+13 9 12 646 288
+13 9 13 682 575
+13 9 14 636 471
+13 9 15 519 364
+13 9 16 375 430
+13 9 17 195 303
+13 9 18 56 205
+13 9 19 0 0
+13 9 20 0 0
+13 9 21 0 0
+13 9 22 0 0
+13 9 23 0 0
+13 9 24 0 0
+14 9 1 0 0
+14 9 2 0 0
+14 9 3 0 0
+14 9 4 0 0
+14 9 5 0 0
+14 9 6 0 0
+14 9 7 22 0
+14 9 8 107 0
+14 9 9 44 0
+14 9 10 40 0
+14 9 11 81 0
+14 9 12 82 0
+14 9 13 45 0
+14 9 14 45 0
+14 9 15 52 0
+14 9 16 101 0
+14 9 17 32 0
+14 9 18 16 0
+14 9 19 0 0
+14 9 20 0 0
+14 9 21 0 0
+14 9 22 0 0
+14 9 23 0 0
+14 9 24 0 0
+15 9 1 0 0
+15 9 2 0 0
+15 9 3 0 0
+15 9 4 0 0
+15 9 5 0 0
+15 9 6 0 0
+15 9 7 135 626
+15 9 8 289 647
+15 9 9 448 714
+15 9 10 573 843
+15 9 11 554 480
+15 9 12 383 194
+15 9 13 330 194
+15 9 14 266 96
+15 9 15 211 93
+15 9 16 169 88
+15 9 17 153 385
+15 9 18 57 356
+15 9 19 0 0
+15 9 20 0 0
+15 9 21 0 0
+15 9 22 0 0
+15 9 23 0 0
+15 9 24 0 0
+16 9 1 0 0
+16 9 2 0 0
+16 9 3 0 0
+16 9 4 0 0
+16 9 5 0 0
+16 9 6 0 0
+16 9 7 115 554
+16 9 8 281 720
+16 9 9 491 886
+16 9 10 557 840
+16 9 11 641 766
+16 9 12 650 677
+16 9 13 688 774
+16 9 14 589 667
+16 9 15 528 740
+16 9 16 387 694
+16 9 17 241 685
+16 9 18 71 477
+16 9 19 0 0
+16 9 20 0 0
+16 9 21 0 0
+16 9 22 0 0
+16 9 23 0 0
+16 9 24 0 0
+17 9 1 0 0
+17 9 2 0 0
+17 9 3 0 0
+17 9 4 0 0
+17 9 5 0 0
+17 9 6 0 0
+17 9 7 111 543
+17 9 8 311 794
+17 9 9 483 877
+17 9 10 558 829
+17 9 11 646 851
+17 9 12 726 859
+17 9 13 758 952
+17 9 14 696 941
+17 9 15 582 912
+17 9 16 427 856
+17 9 17 246 744
+17 9 18 64 454
+17 9 19 0 0
+17 9 20 0 0
+17 9 21 0 0
+17 9 22 0 0
+17 9 23 0 0
+17 9 24 0 0
+18 9 1 0 0
+18 9 2 0 0
+18 9 3 0 0
+18 9 4 0 0
+18 9 5 0 0
+18 9 6 0 0
+18 9 7 122 597
+18 9 8 307 793
+18 9 9 481 880
+18 9 10 619 832
+18 9 11 716 853
+18 9 12 711 861
+18 9 13 699 862
+18 9 14 643 849
+18 9 15 577 913
+18 9 16 404 860
+18 9 17 198 523
+18 9 18 50 314
+18 9 19 0 0
+18 9 20 0 0
+18 9 21 0 0
+18 9 22 0 0
+18 9 23 0 0
+18 9 24 0 0
+19 9 1 0 0
+19 9 2 0 0
+19 9 3 0 0
+19 9 4 0 0
+19 9 5 0 0
+19 9 6 0 0
+19 9 7 38 62
+19 9 8 128 82
+19 9 9 170 91
+19 9 10 288 96
+19 9 11 384 196
+19 9 12 358 99
+19 9 13 353 99
+19 9 14 322 98
+19 9 15 344 285
+19 9 16 249 268
+19 9 17 154 312
+19 9 18 40 240
+19 9 19 0 0
+19 9 20 0 0
+19 9 21 0 0
+19 9 22 0 0
+19 9 23 0 0
+19 9 24 0 0
+20 9 1 0 0
+20 9 2 0 0
+20 9 3 0 0
+20 9 4 0 0
+20 9 5 0 0
+20 9 6 0 0
+20 9 7 120 618
+20 9 8 307 812
+20 9 9 485 903
+20 9 10 597 666
+20 9 11 383 98
+20 9 12 417 99
+20 9 13 410 99
+20 9 14 206 97
+20 9 15 134 0
+20 9 16 164 88
+20 9 17 56 76
+20 9 18 22 45
+20 9 19 0 0
+20 9 20 0 0
+20 9 21 0 0
+20 9 22 0 0
+20 9 23 0 0
+20 9 24 0 0
+21 9 1 0 0
+21 9 2 0 0
+21 9 3 0 0
+21 9 4 0 0
+21 9 5 0 0
+21 9 6 0 0
+21 9 7 63 176
+21 9 8 235 320
+21 9 9 382 713
+21 9 10 521 186
+21 9 11 499 667
+21 9 12 637 577
+21 9 13 480 96
+21 9 14 595 601
+21 9 15 444 365
+21 9 16 171 0
+21 9 17 81 0
+21 9 18 22 0
+21 9 19 0 0
+21 9 20 0 0
+21 9 21 0 0
+21 9 22 0 0
+21 9 23 0 0
+21 9 24 0 0
+22 9 1 0 0
+22 9 2 0 0
+22 9 3 0 0
+22 9 4 0 0
+22 9 5 0 0
+22 9 6 0 0
+22 9 7 52 118
+22 9 8 157 240
+22 9 9 381 624
+22 9 10 616 940
+22 9 11 666 872
+22 9 12 676 589
+22 9 13 457 490
+22 9 14 497 387
+22 9 15 428 373
+22 9 16 332 523
+22 9 17 204 524
+22 9 18 39 280
+22 9 19 0 0
+22 9 20 0 0
+22 9 21 0 0
+22 9 22 0 0
+22 9 23 0 0
+22 9 24 0 0
+23 9 1 0 0
+23 9 2 0 0
+23 9 3 0 0
+23 9 4 0 0
+23 9 5 0 0
+23 9 6 0 0
+23 9 7 109 598
+23 9 8 296 809
+23 9 9 473 900
+23 9 10 617 947
+23 9 11 717 974
+23 9 12 762 984
+23 9 13 749 981
+23 9 14 678 961
+23 9 15 560 929
+23 9 16 401 868
+23 9 17 216 739
+23 9 18 38 344
+23 9 19 0 0
+23 9 20 0 0
+23 9 21 0 0
+23 9 22 0 0
+23 9 23 0 0
+23 9 24 0 0
+24 9 1 0 0
+24 9 2 0 0
+24 9 3 0 0
+24 9 4 0 0
+24 9 5 0 0
+24 9 6 0 0
+24 9 7 104 583
+24 9 8 204 479
+24 9 9 460 881
+24 9 10 606 936
+24 9 11 705 963
+24 9 12 750 974
+24 9 13 738 971
+24 9 14 670 955
+24 9 15 546 740
+24 9 16 398 693
+24 9 17 211 588
+24 9 18 35 272
+24 9 19 0 0
+24 9 20 0 0
+24 9 21 0 0
+24 9 22 0 0
+24 9 23 0 0
+24 9 24 0 0
+25 9 1 0 0
+25 9 2 0 0
+25 9 3 0 0
+25 9 4 0 0
+25 9 5 0 0
+25 9 6 0 0
+25 9 7 53 226
+25 9 8 194 237
+25 9 9 257 266
+25 9 10 534 652
+25 9 11 609 669
+25 9 12 599 483
+25 9 13 421 192
+25 9 14 522 565
+25 9 15 381 544
+25 9 16 206 0
+25 9 17 121 141
+25 9 18 10 26
+25 9 19 0 0
+25 9 20 0 0
+25 9 21 0 0
+25 9 22 0 0
+25 9 23 0 0
+25 9 24 0 0
+26 9 1 0 0
+26 9 2 0 0
+26 9 3 0 0
+26 9 4 0 0
+26 9 5 0 0
+26 9 6 0 0
+26 9 7 83 441
+26 9 8 278 783
+26 9 9 451 878
+26 9 10 526 743
+26 9 11 611 761
+26 9 12 522 483
+26 9 13 422 289
+26 9 14 424 380
+26 9 15 411 548
+26 9 16 333 678
+26 9 17 184 643
+26 9 18 27 204
+26 9 19 0 0
+26 9 20 0 0
+26 9 21 0 0
+26 9 22 0 0
+26 9 23 0 0
+26 9 24 0 0
+27 9 1 0 0
+27 9 2 0 0
+27 9 3 0 0
+27 9 4 0 0
+27 9 5 0 0
+27 9 6 0 0
+27 9 7 92 552
+27 9 8 276 786
+27 9 9 445 874
+27 9 10 591 931
+27 9 11 688 958
+27 9 12 730 966
+27 9 13 717 964
+27 9 14 647 946
+27 9 15 525 904
+27 9 16 366 833
+27 9 17 189 695
+27 9 18 21 153
+27 9 19 0 0
+27 9 20 0 0
+27 9 21 0 0
+27 9 22 0 0
+27 9 23 0 0
+27 9 24 0 0
+28 9 1 0 0
+28 9 2 0 0
+28 9 3 0 0
+28 9 4 0 0
+28 9 5 0 0
+28 9 6 0 0
+28 9 7 42 54
+28 9 8 153 0
+28 9 9 332 87
+28 9 10 376 92
+28 9 11 220 0
+28 9 12 331 0
+28 9 13 276 0
+28 9 14 178 0
+28 9 15 178 0
+28 9 16 96 0
+28 9 17 40 0
+28 9 18 4 13
+28 9 19 0 0
+28 9 20 0 0
+28 9 21 0 0
+28 9 22 0 0
+28 9 23 0 0
+28 9 24 0 0
+29 9 1 0 0
+29 9 2 0 0
+29 9 3 0 0
+29 9 4 0 0
+29 9 5 0 0
+29 9 6 0 0
+29 9 7 25 0
+29 9 8 92 0
+29 9 9 161 0
+29 9 10 131 0
+29 9 11 189 0
+29 9 12 184 0
+29 9 13 232 0
+29 9 14 192 0
+29 9 15 153 0
+29 9 16 146 163
+29 9 17 52 0
+29 9 18 4 0
+29 9 19 0 0
+29 9 20 0 0
+29 9 21 0 0
+29 9 22 0 0
+29 9 23 0 0
+29 9 24 0 0
+30 9 1 0 0
+30 9 2 0 0
+30 9 3 0 0
+30 9 4 0 0
+30 9 5 0 0
+30 9 6 0 0
+30 9 7 26 0
+30 9 8 92 0
+30 9 9 161 0
+30 9 10 218 0
+30 9 11 134 0
+30 9 12 143 0
+30 9 13 302 380
+30 9 14 548 744
+30 9 15 433 713
+30 9 16 277 653
+30 9 17 155 528
+30 9 18 13 51
+30 9 19 0 0
+30 9 20 0 0
+30 9 21 0 0
+30 9 22 0 0
+30 9 23 0 0
+30 9 24 0 0
+1 10 1 0 0
+1 10 2 0 0
+1 10 3 0 0
+1 10 4 0 0
+1 10 5 0 0
+1 10 6 0 0
+1 10 7 36 0
+1 10 8 145 76
+1 10 9 118 86
+1 10 10 454 731
+1 10 11 375 377
+1 10 12 338 286
+1 10 13 473 381
+1 10 14 438 468
+1 10 15 393 538
+1 10 16 294 494
+1 10 17 138 332
+1 10 18 11 34
+1 10 19 0 0
+1 10 20 0 0
+1 10 21 0 0
+1 10 22 0 0
+1 10 23 0 0
+1 10 24 0 0
+2 10 1 0 0
+2 10 2 0 0
+2 10 3 0 0
+2 10 4 0 0
+2 10 5 0 0
+2 10 6 0 0
+2 10 7 25 0
+2 10 8 93 0
+2 10 9 155 0
+2 10 10 264 0
+2 10 11 293 0
+2 10 12 265 0
+2 10 13 227 0
+2 10 14 135 0
+2 10 15 100 0
+2 10 16 103 0
+2 10 17 78 66
+2 10 18 5 9
+2 10 19 0 0
+2 10 20 0 0
+2 10 21 0 0
+2 10 22 0 0
+2 10 23 0 0
+2 10 24 0 0
+3 10 1 0 0
+3 10 2 0 0
+3 10 3 0 0
+3 10 4 0 0
+3 10 5 0 0
+3 10 6 0 0
+3 10 7 14 0
+3 10 8 51 0
+3 10 9 236 431
+3 10 10 304 91
+3 10 11 404 94
+3 10 12 370 475
+3 10 13 356 0
+3 10 14 321 0
+3 10 15 249 0
+3 10 16 163 0
+3 10 17 56 0
+3 10 18 0 0
+3 10 19 0 0
+3 10 20 0 0
+3 10 21 0 0
+3 10 22 0 0
+3 10 23 0 0
+3 10 24 0 0
+4 10 1 0 0
+4 10 2 0 0
+4 10 3 0 0
+4 10 4 0 0
+4 10 5 0 0
+4 10 6 0 0
+4 10 7 19 0
+4 10 8 79 0
+4 10 9 142 0
+4 10 10 235 92
+4 10 11 229 95
+4 10 12 245 96
+4 10 13 249 95
+4 10 14 204 94
+4 10 15 207 0
+4 10 16 88 0
+4 10 17 28 0
+4 10 18 0 0
+4 10 19 0 0
+4 10 20 0 0
+4 10 21 0 0
+4 10 22 0 0
+4 10 23 0 0
+4 10 24 0 0
+5 10 1 0 0
+5 10 2 0 0
+5 10 3 0 0
+5 10 4 0 0
+5 10 5 0 0
+5 10 6 0 0
+5 10 7 26 48
+5 10 8 103 77
+5 10 9 268 354
+5 10 10 360 375
+5 10 11 339 193
+5 10 12 361 195
+5 10 13 439 388
+5 10 14 109 0
+5 10 15 215 91
+5 10 16 103 84
+5 10 17 68 131
+5 10 18 0 0
+5 10 19 0 0
+5 10 20 0 0
+5 10 21 0 0
+5 10 22 0 0
+5 10 23 0 0
+5 10 24 0 0
+6 10 1 0 0
+6 10 2 0 0
+6 10 3 0 0
+6 10 4 0 0
+6 10 5 0 0
+6 10 6 0 0
+6 10 7 15 47
+6 10 8 49 154
+6 10 9 72 88
+6 10 10 289 282
+6 10 11 91 97
+6 10 12 161 98
+6 10 13 147 98
+6 10 14 246 96
+6 10 15 194 92
+6 10 16 116 0
+6 10 17 56 66
+6 10 18 0 0
+6 10 19 0 0
+6 10 20 0 0
+6 10 21 0 0
+6 10 22 0 0
+6 10 23 0 0
+6 10 24 0 0
+7 10 1 0 0
+7 10 2 0 0
+7 10 3 0 0
+7 10 4 0 0
+7 10 5 0 0
+7 10 6 0 0
+7 10 7 42 285
+7 10 8 184 385
+7 10 9 409 880
+7 10 10 551 939
+7 10 11 540 776
+7 10 12 616 883
+7 10 13 600 879
+7 10 14 494 667
+7 10 15 422 820
+7 10 16 186 416
+7 10 17 94 576
+7 10 18 0 0
+7 10 19 0 0
+7 10 20 0 0
+7 10 21 0 0
+7 10 22 0 0
+7 10 23 0 0
+7 10 24 0 0
+8 10 1 0 0
+8 10 2 0 0
+8 10 3 0 0
+8 10 4 0 0
+8 10 5 0 0
+8 10 6 0 0
+8 10 7 49 404
+8 10 8 217 606
+8 10 9 264 174
+8 10 10 354 185
+8 10 11 385 190
+8 10 12 270 96
+8 10 13 295 96
+8 10 14 221 0
+8 10 15 125 0
+8 10 16 78 0
+8 10 17 23 0
+8 10 18 0 0
+8 10 19 0 0
+8 10 20 0 0
+8 10 21 0 0
+8 10 22 0 0
+8 10 23 0 0
+8 10 24 0 0
+9 10 1 0 0
+9 10 2 0 0
+9 10 3 0 0
+9 10 4 0 0
+9 10 5 0 0
+9 10 6 0 0
+9 10 7 20 43
+9 10 8 71 76
+9 10 9 218 433
+9 10 10 224 185
+9 10 11 222 96
+9 10 12 237 96
+9 10 13 231 96
+9 10 14 261 95
+9 10 15 204 91
+9 10 16 96 83
+9 10 17 50 125
+9 10 18 0 0
+9 10 19 0 0
+9 10 20 0 0
+9 10 21 0 0
+9 10 22 0 0
+9 10 23 0 0
+9 10 24 0 0
+10 10 1 0 0
+10 10 2 0 0
+10 10 3 0 0
+10 10 4 0 0
+10 10 5 0 0
+10 10 6 0 0
+10 10 7 48 453
+10 10 8 226 768
+10 10 9 397 881
+10 10 10 539 941
+10 10 11 638 978
+10 10 12 678 987
+10 10 13 660 983
+10 10 14 586 962
+10 10 15 461 918
+10 10 16 299 833
+10 10 17 116 630
+10 10 18 0 0
+10 10 19 0 0
+10 10 20 0 0
+10 10 21 0 0
+10 10 22 0 0
+10 10 23 0 0
+10 10 24 0 0
+11 10 1 0 0
+11 10 2 0 0
+11 10 3 0 0
+11 10 4 0 0
+11 10 5 0 0
+11 10 6 0 0
+11 10 7 45 421
+11 10 8 219 754
+11 10 9 390 874
+11 10 10 529 932
+11 10 11 623 961
+11 10 12 663 973
+11 10 13 653 969
+11 10 14 582 942
+11 10 15 464 903
+11 10 16 293 811
+11 10 17 110 598
+11 10 18 0 0
+11 10 19 0 0
+11 10 20 0 0
+11 10 21 0 0
+11 10 22 0 0
+11 10 23 0 0
+11 10 24 0 0
+12 10 1 0 0
+12 10 2 0 0
+12 10 3 0 0
+12 10 4 0 0
+12 10 5 0 0
+12 10 6 0 0
+12 10 7 43 297
+12 10 8 205 224
+12 10 9 334 172
+12 10 10 425 92
+12 10 11 513 95
+12 10 12 552 192
+12 10 13 511 96
+12 10 14 379 187
+12 10 15 393 619
+12 10 16 186 159
+12 10 17 59 58
+12 10 18 0 0
+12 10 19 0 0
+12 10 20 0 0
+12 10 21 0 0
+12 10 22 0 0
+12 10 23 0 0
+12 10 24 0 0
+13 10 1 0 0
+13 10 2 0 0
+13 10 3 0 0
+13 10 4 0 0
+13 10 5 0 0
+13 10 6 0 0
+13 10 7 12 0
+13 10 8 69 0
+13 10 9 114 0
+13 10 10 191 0
+13 10 11 227 0
+13 10 12 195 0
+13 10 13 235 0
+13 10 14 206 0
+13 10 15 144 0
+13 10 16 93 0
+13 10 17 30 0
+13 10 18 0 0
+13 10 19 0 0
+13 10 20 0 0
+13 10 21 0 0
+13 10 22 0 0
+13 10 23 0 0
+13 10 24 0 0
+14 10 1 0 0
+14 10 2 0 0
+14 10 3 0 0
+14 10 4 0 0
+14 10 5 0 0
+14 10 6 0 0
+14 10 7 6 0
+14 10 8 63 0
+14 10 9 69 0
+14 10 10 83 0
+14 10 11 83 0
+14 10 12 164 0
+14 10 13 201 0
+14 10 14 168 90
+14 10 15 112 0
+14 10 16 113 76
+14 10 17 41 54
+14 10 18 0 0
+14 10 19 0 0
+14 10 20 0 0
+14 10 21 0 0
+14 10 22 0 0
+14 10 23 0 0
+14 10 24 0 0
+15 10 1 0 0
+15 10 2 0 0
+15 10 3 0 0
+15 10 4 0 0
+15 10 5 0 0
+15 10 6 0 0
+15 10 7 31 251
+15 10 8 168 515
+15 10 9 153 87
+15 10 10 214 92
+15 10 11 268 95
+15 10 12 286 96
+15 10 13 283 191
+15 10 14 180 93
+15 10 15 373 710
+15 10 16 129 159
+15 10 17 33 54
+15 10 18 0 0
+15 10 19 0 0
+15 10 20 0 0
+15 10 21 0 0
+15 10 22 0 0
+15 10 23 0 0
+15 10 24 0 0
+16 10 1 0 0
+16 10 2 0 0
+16 10 3 0 0
+16 10 4 0 0
+16 10 5 0 0
+16 10 6 0 0
+16 10 7 10 0
+16 10 8 65 0
+16 10 9 124 0
+16 10 10 97 93
+16 10 11 218 96
+16 10 12 253 97
+16 10 13 302 192
+16 10 14 386 468
+16 10 15 156 88
+16 10 16 88 236
+16 10 17 24 105
+16 10 18 0 0
+16 10 19 0 0
+16 10 20 0 0
+16 10 21 0 0
+16 10 22 0 0
+16 10 23 0 0
+16 10 24 0 0
+17 10 1 0 0
+17 10 2 0 0
+17 10 3 0 0
+17 10 4 0 0
+17 10 5 0 0
+17 10 6 0 0
+17 10 7 24 170
+17 10 8 124 288
+17 10 9 155 86
+17 10 10 185 0
+17 10 11 359 94
+17 10 12 447 287
+17 10 13 406 573
+17 10 14 425 560
+17 10 15 284 354
+17 10 16 151 236
+17 10 17 55 256
+17 10 18 0 0
+17 10 19 0 0
+17 10 20 0 0
+17 10 21 0 0
+17 10 22 0 0
+17 10 23 0 0
+17 10 24 0 0
+18 10 1 0 0
+18 10 2 0 0
+18 10 3 0 0
+18 10 4 0 0
+18 10 5 0 0
+18 10 6 0 0
+18 10 7 25 187
+18 10 8 187 726
+18 10 9 356 861
+18 10 10 493 923
+18 10 11 584 953
+18 10 12 589 871
+18 10 13 570 866
+18 10 14 528 936
+18 10 15 406 888
+18 10 16 246 785
+18 10 17 70 504
+18 10 18 0 0
+18 10 19 0 0
+18 10 20 0 0
+18 10 21 0 0
+18 10 22 0 0
+18 10 23 0 0
+18 10 24 0 0
+19 10 1 0 0
+19 10 2 0 0
+19 10 3 0 0
+19 10 4 0 0
+19 10 5 0 0
+19 10 6 0 0
+19 10 7 21 140
+19 10 8 165 566
+19 10 9 321 679
+19 10 10 483 914
+19 10 11 573 943
+19 10 12 610 954
+19 10 13 568 853
+19 10 14 481 739
+19 10 15 315 439
+19 10 16 210 541
+19 10 17 62 439
+19 10 18 0 0
+19 10 19 0 0
+19 10 20 0 0
+19 10 21 0 0
+19 10 22 0 0
+19 10 23 0 0
+19 10 24 0 0
+20 10 1 0 0
+20 10 2 0 0
+20 10 3 0 0
+20 10 4 0 0
+20 10 5 0 0
+20 10 6 0 0
+20 10 7 16 89
+20 10 8 146 348
+20 10 9 305 419
+20 10 10 406 451
+20 10 11 540 749
+20 10 12 457 378
+20 10 13 493 565
+20 10 14 451 642
+20 10 15 270 259
+20 10 16 153 226
+20 10 17 39 183
+20 10 18 0 0
+20 10 19 0 0
+20 10 20 0 0
+20 10 21 0 0
+20 10 22 0 0
+20 10 23 0 0
+20 10 24 0 0
+21 10 1 0 0
+21 10 2 0 0
+21 10 3 0 0
+21 10 4 0 0
+21 10 5 0 0
+21 10 6 0 0
+21 10 7 8 17
+21 10 8 55 0
+21 10 9 32 0
+21 10 10 105 0
+21 10 11 108 0
+21 10 12 116 0
+21 10 13 112 0
+21 10 14 95 0
+21 10 15 181 170
+21 10 16 182 516
+21 10 17 46 263
+21 10 18 0 0
+21 10 19 0 0
+21 10 20 0 0
+21 10 21 0 0
+21 10 22 0 0
+21 10 23 0 0
+21 10 24 0 0
+22 10 1 0 0
+22 10 2 0 0
+22 10 3 0 0
+22 10 4 0 0
+22 10 5 0 0
+22 10 6 0 0
+22 10 7 3 0
+22 10 8 70 137
+22 10 9 194 331
+22 10 10 263 447
+22 10 11 516 830
+22 10 12 585 937
+22 10 13 564 929
+22 10 14 404 543
+22 10 15 289 340
+22 10 16 101 73
+22 10 17 22 43
+22 10 18 0 0
+22 10 19 0 0
+22 10 20 0 0
+22 10 21 0 0
+22 10 22 0 0
+22 10 23 0 0
+22 10 24 0 0
+23 10 1 0 0
+23 10 2 0 0
+23 10 3 0 0
+23 10 4 0 0
+23 10 5 0 0
+23 10 6 0 0
+23 10 7 4 0
+23 10 8 77 133
+23 10 9 173 245
+23 10 10 425 712
+23 10 11 244 93
+23 10 12 339 283
+23 10 13 364 376
+23 10 14 219 92
+23 10 15 162 87
+23 10 16 119 224
+23 10 17 23 87
+23 10 18 0 0
+23 10 19 0 0
+23 10 20 0 0
+23 10 21 0 0
+23 10 22 0 0
+23 10 23 0 0
+23 10 24 0 0
+24 10 1 0 0
+24 10 2 0 0
+24 10 3 0 0
+24 10 4 0 0
+24 10 5 0 0
+24 10 6 0 0
+24 10 7 1 0
+24 10 8 81 138
+24 10 9 226 422
+24 10 10 218 183
+24 10 11 311 285
+24 10 12 341 288
+24 10 13 436 573
+24 10 14 378 558
+24 10 15 348 784
+24 10 16 211 753
+24 10 17 44 412
+24 10 18 0 0
+24 10 19 0 0
+24 10 20 0 0
+24 10 21 0 0
+24 10 22 0 0
+24 10 23 0 0
+24 10 24 0 0
+25 10 1 0 0
+25 10 2 0 0
+25 10 3 0 0
+25 10 4 0 0
+25 10 5 0 0
+25 10 6 0 0
+25 10 7 1 17
+25 10 8 154 682
+25 10 9 318 837
+25 10 10 452 906
+25 10 11 541 939
+25 10 12 578 951
+25 10 13 558 946
+25 10 14 484 920
+25 10 15 358 775
+25 10 16 201 665
+25 10 17 39 327
+25 10 18 0 0
+25 10 19 0 0
+25 10 20 0 0
+25 10 21 0 0
+25 10 22 0 0
+25 10 23 0 0
+25 10 24 0 0
+26 10 1 0 0
+26 10 2 0 0
+26 10 3 0 0
+26 10 4 0 0
+26 10 5 0 0
+26 10 6 0 0
+26 10 7 1 9
+26 10 8 154 470
+26 10 9 266 332
+26 10 10 351 363
+26 10 11 394 281
+26 10 12 422 285
+26 10 13 361 283
+26 10 14 289 92
+26 10 15 301 428
+26 10 16 99 146
+26 10 17 28 157
+26 10 18 0 0
+26 10 19 0 0
+26 10 20 0 0
+26 10 21 0 0
+26 10 22 0 0
+26 10 23 0 0
+26 10 24 0 0
+27 10 1 0 0
+27 10 2 0 0
+27 10 3 0 0
+27 10 4 0 0
+27 10 5 0 0
+27 10 6 0 0
+27 10 7 0 0
+27 10 8 18 0
+27 10 9 62 0
+27 10 10 97 0
+27 10 11 111 0
+27 10 12 120 0
+27 10 13 139 0
+27 10 14 81 0
+27 10 15 84 0
+27 10 16 33 0
+27 10 17 5 0
+27 10 18 0 0
+27 10 19 0 0
+27 10 20 0 0
+27 10 21 0 0
+27 10 22 0 0
+27 10 23 0 0
+27 10 24 0 0
+28 10 1 0 0
+28 10 2 0 0
+28 10 3 0 0
+28 10 4 0 0
+28 10 5 0 0
+28 10 6 0 0
+28 10 7 0 0
+28 10 8 37 0
+28 10 9 97 0
+28 10 10 142 88
+28 10 11 218 92
+28 10 12 192 93
+28 10 13 201 0
+28 10 14 102 0
+28 10 15 119 83
+28 10 16 61 0
+28 10 17 10 0
+28 10 18 0 0
+28 10 19 0 0
+28 10 20 0 0
+28 10 21 0 0
+28 10 22 0 0
+28 10 23 0 0
+28 10 24 0 0
+29 10 1 0 0
+29 10 2 0 0
+29 10 3 0 0
+29 10 4 0 0
+29 10 5 0 0
+29 10 6 0 0
+29 10 7 0 0
+29 10 8 74 189
+29 10 9 304 804
+29 10 10 434 877
+29 10 11 385 456
+29 10 12 416 463
+29 10 13 494 733
+29 10 14 391 533
+29 10 15 179 165
+29 10 16 79 0
+29 10 17 9 0
+29 10 18 0 0
+29 10 19 0 0
+29 10 20 0 0
+29 10 21 0 0
+29 10 22 0 0
+29 10 23 0 0
+29 10 24 0 0
+30 10 1 0 0
+30 10 2 0 0
+30 10 3 0 0
+30 10 4 0 0
+30 10 5 0 0
+30 10 6 0 0
+30 10 7 0 0
+30 10 8 24 64
+30 10 9 95 83
+30 10 10 196 90
+30 10 11 426 565
+30 10 12 356 381
+30 10 13 309 284
+30 10 14 203 92
+30 10 15 175 257
+30 10 16 123 361
+30 10 17 22 153
+30 10 18 0 0
+30 10 19 0 0
+30 10 20 0 0
+30 10 21 0 0
+30 10 22 0 0
+30 10 23 0 0
+30 10 24 0 0
+31 10 1 0 0
+31 10 2 0 0
+31 10 3 0 0
+31 10 4 0 0
+31 10 5 0 0
+31 10 6 0 0
+31 10 7 0 0
+31 10 8 128 651
+31 10 9 290 829
+31 10 10 422 901
+31 10 11 511 938
+31 10 12 553 950
+31 10 13 532 941
+31 10 14 458 915
+31 10 15 334 851
+31 10 16 183 713
+31 10 17 23 157
+31 10 18 0 0
+31 10 19 0 0
+31 10 20 0 0
+31 10 21 0 0
+31 10 22 0 0
+31 10 23 0 0
+31 10 24 0 0
+1 11 1 0 0
+1 11 2 0 0
+1 11 3 0 0
+1 11 4 0 0
+1 11 5 0 0
+1 11 6 0 0
+1 11 7 0 0
+1 11 8 103 385
+1 11 9 104 82
+1 11 10 181 89
+1 11 11 198 93
+1 11 12 513 753
+1 11 13 458 652
+1 11 14 449 540
+1 11 15 284 333
+1 11 16 88 137
+1 11 17 6 13
+1 11 18 0 0
+1 11 19 0 0
+1 11 20 0 0
+1 11 21 0 0
+1 11 22 0 0
+1 11 23 0 0
+1 11 24 0 0
+2 11 1 0 0
+2 11 2 0 0
+2 11 3 0 0
+2 11 4 0 0
+2 11 5 0 0
+2 11 6 0 0
+2 11 7 0 0
+2 11 8 88 506
+2 11 9 198 575
+2 11 10 316 632
+2 11 11 476 851
+2 11 12 479 767
+2 11 13 433 670
+2 11 14 343 558
+2 11 15 308 782
+2 11 16 129 579
+2 11 17 15 106
+2 11 18 0 0
+2 11 19 0 0
+2 11 20 0 0
+2 11 21 0 0
+2 11 22 0 0
+2 11 23 0 0
+2 11 24 0 0
+3 11 1 0 0
+3 11 2 0 0
+3 11 3 0 0
+3 11 4 0 0
+3 11 5 0 0
+3 11 6 0 0
+3 11 7 0 0
+3 11 8 98 568
+3 11 9 257 815
+3 11 10 409 904
+3 11 11 497 941
+3 11 12 533 952
+3 11 13 515 946
+3 11 14 391 825
+3 11 15 322 855
+3 11 16 162 705
+3 11 17 3 35
+3 11 18 0 0
+3 11 19 0 0
+3 11 20 0 0
+3 11 21 0 0
+3 11 22 0 0
+3 11 23 0 0
+3 11 24 0 0
+4 11 1 0 0
+4 11 2 0 0
+4 11 3 0 0
+4 11 4 0 0
+4 11 5 0 0
+4 11 6 0 0
+4 11 7 0 0
+4 11 8 109 615
+4 11 9 267 809
+4 11 10 399 891
+4 11 11 488 932
+4 11 12 522 941
+4 11 13 404 749
+4 11 14 339 546
+4 11 15 184 170
+4 11 16 57 69
+4 11 17 8 9
+4 11 18 0 0
+4 11 19 0 0
+4 11 20 0 0
+4 11 21 0 0
+4 11 22 0 0
+4 11 23 0 0
+4 11 24 0 0
+5 11 1 0 0
+5 11 2 0 0
+5 11 3 0 0
+5 11 4 0 0
+5 11 5 0 0
+5 11 6 0 0
+5 11 7 0 0
+5 11 8 27 0
+5 11 9 67 0
+5 11 10 129 0
+5 11 11 162 0
+5 11 12 190 0
+5 11 13 153 0
+5 11 14 141 0
+5 11 15 88 0
+5 11 16 32 0
+5 11 17 1 0
+5 11 18 0 0
+5 11 19 0 0
+5 11 20 0 0
+5 11 21 0 0
+5 11 22 0 0
+5 11 23 0 0
+5 11 24 0 0
+6 11 1 0 0
+6 11 2 0 0
+6 11 3 0 0
+6 11 4 0 0
+6 11 5 0 0
+6 11 6 0 0
+6 11 7 0 0
+6 11 8 47 115
+6 11 9 75 79
+6 11 10 120 88
+6 11 11 233 183
+6 11 12 413 559
+6 11 13 333 371
+6 11 14 217 179
+6 11 15 128 248
+6 11 16 45 67
+6 11 17 4 0
+6 11 18 0 0
+6 11 19 0 0
+6 11 20 0 0
+6 11 21 0 0
+6 11 22 0 0
+6 11 23 0 0
+6 11 24 0 0
+7 11 1 0 0
+7 11 2 0 0
+7 11 3 0 0
+7 11 4 0 0
+7 11 5 0 0
+7 11 6 0 0
+7 11 7 0 0
+7 11 8 97 599
+7 11 9 256 810
+7 11 10 389 899
+7 11 11 477 937
+7 11 12 513 950
+7 11 13 491 939
+7 11 14 419 910
+7 11 15 298 842
+7 11 16 144 682
+7 11 17 2 26
+7 11 18 0 0
+7 11 19 0 0
+7 11 20 0 0
+7 11 21 0 0
+7 11 22 0 0
+7 11 23 0 0
+7 11 24 0 0
+8 11 1 0 0
+8 11 2 0 0
+8 11 3 0 0
+8 11 4 0 0
+8 11 5 0 0
+8 11 6 0 0
+8 11 7 0 0
+8 11 8 87 575
+8 11 9 268 795
+8 11 10 406 792
+8 11 11 439 832
+8 11 12 491 729
+8 11 13 471 723
+8 11 14 316 452
+8 11 15 192 167
+8 11 16 79 201
+8 11 17 0 0
+8 11 18 0 0
+8 11 19 0 0
+8 11 20 0 0
+8 11 21 0 0
+8 11 22 0 0
+8 11 23 0 0
+8 11 24 0 0
+9 11 1 0 0
+9 11 2 0 0
+9 11 3 0 0
+9 11 4 0 0
+9 11 5 0 0
+9 11 6 0 0
+9 11 7 0 0
+9 11 8 28 57
+9 11 9 70 0
+9 11 10 142 88
+9 11 11 203 92
+9 11 12 184 0
+9 11 13 178 0
+9 11 14 148 0
+9 11 15 100 0
+9 11 16 44 0
+9 11 17 0 0
+9 11 18 0 0
+9 11 19 0 0
+9 11 20 0 0
+9 11 21 0 0
+9 11 22 0 0
+9 11 23 0 0
+9 11 24 0 0
+10 11 1 0 0
+10 11 2 0 0
+10 11 3 0 0
+10 11 4 0 0
+10 11 5 0 0
+10 11 6 0 0
+10 11 7 0 0
+10 11 8 12 0
+10 11 9 69 0
+10 11 10 109 0
+10 11 11 165 0
+10 11 12 179 0
+10 11 13 172 0
+10 11 14 143 0
+10 11 15 80 0
+10 11 16 41 0
+10 11 17 0 0
+10 11 18 0 0
+10 11 19 0 0
+10 11 20 0 0
+10 11 21 0 0
+10 11 22 0 0
+10 11 23 0 0
+10 11 24 0 0
+11 11 1 0 0
+11 11 2 0 0
+11 11 3 0 0
+11 11 4 0 0
+11 11 5 0 0
+11 11 6 0 0
+11 11 7 0 0
+11 11 8 14 0
+11 11 9 56 0
+11 11 10 64 0
+11 11 11 72 0
+11 11 12 66 0
+11 11 13 38 0
+11 11 14 60 0
+11 11 15 33 0
+11 11 16 16 0
+11 11 17 0 0
+11 11 18 0 0
+11 11 19 0 0
+11 11 20 0 0
+11 11 21 0 0
+11 11 22 0 0
+11 11 23 0 0
+11 11 24 0 0
+12 11 1 0 0
+12 11 2 0 0
+12 11 3 0 0
+12 11 4 0 0
+12 11 5 0 0
+12 11 6 0 0
+12 11 7 0 0
+12 11 8 24 0
+12 11 9 70 0
+12 11 10 66 0
+12 11 11 55 0
+12 11 12 106 0
+12 11 13 71 0
+12 11 14 35 0
+12 11 15 28 0
+12 11 16 14 0
+12 11 17 0 0
+12 11 18 0 0
+12 11 19 0 0
+12 11 20 0 0
+12 11 21 0 0
+12 11 22 0 0
+12 11 23 0 0
+12 11 24 0 0
+13 11 1 0 0
+13 11 2 0 0
+13 11 3 0 0
+13 11 4 0 0
+13 11 5 0 0
+13 11 6 0 0
+13 11 7 0 0
+13 11 8 21 0
+13 11 9 64 0
+13 11 10 133 0
+13 11 11 114 0
+13 11 12 158 0
+13 11 13 154 0
+13 11 14 155 0
+13 11 15 111 0
+13 11 16 50 0
+13 11 17 0 0
+13 11 18 0 0
+13 11 19 0 0
+13 11 20 0 0
+13 11 21 0 0
+13 11 22 0 0
+13 11 23 0 0
+13 11 24 0 0
+14 11 1 0 0
+14 11 2 0 0
+14 11 3 0 0
+14 11 4 0 0
+14 11 5 0 0
+14 11 6 0 0
+14 11 7 0 0
+14 11 8 50 311
+14 11 9 228 781
+14 11 10 362 879
+14 11 11 453 923
+14 11 12 488 934
+14 11 13 469 927
+14 11 14 395 893
+14 11 15 268 814
+14 11 16 121 636
+14 11 17 0 0
+14 11 18 0 0
+14 11 19 0 0
+14 11 20 0 0
+14 11 21 0 0
+14 11 22 0 0
+14 11 23 0 0
+14 11 24 0 0
+15 11 1 0 0
+15 11 2 0 0
+15 11 3 0 0
+15 11 4 0 0
+15 11 5 0 0
+15 11 6 0 0
+15 11 7 0 0
+15 11 8 50 250
+15 11 9 170 384
+15 11 10 264 260
+15 11 11 261 91
+15 11 12 378 279
+15 11 13 366 368
+15 11 14 293 266
+15 11 15 144 80
+15 11 16 38 125
+15 11 17 0 0
+15 11 18 0 0
+15 11 19 0 0
+15 11 20 0 0
+15 11 21 0 0
+15 11 22 0 0
+15 11 23 0 0
+15 11 24 0 0
+16 11 1 0 0
+16 11 2 0 0
+16 11 3 0 0
+16 11 4 0 0
+16 11 5 0 0
+16 11 6 0 0
+16 11 7 0 0
+16 11 8 19 49
+16 11 9 81 75
+16 11 10 72 86
+16 11 11 100 0
+16 11 12 114 0
+16 11 13 88 0
+16 11 14 64 0
+16 11 15 45 0
+16 11 16 17 0
+16 11 17 0 0
+16 11 18 0 0
+16 11 19 0 0
+16 11 20 0 0
+16 11 21 0 0
+16 11 22 0 0
+16 11 23 0 0
+16 11 24 0 0
+17 11 1 0 0
+17 11 2 0 0
+17 11 3 0 0
+17 11 4 0 0
+17 11 5 0 0
+17 11 6 0 0
+17 11 7 0 0
+17 11 8 30 199
+17 11 9 127 310
+17 11 10 153 88
+17 11 11 244 370
+17 11 12 331 471
+17 11 13 197 93
+17 11 14 163 90
+17 11 15 80 83
+17 11 16 38 63
+17 11 17 0 0
+17 11 18 0 0
+17 11 19 0 0
+17 11 20 0 0
+17 11 21 0 0
+17 11 22 0 0
+17 11 23 0 0
+17 11 24 0 0
+18 11 1 0 0
+18 11 2 0 0
+18 11 3 0 0
+18 11 4 0 0
+18 11 5 0 0
+18 11 6 0 0
+18 11 7 0 0
+18 11 8 18 0
+18 11 9 57 0
+18 11 10 66 0
+18 11 11 154 0
+18 11 12 141 0
+18 11 13 161 0
+18 11 14 79 0
+18 11 15 44 0
+18 11 16 31 0
+18 11 17 0 0
+18 11 18 0 0
+18 11 19 0 0
+18 11 20 0 0
+18 11 21 0 0
+18 11 22 0 0
+18 11 23 0 0
+18 11 24 0 0
+19 11 1 0 0
+19 11 2 0 0
+19 11 3 0 0
+19 11 4 0 0
+19 11 5 0 0
+19 11 6 0 0
+19 11 7 0 0
+19 11 8 51 479
+19 11 9 204 768
+19 11 10 226 438
+19 11 11 221 92
+19 11 12 298 188
+19 11 13 285 185
+19 11 14 235 178
+19 11 15 167 243
+19 11 16 95 366
+19 11 17 0 0
+19 11 18 0 0
+19 11 19 0 0
+19 11 20 0 0
+19 11 21 0 0
+19 11 22 0 0
+19 11 23 0 0
+19 11 24 0 0
+20 11 1 0 0
+20 11 2 0 0
+20 11 3 0 0
+20 11 4 0 0
+20 11 5 0 0
+20 11 6 0 0
+20 11 7 0 0
+20 11 8 20 191
+20 11 9 59 76
+20 11 10 108 87
+20 11 11 96 91
+20 11 12 141 186
+20 11 13 62 92
+20 11 14 122 0
+20 11 15 78 81
+20 11 16 40 61
+20 11 17 0 0
+20 11 18 0 0
+20 11 19 0 0
+20 11 20 0 0
+20 11 21 0 0
+20 11 22 0 0
+20 11 23 0 0
+20 11 24 0 0
+21 11 1 0 0
+21 11 2 0 0
+21 11 3 0 0
+21 11 4 0 0
+21 11 5 0 0
+21 11 6 0 0
+21 11 7 0 0
+21 11 8 12 72
+21 11 9 118 266
+21 11 10 177 513
+21 11 11 137 271
+21 11 12 153 93
+21 11 13 146 91
+21 11 14 120 0
+21 11 15 77 0
+21 11 16 29 0
+21 11 17 0 0
+21 11 18 0 0
+21 11 19 0 0
+21 11 20 0 0
+21 11 21 0 0
+21 11 22 0 0
+21 11 23 0 0
+21 11 24 0 0
+22 11 1 0 0
+22 11 2 0 0
+22 11 3 0 0
+22 11 4 0 0
+22 11 5 0 0
+22 11 6 0 0
+22 11 7 0 0
+22 11 8 11 0
+22 11 9 61 0
+22 11 10 136 85
+22 11 11 176 91
+22 11 12 193 93
+22 11 13 366 640
+22 11 14 262 439
+22 11 15 159 556
+22 11 16 38 234
+22 11 17 0 0
+22 11 18 0 0
+22 11 19 0 0
+22 11 20 0 0
+22 11 21 0 0
+22 11 22 0 0
+22 11 23 0 0
+22 11 24 0 0
+23 11 1 0 0
+23 11 2 0 0
+23 11 3 0 0
+23 11 4 0 0
+23 11 5 0 0
+23 11 6 0 0
+23 11 7 0 0
+23 11 8 12 0
+23 11 9 29 0
+23 11 10 37 0
+23 11 11 63 0
+23 11 12 57 0
+23 11 13 123 89
+23 11 14 59 86
+23 11 15 28 78
+23 11 16 26 0
+23 11 17 0 0
+23 11 18 0 0
+23 11 19 0 0
+23 11 20 0 0
+23 11 21 0 0
+23 11 22 0 0
+23 11 23 0 0
+23 11 24 0 0
+24 11 1 0 0
+24 11 2 0 0
+24 11 3 0 0
+24 11 4 0 0
+24 11 5 0 0
+24 11 6 0 0
+24 11 7 0 0
+24 11 8 4 0
+24 11 9 57 0
+24 11 10 107 0
+24 11 11 104 0
+24 11 12 136 0
+24 11 13 70 0
+24 11 14 107 0
+24 11 15 74 0
+24 11 16 26 56
+24 11 17 0 0
+24 11 18 0 0
+24 11 19 0 0
+24 11 20 0 0
+24 11 21 0 0
+24 11 22 0 0
+24 11 23 0 0
+24 11 24 0 0
+25 11 1 0 0
+25 11 2 0 0
+25 11 3 0 0
+25 11 4 0 0
+25 11 5 0 0
+25 11 6 0 0
+25 11 7 0 0
+25 11 8 11 0
+25 11 9 56 0
+25 11 10 99 0
+25 11 11 39 0
+25 11 12 118 0
+25 11 13 89 0
+25 11 14 53 0
+25 11 15 35 0
+25 11 16 13 0
+25 11 17 0 0
+25 11 18 0 0
+25 11 19 0 0
+25 11 20 0 0
+25 11 21 0 0
+25 11 22 0 0
+25 11 23 0 0
+25 11 24 0 0
+26 11 1 0 0
+26 11 2 0 0
+26 11 3 0 0
+26 11 4 0 0
+26 11 5 0 0
+26 11 6 0 0
+26 11 7 0 0
+26 11 8 6 0
+26 11 9 35 0
+26 11 10 59 0
+26 11 11 73 87
+26 11 12 85 89
+26 11 13 366 659
+26 11 14 296 697
+26 11 15 215 754
+26 11 16 72 479
+26 11 17 0 0
+26 11 18 0 0
+26 11 19 0 0
+26 11 20 0 0
+26 11 21 0 0
+26 11 22 0 0
+26 11 23 0 0
+26 11 24 0 0
+27 11 1 0 0
+27 11 2 0 0
+27 11 3 0 0
+27 11 4 0 0
+27 11 5 0 0
+27 11 6 0 0
+27 11 7 0 0
+27 11 8 6 0
+27 11 9 34 0
+27 11 10 59 0
+27 11 11 296 263
+27 11 12 359 623
+27 11 13 288 619
+27 11 14 299 592
+27 11 15 164 228
+27 11 16 60 105
+27 11 17 0 0
+27 11 18 0 0
+27 11 19 0 0
+27 11 20 0 0
+27 11 21 0 0
+27 11 22 0 0
+27 11 23 0 0
+27 11 24 0 0
+28 11 1 0 0
+28 11 2 0 0
+28 11 3 0 0
+28 11 4 0 0
+28 11 5 0 0
+28 11 6 0 0
+28 11 7 0 0
+28 11 8 21 132
+28 11 9 109 406
+28 11 10 239 566
+28 11 11 318 690
+28 11 12 368 705
+28 11 13 315 611
+28 11 14 278 499
+28 11 15 179 372
+28 11 16 65 255
+28 11 17 0 0
+28 11 18 0 0
+28 11 19 0 0
+28 11 20 0 0
+28 11 21 0 0
+28 11 22 0 0
+28 11 23 0 0
+28 11 24 0 0
+29 11 1 0 0
+29 11 2 0 0
+29 11 3 0 0
+29 11 4 0 0
+29 11 5 0 0
+29 11 6 0 0
+29 11 7 0 0
+29 11 8 3 0
+29 11 9 24 0
+29 11 10 42 0
+29 11 11 28 0
+29 11 12 88 0
+29 11 13 76 0
+29 11 14 40 0
+29 11 15 29 0
+29 11 16 6 0
+29 11 17 0 0
+29 11 18 0 0
+29 11 19 0 0
+29 11 20 0 0
+29 11 21 0 0
+29 11 22 0 0
+29 11 23 0 0
+29 11 24 0 0
+30 11 1 0 0
+30 11 2 0 0
+30 11 3 0 0
+30 11 4 0 0
+30 11 5 0 0
+30 11 6 0 0
+30 11 7 0 0
+30 11 8 8 13
+30 11 9 49 137
+30 11 10 185 296
+30 11 11 337 736
+30 11 12 334 715
+30 11 13 240 444
+30 11 14 140 255
+30 11 15 111 382
+30 11 16 29 263
+30 11 17 0 0
+30 11 18 0 0
+30 11 19 0 0
+30 11 20 0 0
+30 11 21 0 0
+30 11 22 0 0
+30 11 23 0 0
+30 11 24 0 0
+1 12 1 0 0
+1 12 2 0 0
+1 12 3 0 0
+1 12 4 0 0
+1 12 5 0 0
+1 12 6 0 0
+1 12 7 0 0
+1 12 8 11 17
+1 12 9 61 71
+1 12 10 122 86
+1 12 11 216 91
+1 12 12 240 93
+1 12 13 178 92
+1 12 14 179 88
+1 12 15 187 552
+1 12 16 38 109
+1 12 17 0 0
+1 12 18 0 0
+1 12 19 0 0
+1 12 20 0 0
+1 12 21 0 0
+1 12 22 0 0
+1 12 23 0 0
+1 12 24 0 0
+2 12 1 0 0
+2 12 2 0 0
+2 12 3 0 0
+2 12 4 0 0
+2 12 5 0 0
+2 12 6 0 0
+2 12 7 0 0
+2 12 8 17 89
+2 12 9 122 493
+2 12 10 278 760
+2 12 11 381 904
+2 12 12 423 927
+2 12 13 409 919
+2 12 14 271 792
+2 12 15 186 712
+2 12 16 73 445
+2 12 17 0 0
+2 12 18 0 0
+2 12 19 0 0
+2 12 20 0 0
+2 12 21 0 0
+2 12 22 0 0
+2 12 23 0 0
+2 12 24 0 0
+3 12 1 0 0
+3 12 2 0 0
+3 12 3 0 0
+3 12 4 0 0
+3 12 5 0 0
+3 12 6 0 0
+3 12 7 0 0
+3 12 8 15 64
+3 12 9 88 361
+3 12 10 176 343
+3 12 11 208 183
+3 12 12 243 188
+3 12 13 235 93
+3 12 14 180 0
+3 12 15 128 80
+3 12 16 17 0
+3 12 17 0 0
+3 12 18 0 0
+3 12 19 0 0
+3 12 20 0 0
+3 12 21 0 0
+3 12 22 0 0
+3 12 23 0 0
+3 12 24 0 0
+4 12 1 0 0
+4 12 2 0 0
+4 12 3 0 0
+4 12 4 0 0
+4 12 5 0 0
+4 12 6 0 0
+4 12 7 0 0
+4 12 8 8 0
+4 12 9 19 0
+4 12 10 73 0
+4 12 11 79 0
+4 12 12 81 89
+4 12 13 67 0
+4 12 14 116 0
+4 12 15 183 528
+4 12 16 39 51
+4 12 17 0 0
+4 12 18 0 0
+4 12 19 0 0
+4 12 20 0 0
+4 12 21 0 0
+4 12 22 0 0
+4 12 23 0 0
+4 12 24 0 0
+5 12 1 0 0
+5 12 2 0 0
+5 12 3 0 0
+5 12 4 0 0
+5 12 5 0 0
+5 12 6 0 0
+5 12 7 0 0
+5 12 8 5 0
+5 12 9 32 0
+5 12 10 75 0
+5 12 11 249 353
+5 12 12 146 0
+5 12 13 232 89
+5 12 14 172 171
+5 12 15 114 77
+5 12 16 31 106
+5 12 17 0 0
+5 12 18 0 0
+5 12 19 0 0
+5 12 20 0 0
+5 12 21 0 0
+5 12 22 0 0
+5 12 23 0 0
+5 12 24 0 0
+6 12 1 0 0
+6 12 2 0 0
+6 12 3 0 0
+6 12 4 0 0
+6 12 5 0 0
+6 12 6 0 0
+6 12 7 0 0
+6 12 8 8 9
+6 12 9 74 65
+6 12 10 154 81
+6 12 11 198 174
+6 12 12 258 90
+6 12 13 249 89
+6 12 14 142 85
+6 12 15 113 75
+6 12 16 52 307
+6 12 17 0 0
+6 12 18 0 0
+6 12 19 0 0
+6 12 20 0 0
+6 12 21 0 0
+6 12 22 0 0
+6 12 23 0 0
+6 12 24 0 0
+7 12 1 0 0
+7 12 2 0 0
+7 12 3 0 0
+7 12 4 0 0
+7 12 5 0 0
+7 12 6 0 0
+7 12 7 0 0
+7 12 8 2 21
+7 12 9 104 135
+7 12 10 131 83
+7 12 11 291 265
+7 12 12 345 91
+7 12 13 224 0
+7 12 14 186 0
+7 12 15 95 0
+7 12 16 39 0
+7 12 17 0 0
+7 12 18 0 0
+7 12 19 0 0
+7 12 20 0 0
+7 12 21 0 0
+7 12 22 0 0
+7 12 23 0 0
+7 12 24 0 0
+8 12 1 0 0
+8 12 2 0 0
+8 12 3 0 0
+8 12 4 0 0
+8 12 5 0 0
+8 12 6 0 0
+8 12 7 0 0
+8 12 8 2 0
+8 12 9 74 0
+8 12 10 75 0
+8 12 11 114 0
+8 12 12 131 0
+8 12 13 129 0
+8 12 14 45 0
+8 12 15 51 0
+8 12 16 8 0
+8 12 17 0 0
+8 12 18 0 0
+8 12 19 0 0
+8 12 20 0 0
+8 12 21 0 0
+8 12 22 0 0
+8 12 23 0 0
+8 12 24 0 0
+9 12 1 0 0
+9 12 2 0 0
+9 12 3 0 0
+9 12 4 0 0
+9 12 5 0 0
+9 12 6 0 0
+9 12 7 0 0
+9 12 8 5 0
+9 12 9 14 0
+9 12 10 123 0
+9 12 11 131 0
+9 12 12 118 0
+9 12 13 172 0
+9 12 14 134 0
+9 12 15 89 0
+9 12 16 24 0
+9 12 17 0 0
+9 12 18 0 0
+9 12 19 0 0
+9 12 20 0 0
+9 12 21 0 0
+9 12 22 0 0
+9 12 23 0 0
+9 12 24 0 0
+10 12 1 0 0
+10 12 2 0 0
+10 12 3 0 0
+10 12 4 0 0
+10 12 5 0 0
+10 12 6 0 0
+10 12 7 0 0
+10 12 8 11 72
+10 12 9 135 692
+10 12 10 269 847
+10 12 11 366 915
+10 12 12 424 846
+10 12 13 386 936
+10 12 14 335 900
+10 12 15 221 809
+10 12 16 73 515
+10 12 17 0 0
+10 12 18 0 0
+10 12 19 0 0
+10 12 20 0 0
+10 12 21 0 0
+10 12 22 0 0
+10 12 23 0 0
+10 12 24 0 0
+11 12 1 0 0
+11 12 2 0 0
+11 12 3 0 0
+11 12 4 0 0
+11 12 5 0 0
+11 12 6 0 0
+11 12 7 0 0
+11 12 8 0 0
+11 12 9 103 138
+11 12 10 234 251
+11 12 11 346 451
+11 12 12 267 184
+11 12 13 191 91
+11 12 14 179 87
+11 12 15 141 78
+11 12 16 47 53
+11 12 17 0 0
+11 12 18 0 0
+11 12 19 0 0
+11 12 20 0 0
+11 12 21 0 0
+11 12 22 0 0
+11 12 23 0 0
+11 12 24 0 0
+12 12 1 0 0
+12 12 2 0 0
+12 12 3 0 0
+12 12 4 0 0
+12 12 5 0 0
+12 12 6 0 0
+12 12 7 0 0
+12 12 8 0 0
+12 12 9 22 0
+12 12 10 87 82
+12 12 11 114 0
+12 12 12 104 0
+12 12 13 56 0
+12 12 14 66 0
+12 12 15 82 0
+12 12 16 33 0
+12 12 17 0 0
+12 12 18 0 0
+12 12 19 0 0
+12 12 20 0 0
+12 12 21 0 0
+12 12 22 0 0
+12 12 23 0 0
+12 12 24 0 0
+13 12 1 0 0
+13 12 2 0 0
+13 12 3 0 0
+13 12 4 0 0
+13 12 5 0 0
+13 12 6 0 0
+13 12 7 0 0
+13 12 8 0 0
+13 12 9 36 0
+13 12 10 116 0
+13 12 11 76 0
+13 12 12 112 0
+13 12 13 109 0
+13 12 14 39 0
+13 12 15 49 0
+13 12 16 23 0
+13 12 17 0 0
+13 12 18 0 0
+13 12 19 0 0
+13 12 20 0 0
+13 12 21 0 0
+13 12 22 0 0
+13 12 23 0 0
+13 12 24 0 0
+14 12 1 0 0
+14 12 2 0 0
+14 12 3 0 0
+14 12 4 0 0
+14 12 5 0 0
+14 12 6 0 0
+14 12 7 0 0
+14 12 8 0 0
+14 12 9 26 0
+14 12 10 61 0
+14 12 11 143 178
+14 12 12 184 183
+14 12 13 175 274
+14 12 14 208 175
+14 12 15 154 548
+14 12 16 59 489
+14 12 17 0 0
+14 12 18 0 0
+14 12 19 0 0
+14 12 20 0 0
+14 12 21 0 0
+14 12 22 0 0
+14 12 23 0 0
+14 12 24 0 0
+15 12 1 0 0
+15 12 2 0 0
+15 12 3 0 0
+15 12 4 0 0
+15 12 5 0 0
+15 12 6 0 0
+15 12 7 0 0
+15 12 8 0 0
+15 12 9 53 0
+15 12 10 116 0
+15 12 11 168 0
+15 12 12 160 0
+15 12 13 73 0
+15 12 14 44 0
+15 12 15 71 0
+15 12 16 31 0
+15 12 17 0 0
+15 12 18 0 0
+15 12 19 0 0
+15 12 20 0 0
+15 12 21 0 0
+15 12 22 0 0
+15 12 23 0 0
+15 12 24 0 0
+16 12 1 0 0
+16 12 2 0 0
+16 12 3 0 0
+16 12 4 0 0
+16 12 5 0 0
+16 12 6 0 0
+16 12 7 0 0
+16 12 8 0 0
+16 12 9 110 499
+16 12 10 236 713
+16 12 11 339 862
+16 12 12 371 888
+16 12 13 375 884
+16 12 14 291 704
+16 12 15 173 595
+16 12 16 70 459
+16 12 17 0 0
+16 12 18 0 0
+16 12 19 0 0
+16 12 20 0 0
+16 12 21 0 0
+16 12 22 0 0
+16 12 23 0 0
+16 12 24 0 0
+17 12 1 0 0
+17 12 2 0 0
+17 12 3 0 0
+17 12 4 0 0
+17 12 5 0 0
+17 12 6 0 0
+17 12 7 0 0
+17 12 8 0 0
+17 12 9 9 0
+17 12 10 63 0
+17 12 11 90 0
+17 12 12 85 0
+17 12 13 94 0
+17 12 14 88 0
+17 12 15 87 0
+17 12 16 31 0
+17 12 17 0 0
+17 12 18 0 0
+17 12 19 0 0
+17 12 20 0 0
+17 12 21 0 0
+17 12 22 0 0
+17 12 23 0 0
+17 12 24 0 0
+18 12 1 0 0
+18 12 2 0 0
+18 12 3 0 0
+18 12 4 0 0
+18 12 5 0 0
+18 12 6 0 0
+18 12 7 0 0
+18 12 8 0 0
+18 12 9 119 670
+18 12 10 254 839
+18 12 11 352 909
+18 12 12 399 935
+18 12 13 345 743
+18 12 14 289 803
+18 12 15 195 562
+18 12 16 54 398
+18 12 17 0 0
+18 12 18 0 0
+18 12 19 0 0
+18 12 20 0 0
+18 12 21 0 0
+18 12 22 0 0
+18 12 23 0 0
+18 12 24 0 0
+19 12 1 0 0
+19 12 2 0 0
+19 12 3 0 0
+19 12 4 0 0
+19 12 5 0 0
+19 12 6 0 0
+19 12 7 0 0
+19 12 8 0 0
+19 12 9 117 666
+19 12 10 253 836
+19 12 11 351 906
+19 12 12 398 931
+19 12 13 389 924
+19 12 14 327 888
+19 12 15 218 799
+19 12 16 76 561
+19 12 17 0 0
+19 12 18 0 0
+19 12 19 0 0
+19 12 20 0 0
+19 12 21 0 0
+19 12 22 0 0
+19 12 23 0 0
+19 12 24 0 0
+20 12 1 0 0
+20 12 2 0 0
+20 12 3 0 0
+20 12 4 0 0
+20 12 5 0 0
+20 12 6 0 0
+20 12 7 0 0
+20 12 8 0 0
+20 12 9 131 468
+20 12 10 203 167
+20 12 11 357 453
+20 12 12 367 278
+20 12 13 329 185
+20 12 14 253 89
+20 12 15 160 79
+20 12 16 56 55
+20 12 17 0 0
+20 12 18 0 0
+20 12 19 0 0
+20 12 20 0 0
+20 12 21 0 0
+20 12 22 0 0
+20 12 23 0 0
+20 12 24 0 0
+21 12 1 0 0
+21 12 2 0 0
+21 12 3 0 0
+21 12 4 0 0
+21 12 5 0 0
+21 12 6 0 0
+21 12 7 0 0
+21 12 8 0 0
+21 12 9 26 0
+21 12 10 94 0
+21 12 11 56 0
+21 12 12 127 0
+21 12 13 135 0
+21 12 14 122 0
+21 12 15 84 0
+21 12 16 11 0
+21 12 17 0 0
+21 12 18 0 0
+21 12 19 0 0
+21 12 20 0 0
+21 12 21 0 0
+21 12 22 0 0
+21 12 23 0 0
+21 12 24 0 0
+22 12 1 0 0
+22 12 2 0 0
+22 12 3 0 0
+22 12 4 0 0
+22 12 5 0 0
+22 12 6 0 0
+22 12 7 0 0
+22 12 8 0 0
+22 12 9 111 643
+22 12 10 233 745
+22 12 11 375 716
+22 12 12 480 825
+22 12 13 475 637
+22 12 14 378 701
+22 12 15 180 551
+22 12 16 59 167
+22 12 17 0 0
+22 12 18 0 0
+22 12 19 0 0
+22 12 20 0 0
+22 12 21 0 0
+22 12 22 0 0
+22 12 23 0 0
+22 12 24 0 0
+23 12 1 0 0
+23 12 2 0 0
+23 12 3 0 0
+23 12 4 0 0
+23 12 5 0 0
+23 12 6 0 0
+23 12 7 0 0
+23 12 8 0 0
+23 12 9 68 128
+23 12 10 212 561
+23 12 11 337 873
+23 12 12 384 897
+23 12 13 337 803
+23 12 14 319 858
+23 12 15 193 539
+23 12 16 71 424
+23 12 17 0 0
+23 12 18 0 0
+23 12 19 0 0
+23 12 20 0 0
+23 12 21 0 0
+23 12 22 0 0
+23 12 23 0 0
+23 12 24 0 0
+24 12 1 0 0
+24 12 2 0 0
+24 12 3 0 0
+24 12 4 0 0
+24 12 5 0 0
+24 12 6 0 0
+24 12 7 0 0
+24 12 8 0 0
+24 12 9 41 62
+24 12 10 90 80
+24 12 11 126 88
+24 12 12 143 90
+24 12 13 108 0
+24 12 14 206 259
+24 12 15 175 77
+24 12 16 49 55
+24 12 17 0 0
+24 12 18 0 0
+24 12 19 0 0
+24 12 20 0 0
+24 12 21 0 0
+24 12 22 0 0
+24 12 23 0 0
+24 12 24 0 0
+25 12 1 0 0
+25 12 2 0 0
+25 12 3 0 0
+25 12 4 0 0
+25 12 5 0 0
+25 12 6 0 0
+25 12 7 0 0
+25 12 8 0 0
+25 12 9 30 0
+25 12 10 67 0
+25 12 11 91 0
+25 12 12 103 0
+25 12 13 108 0
+25 12 14 67 0
+25 12 15 99 0
+25 12 16 18 0
+25 12 17 0 0
+25 12 18 0 0
+25 12 19 0 0
+25 12 20 0 0
+25 12 21 0 0
+25 12 22 0 0
+25 12 23 0 0
+25 12 24 0 0
+26 12 1 0 0
+26 12 2 0 0
+26 12 3 0 0
+26 12 4 0 0
+26 12 5 0 0
+26 12 6 0 0
+26 12 7 0 0
+26 12 8 0 0
+26 12 9 36 0
+26 12 10 61 0
+26 12 11 150 0
+26 12 12 163 90
+26 12 13 161 0
+26 12 14 135 86
+26 12 15 87 156
+26 12 16 51 334
+26 12 17 0 0
+26 12 18 0 0
+26 12 19 0 0
+26 12 20 0 0
+26 12 21 0 0
+26 12 22 0 0
+26 12 23 0 0
+26 12 24 0 0
+27 12 1 0 0
+27 12 2 0 0
+27 12 3 0 0
+27 12 4 0 0
+27 12 5 0 0
+27 12 6 0 0
+27 12 7 0 0
+27 12 8 0 0
+27 12 9 88 314
+27 12 10 97 0
+27 12 11 169 89
+27 12 12 113 0
+27 12 13 256 92
+27 12 14 159 353
+27 12 15 133 79
+27 12 16 27 59
+27 12 17 0 0
+27 12 18 0 0
+27 12 19 0 0
+27 12 20 0 0
+27 12 21 0 0
+27 12 22 0 0
+27 12 23 0 0
+27 12 24 0 0
+28 12 1 0 0
+28 12 2 0 0
+28 12 3 0 0
+28 12 4 0 0
+28 12 5 0 0
+28 12 6 0 0
+28 12 7 0 0
+28 12 8 0 0
+28 12 9 89 512
+28 12 10 198 580
+28 12 11 173 270
+28 12 12 271 278
+28 12 13 284 369
+28 12 14 177 267
+28 12 15 159 241
+28 12 16 39 58
+28 12 17 0 0
+28 12 18 0 0
+28 12 19 0 0
+28 12 20 0 0
+28 12 21 0 0
+28 12 22 0 0
+28 12 23 0 0
+28 12 24 0 0
+29 12 1 0 0
+29 12 2 0 0
+29 12 3 0 0
+29 12 4 0 0
+29 12 5 0 0
+29 12 6 0 0
+29 12 7 0 0
+29 12 8 0 0
+29 12 9 16 63
+29 12 10 153 164
+29 12 11 309 446
+29 12 12 374 830
+29 12 13 399 827
+29 12 14 339 796
+29 12 15 239 721
+29 12 16 100 528
+29 12 17 0 0
+29 12 18 0 0
+29 12 19 0 0
+29 12 20 0 0
+29 12 21 0 0
+29 12 22 0 0
+29 12 23 0 0
+29 12 24 0 0
+30 12 1 0 0
+30 12 2 0 0
+30 12 3 0 0
+30 12 4 0 0
+30 12 5 0 0
+30 12 6 0 0
+30 12 7 0 0
+30 12 8 0 0
+30 12 9 65 254
+30 12 10 178 410
+30 12 11 183 177
+30 12 12 254 0
+30 12 13 261 0
+30 12 14 181 88
+30 12 15 66 0
+30 12 16 51 58
+30 12 17 0 0
+30 12 18 0 0
+30 12 19 0 0
+30 12 20 0 0
+30 12 21 0 0
+30 12 22 0 0
+30 12 23 0 0
+30 12 24 0 0
+31 12 1 0 0
+31 12 2 0 0
+31 12 3 0 0
+31 12 4 0 0
+31 12 5 0 0
+31 12 6 0 0
+31 12 7 0 0
+31 12 8 0 0
+31 12 9 52 0
+31 12 10 111 0
+31 12 11 63 0
+31 12 12 189 0
+31 12 13 187 0
+31 12 14 121 0
+31 12 15 109 0
+31 12 16 49 0
+31 12 17 0 0
+31 12 18 0 0
+31 12 19 0 0
+31 12 20 0 0
+31 12 21 0 0
+31 12 22 0 0
+31 12 23 0 0
+31 12 24 0 0
diff --git a/hub/unittests/tests_data/neighbours.geojson b/hub/unittests/tests_data/neighbours.geojson
index 65149ee9..437bf551 100644
--- a/hub/unittests/tests_data/neighbours.geojson
+++ b/hub/unittests/tests_data/neighbours.geojson
@@ -12,18 +12,18 @@
-73.580414175680588,
45.497641136608358
],
- [
- -73.581414175680588,
- 45.497641136608358
- ],
- [
- -73.581414175680588,
- 45.498641136608358
- ],
[
-73.580414175680588,
45.498641136608358
],
+ [
+ -73.581414175680588,
+ 45.498641136608358
+ ],
+ [
+ -73.581414175680588,
+ 45.497641136608358
+ ],
[
-73.580414175680588,
45.497641136608358
@@ -204,19 +204,20 @@
[
-73.581414175680588,
45.497641136608358
+ ]
+ ,
+ [
+ -73.581414175680588,
+ 45.498441136608358
+ ],
+ [
+ -73.582214175680588,
+ 45.498441136608358
],
[
-73.582214175680588,
45.497641136608358
],
- [
- -73.582214175680588,
- 45.498441136608358
- ],
- [
- -73.581414175680588,
- 45.498441136608358
- ],
[
-73.581414175680588,
45.497641136608358
@@ -399,31 +400,30 @@
-73.581914175680588,
45.498441136608358
],
- [
- -73.581914175680588,
- 45.499641136608358
- ],
- [
- -73.580914175680588,
- 45.499641136608358
- ],
- [
- -73.580914175680588,
- 45.498641136608358
- ],
- [
- -73.581414175680588,
- 45.498641136608358
- ],
[
-73.581414175680588,
45.498441136608358
],
+ [
+ -73.581414175680588,
+ 45.498641136608358
+ ],
+ [
+ -73.580914175680588,
+ 45.498641136608358
+ ],
+ [
+ -73.580914175680588,
+ 45.499641136608358
+ ],
+ [
+ -73.581914175680588,
+ 45.499641136608358
+ ],
[
-73.581914175680588,
45.498441136608358
]
-
]
]
},
diff --git a/hub/unittests/tests_data/w2w_user_output.csv b/hub/unittests/tests_data/w2w_user_output.csv
new file mode 100644
index 00000000..bb3612ff
--- /dev/null
+++ b/hub/unittests/tests_data/w2w_user_output.csv
@@ -0,0 +1,14 @@
+,Monthly HP Electricity Demand (kWh),Monthly Fuel Consumption of Auxiliary Heater (m3)
+Jan,1031544.62,24276356.0
+Feb,874352.562,19785768.0
+Mar,691775.25,117312.656
+Apr,280416.469,-0.0
+May,0.0,40314676.0
+Jun,0.0,5447721.0
+Jul,0.0,1187115.88
+Aug,0.0,1961530.88
+Sept,0.0,20623850.0
+Oct,191220.531,-0.0
+Nov,423974.062,-0.0
+Dec,848334.875,6793204.5
+Total,4341618.369,120507534.91600001
diff --git a/hub/version.py b/hub/version.py
index 95b32a5c..56020e2f 100644
--- a/hub/version.py
+++ b/hub/version.py
@@ -1 +1 @@
-__version__ = '0.1.7.9'
+__version__ = '0.1.7.11'
diff --git a/hub/requirements.txt b/requirements.txt
similarity index 89%
rename from hub/requirements.txt
rename to requirements.txt
index aefb96c6..72293904 100644
--- a/hub/requirements.txt
+++ b/requirements.txt
@@ -22,4 +22,6 @@ bcrypt==4.0.1
shapely
geopandas
triangle
-psycopg2-binary
\ No newline at end of file
+psycopg2-binary
+Pillow
+pathlib
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 0053ffc1..bbc2f8f3 100644
--- a/setup.py
+++ b/setup.py
@@ -5,13 +5,12 @@ from distutils.util import convert_path
import pkg_resources
from setuptools import setup
-with pathlib.Path('hub/requirements.txt').open() as r:
+with pathlib.Path('requirements.txt').open() as r:
install_requires = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(r)
]
-
install_requires.append('setuptools')
main_ns = {}
@@ -81,8 +80,9 @@ setup(
'hub.imports'
],
setup_requires=install_requires,
+ install_requires=install_requires,
data_files=[
- ('hub', glob.glob('hub/requirements.txt')),
+ ('hub', glob.glob('requirements.txt')),
('hub/config', glob.glob('hub/config/*.ini')),
('hub/catalog_factories/greenery/ecore_greenery', glob.glob('hub/catalog_factories/greenery/ecore_greenery/*.ecore')),
('hub/data/construction.', glob.glob('hub/data/construction/*')),