areal_calc {extRatum}R Documentation

Areal data calculation

Description

Computes three different summary statistics: (1) TotalArea total area of each polygon; (2) AreaCovered area covered by a multipolygon object within a high order polygon; and, (3) Ratio ratio between AreaCovered and TotalArea i.e. ratio between an area covered by a given set of features and total area of a higher-order geography polygon.

Usage

areal_calc(polygon_layer, higher_geo_lay, unique_id_code, crs)

Arguments

polygon_layer

multipolygon object of class sf, sfc or sfg.

higher_geo_lay

multipolygon object of class sf, sfc or sfg.

unique_id_code

a string; indicating a unique ID column of higher_geo_lay, used as the summary areas.

crs

coordinate reference system: integer with the EPSG code, or character based on proj4string.

Details

The function requires two sets of polygon data: high-order and low-order geographic polygons

Value

a tibble data frame object containing four columns is returned:

Examples

## Run areal_calc() using the packages' dummy data sets.
## The data sets are georeferenced on wgs84. However, a planar system is used to measure areas.
## For the examples provided here, points and polygons relate to the United Kingdom.
## So the British National Grid is used.

## Not run:
#outcome <- areal_calc(polygon_layer = pol_small,
#higher_geo_lay = pol_large,
#unique_id_code = "large_pol_",
#crs = "epsg:27700")
## End(Not run)



[Package extRatum version 1.0.4 Index]