Description Usage Arguments Author(s) See Also Examples
View source: R/plotOrnithoRaster.R
Rasterize point distribution data and plot the result as heatmap.
1 2 | plotOrnithoRaster(x, map, model = "maxInd",
col, gridcol = "grey25", legend)
|
x |
an object of class |
map |
an object of class |
model |
a character string that gives the raster model that will be applied for species with more than |
col |
a nine-level color palette for the frequency classes of the discretized bird count data. |
gridcol |
a character string giving the color of the grid for plotting; setting |
legend |
logical indicating if a legend of frequency classes should be plotted. |
Simon Thorn and Christoph Heibl
plotOrnithoPoints
for plotting the raw vector data; plotOrnithoMap
for plotting a base map with topographical features; plotOrnitho
for the top-level plotting function.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | data(amsel)
data(hessen_map)
par(mfcol = c(1, 3), mar = c(5, 0, 5, 0))
plotOrnithoRaster(amsel, hessen_map, model = "sumObs",
legend = FALSE)
title(main = "sumObs",
sub = "Sum of observations")
plotOrnithoRaster(amsel, hessen_map, model = "sumInd",
legend = FALSE)
title(main = "sumInd",
sub = "Sum of all counts")
plotOrnithoRaster(amsel, hessen_map,
legend = FALSE)
title(main = "maxInd",
sub = "Highest count of individuals")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.