Skip to content
Prev 10423 / 29559 Next

INTAMAP--->GeoTIFF

Hi Tarek,
You can generate the GeoTIFF with a call to writeGDAL with the results 
of the interpolation, which will be in output$predictions:
 > writeGDAL(output$predictions, fname = "result.tif", drivername = "GTiff")
You will then get a GeoTIFF with two bands - the interpolation and the 
kriging variance. If you are just interested in the interpolation 
result, you can instead call:
 > writeGDAL(output$predictions[,"var1.pred"], fname = "result.tif", 
drivername = "GTiff")


Cheers,
Jon