span function

Span of polygons

Span of polygons

Compute the approximate surface span of polygons in longitude and latitude direction. Span is computed by rasterizing the polygons; and precision increases with the number of 'scan lines'. You can either use a fixed number of scan lines for each polygon, or a fixed band-width.

span(x, ...)

Arguments

  • x: a SpatialPolygons* object or a 2-column matrix (longitude/latitude)
  • ...: Additional arguments, see Details

Details

The following additional arguments can be passed, to replace default values for this function

nbandsCharacter. Method to determine the number of bands to 'scan' the polygon. Either 'fixed' or 'variable'
nInteger >= 1. If nbands='fixed' , how many bands should be used
resNumeric. If nbands='variable' , what should the bandwidth be (in degrees)?
funLogical. A function such as mean or min. Mean computes the average span
...further additional arguments passed to distGeo

Returns

A list, or a matrix if a function fun is specified. Values are in the units of r (default is meter)

Author(s)

Robert J. Hijmans

Examples

pol <- rbind(c(-180,-20), c(-160,5), c(-60, 0), c(-160,-60), c(-180,-20)) plot(pol) lines(pol) # lon and lat span in m span(pol, fun=max) x <- span(pol) max(x$latspan) mean(x$latspan) plot(x$longitude, x$lonspan)
  • Maintainer: Robert J. Hijmans
  • License: GPL (>= 3)
  • Last published: 2024-10-04

Useful links