join.echogram {echogram} | R Documentation |
Merge echograms
Description
This function allows to join two echograms.
Usage
join.echogram(echogram1, echogram2)
Arguments
echogram1 |
an object of |
echogram2 |
an object of |
Details
This function is designed to join echograms of the same acoustic frequency, giving an error if frequencies differ. Desirably, echograms should be contiguous in space and time, but as this is not verified, it is possible to join non-contiguous echograms.
Value
An object of class
“echogram” resulting from the merging operation.
Author(s)
Héctor Villalobos
Examples
# import 38 kHz data from two consecutive HAC files
hacfile1 <- system.file("hac", "D20150510-T202221.hac", package = "echogram")
echo1.038 <- read.echogram(hacfile1, channel = 1)
hacfile2 <- system.file("hac", "D20150510-T202500.hac", package = "echogram")
echo2.038 <- read.echogram(hacfile2, channel = 1)
# join into one echogram
echo.038 <- join.echogram(echo1.038, echo2.038)
str(echo.038)
echogram(echo.038)
[Package echogram version 0.1.2 Index]