fmexample {fmesher} | R Documentation |
Example mesh data
Description
This is an example data set used for fmesher
package examples.
Usage
fmexample
Format
The data is a list containing these elements:
loc
:A
matrix
of points.loc_sf
:An
sfc
version ofloc
.loc_sp
:A
SpatialPoints
version ofloc
.boundary_fm
:A
fm_segm_list
of twofm_segm
objects used in the mesh construction.boundary_sf
:An
sfc
list version ofboundary
.boundary_sp
:An
SpatialPolygons
list version ofboundary
.mesh
:An
fm_mesh_2d()
object.
Source
Generated by data-raw/fmexample.R
.
Examples
if (require(ggplot2, quietly = TRUE)) {
ggplot() +
geom_sf(data = fm_as_sfc(fmexample$mesh)) +
geom_sf(data = fmexample$boundary_sf[[1]], fill = "red", alpha = 0.5)
}
[Package fmesher version 0.1.7 Index]