ifcb_read_features.RdThis function reads feature files from a given folder, filtering them optionally based on whether they are multiblob or single blob files.
ifcb_read_features(feature_folder, multiblob = FALSE)Path to the folder containing feature files.
Logical indicating whether to filter for multiblob files (default: FALSE).
A named list of data frames, where each element corresponds to a feature file read from feature_folder.
The list is named with the base names of the feature files.
if (FALSE) {
# Read feature files from a folder
features <- ifcb_read_features("path/to/feature_folder")
# Read only multiblob feature files
multiblob_features <- ifcb_read_features("path/to/feature_folder", multiblob = TRUE)
}