ncc_stretch | R Documentation |
The function estimates the relative seismic wave velocity changes over
time based on matching iteratively stretched master correlations to
previously calculated correlograms (cf. ncc_correlate
).
ncc_stretch(
data,
lag,
master = "mean",
normalise = TRUE,
sides = "both",
range = 0.01,
steps = 100,
method = "r",
reject = 0,
...
)
data |
|
lag |
|
master |
|
normalise |
|
sides |
|
range |
|
steps |
|
method |
|
reject |
|
... |
Further arguments passed to the function. |
A data.frame
, object with the time and relative wave
velocity change estimate.
Michael Dietze
## Not run:
cc <- ncc_preprocess(start = "2017-04-09 00:30:00",
stop = "2017-04-09 01:30:00",
ID = c("RUEG1", "RUEG2"),
component = c("Z", "Z"),
dir = paste0(system.file("extdata",
package = "eseis"), "/"),
window = 600,
overlap = 0,
lag = 20,
deconvolve = TRUE,
sensor = "TC120s",
logger = "Cube3extBOB",
gain = 1,
f = c(0.05, 0.1),
sd = 1)
## estimate dv/v
dv <- ncc_stretch(data = cc, range = 0.05)
## plot result
plot(dv$time, dv$dvv, type = "l")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.