Skip to content

Commit

Permalink
Merge pull request #754 from RWTH-EBC/issue683_fix_visualization
Browse files Browse the repository at this point in the history
fix outer area calculation for visualization
  • Loading branch information
DaJansenGit authored Apr 26, 2024
2 parents 7035647 + 1ddeb21 commit 0e56eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teaser/data/output/reports/model_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def create_model_report(prj, path):
# make sure that lowest values of orient come first
sorted_keys = sorted(outer_areas.keys())
sorted_outer_areas = {key: outer_areas[key] for key in sorted_keys}
for orient in outer_areas:
for orient in sorted_outer_areas:
# some archetypes use floats, some integers for orientation in
# TEASER
orient = float(orient)
Expand Down

0 comments on commit 0e56eee

Please sign in to comment.