R/mseedWrappers.R

Defines functions parseMiniSEED

# Functions to wrap C code that uses libmseed.
#
# See https://web.archive.org/web/20121117072251/http://mazamascience.com/WorkingWithData/?p=1099
#

# See seismic/src/parseMiniSEED.c for code comments
parseMiniSEED <- function(buffer) {
  result <- .Call("parseMiniSEED",buffer)
  return(result)
}

Try the IRISSeismic package in your browser

Any scripts or data that you put into this service are public.

IRISSeismic documentation built on Oct. 16, 2022, 1:09 a.m.