roughsf {roughsf}R Documentation

Create a rough map

Description

plot a sf map using rough.js

Usage

roughsf(
  layers,
  roughness = 1,
  bowing = 1,
  simplification = 1,
  font = "30px Arial",
  title = NULL,
  title_font = "30px Arial",
  caption = NULL,
  caption_font = "30px Arial",
  width = NULL,
  height = NULL,
  elementId = NULL,
  chunk_name = "canvas"
)

Arguments

layers

an sf object or a list of sf object. each object should only contain one type of geometry.

roughness

numeric vector for roughness of lines

bowing

numeric vector for bowing of lines

simplification

simplify drawings (remove points from objects)

font

font size and font family for labels

title

optional title of the map

title_font

font size and font family for title

caption

optional caption of the map

caption_font

font size and font family for caption

width

width

height

height

elementId

DOM id

chunk_name

markdown specific

Details

The following attributes are supported for POLYGONS:

The following attributes are supported for LINESTRINGS:

The following attributes are supported for POINTS:

Default values are used if one of the attributes is not found.

The result of a roughsf call can be printed to file with save_roughsf()

Value

htmlwidget containing the drawn network

References

More details on roughjs can be found on https://github.com/rough-stuff/rough/wiki

Examples

library(sf)
demo(nc, ask = FALSE, echo = FALSE)
nc_poly <- st_cast(nc,"POLYGON",warn = FALSE)
roughsf(nc_poly)

[Package roughsf version 1.0.0 Index]