Merge several indicators which have been aggregated to the same area of interest.
merge_indicators(aoi_sf, id_col, ...)
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 |
sf of geometry type polygon including the values of all input indicators
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, ... ) }