We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75dc853 commit 0e9f23fCopy full SHA for 0e9f23f
Scripts/assignment/emme_bindings/mock_project.py
@@ -712,6 +712,9 @@ def id(self):
712
def outgoing_segments(self, include_hidden=False):
713
return (s for s in self.network.transit_segments(include_hidden)
714
if s.i_node is self)
715
+
716
+ def incoming_links(self):
717
+ return (l for l in self.network.links() if l.j_node is self)
718
719
class Link(NetworkObject):
720
def __init__(self,
0 commit comments