Visualize the drone flight path and check for photo-identification data during the flight.

viewFlightPath(
  x,
  flightlog_datetime = NULL,
  latitude = NULL,
  longitude = NULL,
  timezone = NULL
)

Arguments

x

data frame or list with flight logs and metadata produced by the function linkMetadataToFlight().

flightlog_datetime

string giving the date-time data in flight logs

latitude

string giving the column name of latitude data in flight logs

longitude

string giving the column name of longitude data in flight logs

timezone

string. Add the correct timezone where the drone videos were taken, as per the R base notation (for additional information, see help(timezomes)). Should this argument be left empty, the time zone will be assumed to be the same as the computer system.

Value

a list with plots of the flight path with photo-identification data, if available.

Author

Alexandre Machado

Examples

if (FALSE) { myFlights <- linkMetadataToFlight(ROOTfolderpath = videofolderpath, selected_videos = selected_videos, flightlog_extension = '.csv', flightlog_datetime = "CUSTOM.updateTime", timezone = "America/Sao_Paulo", melt = TRUE) viewFlightPath(x = myFlights, flightlog_datetime = "CUSTOM.updateTime", latitude = "OSD.latitude", longitude = "OSD.longitude", timezone = "America/Sao_Paulo") }