powered by
Plot GEOS geometries
# S3 method for geos_geometry plot( x, ..., asp = 1, bbox = NULL, xlab = "", ylab = "", rule = "evenodd", add = FALSE, simplify = 1, crop = TRUE )
The input, invisibly
A GEOS geometry vector
Passed to plotting functions for features: graphics::points() for point and multipoint geometries, graphics::lines() for linestring and multilinestring geometries, and graphics::polypath() for polygon and multipolygon geometries.
graphics::points()
graphics::lines()
graphics::polypath()
Passed to graphics::plot()
graphics::plot()
The limits of the plot as a rct() or compatible object
rct()
The rule to use for filling polygons (see graphics::polypath())
Should a new plot be created, or should handleable be added to the existing plot?
handleable
A relative tolerance to use for simplification of geometries. Use 0 to disable simplification; use a higher number to make simplification coarser.
Use TRUE to crop the input to the extent of the plot.
TRUE
plot(as_geos_geometry("LINESTRING (0 0, 1 1)")) plot(as_geos_geometry("POINT (0.5 0.4)"), add = TRUE)
Run the code above in your browser using DataLab