plotSat | R Documentation |
Plot tracking data on a satellite map. This function only works with longitude
and latitude values (not with UTM coordinates), and uses the package ggmap
to fetch a satellite image from Google. An Internet connection is required to use
this function.
plotSat(
data,
zoom = NULL,
location = NULL,
segments = TRUE,
compact = TRUE,
col = NULL,
alpha = 1,
size = 1,
states = NULL,
animals = NULL,
ask = TRUE,
return = FALSE
)
data |
Data frame of the data, with necessary fields 'x' (longitude values) and 'y' (latitude values). |
zoom |
The zoom level, as defined for |
location |
Location of the center of the map to be plotted. |
segments |
|
compact |
|
col |
Palette of colours to use for the dots and segments. If not specified, uses default palette. |
alpha |
Transparency argument for |
size |
Size argument for |
states |
A sequence of integers, corresponding to the decoded states for these data (such that the observations are colored by states). |
animals |
Vector of indices or IDs of animals/tracks to be plotted.
Default: |
ask |
If |
return |
If |
If the plot displays the message "Sorry, we have no imagery here", try a lower level of zoom.
D. Kahle and H. Wickham. ggmap: Spatial Visualization with ggplot2. The R Journal, 5(1), 144-161. URL: http://journal.r-project.org/archive/2013-1/kahle-wickham.pdf
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.