Idf factory can export now one building in kelowna
This commit is contained in:
parent
e1f0f47bd0
commit
f1d23a056b
|
@ -3,12 +3,10 @@ Connection 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 TypeVar
|
||||
|
||||
Edge = TypeVar['Edge']
|
||||
Lane = TypeVar['Lane']
|
||||
from city_model_structure.attributes.edge import Edge
|
||||
from city_model_structure.transport.lane import Lane
|
||||
|
||||
|
||||
class Connection:
|
||||
|
|
|
@ -3,57 +3,23 @@ Crossing 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, TypeVar
|
||||
|
||||
Edge = TypeVar['Edge']
|
||||
Node = TypeVar['Node']
|
||||
from typing import List
|
||||
from city_model_structure.transport.traffic_node import TrafficNode
|
||||
|
||||
|
||||
class Crossing:
|
||||
class Crossing(TrafficNode):
|
||||
"""
|
||||
Crossing class
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
self._node = None
|
||||
self._edges = None
|
||||
self._priority = None
|
||||
self._width = None
|
||||
self._shape = None
|
||||
|
||||
@property
|
||||
def node(self) -> Node:
|
||||
"""
|
||||
The node at which this crossing is located
|
||||
:return: Node
|
||||
"""
|
||||
return self._node
|
||||
|
||||
@node.setter
|
||||
def node(self, value):
|
||||
"""
|
||||
The node at which this crossing is located setter
|
||||
:param value: Node
|
||||
"""
|
||||
self._node = value
|
||||
|
||||
@property
|
||||
def edges(self) -> List[Edge]:
|
||||
"""
|
||||
The (road) edges which are crossed
|
||||
:return: [Edge]
|
||||
"""
|
||||
return self._edges
|
||||
|
||||
@edges.setter
|
||||
def edges(self, value):
|
||||
"""
|
||||
The (road) edges which are crossed setter
|
||||
:param value: [Edge]
|
||||
"""
|
||||
self._edges = value
|
||||
def __init__(self, name, coordinates, priority, width, shape=None, edges=None):
|
||||
super().__init__(name, coordinates, edges)
|
||||
self._priority = priority
|
||||
self._width = width
|
||||
self._shape = shape
|
||||
|
||||
@property
|
||||
def priority(self):
|
||||
|
|
|
@ -3,20 +3,21 @@ Roundabout 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, TypeVar
|
||||
|
||||
Edge = TypeVar['Edge']
|
||||
from city_model_structure.transport.traffic_node import TrafficNode
|
||||
from city_model_structure.attributes.edge import Edge
|
||||
from typing import List
|
||||
|
||||
|
||||
class Roundabout:
|
||||
class Roundabout(TrafficNode):
|
||||
"""
|
||||
Roundabout class
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
self._edges = None
|
||||
def __init__(self, name, coordinates, edges=None):
|
||||
super().__init__(name, coordinates, edges)
|
||||
|
||||
@property
|
||||
def edges(self) -> List[Edge]:
|
||||
|
|
Loading…
Reference in New Issue
Block a user