forked from s_ranjbar/city_retrofit
231 lines
5.8 KiB
Python
231 lines
5.8 KiB
Python
"""
|
|
CityObject module
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
"""
|
|
|
|
import math
|
|
from typing import List, Union
|
|
|
|
|
|
from city_model_structure.iot.sensor import Sensor
|
|
from city_model_structure.building_demand.surface import Surface
|
|
from city_model_structure.attributes.polyhedron import Polyhedron
|
|
from helpers.configuration_helper import ConfigurationHelper
|
|
|
|
|
|
class CityObject:
|
|
"""
|
|
class CityObject
|
|
"""
|
|
def __init__(self, name, lod, surfaces, city_lower_corner):
|
|
self._name = name
|
|
self._lod = lod
|
|
self._surfaces = surfaces
|
|
self._city_lower_corner = city_lower_corner
|
|
self._type = None
|
|
self._city_object_lower_corner = None
|
|
self._detailed_polyhedron = None
|
|
self._simplified_polyhedron = None
|
|
self._min_x = ConfigurationHelper().max_coordinate
|
|
self._min_y = ConfigurationHelper().max_coordinate
|
|
self._min_z = ConfigurationHelper().max_coordinate
|
|
self._centroid = None
|
|
self._external_temperature = dict()
|
|
self._global_horizontal = dict()
|
|
self._diffuse = dict()
|
|
self._beam = dict()
|
|
self._sensors = []
|
|
|
|
@property
|
|
def lod(self):
|
|
"""
|
|
Get city object level of detail 1, 2, 3 or 4
|
|
:return: int
|
|
"""
|
|
lod = math.log(self._lod, 2) + 1
|
|
return lod
|
|
|
|
@property
|
|
def type(self):
|
|
"""
|
|
Get city object type
|
|
:return: str
|
|
"""
|
|
return self._type
|
|
|
|
@property
|
|
def volume(self):
|
|
"""
|
|
Get city object volume in cubic meters
|
|
:return: float
|
|
"""
|
|
return self.simplified_polyhedron.volume
|
|
|
|
@property
|
|
def detailed_polyhedron(self) -> Polyhedron:
|
|
"""
|
|
Get city object polyhedron including details such as holes
|
|
:return: Polyhedron
|
|
"""
|
|
if self._detailed_polyhedron is None:
|
|
polygons = []
|
|
for surface in self.surfaces:
|
|
polygons.append(surface.solid_polygon)
|
|
if surface.holes_polygons is not None:
|
|
for hole_polygon in surface.holes_polygons:
|
|
polygons.append(hole_polygon)
|
|
self._detailed_polyhedron = Polyhedron(polygons)
|
|
return self._detailed_polyhedron
|
|
|
|
@property
|
|
def simplified_polyhedron(self) -> Polyhedron:
|
|
"""
|
|
Get city object polyhedron, just the simple lod2 representation
|
|
:return: Polyhedron
|
|
"""
|
|
if self._simplified_polyhedron is None:
|
|
polygons = []
|
|
for surface in self.surfaces:
|
|
polygons.append(surface.perimeter_polygon)
|
|
self._simplified_polyhedron = Polyhedron(polygons)
|
|
return self._simplified_polyhedron
|
|
|
|
@property
|
|
def surfaces(self) -> List[Surface]:
|
|
"""
|
|
Get city object surfaces
|
|
:return: [Surface]
|
|
"""
|
|
return self._surfaces
|
|
|
|
def surface(self, name) -> Union[Surface, None]:
|
|
"""
|
|
Get the city object surface with a given name
|
|
:param name: str
|
|
:return: None or Surface
|
|
"""
|
|
for s in self.surfaces:
|
|
if s.name == name:
|
|
return s
|
|
return None
|
|
|
|
def surface_by_id(self, identification_number) -> Union[Surface, None]:
|
|
"""
|
|
Get the city object surface with a given name
|
|
:param identification_number: str
|
|
:return: None or Surface
|
|
"""
|
|
for s in self.surfaces:
|
|
if str(s.id) == str(identification_number):
|
|
return s
|
|
return None
|
|
|
|
@property
|
|
def centroid(self) -> List[float]:
|
|
"""
|
|
Get city object centroid
|
|
:return: [x,y,z]
|
|
"""
|
|
if self._centroid is None:
|
|
self._centroid = self.simplified_polyhedron.centroid
|
|
return self._centroid
|
|
|
|
@property
|
|
def max_height(self):
|
|
"""
|
|
Get city object maximal height in meters
|
|
:return: float
|
|
"""
|
|
return self.simplified_polyhedron.max_z
|
|
|
|
@property
|
|
def external_temperature(self) -> dict:
|
|
"""
|
|
Get external temperature surrounding the city object in Celsius
|
|
:return: dict{DataFrame(float)}
|
|
"""
|
|
return self._external_temperature
|
|
|
|
@external_temperature.setter
|
|
def external_temperature(self, value):
|
|
"""
|
|
Set external temperature surrounding the city object in Celsius
|
|
:param value: dict{DataFrame(float)}
|
|
"""
|
|
self._external_temperature = value
|
|
|
|
@property
|
|
def global_horizontal(self) -> dict:
|
|
"""
|
|
Get global horizontal radiation surrounding the city object in W/m2
|
|
:return: dict{DataFrame(float)}
|
|
"""
|
|
return self._global_horizontal
|
|
|
|
@global_horizontal.setter
|
|
def global_horizontal(self, value):
|
|
"""
|
|
Set global horizontal radiation surrounding the city object in W/m2
|
|
:param value: dict{DataFrame(float)}
|
|
"""
|
|
self._global_horizontal = value
|
|
|
|
@property
|
|
def diffuse(self) -> dict:
|
|
"""
|
|
Get diffuse radiation surrounding the city object in W/m2
|
|
:return: dict{DataFrame(float)}
|
|
"""
|
|
return self._diffuse
|
|
|
|
@diffuse.setter
|
|
def diffuse(self, value):
|
|
"""
|
|
Set diffuse radiation surrounding the city object in W/m2
|
|
:param value: dict{DataFrame(float)}
|
|
"""
|
|
self._diffuse = value
|
|
|
|
@property
|
|
def beam(self) -> dict:
|
|
"""
|
|
Get beam radiation surrounding the city object in W/m2
|
|
:return: dict{DataFrame(float)}
|
|
"""
|
|
return self._beam
|
|
|
|
@beam.setter
|
|
def beam(self, value):
|
|
"""
|
|
Set beam radiation surrounding the city object in W/m2
|
|
:param value: dict{DataFrame(float)}
|
|
"""
|
|
self._beam = value
|
|
|
|
@property
|
|
def lower_corner(self):
|
|
"""
|
|
Get city object lower corner coordinates [x, y, z]
|
|
:return: [x,y,z]
|
|
"""
|
|
if self._city_object_lower_corner is None:
|
|
self._city_object_lower_corner = [self._min_x, self._min_y, self._min_z]
|
|
return self._city_object_lower_corner
|
|
|
|
@property
|
|
def sensors(self) -> List[Sensor]:
|
|
"""
|
|
Get sensors belonging to the city object
|
|
:return: [Sensor]
|
|
"""
|
|
return self._sensors
|
|
|
|
@sensors.setter
|
|
def sensors(self, value):
|
|
"""
|
|
Set sensors belonging to the city object
|
|
:param value: [Sensor]
|
|
"""
|
|
self._sensors = value
|