34 lines
818 B
Python
34 lines
818 B
Python
"""
|
|
bixi_feature module
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
|
"""
|
|
from city_model_structure.city_object import CityObject
|
|
|
|
|
|
class BixiFeature(CityObject):
|
|
"""
|
|
BixiFeature(CityObject) class
|
|
"""
|
|
def __init__(self, lod, surfaces, name, feature_type, coordinates):
|
|
super().__init__(lod, surfaces, name, [])
|
|
self._feature_type = feature_type
|
|
self._coordinates = coordinates
|
|
self._type = 'bixi_feature'
|
|
|
|
@property
|
|
def feature_type(self):
|
|
"""
|
|
Get type of bixi feature
|
|
:return: feature_type
|
|
"""
|
|
return self._feature_type
|
|
|
|
@property
|
|
def gps_coordinates(self):
|
|
"""
|
|
Get bixi feature coordinates
|
|
:return: [x, y, z]
|
|
"""
|
|
return self._coordinates
|