Identify AIS base stations and high-speed craft
Source:R/AISidentify_stations_aircraft.R
AISidentify_stations_aircraft.RdIdentify AIS base stations and high-speed craft
Value
The input AIS data with the following additional columns:
station: Whether the MMSI is classified as a base station.high_speed: Whether the MMSI is classified as a high-speed craft.n_point_mmsi_initial_data: Number of valid AIS positions for the MMSI.id_mmsi_point_initial: Sequential identifier of each AIS position.
Examples
if (FALSE) { # \dontrun{
library(AISanalyze)
data("ais")
ais <- ais %>%
dplyr::mutate(timestamp = as.numeric(lubridate::ymd_hms(datetime))) %>%
AIStravel(.)
out <- AISidentify_stations_aircraft(ais_data = ais)} # }