{"id":40736277,"url":"https://github.com/world-meteorological-organization/csv2bufr","last_synced_at":"2026-01-21T15:01:16.045Z","repository":{"id":39618510,"uuid":"422520825","full_name":"World-Meteorological-Organization/csv2bufr","owner":"World-Meteorological-Organization","description":"Python package to transform CSV data into the WMO BUFR format","archived":false,"fork":false,"pushed_at":"2025-08-15T10:48:08.000Z","size":676,"stargazers_count":7,"open_issues_count":6,"forks_count":5,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-01-07T11:21:38.944Z","etag":null,"topics":["bufr","csv","tdcf","wmo"],"latest_commit_sha":null,"homepage":"https://csv2bufr.readthedocs.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/World-Meteorological-Organization.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-10-29T09:43:41.000Z","updated_at":"2025-08-15T10:13:44.000Z","dependencies_parsed_at":"2024-02-14T09:44:16.713Z","dependency_job_id":"8876fa5d-6593-4db6-812f-e6ded6074259","html_url":"https://github.com/World-Meteorological-Organization/csv2bufr","commit_stats":null,"previous_names":["world-meteorological-organization/csv2bufr","wmo-im/csv2bufr"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/World-Meteorological-Organization/csv2bufr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/World-Meteorological-Organization%2Fcsv2bufr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/World-Meteorological-Organization%2Fcsv2bufr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/World-Meteorological-Organization%2Fcsv2bufr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/World-Meteorological-Organization%2Fcsv2bufr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/World-Meteorological-Organization","download_url":"https://codeload.github.com/World-Meteorological-Organization/csv2bufr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/World-Meteorological-Organization%2Fcsv2bufr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28635123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T14:50:40.221Z","status":"ssl_error","status_checked_at":"2026-01-21T14:48:59.225Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bufr","csv","tdcf","wmo"],"created_at":"2026-01-21T15:00:55.476Z","updated_at":"2026-01-21T15:01:16.039Z","avatar_url":"https://github.com/World-Meteorological-Organization.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# csv2bufr\n\nThe csv2bufr Python module contains both a command line interface and an API to convert data stored in a CSV file to the WMO BUFR data format.\nMore information on the BUFR format can be found in the [WMO Manual on Codes, Volume I.2](https://library.wmo.int/doc_num.php?explnum_id=10722).\n\n## Installation\n\n### Requirements\n- Python 3 and above\n- [ecCodes](https://confluence.ecmwf.int/display/ECC)\n\n### Dependencies\n\nDependencies are listed in [requirements.txt](https://github.com/World-Meteorological-Organization/csv2bufr/blob/main/requirements.txt). Dependencies are automatically installed during csv2bufr installation.\n\n```bash\ndocker pull wmoim/csv2bufr\n```\n\n## Running\n\nTransform data from file ``\u003cmy-csv-file.csv\u003e``  for station ``\u003cwigos_station_identifier\u003e`` to BUFR using template \nspecified in file ``\u003ccsv-to-bufr-mapping.json\u003e`` and with station metadata file the file ``\u003cmetadata-file.csv\u003e``. \nWrite output to ``\u003coutput-directory-path\u003e``.\n\n```bash\ncsv2bufr data transform \u003cmy-csv-file.csv\u003e \\\n    \u003cwigos_station_identifier\u003e \\\n    --station-metadata \u003cmetadata-file.csv\u003e \\\n    --bufr-template \u003ccsv-to-bufr-mapping.json\u003e \\\n    --output \u003coutput-directory-path\u003e\n```\n\n## Releasing\n\n```bash\n# create release (x.y.z is the release version)\nvi csv2bufr/__init__.py  # update __version__\ngit commit -am 'update release version vx.y.z'\ngit push origin main\ngit tag -a vx.y.z -m 'tagging release version vx.y.z'\ngit push --tags\n\n# upload to PyPI\nrm -fr build dist *.egg-info\npython setup.py sdist bdist_wheel --universal\ntwine upload dist/*\n\n# publish release on GitHub (https://github.com/World-Meteorological-Organization/csv2bufr/releases/new)\n\n# bump version back to dev\nvi csv2bufr/__init__.py  # update __version__\ngit commit -am 'back to dev'\ngit push origin main\n```\n## Documentation\n\nThe full documentation for csv2bufr can be found at [https://csv2bufr.readthedocs.io](https://csv2bufr.readthedocs.io), including sample files.\n\n### Code Conventions\n\n* [PEP8](https://www.python.org/dev/peps/pep-0008)\n\n### Bugs and Issues\n\nAll bugs, enhancements and issues are managed on [GitHub](https://github.com/World-Meteorological-Organization/csv2bufr/issues).\n\n## Contact\n\n* [David Berry](https://github.com/david-i-berry)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworld-meteorological-organization%2Fcsv2bufr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fworld-meteorological-organization%2Fcsv2bufr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworld-meteorological-organization%2Fcsv2bufr/lists"}