Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yk-lab/jma_grib2
https://github.com/yk-lab/jma_grib2
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yk-lab/jma_grib2
- Owner: yk-lab
- License: mit
- Created: 2019-06-15T22:17:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T05:48:19.000Z (about 2 years ago)
- Last Synced: 2024-11-05T09:49:42.601Z (2 months ago)
- Language: Python
- Homepage: https://jma-grib2.readthedocs.io/ja/latest/index.html
- Size: 111 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JMA_grib2
気象庁提供のgrib2ファイルをパースするライブラリ。## install
```sh
$ pipenv install JMA-grib2
```## Usage
```python3
from jma_grib2 import Ggis1km
with open('Z__C_RJTD_20070101000000_RDR_JMAGPV_Ggis1km_Prr10lv_ANAL_grib2.bin', 'rb') as f:
g = Ggis1km(f)
```## サポート範囲
| 項目 | バージョン | データ詳細 |
|---|---|---|
| 1kmメッシュ全国合成レーダーGPV | 0.0.4a3〜 | 気象庁が保有する全国20台の気象レーダーで観測したエコー強度の10分間隔データ |## パッケージ開発環境関連
セットアップ:
```sh
$ pipenv install
```.tar.gzファイル生成,公開など
```sh
$ pipenv run python3 setup.py sdist
$ ipenv run python3 -m twine upload dist/JMA_grib2-0.0.x.tar.gz
```バージョン情報はgitのtagから生成される。