Description Usage Arguments Author(s) Examples
View source: R/maximum_area_increase.R
This function helps finding the point of maximum area increase
1 | max_area_increase(project_CRS, sites_table, xy, x_axis_steps)
|
project_CRS |
Coordinate Reference System of Project. Unit has to be metres. |
sites_table |
Dataframe or tibble containing individual sites in each row with two separate columns containing the coordinates |
xy |
Dataframe or tibble containing the coordinates in two separate columns |
x_axis_steps |
Steps on x-axis in metres. Default is 10 |
David N. Matzig
1 2 3 4 5 6 7 8 9 10 | # provide CRS and data
project_CRS <- "+init=epsg:32634"
sites_table <- bronze_age_fortifications
xy <- sites_table[,c("xUTM","yUTM")]
# plot ratio of area increase
max_area_increase(project_CRS, sites_table, xy)
# set value for level of maximum area increase
max_increase <- 10
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.