https://github.com/cran/gstat
Raw File
Tip revision: 83eabd78cec8fef7ed4c3b7bd0b911996c9957bb authored by Edzer J. Pebesma on 29 March 2005, 00:00:00 UTC
version 0.9-22
Tip revision: 83eabd7
point.in.polygon.R
point.in.polygon <- function(point.x, point.y, pol.x, pol.y) {
	as.logical(.Call("gstat_pip", as.numeric(point.x),
		as.numeric(point.y), as.numeric(pol.x), as.numeric(pol.y)))
}
back to top