spatial_resolution {bdclean} | R Documentation |
Clean data based on spatial resolution
spatial_resolution(bddata, res = 100)
bddata |
Bio diversity data in a data frame |
res |
The highest coordinate uncertainty required |
When resolution is 100 meters, Coordinate Uncertainties below 100 meters will pass.
When resolution is 100 meters, Coordinate Uncertainties above 100 meters will fail.
coordinateUncertaintyInMeters
spatial
if(interactive()){
library(rgbif)
occdat <- occ_data(
country = 'AU', # Country code for australia
classKey = 359, # Class code for mammalia
limit = 50 # Get only 50 records
)
myData <- occdat$data
responses <- spatial_resolution(myData, 1500)
}