Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

quadrats

Quadrats


Description

Creates quadrat polygons for sampling or analysis

Usage

quadrats(x, s = 250, n = 100, r = NULL)

Arguments

x

A sp or sf polygon object defining extent

s

Radius defining single or range of sizes of quadrats

n

Number of quadrats

r

A rotation factor for random rotation, default is NULL

Value

an sp or sf polygon object with rotated polygon

Note

The radius (s) parameter can be a single value or a range of values, representing a randomization range of resulting quadrat sizes. The rotation (r) parameter can also be used to defined a fixed rotation or random range of quadrat rotations. You can specify each of these parameters using an explicit vector that will be sampled eg., seq(100,300,0.5)

Examples

library(sp)
library(raster)
library(rgeos)
data(meuse)
  coordinates(meuse) <- ~x+y
  e <- gConvexHull(meuse)

# Fixed size 250 and no rotation 
s <- quadrats(e, s = 250, n = 50)
  spplot(s, "ID")

# Variable sizes 100-300 and rotation of 0-45 degrees
s <- quadrats(e, s = c(100,300), n = 50, r = c(0,45))
  spplot(s, "ID")

# Variable sizes 100-300 and no rotation 
s <- quadrats(e, s = c(100,300), n = 50)
  spplot(s, "ID")

spatialEco

Spatial Analysis and Modelling Utilities

v1.3-6
GPL-3
Authors
Jeffrey S. Evans [aut, cre], Melanie A. Murphy [ctb], Karthik Ram [ctb]
Initial release
2021-03-24

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.