ac: Spatial Accessibility measures

Description Usage Arguments Details Value Author(s) References Examples

View source: R/ac.R

Description

This function measures the accessibility certain geographical areas have to certain amenities. The former usually refer to the population residence and the latter to services such as health care, education, and culture. Several functions may define the accessibility measure. See family for further details.

Usage

1
ac(p, n, D, d0, power=2, family="SAM")

Arguments

p

is a vector that quantifies the demand for services in each location, usually the population at risk. For example, it may be the number of older people interested in geriatric services at hospitals.

n

is a vector that quantifies the supply of services in each location, usually a characteristic of the service. For example, it may be the number of beds at hospitals.

D

a matrix of a quantity separating the demand from the supply. This is usually a distance matrix, preferably using a road network distance or travel time through the road network.

d0

is the threshold distance or time that defines the catchment area (spatial kernel)

power

the power of the separation variable. This is usually 2 from the theory of the gravity model in geography.

family

a character value to define the accessibility measure function. "SAM", "2SFCA", "KD2SFCA", "Hansen". Default is "SAM".

SAM are the initials of Spatial Accessibility Measure referring to the function A_i = Σ_j (n_j / (p_i * D_{ij}^2)) discussed in Kalogirou and Foley (2006).

Details

SAM refers to the Spatial Accessibility Measure proposed by Kalogirou and Foley (2006).

Value

a vector with accessibility measures for all locations (defined by the length of p).

Author(s)

Stamatis Kalogirou <stamatis@lctools.science>

References

Kalogirou, S., and Foley, R. (2006). Health, place and Hanly: Modelling accessibility to hospitals in Ireland. Irish Geography, 39(1), 52-68.

Kalogirou, S. (2017). Spatial inequality in the accessibility to hospitals in Greece, The International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences, XLII-4/W2, 91-94, https://doi.org/10.5194/isprs-archives-XLII-4-W2-91-2017.

Examples

1
2
3
4
n<-1:4
p<-20:25
D<-matrix(1:24, ncol=4, nrow=6)
Acc.p <- ac(p, n, D)

Example output



SpatialAcc documentation built on April 14, 2020, 5:12 p.m.