forked from s_ranjbar/city_retrofit
34 lines
1011 B
Python
34 lines
1011 B
Python
"""
|
|
EnergySystemsFactory retrieve the energy system module for the given region
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Pilar Monsalvete pilar.monsalvete@concordi.ca
|
|
"""
|
|
from pathlib import Path
|
|
from imports.energy_systems.xlsx_heat_pump_parameters import XlsxHeatPumpParameters
|
|
|
|
|
|
class EnergySystemsFactory:
|
|
"""
|
|
EnergySystemsFactory class
|
|
"""
|
|
|
|
def __init__(self, handler, city, base_path=None):
|
|
if base_path is None:
|
|
base_path = Path(Path(__file__).parent.parent / 'data/energy_systems')
|
|
self._handler = '_' + handler.lower().replace(' ', '_')
|
|
self._city = city
|
|
self._base_path = base_path
|
|
|
|
def _xlsx_heat_pump(self):
|
|
"""
|
|
Enrich the city by using xlsx heat pump information
|
|
"""
|
|
XlsxHeatPumpParameters(self._city, self._base_path).enrich_city()
|
|
|
|
def enrich(self):
|
|
"""
|
|
Enrich the city given to the class using the class given handler
|
|
:return: None
|
|
"""
|
|
getattr(self, self._handler, lambda: None)()
|