HinetPy.header模块

This module provides a dict of seismic networks that are available from the Hi-net website.

The dict is named NETWORK. The network code is the key of the dict, and the value is a Network object, which contains the network name, number of channels, start time when waveform data is available, and the homepage URL. The network code is a string, e.g., “0101” for Hi-net. The number of channels, start time, and homepage URL are obtained from the Hi-net website, but they may not be up-to-date so don’t rely on them too much.

To view the list of supported networks, use:

>>> from HinetPy import NETWORK
>>> for code in NETWORK.keys():
...     print(code, NETWORK[code].name)
0101 NIED Hi-net
0103 NIED F-net (broadband)
0103A NIED F-net (strong motion)
0106 NIED Temp. obs. in eastern Shikoku
0120 NIED S-net (velocity)...
class HinetPy.header.Network(name: str, channels: int | None, starttime: str | datetime, url: str)

A seismic network and its information.

参数:
  • name – 台网名。

  • channels – 此台网的通道数目。

  • starttime – 可申请的波形数据的开始时间(日本标准时间)。

  • url – 台网主页。