{pannotator}

Lifecycle: experimental Codecov test coverage

pannotator

The Panospheric Image Annotator in R (pannotator) software package provides an easy-to-use interface for visualising 360 degree camera images on satellite imagery and annotating the images with data selected from user-defined drop-down menus. It is designed for use in ecological and biogeographical research but can be used to extract data from any spatially explicit 360 degree camera imagery.

The current app includes:

For a fuller walkthrough of setup, configuration, annotation workflows, and export options, see the package vignette.

Installation

Minimum Requirements

To use this package, please ensure your system meets the following minimum requirements:

Additionally, ensure that all necessary system dependencies are installed for optimal performance.

Below is some code to help ensure all dependencies are met:

The software makes extensive use of ExifTool by Phil Harvey (Exiftool.org). To make installation of ExifTool accessible in R there is a package exiftoolr that you must install by running the code below.

# First check if you have exiftoolr installed
check_for_package <- system.file(package = "exiftoolr")
print(check_for_package)

# If not run the following code
if (check_for_package == "") {
  print("exiftoolr package not found .....installing now")
  install.packages("exiftoolr")
} else {
  print("exiftoolr package is already installed")
}

Now that you have installed exiftoolr we can check to make sure that ExifTool is on your system. You can also check and install ExifTool from the System Dependencies section in the app Settings panel.

library(exiftoolr)  
check_for_ExifTool <- exiftoolr::exif_version(quiet = TRUE)

# Install ExifTool if not found
if (exists("check_for_ExifTool")) {
  print("ExifTool found on system")
  exiftoolr::exif_version()
} else {
  print("ExifTool not found ... installing now")   
  exiftoolr::install_exiftool()
}

Running the Package

To run the application use the following code.

library(pannotator)

options(shiny.port = httpuv::randomPort(), shiny.launch.browser = .rs.invokeShinyWindowExternal, shiny.maxRequestSize = 9000 * 1024^2)

run_app()

# Optional: launch with a project-specific YAML file exported from Settings
# run_app(projectSettingsFile = "C:/path/to/project.yml")

By default run_app() uses the regular user settings created by the package. If you export a project YAML from the Settings panel you can pass it back into run_app(projectSettingsFile = ...) to reopen the app with project-specific layout, lookup, and map/image settings.

Help Vignette

If you want help you can find it using the following code:

vignette('pannotator', package = 'pannotator')