The recommended way of dealing with the uncertain uStar threshold for
filtering the half-hourly data, is to repeat all the processing steps
with several bootstrapped estimates of the threshold as in
vignette('useCase')
.
First, some setup.
#+++ load libraries used in this vignette
library(REddyProc)
library(dplyr)
#+++ define directory for outputs
outDir <- tempdir() # CRAN policy dictates to write only to this dir in examples
#outDir <- "out" # to write to subdirectory of current users dir
#+++ Add time stamp in POSIX time format to example data
# and filter long runs of equal NEE values
EddyDataWithPosix <- fConvertTimeToPosix(
filterLongRuns(Example_DETha98, "NEE")
, 'YDH', Year = 'Year', Day = 'DoY', Hour = 'Hour')
Subsequent processing steps can be performed without further uStar
filtering using sEddyProc_sMDSGapFill
. Corresponding result
columns then have no uStar specific suffix.
EProc <- sEddyProc$new(
'DE-Tha', EddyDataWithPosix, c('NEE','Rg','Tair','VPD', 'Ustar'))
EProc$sMDSGapFill('NEE')
grep("NEE.*_f$",names(EProc$sExportResults()), value = TRUE)
## [1] "NEE_f"
The user can provide value for uStar-filtering before gapfilling,
using sEddyProc_sMDSGapFillAfterUstar
. Output columns for
this uStar scenario use the suffix as specified by argument
uStarSuffix
which defaults to “uStar”.
The friction velocity, uStar, needs to be in column named “Ustar” of the input dataset.
EProc <- sEddyProc$new(
'DE-Tha', EddyDataWithPosix, c('NEE','Rg','Tair','VPD', 'Ustar'))
uStar <- 0.46
EProc$sMDSGapFillAfterUstar('NEE', uStarTh = uStar)
grep("NEE.*_f$",names(EProc$sExportResults()), value = TRUE)
## [1] "NEE_uStar_f"
The uStar threshold can be estimated from the uStar-NEE relationship from the data without estimating its uncertainty by a bootstrap.
EProc <- sEddyProc$new(
'DE-Tha', EddyDataWithPosix, c('NEE','Rg','Tair','VPD', 'Ustar'))
# estimating the thresholds based on the data (without bootstrap)
(uStarTh <- EProc$sEstUstarThold())
## aggregationMode seasonYear season uStar
## 1 single NA <NA> 0.4162500
## 2 year 1998 <NA> 0.4162500
## 3 season 1998 1998001 0.4162500
## 4 season 1998 1998003 0.4162500
## 5 season 1998 1998006 0.3520000
## 6 season 1998 1998009 0.3369231
## 7 season 1998 1998012 0.1740000
# may plot saturation of NEE with UStar for a specified season to pdf
EProc$sPlotNEEVersusUStarForSeason(levels(uStarTh$season)[3], dir = outDir )
Next, the annual estimate is used as the default in gap-filling.
Output columns use the suffix as specified by argument
uSstarSuffix
which defaults to “uStar”.
## Warning in .self$sGetUstarScenarios(): uStar scenarios not set yet. Setting to
## annual mapping.
## [1] "NEE_uStar_f"
Choosing a different u* threshold effects filtering and the subsequent processing steps of gap-filling, and flux-partitioning. In order to quantify the uncertainty due to not exactly knowing the u* threshold, these processing steps should be repeated for different threshold scenarios, and the spread across the results should be investigated.
First, the quantiles of the threshold distribution are estimated by bootstrap.
## New sEddyProc class for site 'DE-Tha'
##
## Estimated UStar distribution of:
## uStar 5% 50% 95%
## 1 0.41625 0.3795192 0.45 0.6368611
## by using 100 bootstrap samples and controls:
## taClasses UstarClasses
## 7 20
## swThr minRecordsWithinTemp
## 10 100
## minRecordsWithinSeason minRecordsWithinYear
## 160 3000
## isUsingOneBigSeasonOnFewRecords
## 1
## season uStar U05 U50 U95
## 1 1998001 0.41625 0.3795192 0.45 0.6368611
## 2 1998003 0.41625 0.3795192 0.45 0.6368611
## 3 1998006 0.41625 0.3795192 0.45 0.6368611
## 4 1998009 0.41625 0.3795192 0.45 0.6368611
## 5 1998012 0.41625 0.3795192 0.45 0.6368611
By default the annually aggregated threshold estimates are used for
each season within one year as in the original method publication. To
see the estimates for different aggregation levels, use method
sEddyProc_sGetEstimatedUstarThresholdDistribution
:
## aggregationMode seasonYear season uStar 5% 50% 95%
## 1 single NA <NA> 0.4162500 0.3795192 0.4500000 0.6368611
## 2 year 1998 <NA> 0.4162500 0.3795192 0.4500000 0.6368611
## 3 season 1998 1998001 0.4162500 0.3795192 0.4500000 0.6368611
## 4 season 1998 1998003 0.4162500 0.3394866 0.4130139 0.6201562
## 5 season 1998 1998006 0.3520000 0.3313333 0.3874444 0.4673625
## 6 season 1998 1998009 0.3369231 0.2265271 0.3811790 0.5159905
## 7 season 1998 1998012 0.1740000 0.1924667 0.4331866 0.6368611
In conjunction with method usGetSeasonalSeasonUStarMap
and sEddyProc_sSetUstarScenarios
this can be used to set
seasonally different u* threshold. However, this common case supported
by method sEddyProc_useSeaonsalUStarThresholds
.
#EProc$sSetUstarScenarios(
# usGetSeasonalSeasonUStarMap(uStarThAgg)[,-2])
EProc$useSeaonsalUStarThresholds()
# inspect the changed thresholds to be used
EProc$sGetUstarScenarios()
## season uStar U05 U50 U95
## 3 1998001 0.4162500 0.3795192 0.4500000 0.6368611
## 4 1998003 0.4162500 0.3394866 0.4130139 0.6201562
## 5 1998006 0.3520000 0.3313333 0.3874444 0.4673625
## 6 1998009 0.3369231 0.2265271 0.3811790 0.5159905
## 7 1998012 0.1740000 0.1924667 0.4331866 0.6368611
Several function whose name ends with ‘UstarScens’ perform the subsequent processing steps for all uStar scenarios. They operate and create columns that differ between threshold scenarios by a suffix.
## [1] "NEE_uStar_f" "NEE_U05_f" "NEE_U50_f" "NEE_U95_f"
EProc$sSetLocationInfo(LatDeg = 51.0, LongDeg = 13.6, TimeZoneHour = 1)
EProc$sMDSGapFill('Tair', FillAll = FALSE, minNWarnRunLength = NA)
EProc$sMDSGapFill('Rg', FillAll = FALSE, minNWarnRunLength = NA)
EProc$sMDSGapFill('VPD', FillAll = FALSE, minNWarnRunLength = NA)
EProc$sMRFluxPartitionUStarScens()
grep("GPP_.*_f$",names(EProc$sExportResults()), value = TRUE)
## [1] "GPP_U05_f" "GPP_U50_f" "GPP_U95_f" "GPP_uStar_f"
if (FALSE) {
# run only interactively, because it takes long
EProc$sGLFluxPartitionUStarScens(uStarScenKeep = "U50")
grep("GPP_DT_.*_f$",names(EProc$sExportResults()), value = TRUE)
}
The argument uStarScenKeep = "U50"
specifies that the
outputs that are not distinguished by the suffix,
e.g. FP_GPP2000
, should be reported for the median u*
threshold scenario with suffix U50
, instead of the default
first scenario.
A more advanced case of user-specified seasons for uStar threshold
estimate is given in vignette('DEGebExample')
.