2021-05-27 17:20:06 -04:00
|
|
|
"""
|
|
|
|
TestGeometryFactory test and validate the city model structure geometric parameters
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
2022-04-08 09:35:33 -04:00
|
|
|
Copyright © 2022 Concordia CERC group
|
|
|
|
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
2021-05-27 17:20:06 -04:00
|
|
|
"""
|
2023-03-09 12:40:45 -05:00
|
|
|
|
2021-05-27 17:20:06 -04:00
|
|
|
from pathlib import Path
|
|
|
|
from unittest import TestCase
|
2023-02-23 06:56:13 -05:00
|
|
|
from hub.helpers.geometry_helper import GeometryHelper
|
2022-05-04 05:09:43 -04:00
|
|
|
|
2023-01-24 10:51:50 -05:00
|
|
|
import hub.exports.exports_factory
|
|
|
|
from hub.imports.construction_factory import ConstructionFactory
|
|
|
|
from hub.imports.geometry_factory import GeometryFactory
|
2021-05-27 17:20:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
class TestGeometryFactory(TestCase):
|
|
|
|
"""
|
|
|
|
Non-functional TestGeometryFactory
|
|
|
|
Load testing
|
|
|
|
"""
|
|
|
|
def setUp(self) -> None:
|
|
|
|
"""
|
|
|
|
Test setup
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
self._city = None
|
|
|
|
self._example_path = (Path(__file__).parent / 'tests_data').resolve()
|
2022-11-25 14:39:35 -05:00
|
|
|
self._output_path = (Path(__file__).parent / 'tests_outputs').resolve()
|
2021-05-27 17:20:06 -04:00
|
|
|
|
2022-11-25 14:39:35 -05:00
|
|
|
def _get_city(self, file, file_type, height_field=None, year_of_construction_field=None, function_field=None):
|
2022-05-03 14:50:41 -04:00
|
|
|
file_path = (self._example_path / file).resolve()
|
2022-11-25 14:39:35 -05:00
|
|
|
self._city = GeometryFactory(file_type,
|
|
|
|
path=file_path,
|
|
|
|
height_field=height_field,
|
|
|
|
year_of_construction_field=year_of_construction_field,
|
|
|
|
function_field=function_field).city
|
2022-05-03 14:50:41 -04:00
|
|
|
self.assertIsNotNone(self._city, 'city is none')
|
|
|
|
return self._city
|
|
|
|
|
2022-03-08 19:19:52 -05:00
|
|
|
def _check_buildings(self, city):
|
2021-05-27 17:20:06 -04:00
|
|
|
for building in city.buildings:
|
|
|
|
self.assertIsNotNone(building.name, 'building name is none')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertIsNotNone(building.type, 'building type is none')
|
2021-05-27 17:20:06 -04:00
|
|
|
self.assertIsNotNone(building.volume, 'building volume is none')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertIsNotNone(building.detailed_polyhedron, 'building detailed polyhedron is none')
|
|
|
|
self.assertIsNotNone(building.simplified_polyhedron, 'building simplified polyhedron is none')
|
2021-05-27 17:20:06 -04:00
|
|
|
self.assertIsNotNone(building.surfaces, 'building surfaces is none')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertIsNotNone(building.max_height, 'building max_height is none')
|
|
|
|
self.assertEqual(len(building.external_temperature), 0, 'building external temperature is calculated')
|
|
|
|
self.assertEqual(len(building.global_horizontal), 0, 'building global horizontal is calculated')
|
|
|
|
self.assertEqual(len(building.diffuse), 0, 'building diffuse is calculated')
|
|
|
|
self.assertEqual(len(building.beam), 0, 'building beam is calculated')
|
|
|
|
self.assertIsNotNone(building.lower_corner, 'building lower corner is none')
|
|
|
|
self.assertEqual(len(building.sensors), 0, 'building sensors are assigned')
|
2022-03-17 18:49:44 -04:00
|
|
|
self.assertIsNotNone(building.internal_zones, 'no internal zones created')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertIsNotNone(building.grounds, 'building grounds is none')
|
|
|
|
self.assertIsNotNone(building.walls, 'building walls is none')
|
|
|
|
self.assertIsNotNone(building.roofs, 'building roofs is none')
|
2022-03-24 16:51:01 -04:00
|
|
|
self.assertIsNotNone(building.internal_zones, 'building internal zones is none')
|
|
|
|
for internal_zone in building.internal_zones:
|
2022-12-06 15:28:59 -05:00
|
|
|
self.assertIsNone(internal_zone.usages, 'usage zones are defined')
|
2022-03-24 16:51:01 -04:00
|
|
|
self.assertIsNone(internal_zone.thermal_zones, 'thermal zones are defined')
|
2021-05-27 17:20:06 -04:00
|
|
|
self.assertIsNone(building.basement_heated, 'building basement_heated is not none')
|
|
|
|
self.assertIsNone(building.attic_heated, 'building attic_heated is not none')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertIsNone(building.terrains, 'building terrains is not none')
|
2021-05-27 17:20:06 -04:00
|
|
|
self.assertIsNone(building.average_storey_height, 'building average_storey_height is not none')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertIsNone(building.storeys_above_ground, 'building storeys_above_ground is not none')
|
|
|
|
self.assertEqual(len(building.heating), 0, 'building heating is not none')
|
|
|
|
self.assertEqual(len(building.cooling), 0, 'building cooling is not none')
|
|
|
|
self.assertIsNotNone(building.eave_height, 'building eave height is none')
|
|
|
|
self.assertIsNotNone(building.roof_type, 'building roof type is none')
|
2021-05-27 17:20:06 -04:00
|
|
|
self.assertIsNotNone(building.floor_area, 'building floor_area is none')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertIsNone(building.households, 'building households is not none')
|
|
|
|
self.assertFalse(building.is_conditioned, 'building is_conditioned is conditioned')
|
|
|
|
|
|
|
|
def _check_surfaces(self, building):
|
|
|
|
for surface in building.surfaces:
|
|
|
|
self.assertIsNotNone(surface.name, 'surface name is none')
|
|
|
|
self.assertIsNotNone(surface.id, 'surface id is none')
|
|
|
|
self.assertIsNotNone(surface.lower_corner, 'surface envelope_lower_corner is none')
|
|
|
|
self.assertIsNotNone(surface.upper_corner, 'surface envelope_upper_corner is none')
|
2022-11-08 16:28:07 -05:00
|
|
|
self.assertIsNotNone(surface.perimeter_area, 'surface area_above_ground is none')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertIsNotNone(surface.azimuth, 'surface azimuth is none')
|
|
|
|
self.assertIsNotNone(surface.inclination, 'surface inclination is none')
|
2022-11-09 14:22:26 -05:00
|
|
|
self.assertIsNotNone(surface.type, 'surface type is none')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertEqual(len(surface.global_irradiance), 0, 'global irradiance is calculated')
|
|
|
|
self.assertIsNotNone(surface.perimeter_polygon, 'surface perimeter_polygon is none')
|
|
|
|
self.assertIsNone(surface.holes_polygons, 'surface hole_polygons is not none')
|
|
|
|
self.assertIsNotNone(surface.solid_polygon, 'surface solid_polygon is none')
|
2022-11-09 14:22:26 -05:00
|
|
|
self.assertIsNone(surface.short_wave_reflectance, 'surface short_wave_reflectance is not none')
|
|
|
|
self.assertIsNone(surface.long_wave_emittance, 'surface long_wave_emittance is not none')
|
|
|
|
self.assertIsNotNone(surface.inverse, 'surface inverse is none')
|
|
|
|
self.assertEqual(len(surface.associated_thermal_boundaries), 0, 'associated_thermal_boundaries are assigned')
|
|
|
|
self.assertIsNone(surface.vegetation, 'surface vegetation is not none')
|
2021-05-27 17:20:06 -04:00
|
|
|
|
2022-03-08 19:19:52 -05:00
|
|
|
# citygml_classes
|
|
|
|
def test_import_citygml(self):
|
2021-06-23 09:53:33 -04:00
|
|
|
"""
|
2022-03-08 19:19:52 -05:00
|
|
|
Test city objects in the city
|
2021-06-23 09:53:33 -04:00
|
|
|
:return: None
|
|
|
|
"""
|
2022-11-25 14:39:35 -05:00
|
|
|
file = 'FZK_Haus_LoD_2.gml'
|
2023-02-23 15:40:09 -05:00
|
|
|
city = self._get_city(file, 'citygml')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertTrue(len(city.buildings) == 1)
|
|
|
|
self._check_buildings(city)
|
2021-06-23 09:53:33 -04:00
|
|
|
for building in city.buildings:
|
2022-03-08 19:19:52 -05:00
|
|
|
self._check_surfaces(building)
|
2022-05-03 14:50:41 -04:00
|
|
|
city = ConstructionFactory('nrel', city).enrich()
|
|
|
|
|
|
|
|
def test_import_rhino(self):
|
|
|
|
"""
|
|
|
|
Test rhino import
|
|
|
|
"""
|
|
|
|
file = 'dompark.3dm'
|
2022-11-25 14:39:35 -05:00
|
|
|
city = self._get_city(file, 'rhino')
|
2022-05-03 14:50:41 -04:00
|
|
|
self.assertIsNotNone(city, 'city is none')
|
|
|
|
self.assertTrue(len(city.buildings) == 36)
|
2022-05-04 05:09:43 -04:00
|
|
|
i = 0
|
2021-06-23 09:53:33 -04:00
|
|
|
|
2021-05-27 17:20:06 -04:00
|
|
|
def test_import_obj(self):
|
2021-08-27 12:51:30 -04:00
|
|
|
"""
|
|
|
|
Test obj import
|
|
|
|
"""
|
2021-05-27 17:20:06 -04:00
|
|
|
file = 'kelowna.obj'
|
2022-11-25 14:39:35 -05:00
|
|
|
city = self._get_city(file, 'obj')
|
2022-03-08 19:19:52 -05:00
|
|
|
self.assertTrue(len(city.buildings) == 1)
|
|
|
|
self._check_buildings(city)
|
2021-05-27 17:20:06 -04:00
|
|
|
for building in city.buildings:
|
2022-03-08 19:19:52 -05:00
|
|
|
self._check_surfaces(building)
|
2021-05-27 17:20:06 -04:00
|
|
|
|
2022-11-25 14:39:35 -05:00
|
|
|
def test_import_geojson(self):
|
|
|
|
"""
|
|
|
|
Test geojson import
|
|
|
|
"""
|
2023-03-10 15:15:18 -05:00
|
|
|
file = 'neighbours.geojson'
|
2022-11-25 14:39:35 -05:00
|
|
|
city = self._get_city(file, 'geojson',
|
|
|
|
height_field='citygml_me',
|
|
|
|
year_of_construction_field='ANNEE_CONS',
|
2023-02-24 07:10:13 -05:00
|
|
|
function_field='CODE_UTILI')
|
2022-11-25 14:39:35 -05:00
|
|
|
|
2023-01-24 10:51:50 -05:00
|
|
|
hub.exports.exports_factory.ExportsFactory('obj', city, self._output_path).export()
|
2022-11-28 13:44:02 -05:00
|
|
|
self.assertEqual(207, len(city.buildings), 'wrong number of buildings')
|
2022-11-25 14:39:35 -05:00
|
|
|
self._check_buildings(city)
|
2023-03-10 15:15:18 -05:00
|
|
|
for building in city.buildings:
|
|
|
|
for wall in building.walls:
|
|
|
|
self.assertIsNotNone(wall.percentage_shared, 'wall percentage shared is not assigned')
|
2023-02-23 06:56:13 -05:00
|
|
|
|
|
|
|
def test_map_neighbours(self):
|
|
|
|
"""
|
|
|
|
Test neighbours map creation
|
|
|
|
"""
|
2023-03-08 14:24:48 -05:00
|
|
|
file = 'neighbours.geojson'
|
2023-02-23 06:56:13 -05:00
|
|
|
city = self._get_city(file, 'geojson',
|
2023-02-24 07:19:01 -05:00
|
|
|
height_field='citygml_me',
|
2023-02-23 06:56:13 -05:00
|
|
|
year_of_construction_field='ANNEE_CONS',
|
|
|
|
function_field='LIBELLE_UT')
|
2023-03-08 14:24:48 -05:00
|
|
|
GeometryHelper.city_mapping(city)
|
|
|
|
for building in city.buildings:
|
|
|
|
self.assertEqual(2, len(building.neighbours))
|
|
|
|
|
2023-03-08 15:29:16 -05:00
|
|
|
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)
|
2023-03-08 14:24:48 -05:00
|
|
|
|