NOAA SEFSC visual data goes back to 1992, but as shown in the figure below, many predictor variables are only available starting in 2003, therefore earlier visual data is currently excluded from further analyses.
Note: Future work could use monthly climatologies (averages) so that older sightings data could be used. Some dynamic drivers like eddy and front locations would not be able to be considered using that approach.
Visual data predictor variable availability:
The data are split into training and testing sets. In this case, visual data from 2009 and acoustic data from 2013 were used only for testing. Only observations from 2003 or later were used for modeling due to covariate limitations.
The visual data selected for modeling are displayed on the map below. Data from 2009 were held back for testing. Blue markers indicate HARP locations.
The time series below show timeseries of estimated densities from passive acoustic data used for modeling (Densities were calculated following methods detailed in [1]).
For the following models density estimates were converted into presence (density>0) or absence (density=0) of the species of interest within a given day.
Data from 2011 and 2012 were used for training, and 2013 data was held back for testing.
Acoustic Timeseries:
Distributions of covariates from acoustic observations (training data only):
Distributions of covariates from the visual observations (training data only):
Some of these covariates are more or less interrelated. Correlations are examined in the figure below. Numbers closer to 1 above the diagonal in the figure below represent correlation coefficients. If a pair of covariates is highly-correlated only one should typically be used in the model.
Covariate Correlations:
Some variables, including chlorophyll, mixed layer depth and distance to fronts are highly skewed and were log-transformed for input to GAMs.
Below, the two sets of covariates have been combined and transformed:
To get an idea of the basic predictive power of these covariates, we can look at presence/absence relative to each variable. This also provides an opportunity to look at the range of values observed for each covariate in the visual and acoustic datasets. In the plots below dotted lines indicate the distribution of each covariate when Sperm whale were present, and solid lines indicate the distribution when Sperm whale were absent. Note that these plots do not account for effort.
Acoustic kernel densities:
Visual kernel densities:
To train the model, we need to know how much power the various data points have relative to one another. This is important because the duration, spatial coverage, and detection probabilities are quite different between the visual and acoustic data sets. If an animal is seen or heard, we know for certain that the species was present. However, if it was not heard, then it either wasn’t present, or it was present but missed.
“Zero inflation” or an excess of false zeros more common in the visual survey data because each data point represents a 10km transect section, traversed at survey speed (>10 knots) or approximately 30 minutes of observation effort. In contrast, the acoustic data are binned by day with a stationary instrument, therefore the probability of missing a group over the course of a day is lower.
For each data type, we estimated the probability of a missed detection to account for differences in zero-inflation, downweighting zeros according to the probability of a recording false negative.
The visual data represent wether or not Sperm whale were seen during each transect segment. The probability of missing a sighting of Sperm whale was estimated as
\[P_{V}(detect|present) = \mu_{det} * g0\ = 0.64 * 0.52 = 0.33\]
where _{det} is the mean detection probability as estimated by a model fit using the mrds package, and g0 is the probability of observing an animal on the transect line [2]. We assume that reported absences are likely to be true absences 33 % of the time, therefore zeros are given a weight of 0.33 on a scale of [0,1].
The acoustic data represent presence or absence of Sperm whale in one day bins. Given that a group of animals is present near the sensor, the probability of detecting them in a 5 minute period within a 12 km range is estimated at 0.5, therefore the probability of missing an encounter is 1 - 0.5 = 0.5 [1,3]. Given that animals were present, the probability of missing a group for a full day (288 5-minute periods) is estimated as \[P_{A}(detect|present) = (1-0.5)^{288} \approx 0\]
Therefore we assume that there are no false negative days in the passive acoustic timeseries, and all acoustic observations are given weight = 1.
Best visual detection probability model for Sperm whale:
Models were fit using gam from the mgcv package in R [4].
## png
## 2
Run binomial GAMs on acoustic-only, visual-only, and joint acoustic/visual datasets.
varNames <- names(transformedCovars_AcOnly.train)
varNamesFormula <- varNames[2:10]
formulaAcOnly_allVars <-paste('s(', varNamesFormula, ", bs = 'ts', k = kVal)", sep = "", collapse = ' + ')
formulaAcOnly_allVars <- as.formula(paste('yAcOnly_TF ~',formulaAcOnly_allVars))
gam_full_AcOnly <- gam(formulaAcOnly_allVars,
data = transformedCovars_AcOnly.train,
na.action = na.omit,family = binomial())
formulaVisOnly_allVars <-paste('s(', varNamesFormula, ", bs = 'ts', k = kVal)", sep = "", collapse = ' + ')
formulaVisOnly_allVars <- as.formula(paste('yVisOnly_TF ~',formulaVisOnly_allVars))
gam_full_VisOnly <- gam(formulaVisOnly_allVars,
data = transformedCovars_VisOnly.train,
na.action = na.omit,family = binomial(),
weights = VisOnly.train_weightsG0)
formulaJoint_allVars <-paste('s(', varNamesFormula, ", bs = 'ts', k = kVal)", sep = "", collapse = ' + ')
formulaJoint_allVars <- as.formula(paste('y_TF ~',formulaJoint_allVars))
gam_full_Joint <- gam(formulaJoint_allVars,
data = transformedCovars.train,
weights = joint_train_weightsG0,
na.action = na.omit,family = binomial())
Model summaries show that some terms were not significant.
Model summary:
##
## Family: binomial
## Link function: logit
##
## Formula:
## yAcOnly_TF ~ s(SST, bs = "ts", k = kVal) + s(SSH, bs = "ts",
## k = kVal) + s(log10_CHL, bs = "ts", k = kVal) + s(HYCOM_SALIN_0,
## bs = "ts", k = kVal) + s(Neg_EddyDist, bs = "ts", k = kVal) +
## s(Pos_EddyDist, bs = "ts", k = kVal)
##
## Parametric coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) 1.60018 0.07849 20.39 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Approximate significance of smooth terms:
## edf Ref.df Chi.sq p-value
## s(SST) 0.9534 4 11.956 0.000135 ***
## s(SSH) 2.2143 4 7.528 0.018818 *
## s(log10_CHL) 2.7463 4 31.272 5.18e-08 ***
## s(HYCOM_SALIN_0) 3.6612 4 89.873 < 2e-16 ***
## s(Neg_EddyDist) 0.7369 4 3.577 0.025576 *
## s(Pos_EddyDist) 3.6829 4 10.236 0.023834 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## R-sq.(adj) = 0.196 Deviance explained = 19.1%
## UBRE = -0.11449 Scale est. = 1 n = 1789
Smooths of predictor variables:
## png
## 2
Plot of residuals:
Model summary:
##
## Family: binomial
## Link function: logit
##
## Formula:
## yVisOnly_TF ~ s(SSH, bs = "ts", k = kVal) + s(log10_HYCOM_MLD,
## bs = "ts", k = kVal) + s(HYCOM_UPVEL_50, bs = "ts", k = kVal)
##
## Parametric coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -1.8547 0.1139 -16.28 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Approximate significance of smooth terms:
## edf Ref.df Chi.sq p-value
## s(SSH) 0.9012 4 7.849 0.002718 **
## s(log10_HYCOM_MLD) 1.0024 4 12.310 0.000282 ***
## s(HYCOM_UPVEL_50) 0.8858 4 7.826 0.002786 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## R-sq.(adj) = 0.0351 Deviance explained = 4.78%
## UBRE = -0.70539 Scale est. = 1 n = 2015
Smooths of predictor variables:
## png
## 2
Plot of residuals:
Model summary:
##
## Family: binomial
## Link function: logit
##
## Formula:
## y_TF ~ s(SST, bs = "ts", k = kVal) + s(SSH, bs = "ts", k = kVal) +
## s(log10_CHL, bs = "ts", k = kVal) + s(HYCOM_SALIN_0, bs = "ts",
## k = kVal) + s(Neg_EddyDist, bs = "ts", k = kVal) + s(Pos_EddyDist,
## bs = "ts", k = kVal)
##
## Parametric coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) 0.5209 0.0709 7.347 2.03e-13 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Approximate significance of smooth terms:
## edf Ref.df Chi.sq p-value
## s(SST) 1.1076 4 45.229 2.27e-12 ***
## s(SSH) 2.7916 4 21.192 1.67e-05 ***
## s(log10_CHL) 3.5277 4 31.846 3.35e-07 ***
## s(HYCOM_SALIN_0) 3.5074 4 93.885 < 2e-16 ***
## s(Neg_EddyDist) 3.6932 4 20.211 0.000216 ***
## s(Pos_EddyDist) 0.7405 4 3.622 0.025133 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## R-sq.(adj) = 0.219 Deviance explained = 20.8%
## UBRE = -0.48374 Scale est. = 1 n = 3746
Smooths of predictor variables:
## png
## 2
Plot of residuals:
## [1] "cross entropy scores (lower is better)"
## Cross-Entropy Score
## Acoustic - Test Joint Data 0.379
## Visual - Test Joint Data 1.044
## Joint - Test Joint Data 0.368
Predictions were made on the acoustic test dataset, and compared with actual observations for 2013. The predicted probabliity of encountering animals was compared with the actual weekly rate of occurrence of animals at a site.
Predicted and observed encounter probabilities at passive acoustic monitoring sites using the acoustic-only model:
Predicted and observed encounter probabilities at passive acoustic monitoring sites using the visual-only model:
Predicted and observed encounter probabilities at passive acoustic monitoring sites using the joint model:
Models were evaluated for summer (July 2009) and winter(January 2009) across the entire Gulf of Mexico (US EEZ beyond the 200m contour).
Note: As an alternative to training joint models, an average surface was computed across the acoustic and visual-only predictions.
Summer 2009 predicted distribution and test sightings:
Winter 2009 predicted distribution:
Spatial model predictions were generated using climatological means of oceanographic variables, averaged by month between 2003 and 2015.
1. Frasier KE, Wiggins SM, Harris D, Marques TA, Thomas L, Hildebrand JA. Delphinid echolocation click detection probability on near-seafloor sensors. The Journal of the Acoustical Society of America. 2016;140: 1918–1930. doi:http://dx.doi.org/10.1121/1.4962279
2. Palka DL. Summer abundance estimates of cetaceans in us north atlantic navy operating areas. Northeast Fish Sci Cent Ref Doc. 2006; 06–03.
3. Hildebrand J, Baumann-Pickering S, Frasier K, Tricky J, Merkens K, Wiggins S, et al. Passive acoustic monitoring of beaked whale densities in the gulf of mexico during and after the deepwater horizon oil spill. Nature Scientific Reports. 2015;5: 16343.
4. Wood S. Generalized additive models: An introduction with r. CRC press; 2006.