forked from s_ranjbar/city_retrofit
42 lines
1.2 KiB
Python
42 lines
1.2 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)()
|
|
|
|
def _enrich_debug(self):
|
|
"""
|
|
Enrich the city with the construction information
|
|
:return: None
|
|
"""
|
|
self._nrel()
|