https://www.geeksforgeeks.org/scipy-stats-binned_statistic_dd-function-python/
binned_statistic_dd return mean/count/etc... value in each grid cell.
I'd want concatenate each original point in one cell with the retuned mean value.
How to reverse indexing this mean values to original points.?
points = [[x_c1, y_c1], [x_c1, y_c1], [x_c2, y_c2]...]
mean_values= [m1, m2, ...]
result = [[x_c1, y_c1, m1], [x_c1, y_c1, m1], [x_c2, y_c2, m2]
binned_statistic_dd