Calculates six geographic range measures at resampled a number of time from specified sample sizes
GeoRarefaction_MultiTaxa(nLocCut = 3, OccMatrix, TaxaStart, LongPos = 1,
LatPos = 2, iter = 10, CellSize = 5, longBounds = c(-180, 180),
latBounds = c(-90, 90), steps = c(1, 50, 40, 30, 20, 10, 5),
replacePts = FALSE)
- The minimum number of locations a taxon must be seen at to have geographic range measures calculated
- A matrix where columns are taxon occurrences and also having at least longitude and latitude values
- The column index value where taxon records start
- The column index value of longitudinal coordinates in the OccMatrix
- The column index value of latitudinal coordinates in the OccMatrix
- The number of times a taxon's locations are resampled at each step size
- The size of each cell in degree X degree
- Array of longitudinal boundaries in decimal degrees
- Array of latitudinal boundaries in decimal degrees
- Array of the values representing the number of points to be subsampled for each taxon
- A logical value indicating whether points are allowed to be sampled more than once during each subsampling iteration
Returns a vector where each element is a taxon with a list of each geographic range measure as a separate matrix of values. Measures include minimum spanning tree distance, minimum convex hull area, maxmimum pairwise great circle distance, latitudinal range, longitudinal range, and number of degree X degree cells occupied.
The nLocCut parameter is the minimum number of distinct geographic locations a taxon must be observed at to have geographic range measures calcualted, if below retruns NA. The steps parameter typically begins with a 1 representing that all points should be used in calculations but this is not required. The replacePts parameter must be set to TRUE if any of the steps require a greater number of points to be sampled than there are actual locations for a taxon, otherwise the function will fail.
See the velociraptr package for details of the downloadPBDB() function
data(BivalvePBDB)
BivalveMatrix<-CoordList_PBDB(BivalvePBDB)
GeoRarefaction_MultiTaxa(nLocCut=20,OccMatrix=BivalveMatrix,TaxaStart=3,replacePts=TRUE)
Run the code above in your browser using DataLab