Learn R Programming

echogram (version 0.1.3)

join.echogram: Merge echograms

Description

This function allows to join two echograms.

Usage

join.echogram(echogram1, echogram2)

Value

An object of class ``echogram'' resulting from the merging operation.

Arguments

echogram1

an object of class ``echogram'' as returned by read.echogram.

echogram2

an object of class ``echogram'', preferentially contiguous in space and time with echogram1 above.

Author

Héctor Villalobos

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.

Examples

Run this code
# 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)

Run the code above in your browser using DataLab