HinetPy.header module
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 -- Network name.
channels -- Number of channels the network has.
starttime -- Start time (JST: UTC+0900) when waveform data is avaiable.
url -- Homepage of the network.