hub/city_model_structure/transport/traffic_network.py

27 lines
651 B
Python
Raw Normal View History

"""
2021-08-17 12:52:48 -04:00
Traffic network 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
2021-08-17 12:52:48 -04:00
Contributor Guille guille.gutierrezmorote@concordia.ca
"""
2021-08-17 12:52:48 -04:00
from city_model_structure.network import Network
2021-08-17 12:52:48 -04:00
class TrafficNetwork(Network):
"""
2021-10-18 16:07:18 -04:00
TrafficNetwork(Network) class
"""
2021-08-17 12:52:48 -04:00
def __init__(self, name, edges=None, nodes=None):
super().__init__(name, edges, nodes)
self._type = "TrafficNetwork"
@property
def type(self):
"""
Get network type
:return: str
"""
return self._type