(self, name)
| 47 | self.create() |
| 48 | |
| 49 | def getGroupName(self, name): |
| 50 | if "|" in name: |
| 51 | info = name.split("|") |
| 52 | sortName = "".join(c for c in info[0] if c.isupper()) |
| 53 | return f"{sortName[2:]}_{info[1]}" |
| 54 | else: |
| 55 | return name |
| 56 | |
| 57 | def makePoint(self, pl): |
| 58 | """Function to define a Point from |