def time_union(self): shapely.union(self.left, self.right)
def time_union_prec2(self): shapely.union(self.left, self.right, grid_size=2)
def union(self, other): """Returns the union of the geometries (Shapely geometry)""" return shapely.union(self, other)