Interpolations.jl icon indicating copy to clipboard operation
Interpolations.jl copied to clipboard

Interpolating 2D non-uniform Data

Open cdelv opened this issue 1 year ago • 1 comments

Hi, I have data of a 2D function (W(x, y)) in a non-uniform grid. Here you can see how it looks like:

data = CSV.read(file_path, DataFrame)
W = data[:,2]
x = data[:,3]
y = data[:,4]
plotscatter(x, y, W)

image

As the data is non-uniform, I can't seem to manage to make it work with the interpolator, but I really need to create an interpolator for this data. Does someone know how to do it?

Best Regards.

cdelv avatar Aug 28 '23 02:08 cdelv

Try https://github.com/eljungsk/ScatteredInterpolation.jl

mkitti avatar Aug 28 '23 11:08 mkitti