- start
POSIXct
value, start time of the data to import. If
lazy users only submit a text string instead of a POSIXct object, the
function will try to convert that text string, assuming UTC as time zone.
- duration
Numeric
value, duration of the data to import,
in seconds.
- station
Character
value, seismic station ID, which must
correspond to the ID in the file name of the data directory structure
(cf. aux_organisecubefiles
).
- component
Character
value, seismic component, which must
correspond to the component name in the file name of the data directory
structure (cf. aux_organisecubefiles
). Information can be restricted
to a single character, denoting the last character of the station component
code, i.e. "Z"
would use the first and last component of
c("BHZ", "HHE", "HHZ")
. Default is "BHZ"
(vertical component
of a seismic file).
- format
Character
value, seismic data format. One out of
"sac"
and "mseed"
. If omitted, the function will try to
identify the right format automatically.
- dir
Character
value, path to the seismic data directory.
See details for further info on data structure.
- pattern
Character
value, either keyword or pattern string
with wildcards, describing the data organisation. Supported keywords are
"eseis"
and "seiscomp"
. See details for keyword definition
and format of pattern strings. Default option is eseis
.
- simplify
Logical
value, option to simplify output
when possible. This basically means that if only data from one station
is loaded, the list object will have one level less. Default is
TRUE
.
- interpolate
Logical
value, option to interpolate possible
gaps in the resulting data stream. If enabled, NA values will be identified
and linearly interpolated using the function signal_fill
. Default
is FALSE
, i.e. NA gaps will remain in the imported data set.
- eseis
Logical
value, option to read data to an eseis
object (recommended, see documentation of
aux_initiateeseis
), default is TRUE
- try
Logical
value, option to run the function in try-mode,
i.e., to let it return NA
in case an error occurs during data
import. Default is FALSE
.
- ...
Further arguments to describe data structure, only needed for
pattern type seiscomp
. These arguments can be one or more of the
following: "network"
, "type"
, "location"
. If omitted,
the function will identify all files in the SeisComP data archive that
fulfill the criteria. If other than data files (type = "D"
) or
files from another network are in the archive, these may lead to crashes
of the function.