max_area_increase: Determine the point of maximum area increase

Description Usage Arguments Author(s) Examples

View source: R/maximum_area_increase.R

Description

This function helps finding the point of maximum area increase

Usage

1
max_area_increase(project_CRS, sites_table, xy, x_axis_steps)

Arguments

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

Author(s)

David N. Matzig

Examples

 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

ISAAKiel/lecAAR documentation built on Oct. 30, 2019, 7:16 p.m.