Skip to content

Commit

Permalink
Implementing manhole bottom level calculation algorithm (#209).
Browse files Browse the repository at this point in the history
  • Loading branch information
ldebek committed Feb 28, 2024
1 parent 8f7c8e8 commit 65c6083
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions threedi_schematisation_editor/processing/algorithms_edits.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ def processAlgorithm(self, parameters, context, feedback):
invert_level_end_point = pipe_feat["invert_level_end_point"]
if invert_level_start_point != NULL:
node_adjacent_invert_levels[pipe_start_node_id].add(invert_level_start_point)
node_adjacent_invert_levels[pipe_end_node_id].add(invert_level_start_point)
if invert_level_end_point != NULL:
node_adjacent_invert_levels[pipe_start_node_id].add(invert_level_end_point)
node_adjacent_invert_levels[pipe_end_node_id].add(invert_level_end_point)
bottom_level_changes = {}
for manhole_feat in manhole_lyr.getFeatures(request):
Expand Down

0 comments on commit 65c6083

Please sign in to comment.