def __iter__(self): "Iterates over each point in the LineString." for i in range(self.point_count): yield self[i]