Skip to contents

Filter outliers in Speed feature (collection.feature37)

Usage

filterSpeedFeature37(echoData = NULL, minEchoDuration = 5)

Arguments

echoData

valid echodata

minEchoDuration

minimum duration of a echo to allow speed feature

Value

echoData with the filtered speed feature 37

Author

Fabian Hertner, fabian.hertner@swiss-birdradar.com; Birgen Haest, birgen.haest@vogelwarte.ch

Examples

# \donttest{
# Load example data
# ===========================================================================
dbData = readRDS(system.file("extdata",
  "CH_Sempach_2024_SEP24_25_DataExtract.rds",
  package = "birdscanR"
))

# Filter speed feature 37
# ===========================================================================
minEchoDuration = 5
dbData$echoData = filterSpeedFeature37(
  echoData        = dbData$echoData,
  minEchoDuration = minEchoDuration
)
# }