city_retrofit/city_model_structure/attributes/edge.py

47 lines
941 B
Python
Raw Normal View History

2021-08-17 12:52:48 -04:00
"""
Node module
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
Contributor Milad milad.aghamohamadnia@concordia.ca
"""
import uuid
from city_model_structure.attributes.node import Node
from typing import List
class Edge:
"""
Generic edge class to be used as base for the network edges
"""
2021-08-17 13:30:51 -04:00
def __init__(self, name, nodes=None):
if nodes is None:
nodes = []
2021-08-17 12:52:48 -04:00
self._name = name
self._id = None
self._nodes = nodes
@property
def name(self):
"""
Edge name
"""
return self._name
@property
def id(self):
"""
Edge id, an universally unique identifier randomly generated
:return: str
"""
if self._id is None:
self._id = uuid.uuid4()
return self._id
@property
def nodes(self) -> List[Node]:
"""
Delimiting nodes for the edge
"""
return self._nodes