I would like to use an equivalent to scipy griddata because of an error appears :
QH7074 qhull warning: more than 16777215 ridges. ID field overflows and two ridges
may have the same identifier. Otherwise output ok.
which sometimes kill my calculation or just very slow...
Currently i have :
test_interp= griddata((xx_points.flatten(),yy_points.flatten()),values.flatten(), (xi+X,yi+V), method='linear',fill_value=nan)