I use a PostGIS database with temperature data. I want to use a spatial interpolation method but not the supported IDW method. I need to use kriging, but it is not part of the supported interpolation methods of PostGIS.
I found kriging interpolation method written in R. Now I want to know how can I combine the R code with the data? The problem is that I've never worked with R before.
Edit:
To clarify: I build 4 climate station with Arduino Megas. They send their climate data to PostGIS over wifi/gsm. The received data should now be spatially interpolated and saved to a new table, so I can use in GeoServer for visualisation. Only the interpolated data is shown on a map. So this all should be done on server side.