xydata: numeric -- data frame with columns 'X' and 'Y'
containing spatial coordinates
keepExtra: logical -- if TRUE, retain any additional columns from the input data frame 'xydata'.
pts: numeric -- data frame with columns 'X' and 'Y'
pt: numeric -- data frame with columns 'X' and 'Y' and ONE row
Details
Uses the function chull() in the package grDevices. By default, it ignores all columns other than X and Y; however, the user can choose to retain additional columns in xydata
by specifying keepExtra=TRUE.
Returns
PolySet with columns PID, POS, X, Y, and additional columns in xydata if keepExtra=TRUE.
Auxiliary dot function '.closestPoint' returns a vector of length 'pts' where TRUE indicates that the point is closest to 'pt'. Returns several TRUE values when several points are equidistant.
local(envir=.PBSmapEnv,expr={ oldpar = par(no.readonly=TRUE) data(surveyData,envir=.PBSmapEnv)#--- plot the convex hull, and then plot the points plotMap(calcConvexHull(surveyData),col="moccasin") addPoints(surveyData,col="blue",pch=17,cex=.6) par(oldpar)})