system_assignation/imports/construction_factory.py
Pilar 1d4841df83 city_objects_clusters are now city_objects
test_sensors_factory.py passes
2021-06-03 15:56:59 -04:00

35 lines
1.1 KiB
Python

"""
ConstructionFactory (before PhysicsFactory) retrieve the specific construction module for the given region
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
from imports.construction.us_physics_parameters import UsPhysicsParameters
from imports.construction.ca_physics_parameters import CaPhysicsParameters
from pathlib import Path
class ConstructionFactory:
"""
PhysicsFactor class
"""
def __init__(self, handler, city, base_path=Path(Path(__file__).parent.parent / 'data/construction')):
self._handler = '_' + handler.lower().replace(' ', '_')
self._city = city
self._base_path = base_path
def _nrel(self):
UsPhysicsParameters(self._city, self._base_path).enrich_buildings()
def _nrcan(self):
CaPhysicsParameters(self._city, self._base_path).enrich_buildings()
def _other_construction_library_format(self):
raise NotImplementedError
def enrich(self):
"""
Enrich the city with the construction information
:return: None
"""
getattr(self, self._handler, lambda: None)()