A Python package to request and process seismic waveform data from NIED Hi-net
Project description
NIED Hi-net | Source Code | Documentation | 中文文档
HinetPy is a Python package to request and process seismic data from NIED Hi-net.
Features
Request continuous/event waveform data and event catalog from NIED Hi-net
Select Hi-net/F-net stations based on different criteria
Convert waveform data from win32 format to SAC format
Extract instrumental response as SAC polezero file
Multithreads downloading and conversion to speedup
A simple example
Here is an example showing how to use HinetPy to request continuous waveform data from Hi-net, convert the data into SAC format, and extract instrumental responses as SAC polezero files.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from HinetPy import Client, win32
# You need a Hi-net account to access the data
client = Client("username", "password")
# Let's try to request 20-minute data of the Hi-net network (with an internal
# network code of '0101') starting at 2010-01-01T00:00 (JST, GMT+0900)
data, ctable = client.get_continuous_waveform("0101", "201001010000", 20)
# The request and download process usually takes a few minutes
# waiting for data request ...
# waiting for data download ...
# Now you can see the data and corresponding channel table in your working directory
# waveform data (in win32 format) : 0101_201001010000_20.cnt
# channel table (plaintext file) : 0101_20100101.ch
# Let's convert data from win32 format to SAC format
win32.extract_sac(data, ctable)
# Let's extract instrument response as PZ files from the channel table file
win32.extract_sacpz(ctable)
# Now you can see several SAC and SAC_PZ files in your working directory
# N.NGUH.E.SAC N.NGUH.U.SAC N.NNMH.N.SAC
# N.NGUH.N.SAC N.NNMH.E.SAC N.NNMH.U.SAC
# ...
# N.NGUH.E.SAC_PZ N.NGUH.U.SAC_PZ N.NNMH.N.SAC_PZ
# N.NGUH.N.SAC_PZ N.NNMH.E.SAC_PZ N.NNMH.U.SAC_PZ
# ...
Citation
If you find this package useful, please consider citing via:
License
This project is licensed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file HinetPy-0.7.1.tar.gz
.
File metadata
- Download URL: HinetPy-0.7.1.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f3248628392ead123d89d7edfa024ba9072137f0b372ca3f036b912ea22793e |
|
MD5 | f7cc8077bce2eaae86a8a74ce2b24a25 |
|
BLAKE2b-256 | de062297a1781c39d8de8f4f7502088340bc46c34e42e2e157d94b3f4477144e |
File details
Details for the file HinetPy-0.7.1-py3-none-any.whl
.
File metadata
- Download URL: HinetPy-0.7.1-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f343134b7f724b4622e2f04583c0daf7f80c7bd3f09381ec576fe3f73c0102e7 |
|
MD5 | 1fe544a8084460fe1f979cbe9b8b12d5 |
|
BLAKE2b-256 | 3cab716c44702ca38ddc2eb9f24459d8fb5a3ee7eea8eb8542d18575a89189f2 |