This is my first question. I am new to python so please bear with me. I have a shapefile that contains data as given below.
ID Data geometry
111 0.1 POINT(X,Y)
112 0.2 POINT(X,Y)
113 0.5 POINT(X,Y)
114 NaN POINT(X,Y)
115 0.3 POINT(X,Y)
116 NaN POINT(X,Y)
117 NaN POINT(X,Y)
I want to fill missing values in Column "Data" using spatial interpolation.
I have tried this tutorial https://www.youtube.com/watch?v=OfC3KpL4PRw but it adds a lot of extra coordinates to my data. Is there any simpler way to fill those missing points using spatial interpolation?