Spatial Uncertainty Propagation Analysis

Case study with categorical data - calculating tax depending on a building function.

Kasia Sawicka and Gerard Heuvelink

2024-01-10

Sys.sleep(100)

Case study with categorical data - calculating tax depending on a building function

Introduction

In many aspects of life information is available and required in a form of categorical data. For example, in a city neighbourhood or a district each building has assigned a function (housing, office, etc.). Depending on the building function the city council may impose different tax levels.

In this simple example, in a neighbourhood the function of a building is assigned depending on the building percentage of area inside the building that is used for living and number of addresses inside each building. If the residential area is higher than 80% and has at least one address registered then the building is classified as “residential”. If the residential area is less than 80% and at least one address is present the building is classified as “office”. If no address is present the building function is assumed as “other”. Depending of these categories the city council imposes tax levels of €1000, €10000, €10 per year, respectively. The 80% threshold is approximate though and some buildings classified as “others” could have got the address assigned but not put on a system yet, therefore the council wants to calculate the uncertainty in tax revenue depending on errors introduced by erroneous building classification.


Adapted Monte Carlo methodology for spatial uncertainty analysis with a categorical variable

The adapted uncertainty propagation analysis approach is based on the Monte Carlo method that computes the output of the model repeatedly, with input values that are randomly sampled from their non-parameteric pdfs. The set of model outputs forms a random sample from the output pdf. The method thus consists of the following steps:

  1. Characterise uncertain model inputs with non-parametric pdfs (i.e. probabilities for each category).
  2. Repeatedly sample from the pdfs of uncertain inputs.
  3. Run model with sampled inputs and store model outputs.
  4. Compute summary statistics of model outputs.


Building function uncertainty propagation analysis with ‘spup’

Preliminaries - load and view the data

The example data for tax calculation contain the spatial distribution of buildings in a neighbourhood in Rotterdam, NL.

The ‘woon’ object is a SpatialPolygonDataFrame where each building is represented by one polygon. The attributes contain:

  • vbos - number of addresses present in the building,
  • woonareash - residential area [%],
  • Function - assigned category depending on vbos and woonareash - for residential it is 1, for office it is 2, for other is 3,
  • residential - probability that the building is residential,
  • office - probability that the building is an office,
  • other - probability that the building has another function.

In the next section we explain how we use the information about the probabilities.


Define uncertainty model (UM) for the building function

In case of categorical variables the uncertainty is described by use of non-parameteric pdfs. In our case we describe it by a vector of probabilities that a building belongs to a certain category. In case of spatially distributed variables we have to do this for each polygon, hence the dataset has maps of these probabilities saved in the same object.

To unite all information of the uncertainty model for the building function we use the defineUM() function that collates all information into one object. The minimum information required is:

  • a logical value that indicates if the object is uncertain,
  • a vector of categories; character and numeric type is allowed,
  • a data frame with probabilities for each category.
[1] "MarginalCategoricalSpatial"

The argument cat_prob is the probabilities vector. In case of spatial vatiables for each polygon a vector of probabilities is collated into a data frame (as above). Foreach polygon, the probabilities vector should sum to one:

   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
      1       1       1       1       1       1 

We can have a look at how the probabilities for each polygon look like:


Generate possible realities of the building function

Generating possible realities of the building function can be completed by using the genSample() function. The required information to pass to the function includes:

  • defined uncertain object (as above).
  • number of realizations to return.

Usually the sample must be large to obtain stable results. Let us run the sampling to obtain 10 realizations. Note the artument ‘asList’ has been set up to FALSE. This indicates that the sampling function will return an object of a class of the distribution parameters class. This is useful if you want to visualize the sample or compute summary statistics quickly.

[1] "SpatialPolygonsDataFrame"
attr(,"package")
[1] "sp"


Uncertainty propagation through the model that calculates tax revenue for the neighbourhood

In order to perform uncertainty propagation analysis using ‘spup’, the model through which uncertainty is propagated needs to be defined as an R function, for example:

Note that in a given the model has a requirement that the building function is stored in a SpatialPolygonDataFrame and in a column named ‘Function’.

The propagation of uncertainty occurs when the model is run with an uncertain input. Running the model with a sample of realizations of uncertain input variable(s) yields an equally large sample of model outputs that can be further analyzed. To run the tax model with the building function realizations we use the propagate() function. The propagate() function takes as arguments:

  • a sample from the uncertain model inputs and any other remaining model inputs and parameters as a list.
  • the model as a function in R.
  • the number of Monte Carlo runs. This can be equal or smaller than the number of realizations of the uncertain input variable(s).

In order to run the propagation function the sample of an uncertain input variable must be saved in a list. We can either coerce the existing woon_sample object or get it automatically setting up the ‘asList’ argument of genSample() to TRUE.

[1] "list"

Earlier we noted that the construction of the model requires that the information of the building function is stored in a column named ‘Function’. By default the sampling function returns ralizations named ‘sim1’, ‘sim2’, and so on, so we need to adjust that manualy.

Finally, run the propagation:

[[1]]
[1] 2227530

[[2]]
[1] 2355420

[[3]]
[1] 2197560

[[4]]
[1] 2433360

[[5]]
[1] 2334450

[[6]]
[1] 2378370

[[7]]
[1] 2361360

[[8]]
[1] 2365410

[[9]]
[1] 2336610

[[10]]
[1] 2194680
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
2194680 2254260 2346015 2318475 2364398 2433360 

We can see that on average the city council should obtain the tax revenue of €2300000, but depending on the building classification this amount may vary by €120000.


Acknowledgements

The Rotterdam neighbourhood dataset was obtained from the Dutch cadastral dataset BAG. We would like to thank Filip Biljecki for help with obtaining the data.

This project has received funding from the European Union’s Seventh Framework Programme for research, technological development and demonstration under grant agreement no 607000.