sequencefile_cut_by_timeコマンド マニュアル

(The documentation of sequencefile_cut_by_time command)

Last Update: 2023/3/30


◆機能・用途(Purpose)

時系列データファイルの一部分を時刻範囲を指定して切り出す。
Extract a partial data within a specified time window from a time series data file.


◆ソースコード(Source code)

$YMAEDA_OPENTOOL_DIR/sequence/src/sequencefile_cut_by_time.c


◆使用方法(Usage)

コマンドライン引数でパラメータを指定する。 パラメータの一覧を下表に示す。
Specify parameters by command-line arguments. The table below shows a list of parameters.


●「-」から始まらない引数 (Arguments not beginning with “-”)

引数
Argument
与える値
Quantity to be given
第1引数
1st argument
入力時系列データファイル名。 ymaeda_opentoolsの時系列データファイル形式 (独自のファイル形式参照) のいずれかでなければならない。
The input time series data file name. This file must be one of the time series data formats of ymaeda_opentools (see Special file formats).
第2引数
2nd argument
出力時系列データファイル名。 ymaeda_opentoolsの時系列データファイル形式 (独自のファイル形式参照) のいずれかでなければならない。
The output time series data file name. This file must be one of the time series data formats of ymaeda_opentools (see Special file formats).


●1つの「-」から始まる引数 (Arguments beginning with a single “-”)

このコマンドでは1つの「-」から始まる引数は存在しない。
This command does not have arguments beginning with a single “-”.


●「--パラメータ名=パラメータ値」の形式の引数 (Arguments of a form “--Parameter name=Parameter Value”)

「--パラメータ名=パラメータ値」の形式の引数は自由な順番で指定できる。 「-」から始まらない引数の間に挿入しても良い。 相反する指定がなされた場合には後の指定が優先される。 デフォルト値を持つパラメータは省略できる。
Arguments of a form “--Parameter name=Parameter Value” can be placed in an arbitrary order. They can even be inserted between arguments not beginning with “-”. In case of conflicting options being specified, the latter option has a higher priority. Parameters that have default values can be omitted.

パラメータ名
Parameter name
意味
Meaning
可能なパラメータ値
Allowed parameter values
デフォルト値
Default value
tmin 切り出すタイムウインドウの先頭時刻(s)。
The start time (s) of the time window to extract.
入力時系列データの定義域内の時刻を表す実数。
A real number that represents a time that is within the definition range of the input time series data.
入力時系列データの先頭時刻。
The beginning time of the input time series data.
tmax 切り出すタイムウインドウの末尾時刻(s)。
The end time (s) of the time window to extract.
入力時系列データの定義域内の時刻を表すtminよりも大きな実数。
A real number that represents a time that is within the definition range of the input time series data and greater than tmin.
入力時系列データの末尾時刻。
The end time of the input time series data.


◆動作(Behaviour)

第1引数で指定した時系列データファイルを読み込み、 パラメータtmin, tmaxで指定した時刻範囲を切り出して 第2引数で指定したファイルに出力する。
Read the time series data file specified by the 1st argument, extract the time window specified by parameters tmin and tmax, and output the result into the file specified by the 2nd argument.


◆使用例(Example)

sequence_cut_by_time 0-300s.seq1 60-120s.seq1 --tmin=60.0 --tmax=120.0