coords = Coordinates({'foo': [1, 2]}) + Coordinates({'bar': [1, 2, 3]})
coordsCoordinates:
* foo (foo) int64 16B 1 2
* bar (bar) int64 24B 1 2 3
Adding two Coordinates objects combines their coordinates.
Define the + operator for Coordinates to combine the coordinates:
Coordinates:
* foo (foo) int64 16B 1 2
* bar (bar) int64 24B 1 2 3
Return coordinates not in other coordinates.
Return tuple of sizes of the coordinates.
Return product of coordinate lengths.
Return coordinates in self and other.
Return true if all coordinates in other are in self, otherwise false.