Merge several indicators which have been aggregated to the same area of interest.

merge_indicators(aoi_sf, id_col, ...)

Arguments

aoi_sf

sf of geometry type polygon with matching geometries for all indicators to be merged

id_col

Name of the column to merge the indicators

...

indicators to be merged

Value

sf of geometry type polygon including the values of all input indicators

Examples

if (FALSE) { data(testdata) merged_sf <- merge_indicators( aoi_sf = testdata$grid_500m, id_col = "id", aggregated_sf_1, aggregated_sf_2, aggregated_sf_3, ... ) }