I have two 2-dimensional arrays:
x
array([[0, 0, 0, 0],
[1, 1, 1, 1],
[2, 2, 2, 2],
[3, 3, 3, 3],
[4, 4, 4, 4]])
y
array([[0, 1, 2, 3],
[0, 1, 2, 3],
[0, 1, 2, 3],
[0, 1, 2, 3],
[0, 1, 2, 3]])
What I would like to do is to generate a MultiPoint dataset in Geopandas, so we get:
points = MultiPoint([(0, 0), (0, 1), (0, 2), (0, 3), (1, 0), ... ])
How is this achieved?