Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ on:
paths:
- 'HinetPy/*.py'
- 'docs/**'
- 'README.rst'
- 'README.md'
pull_request:
paths:
- 'HinetPy/*.py'
- 'docs/**'
- 'README.rst'
- 'README.md'
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install build sphinx sphinx-intl sphinx_rtd_theme
python -m pip install build myst-parser sphinx sphinx-intl sphinx_rtd_theme
make build
python -m pip install dist/*.whl

Expand Down
104 changes: 104 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
[![Tests](https://github.com/seisman/HinetPy/actions/workflows/tests.yml/badge.svg)](https://github.com/seisman/HinetPy/actions/workflows/tests.yml)
[![codecov](https://codecov.io/gh/seisman/HinetPy/branch/main/graph/badge.svg)](https://codecov.io/gh/seisman/HinetPy)
[![GitHub release](https://img.shields.io/github/release/seisman/HinetPy.svg)](https://github.com/seisman/HinetPy/releases)
[![PyPI version](https://img.shields.io/pypi/v/HinetPy.svg)](https://pypi.org/project/HinetPy/)
[![Python versions](https://img.shields.io/pypi/pyversions/HinetPy.svg)](https://pypi.org/project/HinetPy/)
[![License](https://img.shields.io/github/license/seisman/HinetPy.svg)](https://github.com/seisman/HinetPy/blob/main/LICENSE)
[![JOSS](https://joss.theoj.org/papers/10.21105/joss.06840/status.svg)](https://doi.org/10.21105/joss.06840)
[![Zenodo](https://zenodo.org/badge/23509035.svg)](https://zenodo.org/badge/latestdoi/23509035)

[NIED Hi-net](https://www.hinet.bosai.go.jp/) |
[Source Code](https://github.com/seisman/HinetPy) |
[Documentation](https://seisman.github.io/HinetPy) |
[中文文档](https://seisman.github.io/HinetPy/zh_CN/)

---

<!-- placeholder-for-doc-index -->

[HinetPy](https://github.com/seisman/HinetPy) is a Python package for accessing and
processing seismic data from [NIED Hi-net](https://www.hinet.bosai.go.jp/).

## Key Features

- Facilitates easy access to NIED Hi-net seismic data, including continuous/event
waveform data and event catalogs.
- Supports multiple seismic networks (e.g., F-net, S-net, MeSO-net and more in addition
to Hi-net) in Japan.
- Selects a subset of stations based on geographical location or station name (supports
Hi-net, F-net, S-net and MeSO-net only).
- Converts waveform data to SAC format and instrumental responses to SAC polezero files.
- Speeds up the downloading and processing workflow via the use of multithreading.

## 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.

```python
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 the package in either of the
following ways:

**Cite the HinetPy paper (preferred)**

A formal paper is published in [The Journal of Open Source Software](https://joss.theoj.org/)
since HinetPy v0.9.0. This is the **preferred** way for citation.

> Tian, D. (2024). HinetPy: A Python package for accessing and processing NIED Hi-net
> seismic data. Journal of Open Source Software, 9(98), 6840.
> https://doi.org/10.21105/joss.06840

**Cite a specific HinetPy version**

If you'd like to cite a specific HinetPy version, you can visit
[Zenodo](https://zenodo.org/records/12523911), choose the version you want to cite,
and cite like this:

> Tian, D. (20XX). HinetPy: A Python package for accessing and processing NIED Hi-net
> seismic data (X.X.X). Zenodo. https://doi.org/10.5281/zenodo.xxxxxxxx

## Contributing

Feedback and contributions are welcome. Please feel free to open an issue or pull
request if you have any suggestions or would like to contribute a feature.
For additional information or specific questions, please open an issue directly.

## License

This project is licensed under the terms of the MIT license.
117 changes: 0 additions & 117 deletions README.rst

This file was deleted.

1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"sphinx.ext.githubpages",
"sphinx.ext.intersphinx",
"sphinx.ext.napoleon",
"myst_parser",
"sphinx_rtd_theme",
]

Expand Down
18 changes: 18 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# HinetPy

```{toctree}
:maxdepth: 1
:hidden:

installation
tutorial
examples
api
appendix
changelog
license
```

```{include} ../README.md
:start-after: <!-- placeholder-for-doc-index -->
```
17 changes: 0 additions & 17 deletions docs/index.rst

This file was deleted.

Loading