city_retrofit/imports/usage_factory.py

39 lines
1.2 KiB
Python

"""
UsageFactory retrieve the specific usage module for the given region
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
from pathlib import Path
from imports.usage_feeders.de_usage_parameters import DeUsageParameters
from imports.usage_feeders.us_new_york_city_usage_parameters import UsNewYorkCityUsageParameters
from imports.usage_feeders.ca_usage_parameters import CaUsageParameters
class UsageFactory:
"""
UsageFactory class
"""
def __init__(self, handler, city, base_path=Path(Path(__file__).parent.parent / 'data/usage')):
self._handler = '_' + handler.lower().replace(' ', '_')
self._city = city
self._base_path = base_path
def _us_new_york(self):
UsNewYorkCityUsageParameters(self._city, self._base_path).enrich_buildings()
def _ca(self):
CaUsageParameters(self._city, self._base_path).enrich_buildings()
def _de(self):
DeUsageParameters(self._city, self._base_path).enrich_buildings()
def _es(self):
raise Exception('Not implemented')
def enrich(self):
"""
Enrich the city with the usage information
:return: None
"""
getattr(self, self._handler, lambda: None)()