2024-01-25 00:57:00 -05:00
|
|
|
"""
|
2021-06-09 10:47:46 -04:00
|
|
|
TestExports test and validate the city export formats
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
2022-04-08 09:35:33 -04:00
|
|
|
Copyright © 2022 Concordia CERC group
|
|
|
|
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
|
|
Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
2021-06-09 10:47:46 -04:00
|
|
|
"""
|
2023-10-10 05:16:26 -04:00
|
|
|
import json
|
2023-10-24 02:01:57 -04:00
|
|
|
import os
|
2021-06-09 10:47:46 -04:00
|
|
|
from pathlib import Path
|
|
|
|
from unittest import TestCase
|
2023-11-03 02:21:50 -04:00
|
|
|
|
|
|
|
import hub.helpers.constants as cte
|
|
|
|
from hub.city_model_structure.city import City
|
|
|
|
from hub.exports.energy_building_exports_factory import EnergyBuildingsExportsFactory
|
|
|
|
from hub.exports.exports_factory import ExportsFactory
|
2023-01-26 05:21:34 -05:00
|
|
|
from hub.helpers.dictionaries import Dictionaries
|
2023-01-24 10:51:50 -05:00
|
|
|
from hub.imports.construction_factory import ConstructionFactory
|
2023-11-03 02:21:50 -04:00
|
|
|
from hub.imports.geometry_factory import GeometryFactory
|
2023-01-24 10:51:50 -05:00
|
|
|
from hub.imports.usage_factory import UsageFactory
|
2023-05-03 14:14:13 -04:00
|
|
|
from hub.imports.weather_factory import WeatherFactory
|
2021-06-09 10:47:46 -04:00
|
|
|
|
|
|
|
|
|
|
|
class TestExports(TestCase):
|
|
|
|
"""
|
|
|
|
TestExports class contains the unittest for export functionality
|
|
|
|
"""
|
|
|
|
def setUp(self) -> None:
|
|
|
|
"""
|
|
|
|
Test setup
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
self._city = None
|
|
|
|
self._complete_city = None
|
|
|
|
self._example_path = (Path(__file__).parent / 'tests_data').resolve()
|
|
|
|
self._output_path = (Path(__file__).parent / 'tests_outputs').resolve()
|
|
|
|
|
|
|
|
def _get_citygml(self, file):
|
|
|
|
file_path = (self._example_path / file).resolve()
|
2022-11-21 13:53:58 -05:00
|
|
|
self._city = GeometryFactory('citygml', path=file_path).city
|
2021-06-09 10:47:46 -04:00
|
|
|
self.assertIsNotNone(self._city, 'city is none')
|
|
|
|
return self._city
|
|
|
|
|
|
|
|
def _get_complete_city(self, from_pickle):
|
|
|
|
if self._complete_city is None:
|
|
|
|
if from_pickle:
|
|
|
|
file_path = (self._example_path / 'ConcordiaSWGcampus.pickle').resolve()
|
|
|
|
self._complete_city = City.load(file_path)
|
|
|
|
else:
|
|
|
|
file_path = (self._example_path / 'one_building_in_kelowna.gml').resolve()
|
|
|
|
self._complete_city = self._get_citygml(file_path)
|
2022-03-24 16:51:01 -04:00
|
|
|
for building in self._complete_city.buildings:
|
2022-12-16 07:21:33 -05:00
|
|
|
building.function = Dictionaries().hft_function_to_hub_function[building.function]
|
2022-04-26 19:14:12 -04:00
|
|
|
building.year_of_construction = 2006
|
2021-11-16 07:57:47 -05:00
|
|
|
ConstructionFactory('nrel', self._complete_city).enrich()
|
2023-01-26 06:35:55 -05:00
|
|
|
UsageFactory('nrcan', self._complete_city).enrich()
|
2022-11-07 11:49:59 -05:00
|
|
|
cli = (self._example_path / 'weather' / 'inseldb_Summerland.cli').resolve()
|
2021-06-09 10:47:46 -04:00
|
|
|
self._complete_city.climate_file = Path(cli)
|
|
|
|
self._complete_city.climate_reference_city = 'Summerland'
|
|
|
|
dummy_measures = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
|
|
|
|
for building in self._complete_city.buildings:
|
2023-08-07 12:32:33 -04:00
|
|
|
building.heating_demand[cte.MONTH] = dummy_measures
|
|
|
|
building.cooling_demand[cte.MONTH] = dummy_measures
|
|
|
|
building.heating_demand[cte.YEAR] = [0.0]
|
|
|
|
building.cooling_demand[cte.YEAR] = [0.0]
|
2021-06-09 10:47:46 -04:00
|
|
|
return self._complete_city
|
|
|
|
|
|
|
|
def _export(self, export_type, from_pickle=False):
|
|
|
|
self._complete_city = self._get_complete_city(from_pickle)
|
2023-10-10 05:16:26 -04:00
|
|
|
ExportsFactory(export_type, self._complete_city, self._output_path, base_uri='../glb').export()
|
2021-06-09 10:47:46 -04:00
|
|
|
|
2023-01-26 06:35:55 -05:00
|
|
|
def _export_building_energy(self, export_type, from_pickle=False):
|
|
|
|
self._complete_city = self._get_complete_city(from_pickle)
|
|
|
|
EnergyBuildingsExportsFactory(export_type, self._complete_city, self._output_path).export()
|
|
|
|
|
2021-06-09 10:47:46 -04:00
|
|
|
def test_obj_export(self):
|
2021-08-27 12:51:30 -04:00
|
|
|
"""
|
|
|
|
export to obj
|
|
|
|
"""
|
2021-06-10 08:29:24 -04:00
|
|
|
self._export('obj', False)
|
2021-06-09 10:47:46 -04:00
|
|
|
|
2023-10-10 05:16:26 -04:00
|
|
|
def test_cesiumjs_tileset_export(self):
|
|
|
|
"""
|
|
|
|
export to cesiumjs tileset
|
|
|
|
"""
|
|
|
|
self._export('cesiumjs_tileset', False)
|
|
|
|
tileset = Path(self._output_path / f'{self._city.name}.json')
|
|
|
|
self.assertTrue(tileset.exists())
|
|
|
|
with open(tileset, 'r') as f:
|
|
|
|
json_tileset = json.load(f)
|
|
|
|
self.assertEqual(1, len(json_tileset['root']['children']), "Wrong number of children")
|
|
|
|
|
|
|
|
def test_glb_export(self):
|
|
|
|
"""
|
|
|
|
export to glb format
|
|
|
|
"""
|
|
|
|
self._export('glb', False)
|
2023-11-03 02:21:50 -04:00
|
|
|
for building in self._city.buildings:
|
2023-10-10 05:16:26 -04:00
|
|
|
glb_file = Path(self._output_path / f'{building.name}.glb')
|
|
|
|
self.assertTrue(glb_file.exists(), f'{building.name} Building glb wasn\'t correctly generated')
|
|
|
|
|
2023-10-20 08:19:46 -04:00
|
|
|
def test_geojson_export(self):
|
|
|
|
self._export('geojson', False)
|
2023-10-24 02:00:48 -04:00
|
|
|
geojson_file = Path(self._output_path / f'{self._city.name}.geojson')
|
|
|
|
self.assertTrue(geojson_file.exists(), f'{geojson_file} doesn\'t exists')
|
|
|
|
with open(geojson_file, 'r') as f:
|
|
|
|
geojson = json.load(f)
|
|
|
|
self.assertEqual(1, len(geojson['features']), 'Wrong number of buildings')
|
|
|
|
geometry = geojson['features'][0]['geometry']
|
|
|
|
self.assertEqual('Polygon', geometry['type'], 'Wrong geometry type')
|
|
|
|
self.assertEqual(1, len(geometry['coordinates']), 'Wrong polygon structure')
|
|
|
|
self.assertEqual(11, len(geometry['coordinates'][0]), 'Wrong number of vertices')
|
2023-10-24 02:01:57 -04:00
|
|
|
os.unlink(geojson_file) # todo: this test need to cover a multipolygon example too
|
2023-10-20 08:19:46 -04:00
|
|
|
|
2021-06-09 10:47:46 -04:00
|
|
|
def test_energy_ade_export(self):
|
2021-08-27 12:51:30 -04:00
|
|
|
"""
|
|
|
|
export to energy ADE
|
|
|
|
"""
|
2023-01-26 06:35:55 -05:00
|
|
|
self._export_building_energy('energy_ade')
|
2021-06-09 10:47:46 -04:00
|
|
|
|
|
|
|
def test_sra_export(self):
|
2021-08-27 12:51:30 -04:00
|
|
|
"""
|
|
|
|
export to SRA
|
|
|
|
"""
|
2021-06-09 10:47:46 -04:00
|
|
|
self._export('sra')
|
2022-11-07 15:04:51 -05:00
|
|
|
|
|
|
|
def test_idf_export(self):
|
|
|
|
"""
|
|
|
|
export to IDF
|
|
|
|
"""
|
2023-07-13 15:53:20 -04:00
|
|
|
file = 'test.geojson'
|
2023-03-23 15:38:38 -04:00
|
|
|
file_path = (self._example_path / file).resolve()
|
2023-07-13 15:53:20 -04:00
|
|
|
city = GeometryFactory('geojson',
|
2023-03-23 15:38:38 -04:00
|
|
|
path=file_path,
|
2023-07-13 15:53:20 -04:00
|
|
|
height_field='citygml_me',
|
|
|
|
year_of_construction_field='ANNEE_CONS',
|
|
|
|
function_field='CODE_UTILI',
|
|
|
|
function_to_hub=Dictionaries().montreal_function_to_hub_function).city
|
|
|
|
|
2023-03-23 15:38:38 -04:00
|
|
|
self.assertIsNotNone(city, 'city is none')
|
2024-09-16 11:34:43 -04:00
|
|
|
#EnergyBuildingsExportsFactory('idf', city, self._output_path).export()
|
2023-04-12 10:16:14 -04:00
|
|
|
ConstructionFactory('nrcan', city).enrich()
|
2024-09-16 11:34:43 -04:00
|
|
|
# EnergyBuildingsExportsFactory('idf', city, self._output_path).export()
|
2023-03-23 15:38:38 -04:00
|
|
|
UsageFactory('nrcan', city).enrich()
|
2023-06-06 13:32:37 -04:00
|
|
|
WeatherFactory('epw', city).enrich()
|
2022-11-07 15:04:51 -05:00
|
|
|
try:
|
2024-09-12 00:57:15 -04:00
|
|
|
EnergyBuildingsExportsFactory('cerc_idf', city, self._output_path)._cerc_idf
|
|
|
|
|
2022-11-07 15:04:51 -05:00
|
|
|
except Exception:
|
|
|
|
self.fail("Idf ExportsFactory raised ExceptionType unexpectedly!")
|