Skip to content

Commit

Permalink
Merge pull request #749 from pyiron/tet2
Browse files Browse the repository at this point in the history
StructurePlots: Correctly label crystal systems
  • Loading branch information
pmrv committed Sep 12, 2022
2 parents f53c8e6 + 16c33ad commit 9c41c37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyiron_atomistics/atomistics/structure/structurestorage.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,11 @@ def get_crystal_system(num):
elif num in range(3, 16):
return "monoclinic"
elif num in range(16, 75):
return "orthorombic"
return "orthorhombic"
elif num in range(75, 143):
return "trigonal"
elif num in range(143, 168):
return "tetragonal"
elif num in range(143, 168):
return "trigonal"
elif num in range(168, 195):
return "hexagonal"
elif num in range(195, 230):
Expand Down

0 comments on commit 9c41c37

Please sign in to comment.