viewFlightPath.Rd
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 )
x | data frame or list with flight logs and metadata produced by the function |
---|---|
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 |
a list with plots of the flight path with photo-identification data, if available.
Alexandre Machado
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") }