This document will show how parameters used in the estimation of wind speeds can be determined from the data.
require("moveWindSpeed")
We first load an example stork track which is shipped with the moveWindSpeed package.
<- storks[[1]] data
Wind estimates are based on track segments of fixed length and fixed sampling rate. For the length of the segment we use the default value of 29:
<- 29 windowSize
In order to determine an appropriate sampling rate we check the sampling rate in the stork track:
<- diff(as.numeric(timestamps(data)))
tdiffs quantile(tdiffs, c(0.01, 0.1, 0.5, 0.9, 0.99))
## 1% 10% 50% 90% 99%
## 1 1 1 1 900
The majority of data points were sampled in 1 second intervals, so we choose 1 second as our sampling interval:
<- 1 isSamplingRegular
Wind estimation results can only be trusted if the bird is actually flying and if it is making turns, usually while circling in a thermal. We will only consider track segments in which the bird turns at least 360 degrees and has an average speed of at least 4 m/s:
<- getDefaultIsThermallingFunction(360, 4) isThermallingFunction
The wind estimation is based on the assumption that, within a given track segment, the air speed of the bird fluctuates randomly around a fixed mean. For high sampling rates, however, the deviations from the mean are not statistically independent, but tend to be correlated between subsequent points. We therefore need to estimate the temporal autocorrelation parameter phi (see AR(1) processes). Phi is not estimated for each track segment separately, but across all segments of a track. For performance reasons the number of segments used in the estimation of phi can be restricted:
<- 25 maxPointsToUseInEstimate
With the parameters defined so far we can run the function for estimating temporal autocorrelation parameter phi:
<- estimatePhi(data, isSamplingRegular=isSamplingRegular, windowSize=windowSize, isThermallingFunction=isThermallingFunction, maxPointsToUseInEstimate=maxPointsToUseInEstimate, phiInitialEstimate=0, returnPointsUsedInEstimate=T) estimationResult
## Warning in findGoodPoints(data = data, isThermallingFunction =
## isThermallingFunction, : Desired number of locations could not be found
The estimation function returns the estimated value of phi and the number of points used in the estimate.
$phi estimationResult
## [1] 0.8547135
$n estimationResult
## [1] 21
In this example only 21 suitable track segments were found which is lower than the maximum specified by the parameter maxPointsToUseInEstimate and therefore triggers a warning.
The following chart shows those 21 track segments:
<- lapply(1:nrow(data), '+', (-(windowSize-1)/2):((windowSize-1)/2))[estimationResult$isPointUsedInEstimate]
oo <- oo[1:min(length(oo), maxPointsToUseInEstimate)]
oo <- par(mfrow=c(4,6), mar=rep(0.5, 4))
op # Plot track segments
<- lapply(oo, function(ooo) plot(data[(ooo)], typ='b', xlab=NA, ylab=NA, axes=F))
tmp par(op)
We are now equipped to run the actual wind estimation along the original track. Technically wind can be estimated for every point in the track, but then the track segments used in the estimation will overlap for adjacent points. In order to avoid that we restrict the estimation to every 29th point:
<-function(i, ts) i%%windowSize==0 isFocalPoint
Now we run the estimation function:
<- estimationResult$phi
phi <- getWindEstimates(data, isSamplingRegular=isSamplingRegular, windowSize=windowSize, isThermallingFunction=isThermallingFunction, phi=phi, isFocalPoint=isFocalPoint)
windEst names(windEst)
## [1] "eobs_horizontal_accuracy_estimate" "eobs_speed_accuracy_estimate"
## [3] "eobs_status" "eobs_temperature"
## [5] "eobs_type_of_fix" "eobs_used_time_to_get_fix"
## [7] "ground_speed" "heading"
## [9] "height_above_ellipsoid" "manually_marked_outlier"
## [11] "event_id" "estimationSuccessful"
## [13] "residualVarAirspeed" "windX"
## [15] "windY" "windVarX"
## [17] "windVarY" "windCovarXY"
## [19] "windVarMax" "airX"
## [21] "airY"
We only want to retain points for which the estimation was successful and where the bird was thermalling:
<- windEst[!is.na(windEst$estimationSuccessful),] windEst2
Here is a simple plot of the wind speeds obtained:
<-sqrt(windEst2$windX^2+windEst2$windY^2)
windSpeed plot(timestamps(windEst2), windSpeed)
The output parameters windVarX, windVarY, and windCovarXY define the covariance matrix which characterizes the estimation error of the wind vector (windX, windY). The parameter windVarMax provides a simplified error estimate, i.e. an upper bound for the error in any given direction. The following plot shows the distribution of the standard error of the wind estimate based on windVarMax
hist(sqrt(windEst2$windVarMax), breaks=seq(0,1.1,0.1))
showing that the standard error is typically in the range of 0.5 m/s.
We can also investigate how the log likelihood behaves over a series of phi values.
<- seq(.01, .99, by = .01)
phis <-
ll unlist(lapply(phis, function(x, ...) {
windEstimLogLik(getWindEstimates(phi = x, ...)$residualVarAirspeed, x)
data = estimationResult$segments))
}, plot(phis, ll, type='l', xlab="Phi", ylab="Log Likelihood")