Skip to content

Commit

Permalink
feat: inital swing at BUFR surface ingest
Browse files Browse the repository at this point in the history
  • Loading branch information
akrherz committed Dec 6, 2023
1 parent 66f086f commit d9e761d
Show file tree
Hide file tree
Showing 16 changed files with 614 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ util/rabbitmq.json
**/ridge_processor.pid
/goes/*.nc
.coverage
coverage.xml
.eggs/
parsers/pywwa.egg-info/
2 changes: 2 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ dependencies:
- psycopg
# Transient via pyIEM
- pyarrow
# BUFR processing
- pybufrkit
# Models
- pydantic
# gini reader
Expand Down
Binary file added examples/BUFR/ISAB02_CWAO.bufr
Binary file not shown.
Binary file added examples/BUFR/ISIA14_CWAO.bufr
Binary file not shown.
Binary file added examples/BUFR/ISMA01_FNLU.bufr
Binary file not shown.
Binary file added examples/BUFR/ISMA01_FNLU_badid.bufr
Binary file not shown.
Binary file added examples/BUFR/ISMI60_SBBR.bufr
Binary file not shown.
Binary file added examples/BUFR/ISND01_LEMM.bufr
Binary file not shown.
Binary file added examples/BUFR/ISXD03_EDZW.bufr
Binary file not shown.
Binary file added examples/BUFR/ISXT14_EGRR.bufr
Binary file not shown.
Binary file added examples/BUFR/IS_2023120401.bufr
Binary file not shown.
6 changes: 6 additions & 0 deletions parsers/bufr_surface.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""Process BUFR (^IS WMO header) data as it comes."""
# Local
from pywwa.workflows.bufr_surface import main

if __name__ == "__main__":
main()
Loading

0 comments on commit d9e761d

Please sign in to comment.