I have a list of metars points (latitude, longitude, sea level pressure) and need to interpolate the pressure. I need 3D or 2D is fine?
I have seen Bicubic interpolation but it seems it only works for regular grids.
Here is some of the methods: Multivariate Interpolation
What is the most precise and the most adequate for my case? (I think kriging is the most precise but takes a lot of time, and the most adequate is maybe the Natural Neighbor)
Did I need to keep in memory a mesh or a grid with all interpolated points for this methods? I only want to call some function interpolate(lat, lon) and it returns the interpolated pressure for the available points.
Is there any java version of this algorithms? I only have seen this being aplied to image resizing.
I have also seen this Ruppert's algorithm.