Combines all of routines in rCAT to process multiple species for AOO, EOO etc.
ConBatch(taxa, lat, long, cellsize, project2gether)
field which defines a list of species or taxa
field which defines the latitude set of points
field which defines the longtitude set of points
cell length in metres used to for AOO projection N.B. IUCN recommend 2000 m (ie 2 km)
TRUE or FALSE, TRUE all data is projected together using the centre of all latitudes and longtitudes. FALSE each species is projected separately. Default = FALSE
dataframe with; taxa ,Number of points, Area of the enclosing recetangle, EOO Area in km2, AOO area in km2, EOO IUCN category, AOO IUCN category
taxa | NOP | MER | EOOkm2 | AOO2km | EOOcat | AOOcat | |
1 | species x | 14 | 918562.259811711 | 585915.607417865 | 14 | LC | EN |
2 | species y | 124 | 1717224.64389286 | 634149.482670821 | 124 | LC | EN |
3 | species z | 61 | 22622717.2314339 | 17839113.1220552 | 61 | LC | EN |
4 | species w | 1130 | 509390660.388499 | 506445176.073246 | 1130 | LC | VU |
This function expects a list of taxa and latitudes and longitudes.ie
species_w | 85.388000 | 84.33100 |
species_w | -45.467000 | 88.41500 |
species_w | -34.339000 | -149.52600 |
species_x | -29.620000 | 79.11900 |
species_x | 33.409000 | -33.94700 |
species_x | 64.692000 | -149.18900 |
species_y | 2.308000 | -140.21900 |
species_y | 41.452000 | -3.65600 |
species_y | -30.475000 | -129.99600 |
etc
Bachman, S., Moat, J., Hill, A.W., de Torre, J., Scott, B., 2011. Supporting Red List threat assessments with GeoCAT: geospatial conservation assessment tool. Zookeys 126, 117<U+2013>26. doi:10.3897/zookeys.150.2109
Moat, J. F. 2007. Conservation assessment tools extension for ArcView 3.x, version 1.2. Retrieved from http://www.kew.org/gis/projects/cats/catsdoc.pdf
Moat, J., Bachman, S.,(2017) GeoCAT Geospatial Conservation Assessment Tool [WWW Document]. URL http://geocat.kew.org/
Joppa, L.N., Butchart, S.H.M., Hoffmann, M., Bachman, S.P., Ak<U+00E7>akaya, H.R., Moat, J.F., B<U+00F6>hm, M., Holland, R.A., Newton, A., Polidoro, B., Hughes, A., 2016. Impact of alternative metrics on estimates of extent of occurrence for extinction risk assessment. Conserv. Biol. 30, 362<U+2013>370. doi:10.1111/cobi.12591
MER
for Minimum Enclosing Rectangle calculations, EOOarea
for EOO calculations, EOORating
for EOO Ratings, AOOsimp
for AOO calculations, AOORating
for AOO Ratings,
# NOT RUN {
lat <- runif (200,-24,-12)
long <- runif (200,43,51)
spa <- rep('aa',50)
spb <- rep('bb',150)
mydata <- data.frame(species=c(spa,spb),lat,long)
resultsdf <- ConBatch(mydata$species,mydata$lat,mydata$long,2000,FALSE)
# }
Run the code above in your browser using DataLab