Description Usage Arguments Value Author(s) See Also Examples
Create an object of class ornithoMap
, which holds vector maps for plotting grids, administrative borders and water bodies together with ornitho data.
1 | ornithoMap(grid4, border, river, lake, district)
|
grid4 |
an object of class |
border |
an object of class |
river |
an object of class |
lake |
an object of class |
what |
see function crop.border. |
to |
see function crop.border. |
type |
see function openmap. |
district |
a character string giving the name of an administrative subunit; may be missing (default) to use the entire area. |
an object of class ornithoMap
.
Christoph Heibl
a description of the class ornithoMap
; read.ornitho
for importing and ornithoPDF
for plotting ornitho
monitoring data.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## load map data
data(hessen_grid)
data(hessen_border)
data(hessen_river)
data(hessen_lake)
## create ornithoMap object
hessen_map <- ornithoMap(
grid4 = hessen_grid,
border = hessen_border,
river = hessen_river,
lake = hessen_lake
)
## see a short summary
print(hessen_map)
## plot map
opar <- par()$mar
par(mar = rep(0, 4))
plotOrnithoMap(hessen_map)
par(mar = opar)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.