move (version 3.2.2)

licenseTerms: Extract the license terms of a Move or MoveStack object

Description

The licenseTerms method returns or sets the license terms of a track from a Move or MoveStack object.

Usage

# S4 method for .MoveGeneral
licenseTerms(obj)
  # S4 method for .MoveGeneral
licenseTerms(obj) <- value

Arguments

obj

a move, moveStack or moveBurst object

value

license terms with class character

Value

character string of the license terms

See Also

citations

Examples

Run this code
# NOT RUN {
  data(leroy)
  licenseTerms(leroy) #get the license from a Move object
  
  ## change the license and set it for a Move object
  licenseTerms(leroy) <- "use of data only permitted after obtaining licence from the PI" 
 
  data(fishers)
  licenseTerms(fishers) #get the license from a MoveStack object
  
  ## change the license and set it for a MoveStack object
  licenseTerms(fishers) <- "use of data only permitted after obtaining licence from the PI"
# }

Run the code above in your browser using DataLab