unmakeVGAGraph {alcyon} | R Documentation |
Unmake the graph in a PointMap
Description
Unmake the graph in a PointMap
Usage
unmakeVGAGraph(pointMap, removeLinks = FALSE, copyMap = TRUE, verbose = FALSE)
Arguments
pointMap |
The input PointMap |
removeLinks |
Also remove the links |
copyMap |
Optional. Copy the internal sala map |
verbose |
Optional. Show more information of the process. |
Value
A new PointMap without the points graph
Examples
mifFile <- system.file(
"extdata", "testdata", "simple",
"simple_interior.mif",
package = "alcyon"
)
sfMap <- st_read(mifFile,
geometry_column = 1L, quiet = TRUE
)
shapeMap <- as(sfMap[, vector()], "ShapeMap")
pointMap <- makeVGAPointMap(
sfMap,
gridSize = 0.5,
fillX = 3.01,
fillY = 6.7,
maxVisibility = NA,
boundaryGraph = FALSE,
verbose = FALSE
)
unmakeVGAGraph(
pointMap = pointMap,
removeLinks = FALSE
)
[Package alcyon version 0.4.0 Index]