forked from s_ranjbar/city_retrofit
Fixing libs wrong commit
This commit is contained in:
parent
5281b63de2
commit
0c92e6e4ad
|
@ -22,6 +22,7 @@ class ConstructionFactory:
|
||||||
def _nrel(self):
|
def _nrel(self):
|
||||||
"""
|
"""
|
||||||
Enrich the city by using NREL information
|
Enrich the city by using NREL information
|
||||||
|
:cat:
|
||||||
"""
|
"""
|
||||||
UsPhysicsParameters(self._city, self._base_path).enrich_buildings()
|
UsPhysicsParameters(self._city, self._base_path).enrich_buildings()
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,10 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||||||
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
||||||
"""
|
"""
|
||||||
from numpy import inf
|
from numpy import inf
|
||||||
#from rhino3dm import *
|
from rhino3dm import *
|
||||||
#from rhino3dm._rhino3dm import MeshType
|
from rhino3dm._rhino3dm import MeshType
|
||||||
|
|
||||||
|
|
||||||
from city_model_structure.attributes.point import Point
|
from city_model_structure.attributes.point import Point
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,6 @@ Copyright © 2021 Project Author Guille Gutierrez guillermo.gutierrezmorote@conc
|
||||||
Contributors Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
Contributors Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
||||||
"""
|
"""
|
||||||
from pathlib import Path
|
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:
|
class SensorsFactory:
|
||||||
|
@ -26,19 +23,19 @@ class SensorsFactory:
|
||||||
"""
|
"""
|
||||||
Enrich the city by using concordia energy consumption sensors as data source
|
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):
|
def _cgf(self):
|
||||||
"""
|
"""
|
||||||
Enrich the city by using concordia gas flow sensors as data source
|
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):
|
def _ct(self):
|
||||||
"""
|
"""
|
||||||
Enrich the city by using concordia temperature sensors as data source
|
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):
|
def enrich(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user