R/polysph.area.Wr.R

Defines functions polysph.area.Wr

Documented in polysph.area.Wr

polysph.area.Wr <- function(method="grid", ...) {
	stopifnot(method=="integral" || method=="grid" || method=="exact")
	areaWr <- switch(method,
  		"grid"={polysph.area.Wr.grid(...)},
		"integral"= {polysph.area.Wr.int(...)},
		"exact"={polysph.area.Wr.exact(...)}
		)
	areaWr
}
baddstats/spherstat documentation built on Feb. 6, 2023, 1:45 a.m.