I am trying to do automatic mapping. I want to have a uncertainty map , which uncertainties are displayed by isolines. I want to export these isolines and the values associated with them and then display them through web map service. Is it possible? by following code you can produce the contour lines
require(gstat)
require(lattice)
data(meuse)
data(meuse.grid)
coordinates(meuse) = ~x+y
gridded(meuse.grid) = ~x+y
m <- vgm(.59, "Sph", 874, .04)
# ordinary kriging:
x <- krige(log(zinc)~1, meuse, meuse.grid, model = m)
l=as.data.frame(x)
contourplot(var1.var ~ x+y,data=l,cuts=10)