licenseTerms {move} | R Documentation |
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 signature '.MoveGeneral'
licenseTerms(obj)
## S4 replacement method for signature '.MoveGeneral'
licenseTerms(obj) <- value
Arguments
obj |
a |
value |
license terms with class character |
Value
character string of the license terms
Author(s)
Anne Scharf
See Also
Examples
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"
[Package move version 4.2.4 Index]