This is the result of interpolating experimental data on a finite element mesh using ResampleWithDataset filter.
The missing points along the circle have value zero (blue in the contour above) because these points were not measured or have NaN.
However, the distance to the points living on the circle is small, so I want to extrapolate (nearest neighbor, bilinear, …) to have values everywhere.
Here is a state file containing the data and the output of the filter state.pvsm (551.5 KB)
Here are the data (points and experimental values): nodes.csv (7.4 KB) data.txt (655.1 KB)
and the sequence of filters to generate the output
Is there any filter in paraview / pvpython that enables extrapolation or anything else I can do in paraview?
I could reproduce the result in your state file. Basically, you have added an selection u>=0 followed by another delaunay. The trick is that the selection u>=0 gets rid of the NaN’s in my data, hence forcing the delaunay to triangulate the entire domain resulting in interpolation everywhere, even between the hole. Is it like that?