hub/factories/physics_factory.py

43 lines
1.3 KiB
Python
Raw Normal View History

2020-06-09 14:07:47 -04:00
"""
PhysicsFactory retrieve the specific physics module for the given region
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
2020-10-29 08:16:48 -04:00
from factories.physics_feeders.us_new_york_city_physics_parameters import UsNewYorkCityPhysicsParameters
from factories.physics_feeders.us_physics_parameters import UsPhysicsParameters
2021-01-05 15:01:36 -05:00
from factories.physics_feeders.ca_physics_parameters import CaPhysicsParameters
from pathlib import Path
class PhysicsFactory:
"""
PhysicsFactor class
"""
2020-06-29 19:52:05 -04:00
def __init__(self, handler, city, base_path=Path(Path(__file__).parent.parent / 'data/physics')):
self._handler = '_' + handler.lower().replace(' ', '_')
self._city = city
self._base_path = base_path
self.factory()
def _us_new_york(self):
UsNewYorkCityPhysicsParameters(self._city, self._base_path).enrich_buildings()
def _us(self):
UsPhysicsParameters(self._city, self._base_path).enrich_buildings()
def _ca(self):
CaPhysicsParameters(self._city, self._base_path).enrich_buildings()
def _de(self):
2020-10-21 09:53:07 -04:00
raise NotImplementedError
def _es(self):
2020-10-21 09:53:07 -04:00
raise NotImplementedError
def factory(self):
"""
Enrich the city with the physics information
:return: None
"""
getattr(self, self._handler, lambda: None)()