R/variogram.formula.R

# $Id: variogram.formula.q,v 1.8 2006-02-10 19:01:07 edzer Exp $

"variogram.formula" <-
function (object, locations = coordinates(data), data, ...) 
{
	# gstat.formula takes care of the case where locations contains
	# both data and coordinates --- see there.
	## ret = gstat.formula(object, locations, data)
	## variogram(object = ret$y, locations = ret$locations, X = ret$X, ...)
	if ((missing(locations) && is(data, "ST")) || (is(locations, "ST")))
		variogramST(formula = object, locations = locations, data = data, ...)
	else {
		g = gstat(formula = object, locations = locations, data = data)
		variogram(g, ...)
	}
}

Try the gstat package in your browser

Any scripts or data that you put into this service are public.

gstat documentation built on May 2, 2019, 4:59 p.m.