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