55 lines
1.9 KiB
Python
55 lines
1.9 KiB
Python
"""
|
|
WeatherFactory retrieve the specific weather module for the given source format
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2022 Concordia CERC group
|
|
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
|
"""
|
|
import logging
|
|
from pathlib import Path
|
|
from hub.imports.weather.xls_weather_parameters import XlsWeatherParameters
|
|
from hub.imports.weather.epw_weather_parameters import EpwWeatherParameters
|
|
from hub.helpers.utils import validate_import_export_type
|
|
|
|
|
|
class WeatherFactory:
|
|
"""
|
|
WeatherFactory class
|
|
"""
|
|
|
|
def __init__(self, handler, city, base_path=None, file_name=None):
|
|
if base_path is None:
|
|
base_path = Path(Path(__file__).parent.parent / 'data/weather')
|
|
self._handler = '_' + handler.lower().replace(' ', '_')
|
|
class_funcs = validate_import_export_type(WeatherFactory)
|
|
if self._handler not in class_funcs:
|
|
error_message = f"Wrong import type. Valid functions include {class_funcs}"
|
|
logging.error(error_message)
|
|
raise Exception(error_message)
|
|
self._city = city
|
|
self._base_path = base_path
|
|
self._file_name = file_name
|
|
|
|
def _epw(self):
|
|
"""
|
|
Enrich the city with energy plus weather file
|
|
"""
|
|
# EnergyPlus Weather
|
|
# to download files: https://energyplus.net/weather
|
|
# description of the format: https://energyplus.net/sites/default/files/pdfs_v8.3.0/AuxiliaryPrograms.pdf
|
|
_path = Path(self._base_path / 'epw').resolve()
|
|
return EpwWeatherParameters(self._city, _path, self._file_name)
|
|
|
|
def _xls(self):
|
|
"""
|
|
Enrich the city with ISO_52016_1_BESTEST_ClimData_2016.08.24 weather file
|
|
"""
|
|
name = 'ISO_52016_1_BESTEST_ClimData_2016.08.24'
|
|
return XlsWeatherParameters(self._city, self._base_path, name)
|
|
|
|
def enrich(self):
|
|
"""
|
|
Enrich the city given to the class using the given weather handler
|
|
:return: None
|
|
"""
|
|
getattr(self, self._handler, lambda: None)()
|