2

I have a set of coordinates for which I want to extract temperature values from a raster. I am using the extract function from the raster library in R. Looking at the interpolation methods, there are options for simple and bilinear interpolation. I am not very familiar with raster extraction literature but I was wondering if there are other alternatives in R for other interpolation methods which give a better estimate for values at a point than bilinear interpolation. Also is bilinear the usual method used in practice? Thanks.

Nitin
  • 131
  • 3
  • 2
    Common raster interpolation methods are mentioned in the question at http://gis.stackexchange.com/questions/10931. The answers there study their properties. "Better" depends on the purpose of the interpolation and the nature of the data, though: no single interpolation method is always best in all circumstances. – whuber Jun 16 '14 at 19:29

1 Answers1

2

Bilinear its a good approach when you are working with continuous data and its very usual. Simple it's useful when you are working with discrete data, because you don’t generate new values of the variable. extract() allows other methods, using buffer and fun arguments.

Guillermo Olmedo
  • 757
  • 1
  • 5
  • 13