関数sacHeaderTime2humanTime マニュアル

(The documentation of function sacHeaderTime2humanTime)

Last Update: 2023/6/12


◆機能・用途(Purpose)

SACヘッダにおける基準時刻を struct humanTime型構造体に変換する。
Convert the reference time in a SAC header to a struct humanTime-type structure.


◆形式(Format)

#include <sac/convert.h>
inline struct humanTime sacHeaderTime2humanTime (const union sacheader header)


◆引数(Arguments)

header SACヘッダ。 NZYEAR, NZJDAY, NZHOUR, NZMIN, NZSEC, NZMSEC (No. 070-075) の値(未定義値以外)が与えられていなければならない。
The SAC headers. The values other than the undefined ones must be given to NZYEAR, NZJDAY, NZHOUR, NZMIN, NZSEC, and NZMSEC (No. 070-075).


◆戻り値(Return value)

引数headerで与えたSACヘッダが表す時刻。
The time represented by the SAC headers given by the argument header.


◆使用例(Example)

struct sac_timeseq data=read_sac_timeseq("data.sac");
struct humanTime data_time=sacHeaderTime2humanTime(data.header);