plot_distr {ElevDistr} | R Documentation |
Plot the sampled area
Description
With this function it is possible to plot the analyzed area. However you need to register a APIs. If you are not willing to do this, you cannot plot and the function will throw a warning. See: https://www.rdocumentation.org/packages/ggmap/versions/3.0.0.
Usage
plot_distr(nearestCorner, grid, treelineDf, size = 12)
Arguments
nearestCorner |
A list containing the longitude and the latitude (WGS 84) of the point which is used to load the map. The values must be of the data type "numeric" and finite. |
grid |
Data frame generated by the function |
treelineDf |
A data frame containing line-shaped polygons. Each row containing: a identifier, a start latitude and longitude, a end latitude and longitude (all WGS 84). All longitude and latitude parameters must be of the type "numeric" and finite. |
size |
Map zoom, for the "get_map" function of the "ggmap" library. One value, data type "integer", finite and in the range from 3 to 21. |
Value
Nothing.
Author(s)
Livio Bätscher, Jurriaan M. de Vos
Examples
## Not run:
plot_distr(nearestCorner = pointsAboveTreeLine, grid = dfGrid, treelineDf = dfTreeline,
size = 12)
## End(Not run)