├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── load_hook.R ├── read_exif.R └── utils.R ├── README.Rmd ├── README.md ├── codecov.yml ├── cran-comments.md ├── data-raw ├── update_internal_exifr.R └── update_internal_exifr.sh ├── exifr.Rproj ├── inst └── images │ ├── Canon.jpg │ └── binary_tag.JPG ├── man ├── configure_exiftool.Rd ├── exiftool_call.Rd └── read_exif.Rd └── tests ├── testthat.R └── testthat ├── test_read_exif.R └── test_utils.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/load_hook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/R/load_hook.R -------------------------------------------------------------------------------- /R/read_exif.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/R/read_exif.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/update_internal_exifr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/data-raw/update_internal_exifr.R -------------------------------------------------------------------------------- /data-raw/update_internal_exifr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/data-raw/update_internal_exifr.sh -------------------------------------------------------------------------------- /exifr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/exifr.Rproj -------------------------------------------------------------------------------- /inst/images/Canon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/inst/images/Canon.jpg -------------------------------------------------------------------------------- /inst/images/binary_tag.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/inst/images/binary_tag.JPG -------------------------------------------------------------------------------- /man/configure_exiftool.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/man/configure_exiftool.Rd -------------------------------------------------------------------------------- /man/exiftool_call.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/man/exiftool_call.Rd -------------------------------------------------------------------------------- /man/read_exif.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/man/read_exif.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_read_exif.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/tests/testthat/test_read_exif.R -------------------------------------------------------------------------------- /tests/testthat/test_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paleolimbot/exifr/HEAD/tests/testthat/test_utils.R --------------------------------------------------------------------------------