""" 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 """ from physics.physics_feeders.us_new_york_city_physics_parameters import UsNewYorkCityPhysicsParameters from physics.physics_feeders.us_physics_parameters import UsPhysicsParameters from pathlib import Path class PhysicsFactory: """ PhysicsFactor class """ def __init__(self, handler, city, base_path=Path(Path.cwd().parent / 'libs/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) def _us(self): UsPhysicsParameters(self._city, self._base_path) def _ca(self): raise Exception('Not implemented') def _de(self): raise Exception('Not implemented') def _es(self): raise Exception('Not implemented') def factory(self): """ Enrich the city with the physics information :return: None """ getattr(self, self._handler, lambda: None)()