<div dir="ltr"><div>Hi GRASS-dev,<br><br></div><div>When I use r.fillnulls, I am often faced with the problem that it breaks the domain up into blocks, thus (1) creating discontinuities and/or (2) having problems in regions where there is insufficient data. (2) is important because I am often trying to just create some smooth variation between two datasets or fill in less-important regions to have a full grid to be able to run a utility or model.<br><br></div><div>My workaround as of now is this:<br><br></div><div>r.to.points in=map out=map type=point column=attrcol<br>v.surf.bspline in=map raster_output=mapSplines column=attrcol<br></div><div># But the spline fit makes the real data blurry too, so patch the spline fit<br></div><div># in-between the data points<br></div><div>r.patch in=map,mapSplines out=mapFilled<br><br></div><div>I find this to be preferable for both the reasons stated above, and was wondering if it would be worthwhile to think about including multiple methods for r.fillnulls so one could do something like this too.<br><br></div><div>Andy<br></div></div>