signed_area | R Documentation |
Functions to calculate different types of area for polygons.
signed_area(x)
unsigned_area(x)
signed_area_cd(x)
unsigned_area_cd(x)
signed_area_geodesic(x)
unsigned_area_geodesic(x)
x |
an object of class |
functions assume counter clock-wise winding in accordance with the simple feature access standard
functions ending in _cd
use the Chamberlain-Duquette algorithm for spherical area
Chamberlain-Duquette and Geodesic areas are returned in meters squared and assume non-planar geometries
See geo docs for more:
a numeric vector of the area contained by the geometry
x <- c(0, 1, 1, 0, 0)
y <- c(0, 0, 1, 1, 0)
p <- geom_polygon(x, y)
signed_area(p)
unsigned_area(p)
signed_area_cd(p)
unsigned_area_cd(p)
signed_area_geodesic(p)
unsigned_area_geodesic(p)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.