Chapter 4 Log-Gaussian Cox process

A Log-Gaussian Cox Process (LGCP) is a doubly stochastic spatial point process. In the simplest case, the intensity of the point process over space is given by: \[\Lambda(s) = \text{exp}(\beta_0 + G(s) + \epsilon)\] where \(\beta_0\) is a constant, known as the intercept, \(G(s)\) is a Gaussian Markov Random Field (GMRF) and \(\epsilon\) an error term.

It is conventional to use Matérn covariance function to define the covariance of the random field. This takes two parameters \(\tau\) and \(\kappa\), commonly reported as \(r=\frac{\sqrt{8}}{\kappa}\) and \(\sigma=\frac{1}{\sqrt{4\pi\kappa^2\tau^2}}\), where \(r\) is the range and \(\sigma\) is the standard deviation.

4.1 The fit_lgcp() function

## function (locs, sf, smesh, tmesh, parameters, covariates, tmb_silent = TRUE, 
##     nlminb_silent = TRUE, ...) 
## NULL

4.1.2 Spatiotemporal LGCP

The LGCP model can also be used for spatiotemporal modelling where there is autoregressive temporal dependence.

To achieve this, we choose an arbitrary number of time knots. The equation for an AR(1) process is as follows: \[\Lambda_i(s) = \text{exp}(\beta_0 + G_i(s) + \epsilon)\] where \(i\) indexes the time knot. \(\Lambda_i(s)\) is the field intensity at time knot \(i\), and \(G_i(s)\) the GMRF at the same time knot. Each \(G_i(s)\) shares common values for \(\tau\) and \(\kappa\).

Successive random fields are correlated through the formula \[G_i(s)=\rho G_{i-1}(s) + \epsilon_i\] where \(\rho\) is a constant between -1 and +1, and \(\epsilon_i\) is normally distributed with mean 0.

##             Estimate Std. Error
## rho        0.3100841 0.20738457
## beta       1.6852264 0.13685037
## log_tau   -1.0683016 0.22402076
## log_kappa  0.4785904 0.22707189
## range      1.7526525 0.39797812
## stdev      0.5087488 0.05765947