temporal_resolution {bdclean} | R Documentation |
Clean data based on temporal resolution
temporal_resolution(bddata, res = "Day")
bddata |
Bio diversity data in a data frame |
res |
restriction of records with/without data, month, year fields |
When resolution is day, records with day specified will pass.
When resolution is month, records with NA/empty month specified will fail.
day, month, year
temporal
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 <- taxo_level(temporal_resolution, 'Day')
}