Fixing libs wrong commit

This commit is contained in:
Guille Gutierrez 2022-03-30 13:26:31 -04:00
parent 5281b63de2
commit 0c92e6e4ad
4 changed files with 8 additions and 8 deletions

View File

@ -22,6 +22,7 @@ class ConstructionFactory:
def _nrel(self):
"""
Enrich the city by using NREL information
:cat:
"""
UsPhysicsParameters(self._city, self._base_path).enrich_buildings()

View File

@ -4,8 +4,10 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
from numpy import inf
#from rhino3dm import *
#from rhino3dm._rhino3dm import MeshType
from rhino3dm import *
from rhino3dm._rhino3dm import MeshType
from city_model_structure.attributes.point import Point
import numpy as np

View File

@ -5,9 +5,6 @@ Copyright © 2021 Project Author Guille Gutierrez guillermo.gutierrezmorote@conc
Contributors Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
from pathlib import Path
from imports.sensors.concordia_energy_consumption import ConcordiaEnergyConsumption
from imports.sensors.concordia_gas_flow import ConcordiaGasFlow
from imports.sensors.concordia_temperature import ConcordiaTemperature
class SensorsFactory:
@ -26,19 +23,19 @@ class SensorsFactory:
"""
Enrich the city by using concordia energy consumption sensors as data source
"""
ConcordiaEnergyConsumption(self._city, self._end_point, self._base_path)
raise NotImplementedError('need to be reimplemented')
def _cgf(self):
"""
Enrich the city by using concordia gas flow sensors as data source
"""
ConcordiaGasFlow(self._city, self._end_point, self._base_path)
raise NotImplementedError('need to be reimplemented')
def _ct(self):
"""
Enrich the city by using concordia temperature sensors as data source
"""
ConcordiaTemperature(self._city, self._end_point, self._base_path)
raise NotImplementedError('need to be reimplemented')
def enrich(self):
"""