The length of point_columns is fixed to three which is outdated now because we have n dimensional fields.
@point_columns.setter
def point_columns(self, val):
if len(val) != 3:
msg = f"Cannot change column names with a list of lenght {len(val)}."
raise ValueError(msg)
self.data = self.data.rename(dict(zip(self.point_columns, val)), axis=1)
self._point_columns = list(val)
The length of
point_columnsis fixed to three which is outdated now because we have n dimensional fields.