trajdyn {adehabitat} | R Documentation |
This function provides an interactive version of plot.ltraj
,
for the exploration of objects of class ltraj
.
trajdyn(x, burst = attr(x[[1]], "burst"), hscale = 1, vscale = 1, recycle = TRUE, display = c("guess", "windows", "tk"), ...)
x |
an object of class ltraj |
burst |
a character string indicating the burst identity to explore |
hscale |
passed to tkrplot |
vscale |
passed to tkrplot |
recycle |
logical. Whether the trajectory should be recycled at the end of the display |
display |
type of display. The default guess uses a
windows graphics device if getOption('device')=='windows' ,
otherwise it uses tk (requiring the tkrplot package). |
... |
additional arguments to be passed to the function
plot.ltraj . |
Clement Calenge clement.calenge@oncfs.gouv.fr
ltraj
for further information on the class
ltraj
, and plot.ltraj
for information on arguments
that can be passed to this function.
## Not run: ## Without map data(puechcirc) trajdyn(puechcirc) ## With map data(puechabon) aa <- getkasc(puechabon$kasc, 1) trajdyn(puechcirc, asc = aa) ## End(Not run)