aux_organisecentaurfiles {eseis} | R Documentation |
Reorganise seismic files recorded by Nanometrics Centaur loggers
Description
This function optionally converts mseed files to sac files and organises these in a coherent directory structure, by year, Julian day, (station, hour and channel). It depends on the cubetools or gipptools software package (see details). The function is at an experimental stage and only used for data processing at the GFZ Geomorphology section, currently.
Usage
aux_organisecentaurfiles(
stationfile,
input_dir,
output_dir,
format = "sac",
channel_name = "bh",
cpu,
gipptools,
file_key = "miniseed",
network
)
Arguments
stationfile |
|
input_dir |
|
output_dir |
|
format |
|
channel_name |
|
cpu |
|
gipptools |
|
file_key |
|
network |
|
Details
The function assumes that the Nanometrics Centaur data logger directory
contains only hourly mseed files. These hourly files are organised in a
coherent directory structure which is organised by year and Julian day.
In each Julian day directory the hourly files are placed and named according
to the following scheme:
STATIONID.YEAR.JULIANDAY.HOUR.MINUTE.SECOND.CHANNEL.
The function requires that the software cubetools
(http://www.omnirecs.de/documents.html
) or gipptools
(http://www.gfz-potsdam.de/en/section/geophysical-deep-sounding/infrastructure/geophysical-instrument-pool-potsdam-gipp/software/gipptools/
)
are installed.
Specifying an input directory
(input_dir
) is mandatory. This input directory must only contain the
subdirectories with mseed data for each Centaur logger. The subdirectory
must be named after the four digit Centaur ID and contain only mseed files,
regardless if further subdirectories are used (e.g., for calendar days).
In the case a six-channel Centaur is used to record signals from two
sensors, in the station info file (cf. aux_stationinfofile()
)
the logger ID field must contain the four digit logger ID and the
channel qualifiers, e.g., "AH" (first three channels) or "BH" (last three channels),
separated by an underscore.
Value
A set of hourly seismic files written to disk.
Author(s)
Michael Dietze
Examples
## Not run:
## basic example with minimum effort
aux_organisecentaurfiles(stationfile = "output/stationinfo.txt",
input_dir = "input",
gipptools = "software/gipptools-2015.225/")
## End(Not run)