Extract the citation of a Move or MoveStack object
citations.Rd
The citations method returns or sets the citation of a track from a Move or MoveStack object.
Usage
# S4 method for class '.MoveGeneral'
citations(obj)
# S4 method for class '.MoveGeneral'
citations(obj) <- value
Examples
data(leroy)
citations(leroy) #get the citation from a Move object
#> character(0)
citations(leroy) <- "No paper available" #change the citation and set it for a Move object
data(fishers)
citations(fishers) #get the citation from a MoveStack object
#> character(0)
citations(fishers) <- "Nothing to cite" #change the citation and set it for a MoveStack object