https://github.com/ciscorn/tinygrib2
(experimental) A tiny toolkit for parsing JMA's GRIB2 files.
https://github.com/ciscorn/tinygrib2
data grib grib2 meteorology rust weather
Last synced: about 2 months ago
JSON representation
(experimental) A tiny toolkit for parsing JMA's GRIB2 files.
- Host: GitHub
- URL: https://github.com/ciscorn/tinygrib2
- Owner: ciscorn
- Created: 2024-10-15T12:59:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-14T23:32:10.000Z (11 months ago)
- Last Synced: 2026-01-15T21:58:56.413Z (5 months ago)
- Topics: data, grib, grib2, meteorology, rust, weather
- Language: Rust
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tinygrib2
experimental grib2 parser
## GRIB2 Sections
https://codes.ecmwf.int/grib/format/grib2/overview/
```mermaid
flowchart TB
0[0: Indicator]
1[1: Identification]
2[2: Local Use]
3[3: Grid Definition]
4[4: Product Definition]
5[5: Data Representation]
6[6: Bit-Map]
7[7: Data]
8[8: End]
0 --> 1
1 --> 2
1 --> 3
2 --> 3
3 --> 4
4 --> 5
5 --> 6
6 --> 7
7 --> 2
7 --> 3
7 --> 4
7 --> 8
```
## Code tables and templates
- GRIB2: https://github.com/wmo-im/grib2
- ECMWF: https://codes.ecmwf.int/grib/format/grib2/
- CCT (Common Code Tables): https://github.com/wmo-im/CCT
## Authors
- Taku Fukada ([@ciscorn](https://github.com/ciscorn)) - Original Author