38 lines
909 B
Python
38 lines
909 B
Python
"""
|
|
Walking area module
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
|
Contributor Milad milad.aghamohamadnia@concordia.ca
|
|
Contributor Guille guille.gutierrezmorote@concordia.ca
|
|
"""
|
|
|
|
from typing import List
|
|
from city_model_structure.transport.traffic_node import TrafficNode
|
|
|
|
|
|
class WalkwayNode(TrafficNode):
|
|
"""
|
|
WalkingArea class
|
|
"""
|
|
|
|
def __init__(self, name, coordinates, edges=None, shape=None):
|
|
super().__init__(name, coordinates, edges)
|
|
self._edges = edges
|
|
self._shape = shape
|
|
|
|
@property
|
|
def shape(self) -> List[List[float]]:
|
|
"""
|
|
List of positions (positions in m)
|
|
:return: [[x, y, (z)]]
|
|
"""
|
|
return self._shape
|
|
|
|
@shape.setter
|
|
def shape(self, value):
|
|
"""
|
|
List of positions setter
|
|
:param value: [[x, y, (z)]]
|
|
"""
|
|
self._shape = value
|