Skip to contents

Get the name of the satellite(s) from a records or an rtoi

Usage

sat_name(x)

# S4 method for records
sat_name(x)

# S4 method for rtoi
sat_name(x)

Arguments

x

a records or an rtoi object.

Value

the name of the satellite

Examples

if (FALSE) {
# load example rtoi
file.copy(from=system.file("ex/Navarre",package="rsat"),
         to=tempdir(),
         recursive = TRUE)

navarre <- read_rtoi(file.path(tempdir(),"Navarre"))
# get the records
rcds <- records(navarre)
# coerce the records to dataframe
sat_name(rcds)
}