createSpeciesFolders {camtrapR} | R Documentation |
Create species directories for species identification
Description
This function creates species subdirectories within station directories. They can be used for species identification by manually moving images into the respective species directories. The function can also delete empty species directories (if species were not detected at sites). It is not necessary to run this function if animals will be identified by metadata tagging.
Usage
createSpeciesFolders(inDir, hasCameraFolders, species, removeFolders = FALSE)
Arguments
inDir |
character. Directory containing camera trap images sorted into station subdirectories (e.g. inDir/StationA/) |
hasCameraFolders |
logical. Do the station directories in |
species |
character. names of species directories to be created in
every station (or station/camera) subdirectory of |
removeFolders |
logical. Indicating whether to create (TRUE) or remove (FALSE) species directories . |
Details
This function should be run after imageRename
. Empty
directories can be created as containers for species identification if
images are identified with the drag & drop method. After species
identification is complete, empty species directories can be deleted using
removeFolders = TRUE
. The function will delete only directories which
are specified in species
. If hasCameraFolders
was set to
TRUE
in function imageRename
, hasCameraFolders
must be set to TRUE
here too. Species directories will then be
created within each camera subdirectory of each station directory. if the
user wishes to identify species by metadata tagging, running this function
is not needed.
Value
A data.frame
with directory names and an indicator for
whether directories were created or deleted.
Author(s)
Juergen Niedballa
Examples
## Not run:
# create dummy directories for tests
# (normally, you'd use directory containing renamed, unsorted images)
# this will be used as inDir
wd_createDirTest <- file.path(getwd(), "createSpeciesFoldersTest")
# now we create 2 station subdirectories
dirs_to_create <- file.path(wd_createDirTest, c("StationA", "StationB"))
sapply(dirs_to_create, FUN = dir.create, recursive = TRUE)
# species names for which we want to create subdirectories
species <- c("Sambar Deer", "Bay Cat")
# create species subdirectories
SpecFolderCreate1 <- createSpeciesFolders (inDir = wd_createDirTest,
species = species,
hasCameraFolders = FALSE,
removeFolders = FALSE)
SpecFolderCreate1
# check if directories were created
list.dirs(wd_createDirTest)
# delete empty species directories
SpecFolderCreate2 <- createSpeciesFolders (inDir = wd_createDirTest,
species = species,
hasCameraFolders = FALSE,
removeFolders = TRUE)
SpecFolderCreate2
# check if species directories were deleted
list.dirs(wd_createDirTest)
## End(Not run)