I'm modelling bird spatio-temporal migration. I have two datasets. One telemetry data and one citizen science data. My goal is to integrate both datasets. To do so, i transform my telemetry data into presence/absence data. My idea is to use the probability of presence in telemetry data as weight in Log Gaussian Cox Process (citizen science) with spatio-temporal dependencies.
Concretely, my model is defined like this :
\ln(\frac{p_i}{1-p_i}) = X(s_i,t)\beta+\{Z(s) \otimes Z(t)\}^Tu
\ln(\lambda(s_i,t)) &= X(s_i,t)\beta+\{Z(s) \otimes Z(t)\}^Tu
with $u \sim \mathcal{N}(0,\sigma^{2}\mathbf{I})$
X(s_i,t) : environmental covariates in space and time (from daymet)
\beta : coefficients
Z(s) and Z(t) are spatial and temporal basis functions
Is possible to build this type of hierarchical model in INLA? If yes, any example would be extremely appreciate.
Thanks,