I would like to perform a bilinear interpolation for a irregular grid of height data. The sketch roughly shows my grid an some example x,y pairs.I only have the beige data points and want to interpolate everything in between. Interpolation
My y's range from 1 - 10 and my x values from 70-290. z for the pairs vary between 4880 and 5000, with the lowest values on the smaller x-values. So far I only interpolated using a linear equation (which is not a possibility this time) so I am not quite sure how to tackle this question. I was thinking about doing it in Python or R.
Edit: Some Example Data:
v1 = (85,1,4880); v2 = (284,1,5008); v3 = (91,10,4883);
v4 = (288,10,5008); v5 = (79,3,4879); v6 = (275,3,4995)