diff --git a/DESCRIPTION b/DESCRIPTION index f88f732..784b4b6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: maimer Type: Package -Title: Edit and extract cameras trap data +Title: Handle Camera Trap Data Version: 0.2.0 -Date: 07-16-2024 +Date: 2024-08-18 Imports: bs4Dash, exifr, @@ -16,9 +16,8 @@ Authors@R: c( ) ) Maintainer: Stanislas Mahussi Gandaho -Description: maimer is an R package to manage images' metadata. - The package helps to edit and extract data from - cameras trap image or video. The Graphical User Interface integrated speeds up the process. +Description: Provided tool to edit, extract, visualize and analyze + cameras trap data. The Graphical User Interface integrated is additional tool to process image labeling/annotation. License: MIT + file LICENSE Encoding: UTF-8 LazyData: true diff --git a/man/check_sep.Rd b/man/check_sep.Rd deleted file mode 100644 index 96a4933..0000000 --- a/man/check_sep.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/utils.R -\name{check_sep} -\alias{check_sep} -\title{Check seperator} -\usage{ -check_sep(file_path) -} -\description{ -Check and return the seperator in the file (dataset to read) -} diff --git a/man/deep_list.Rd b/man/deep_list.Rd deleted file mode 100644 index 27adca2..0000000 --- a/man/deep_list.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/utils.R -\name{deep_list} -\alias{deep_list} -\title{Deep list} -\usage{ -deep_list(list_item) -} -\description{ -Convert list to tree object format for jstree library -} diff --git a/man/mm_get_metadata.Rd b/man/mm_get_metadata.Rd index 7660a99..513fe3c 100644 --- a/man/mm_get_metadata.Rd +++ b/man/mm_get_metadata.Rd @@ -39,7 +39,7 @@ metadata <- mm_get_metadata(path = image_path) # Extract metadata from all images in a directory (non-recursive) file.copy(image_path, file.path(dirname(image_path), "large2.jpeg")) -metadata_dir <- mm_get_metadata(path = dirname(image_path), ecursive = FALSE) +metadata_dir <- mm_get_metadata(path = dirname(image_path), recursive = FALSE) unlink(file.path(dirname(image_path), "large2.jpeg")) diff --git a/man/pair_to_list.Rd b/man/pair_to_list.Rd deleted file mode 100644 index a23e1ce..0000000 --- a/man/pair_to_list.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/utils.R -\name{pair_to_list} -\alias{pair_to_list} -\title{Pair to list} -\usage{ -pair_to_list(vec) -} -\description{ -unction that converts a vector into a list with pairs of elements (i.e., two-by-two) -} diff --git a/man/update_list.Rd b/man/update_list.Rd deleted file mode 100644 index 6f9df13..0000000 --- a/man/update_list.Rd +++ /dev/null @@ -1,13 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/utils.R -\name{update_list} -\alias{update_list} -\title{Update list} -\usage{ -update_list(first_list, second_list) -} -\description{ -Update an existing list basing on item in second list. -If the element is in the list, append the value from second list -and ensure the values are unique. If the element is not in the list, add it with its value -}