Description Usage Arguments Value Note See Also Examples
View source: R/MapCanvas-methods.R
The canvas is a regular grid of a given resolution. Each range map is overlayed onto the canvas and the results saved to project.
1 2 3 | canvas.save(con)
canvas.fetch(con)
|
con |
An sqlite connection pointing to a valid |
canvas.fetch
Returns a
SpatialPixelsDataFrame
object.
The method canvasSave() fails if grid.size
was not set and if
the canvas was already constructed for the given project.
1 2 3 4 5 6 7 8 | wd = tempdir()
dbcon = rangeMap.start(file = "test.sqlite", overwrite = TRUE, dir = wd)
global.bbox.save(con = dbcon)
gridSize.save(dbcon, gridSize = 2)
canvas.save(dbcon)
cnv = canvas.fetch(dbcon)
summary(cnv)
plot(cnv, col = 'grey', axes = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.