summer_course_2024/city_model_structure/buildings_cluster.py

40 lines
953 B
Python
Raw Normal View History

2021-06-03 11:23:09 -04:00
"""
BuildingsCluster module
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
2021-06-03 11:23:09 -04:00
"""
from typing import List, TypeVar
from city_model_structure.city_objects_cluster import CityObjectsCluster
CityObject = TypeVar('CityObject')
2021-06-03 11:23:09 -04:00
class BuildingsCluster(CityObjectsCluster):
"""
BuildingsCluster(CityObjectsCluster) class
"""
def __init__(self, name, city_objects):
self._cluster_type = 'buildings'
super().__init__(name, self._cluster_type, city_objects)
self._name = name
self._city_objects = city_objects
@property
def type(self):
"""
Get cluster type
:return: str
"""
2021-06-03 11:23:09 -04:00
return self._cluster_type
@property
def city_objects(self) -> List[CityObject]:
"""
Get the list of city objects conforming the cluster
:return: [CityObject]
"""
2021-06-03 11:23:09 -04:00
return self._city_objects